diff --git a/GliaCoreSDK.podspec b/GliaCoreSDK.podspec
index 1a0d814..2cc9d55 100644
--- a/GliaCoreSDK.podspec
+++ b/GliaCoreSDK.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'GliaCoreSDK'
- s.version = '1.0.3'
+ s.version = '1.0.4'
s.summary = 'The Glia Core SDK'
s.description = 'The Glia Core SDK brings the in-person customer experience to iOS devices.'
s.homepage = 'https://www.glia.com/'
diff --git a/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/GliaCoreSDK b/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/GliaCoreSDK
index bf4cc30..d38e6ea 100755
Binary files a/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/GliaCoreSDK and b/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/GliaCoreSDK differ
diff --git a/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/Headers/GliaCoreSDK-Swift.h b/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/Headers/GliaCoreSDK-Swift.h
index ba5446f..32e83c0 100644
--- a/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/Headers/GliaCoreSDK-Swift.h
+++ b/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/Headers/GliaCoreSDK-Swift.h
@@ -1279,6 +1279,12 @@ SWIFT_CLASS("_TtC11GliaCoreSDK18SingleChoiceOption")
@property (nonatomic, copy) NSString * _Nullable text;
/// Value of the choice sent as a response on user interaction.
@property (nonatomic, copy) NSString * _Nullable value;
+/// Initializes SingleChoiceOption instance
+/// \param text Text displayed to the user as a choice label.
+///
+/// \param value Value of the choice sent as a response on user interaction.
+///
+- (nonnull instancetype)initWithText:(NSString * _Nullable)text value:(NSString * _Nullable)value OBJC_DESIGNATED_INITIALIZER;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end
diff --git a/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios.abi.json b/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios.abi.json
index 1e00969..e588b4b 100644
--- a/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios.abi.json
+++ b/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios.abi.json
@@ -2268,6 +2268,57 @@
}
]
},
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(text:value:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SingleChoiceOption",
+ "printedName": "GliaCoreSDK.SingleChoiceOption",
+ "usr": "c:@M@GliaCoreSDK@objc(cs)SingleChoiceOption"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@GliaCoreSDK@objc(cs)SingleChoiceOption(im)initWithText:value:",
+ "mangledName": "$s11GliaCoreSDK18SingleChoiceOptionC4text5valueACSSSg_AFtcfc",
+ "moduleName": "GliaCoreSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment",
+ "ObjC"
+ ],
+ "init_kind": "Designated"
+ },
{
"kind": "Constructor",
"name": "init",
@@ -2360,7 +2411,6 @@
"ObjC"
],
"superclassUsr": "c:objc(cs)NSObject",
- "hasMissingDesignatedInitializers": true,
"superclassNames": [
"ObjectiveC.NSObject"
],
@@ -35485,7 +35535,7 @@
"kind": "StringLiteral",
"offset": 433,
"length": 7,
- "value": "\"1.0.3\""
+ "value": "\"1.0.4\""
},
{
"filePath": "\/Users\/vagrant\/git\/GliaCoreSDK\/GliaCoreSDK\/Medra\/Channel\/NamespacedChannel.swift",
diff --git a/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios.private.swiftinterface b/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios.private.swiftinterface
index 14353f3..464da2a 100644
--- a/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios.private.swiftinterface
+++ b/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios.private.swiftinterface
@@ -95,9 +95,10 @@ extension GliaCoreSDK.GliaCore {
public init(from decoder: Swift.Decoder) throws
}
}
-@objc @_hasMissingDesignatedInitializers @objcMembers public class SingleChoiceOption : ObjectiveC.NSObject, Swift.Codable {
+@objc @objcMembers public class SingleChoiceOption : ObjectiveC.NSObject, Swift.Codable {
@objc public var text: Swift.String?
@objc public var value: Swift.String?
+ @objc public init(text: Swift.String?, value: Swift.String?)
@objc deinit
public func encode(to encoder: Swift.Encoder) throws
required public init(from decoder: Swift.Decoder) throws
diff --git a/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios.swiftdoc b/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios.swiftdoc
index 329a554..818273c 100644
Binary files a/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios.swiftdoc and b/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios.swiftdoc differ
diff --git a/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios.swiftinterface b/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios.swiftinterface
index 14353f3..464da2a 100644
--- a/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios.swiftinterface
+++ b/GliaCoreSDK.xcframework/ios-arm64/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios.swiftinterface
@@ -95,9 +95,10 @@ extension GliaCoreSDK.GliaCore {
public init(from decoder: Swift.Decoder) throws
}
}
-@objc @_hasMissingDesignatedInitializers @objcMembers public class SingleChoiceOption : ObjectiveC.NSObject, Swift.Codable {
+@objc @objcMembers public class SingleChoiceOption : ObjectiveC.NSObject, Swift.Codable {
@objc public var text: Swift.String?
@objc public var value: Swift.String?
+ @objc public init(text: Swift.String?, value: Swift.String?)
@objc deinit
public func encode(to encoder: Swift.Encoder) throws
required public init(from decoder: Swift.Decoder) throws
diff --git a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/GliaCoreSDK b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/GliaCoreSDK
index 6b83f12..1f26afc 100755
Binary files a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/GliaCoreSDK and b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/GliaCoreSDK differ
diff --git a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Headers/GliaCoreSDK-Swift.h b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Headers/GliaCoreSDK-Swift.h
index 684eb12..32ed85a 100644
--- a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Headers/GliaCoreSDK-Swift.h
+++ b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Headers/GliaCoreSDK-Swift.h
@@ -1279,6 +1279,12 @@ SWIFT_CLASS("_TtC11GliaCoreSDK18SingleChoiceOption")
@property (nonatomic, copy) NSString * _Nullable text;
/// Value of the choice sent as a response on user interaction.
@property (nonatomic, copy) NSString * _Nullable value;
+/// Initializes SingleChoiceOption instance
+/// \param text Text displayed to the user as a choice label.
+///
+/// \param value Value of the choice sent as a response on user interaction.
+///
+- (nonnull instancetype)initWithText:(NSString * _Nullable)text value:(NSString * _Nullable)value OBJC_DESIGNATED_INITIALIZER;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end
@@ -2636,6 +2642,12 @@ SWIFT_CLASS("_TtC11GliaCoreSDK18SingleChoiceOption")
@property (nonatomic, copy) NSString * _Nullable text;
/// Value of the choice sent as a response on user interaction.
@property (nonatomic, copy) NSString * _Nullable value;
+/// Initializes SingleChoiceOption instance
+/// \param text Text displayed to the user as a choice label.
+///
+/// \param value Value of the choice sent as a response on user interaction.
+///
+- (nonnull instancetype)initWithText:(NSString * _Nullable)text value:(NSString * _Nullable)value OBJC_DESIGNATED_INITIALIZER;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end
diff --git a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.abi.json b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.abi.json
index d45453d..4f474cb 100644
--- a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.abi.json
+++ b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.abi.json
@@ -2268,6 +2268,57 @@
}
]
},
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(text:value:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SingleChoiceOption",
+ "printedName": "GliaCoreSDK.SingleChoiceOption",
+ "usr": "c:@M@GliaCoreSDK@objc(cs)SingleChoiceOption"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@GliaCoreSDK@objc(cs)SingleChoiceOption(im)initWithText:value:",
+ "mangledName": "$s11GliaCoreSDK18SingleChoiceOptionC4text5valueACSSSg_AFtcfc",
+ "moduleName": "GliaCoreSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment",
+ "ObjC"
+ ],
+ "init_kind": "Designated"
+ },
{
"kind": "Constructor",
"name": "init",
@@ -2360,7 +2411,6 @@
"ObjC"
],
"superclassUsr": "c:objc(cs)NSObject",
- "hasMissingDesignatedInitializers": true,
"superclassNames": [
"ObjectiveC.NSObject"
],
@@ -35485,7 +35535,7 @@
"kind": "StringLiteral",
"offset": 433,
"length": 7,
- "value": "\"1.0.3\""
+ "value": "\"1.0.4\""
},
{
"filePath": "\/Users\/vagrant\/git\/GliaCoreSDK\/GliaCoreSDK\/Medra\/Channel\/NamespacedChannel.swift",
diff --git a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface
index 5b34afa..1ea3edc 100644
--- a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface
+++ b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface
@@ -95,9 +95,10 @@ extension GliaCoreSDK.GliaCore {
public init(from decoder: Swift.Decoder) throws
}
}
-@objc @_hasMissingDesignatedInitializers @objcMembers public class SingleChoiceOption : ObjectiveC.NSObject, Swift.Codable {
+@objc @objcMembers public class SingleChoiceOption : ObjectiveC.NSObject, Swift.Codable {
@objc public var text: Swift.String?
@objc public var value: Swift.String?
+ @objc public init(text: Swift.String?, value: Swift.String?)
@objc deinit
public func encode(to encoder: Swift.Encoder) throws
required public init(from decoder: Swift.Decoder) throws
diff --git a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc
index eb5ca83..165ce8a 100644
Binary files a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ
diff --git a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface
index 5b34afa..1ea3edc 100644
--- a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface
+++ b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface
@@ -95,9 +95,10 @@ extension GliaCoreSDK.GliaCore {
public init(from decoder: Swift.Decoder) throws
}
}
-@objc @_hasMissingDesignatedInitializers @objcMembers public class SingleChoiceOption : ObjectiveC.NSObject, Swift.Codable {
+@objc @objcMembers public class SingleChoiceOption : ObjectiveC.NSObject, Swift.Codable {
@objc public var text: Swift.String?
@objc public var value: Swift.String?
+ @objc public init(text: Swift.String?, value: Swift.String?)
@objc deinit
public func encode(to encoder: Swift.Encoder) throws
required public init(from decoder: Swift.Decoder) throws
diff --git a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json
index d45453d..4f474cb 100644
--- a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json
+++ b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json
@@ -2268,6 +2268,57 @@
}
]
},
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(text:value:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SingleChoiceOption",
+ "printedName": "GliaCoreSDK.SingleChoiceOption",
+ "usr": "c:@M@GliaCoreSDK@objc(cs)SingleChoiceOption"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@GliaCoreSDK@objc(cs)SingleChoiceOption(im)initWithText:value:",
+ "mangledName": "$s11GliaCoreSDK18SingleChoiceOptionC4text5valueACSSSg_AFtcfc",
+ "moduleName": "GliaCoreSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment",
+ "ObjC"
+ ],
+ "init_kind": "Designated"
+ },
{
"kind": "Constructor",
"name": "init",
@@ -2360,7 +2411,6 @@
"ObjC"
],
"superclassUsr": "c:objc(cs)NSObject",
- "hasMissingDesignatedInitializers": true,
"superclassNames": [
"ObjectiveC.NSObject"
],
@@ -35485,7 +35535,7 @@
"kind": "StringLiteral",
"offset": 433,
"length": 7,
- "value": "\"1.0.3\""
+ "value": "\"1.0.4\""
},
{
"filePath": "\/Users\/vagrant\/git\/GliaCoreSDK\/GliaCoreSDK\/Medra\/Channel\/NamespacedChannel.swift",
diff --git a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface
index 6e0cea8..4eff9df 100644
--- a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface
+++ b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface
@@ -95,9 +95,10 @@ extension GliaCoreSDK.GliaCore {
public init(from decoder: Swift.Decoder) throws
}
}
-@objc @_hasMissingDesignatedInitializers @objcMembers public class SingleChoiceOption : ObjectiveC.NSObject, Swift.Codable {
+@objc @objcMembers public class SingleChoiceOption : ObjectiveC.NSObject, Swift.Codable {
@objc public var text: Swift.String?
@objc public var value: Swift.String?
+ @objc public init(text: Swift.String?, value: Swift.String?)
@objc deinit
public func encode(to encoder: Swift.Encoder) throws
required public init(from decoder: Swift.Decoder) throws
diff --git a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc
index 2402628..9cb4f33 100644
Binary files a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ
diff --git a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface
index 6e0cea8..4eff9df 100644
--- a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface
+++ b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface
@@ -95,9 +95,10 @@ extension GliaCoreSDK.GliaCore {
public init(from decoder: Swift.Decoder) throws
}
}
-@objc @_hasMissingDesignatedInitializers @objcMembers public class SingleChoiceOption : ObjectiveC.NSObject, Swift.Codable {
+@objc @objcMembers public class SingleChoiceOption : ObjectiveC.NSObject, Swift.Codable {
@objc public var text: Swift.String?
@objc public var value: Swift.String?
+ @objc public init(text: Swift.String?, value: Swift.String?)
@objc deinit
public func encode(to encoder: Swift.Encoder) throws
required public init(from decoder: Swift.Decoder) throws
diff --git a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/_CodeSignature/CodeResources b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/_CodeSignature/CodeResources
index f1b2875..c2b9fbe 100644
--- a/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/_CodeSignature/CodeResources
+++ b/GliaCoreSDK.xcframework/ios-arm64_x86_64-simulator/GliaCoreSDK.framework/_CodeSignature/CodeResources
@@ -10,7 +10,7 @@
Headers/GliaCoreSDK-Swift.h
- EiPOXWj7V5syJJfH/8s/gO5oaIE=
+ lTr0+PB6pRpXTYjtmc8ByPsvwRU=
Headers/GliaCoreSDK.h
@@ -22,43 +22,43 @@
Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.abi.json
- MDv2gJVJ2lBPjIxdIi0cLORGhhs=
+ CMdYBjGgdoHNfHP5303e+S1R4us=
Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface
- zpCjTrSR4LOVK3GiZ2q5ElNGDRE=
+ c7kOviv0ING2mnVPrYKcfA8G9tQ=
Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc
- wD/QMPvUxt0qQzW0mO43C7sKB5U=
+ bmDKTGLTs8n3nN8T2b7ixwmUcZ4=
Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface
- zpCjTrSR4LOVK3GiZ2q5ElNGDRE=
+ c7kOviv0ING2mnVPrYKcfA8G9tQ=
Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.swiftmodule
- 4CUvS0K1dJT8lTepnOfP9znOMLE=
+ 1bJuGfsLiw/I4BMIqc5F7Oavtfg=
Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json
- MDv2gJVJ2lBPjIxdIi0cLORGhhs=
+ CMdYBjGgdoHNfHP5303e+S1R4us=
Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface
- UkCwGJJlBzwgU3S//tP0CrjP/68=
+ iI8+qgvN8jQzJhUCDb+5OxN+nHc=
Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc
- l/Ro0VLLikdhOL7BKsqGNXyP7nk=
+ ex86IZ8kq1rJ+ek41cXS7lcZyt4=
Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface
- UkCwGJJlBzwgU3S//tP0CrjP/68=
+ iI8+qgvN8jQzJhUCDb+5OxN+nHc=
Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.swiftmodule
- njoETkvscGOdMLCtY6psWG07q44=
+ IXKd+rRpt6rPkPdxCDFdMKsr/FY=
Modules/module.modulemap
@@ -78,7 +78,7 @@
hash2
- GkM75FzONLRaNapTb2mCIPgTXRRYj1aQ5yJOvNS6avg=
+ IenglyieHTuaMPTJ+CBJH/wKj+8MXmOjtJh4gjOpKkg=
Headers/GliaCoreSDK.h
@@ -92,70 +92,70 @@
hash2
- hKc9SqFdHLr/gvw4JwzfH24aDL8r70++rekaNaR3Q+M=
+ 9OpUgJh7UK1ZI54CvBWYXZWL8rWu9HWTShmZfZvtEj4=
Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface
hash2
- Vt+XA/JEXaOYpZxdpVDrDRgE+EvihsaeqdktUzWnebA=
+ m5WSCM6zgAzKwN9T/MREsZLZIyj59yHpjSI0fA7MNGw=
Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc
hash2
- DLyA759YgEGc3hDgRGRLLGSwpXTNSc3gQWSrNdvVBOk=
+ jk+UWvxs0hKhCX9/zf8u1ZPn/8VBLWkTFP+h1Ih2wTQ=
Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface
hash2
- Vt+XA/JEXaOYpZxdpVDrDRgE+EvihsaeqdktUzWnebA=
+ m5WSCM6zgAzKwN9T/MREsZLZIyj59yHpjSI0fA7MNGw=
Modules/GliaCoreSDK.swiftmodule/arm64-apple-ios-simulator.swiftmodule
hash2
- BewNyX8Da5Do9JOKI36kPSVt1YeSuJkpqMW0NkvQTz8=
+ s8FkdT0f9PjgEty8MwC5Ep24cpGSgwKy6Q7ED/RycHo=
Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json
hash2
- hKc9SqFdHLr/gvw4JwzfH24aDL8r70++rekaNaR3Q+M=
+ 9OpUgJh7UK1ZI54CvBWYXZWL8rWu9HWTShmZfZvtEj4=
Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface
hash2
- oEpOOMfV800fJ4kc67S+YGMHivM/ufQGNbX0Wimzdd8=
+ H9VxdLk/dvAzc4hLZfUXliueUa9AZEP7h8JW5PfuN8w=
Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc
hash2
- nbLIW9/5nrOi/Lp7WKwtJ7twyFIinn811P3qJtirtuw=
+ 6+jvKzReJXRlnN+0DKKf33ta7POEgxr82y4QKnnjtn0=
Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface
hash2
- oEpOOMfV800fJ4kc67S+YGMHivM/ufQGNbX0Wimzdd8=
+ H9VxdLk/dvAzc4hLZfUXliueUa9AZEP7h8JW5PfuN8w=
Modules/GliaCoreSDK.swiftmodule/x86_64-apple-ios-simulator.swiftmodule
hash2
- zEzGJYNh9MKp3QCv8ghRlUac0FJ0Z57FBAn/Cy8UpAQ=
+ qIPPGppgb6sbVTRAuLl1TQCZBN/gJsDlh6RYl1qYkiQ=
Modules/module.modulemap
diff --git a/Package.swift b/Package.swift
index 6bab360..8ac1403 100644
--- a/Package.swift
+++ b/Package.swift
@@ -30,8 +30,8 @@ let package = Package(
),
.binaryTarget(
name: "GliaCoreSDK",
- url: "https://github.com/salemove/ios-bundle/releases/download/1.0.3/GliaCoreSDK.xcframework.zip",
- checksum: "267140b0bb4b71c7755c5a530e6f9afc3392d431449b8e3361def7b8de2ee6e2"
+ url: "https://github.com/salemove/ios-bundle/releases/download/1.0.4/GliaCoreSDK.xcframework.zip",
+ checksum: "9e862431487ea8e9d0c56f6ae074824c09ccdbd86a1517d55734a56bcee13531"
),
.target(
name: "GliaSDK",