idwise-react-native-sdk 5.0.5 → 5.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/gradle.properties +1 -1
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Assets.car +0 -0
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/IDWiseSDK +0 -0
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Info.plist +0 -0
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.abi.json +2462 -1219
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +22 -1
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftinterface +22 -1
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/_CodeSignature/CodeResources +13 -13
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/document_detector.mlmodelc/coremldata.bin +0 -0
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/IDWiseSDK +0 -0
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Info.plist +0 -0
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +2462 -1219
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +22 -1
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +22 -1
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/_CodeSignature/CodeResources +13 -13
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/document_detector.mlmodelc/metadata.json +2 -2
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/document_detector.mlmodelc/model0/coremldata.bin +0 -0
- package/package.json +1 -1
|
@@ -86,7 +86,25 @@ extension IDWiseSDK.MenuWidgetView : UIKit.UITableViewDelegate, UIKit.UITableVie
|
|
|
86
86
|
@_Concurrency.MainActor(unsafe) @objc dynamic public func tableView(_ tableView: UIKit.UITableView, cellForRowAt indexPath: Foundation.IndexPath) -> UIKit.UITableViewCell
|
|
87
87
|
@_Concurrency.MainActor(unsafe) @objc dynamic public func tableView(_ tableView: UIKit.UITableView, heightForRowAt indexPath: Foundation.IndexPath) -> CoreFoundation.CGFloat
|
|
88
88
|
}
|
|
89
|
-
public struct
|
|
89
|
+
public struct IDWiseErrorCode {
|
|
90
|
+
public static let emptyParameters: Swift.String
|
|
91
|
+
public static let sdkNotInitialized: Swift.String
|
|
92
|
+
public static let wrongCredentials: Swift.String
|
|
93
|
+
public static let emptyJourneyId: Swift.String
|
|
94
|
+
public static let fileTooLarge: Swift.String
|
|
95
|
+
public static let stepNotFound: Swift.String
|
|
96
|
+
public static let wrongStepId: Swift.String
|
|
97
|
+
public static let internalServerError: Swift.String
|
|
98
|
+
public static let networkError: Swift.String
|
|
99
|
+
public static let actionNotSupported: Swift.String
|
|
100
|
+
public static let stepNotStarted: Swift.String
|
|
101
|
+
public static let journeyNotCompleted: Swift.String
|
|
102
|
+
public static let invalidFlowId: Swift.String
|
|
103
|
+
public static let noActiveJourney: Swift.String
|
|
104
|
+
public static let journeyNotStarted: Swift.String
|
|
105
|
+
public static let stepConcluded: Swift.String
|
|
106
|
+
public static let nfcScanError: Swift.String
|
|
107
|
+
public static let noJourneyToResume: Swift.String
|
|
90
108
|
}
|
|
91
109
|
public struct IDWiseError : Swift.Codable {
|
|
92
110
|
public let code: Swift.String
|
|
@@ -517,10 +535,13 @@ public struct JourneySummary : Swift.Codable {
|
|
|
517
535
|
public var stepSummaries: [IDWiseSDK.JourneySummary.StepSummary]?
|
|
518
536
|
public var journeyResult: IDWiseSDK.JourneySummary.JourneyResult?
|
|
519
537
|
public struct StepSummary : Swift.Codable {
|
|
538
|
+
public var definition: IDWiseSDK.JourneySummary.StepDefinition
|
|
539
|
+
public var result: IDWiseSDK.StepResult?
|
|
520
540
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
521
541
|
public init(from decoder: any Swift.Decoder) throws
|
|
522
542
|
}
|
|
523
543
|
public struct StepDefinition : Swift.Codable {
|
|
544
|
+
public var stepId: Swift.Int
|
|
524
545
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
525
546
|
public init(from decoder: any Swift.Decoder) throws
|
|
526
547
|
}
|
|
@@ -86,7 +86,25 @@ extension IDWiseSDK.MenuWidgetView : UIKit.UITableViewDelegate, UIKit.UITableVie
|
|
|
86
86
|
@_Concurrency.MainActor(unsafe) @objc dynamic public func tableView(_ tableView: UIKit.UITableView, cellForRowAt indexPath: Foundation.IndexPath) -> UIKit.UITableViewCell
|
|
87
87
|
@_Concurrency.MainActor(unsafe) @objc dynamic public func tableView(_ tableView: UIKit.UITableView, heightForRowAt indexPath: Foundation.IndexPath) -> CoreFoundation.CGFloat
|
|
88
88
|
}
|
|
89
|
-
public struct
|
|
89
|
+
public struct IDWiseErrorCode {
|
|
90
|
+
public static let emptyParameters: Swift.String
|
|
91
|
+
public static let sdkNotInitialized: Swift.String
|
|
92
|
+
public static let wrongCredentials: Swift.String
|
|
93
|
+
public static let emptyJourneyId: Swift.String
|
|
94
|
+
public static let fileTooLarge: Swift.String
|
|
95
|
+
public static let stepNotFound: Swift.String
|
|
96
|
+
public static let wrongStepId: Swift.String
|
|
97
|
+
public static let internalServerError: Swift.String
|
|
98
|
+
public static let networkError: Swift.String
|
|
99
|
+
public static let actionNotSupported: Swift.String
|
|
100
|
+
public static let stepNotStarted: Swift.String
|
|
101
|
+
public static let journeyNotCompleted: Swift.String
|
|
102
|
+
public static let invalidFlowId: Swift.String
|
|
103
|
+
public static let noActiveJourney: Swift.String
|
|
104
|
+
public static let journeyNotStarted: Swift.String
|
|
105
|
+
public static let stepConcluded: Swift.String
|
|
106
|
+
public static let nfcScanError: Swift.String
|
|
107
|
+
public static let noJourneyToResume: Swift.String
|
|
90
108
|
}
|
|
91
109
|
public struct IDWiseError : Swift.Codable {
|
|
92
110
|
public let code: Swift.String
|
|
@@ -517,10 +535,13 @@ public struct JourneySummary : Swift.Codable {
|
|
|
517
535
|
public var stepSummaries: [IDWiseSDK.JourneySummary.StepSummary]?
|
|
518
536
|
public var journeyResult: IDWiseSDK.JourneySummary.JourneyResult?
|
|
519
537
|
public struct StepSummary : Swift.Codable {
|
|
538
|
+
public var definition: IDWiseSDK.JourneySummary.StepDefinition
|
|
539
|
+
public var result: IDWiseSDK.StepResult?
|
|
520
540
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
521
541
|
public init(from decoder: any Swift.Decoder) throws
|
|
522
542
|
}
|
|
523
543
|
public struct StepDefinition : Swift.Codable {
|
|
544
|
+
public var stepId: Swift.Int
|
|
524
545
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
525
546
|
public init(from decoder: any Swift.Decoder) throws
|
|
526
547
|
}
|
package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/_CodeSignature/CodeResources
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<dict>
|
|
7
7
|
<key>Assets.car</key>
|
|
8
8
|
<data>
|
|
9
|
-
|
|
9
|
+
xMAo0rUn3d6cYklLEi57kn4gKpQ=
|
|
10
10
|
</data>
|
|
11
11
|
<key>BulletCell.nib</key>
|
|
12
12
|
<data>
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
</data>
|
|
107
107
|
<key>Info.plist</key>
|
|
108
108
|
<data>
|
|
109
|
-
|
|
109
|
+
4zJseoCg89geBllSV4NrgVGzBwE=
|
|
110
110
|
</data>
|
|
111
111
|
<key>JourneyIntroductionViewController.storyboardc/A5G-4b-J84-view-Avi-oP-H2l.nib/objects-13.0+.nib</key>
|
|
112
112
|
<data>
|
|
@@ -138,11 +138,11 @@
|
|
|
138
138
|
</data>
|
|
139
139
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.abi.json</key>
|
|
140
140
|
<data>
|
|
141
|
-
|
|
141
|
+
UhTTO7wxRJqVE2RV9CPagEBWhhM=
|
|
142
142
|
</data>
|
|
143
143
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
|
|
144
144
|
<data>
|
|
145
|
-
|
|
145
|
+
G92ZbTiz43t1FAfVcWyBHgnLAF4=
|
|
146
146
|
</data>
|
|
147
147
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftdoc</key>
|
|
148
148
|
<data>
|
|
@@ -150,11 +150,11 @@
|
|
|
150
150
|
</data>
|
|
151
151
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftinterface</key>
|
|
152
152
|
<data>
|
|
153
|
-
|
|
153
|
+
G92ZbTiz43t1FAfVcWyBHgnLAF4=
|
|
154
154
|
</data>
|
|
155
155
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftmodule</key>
|
|
156
156
|
<data>
|
|
157
|
-
|
|
157
|
+
80m23K+i6KV3Vx/oetmxXknDlS0=
|
|
158
158
|
</data>
|
|
159
159
|
<key>Mulish-Bold.ttf</key>
|
|
160
160
|
<data>
|
|
@@ -246,7 +246,7 @@
|
|
|
246
246
|
</data>
|
|
247
247
|
<key>document_detector.mlmodelc/coremldata.bin</key>
|
|
248
248
|
<data>
|
|
249
|
-
|
|
249
|
+
x3g53PPMGiV+lKaSqDvTgz742wg=
|
|
250
250
|
</data>
|
|
251
251
|
<key>document_detector.mlmodelc/metadata.json</key>
|
|
252
252
|
<data>
|
|
@@ -336,7 +336,7 @@
|
|
|
336
336
|
<dict>
|
|
337
337
|
<key>hash2</key>
|
|
338
338
|
<data>
|
|
339
|
-
|
|
339
|
+
vs6IG0WgNtjGqEoBHnO5t3U7qFxgfg4hZcZR9m2XoF4=
|
|
340
340
|
</data>
|
|
341
341
|
</dict>
|
|
342
342
|
<key>BulletCell.nib</key>
|
|
@@ -560,14 +560,14 @@
|
|
|
560
560
|
<dict>
|
|
561
561
|
<key>hash2</key>
|
|
562
562
|
<data>
|
|
563
|
-
|
|
563
|
+
o9GVL475unJB8KO6Yh/H84/h2Fck1J6dO3SLNUuMNu8=
|
|
564
564
|
</data>
|
|
565
565
|
</dict>
|
|
566
566
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
|
|
567
567
|
<dict>
|
|
568
568
|
<key>hash2</key>
|
|
569
569
|
<data>
|
|
570
|
-
|
|
570
|
+
cfmIYxvzumePCIQ+tGRJ9shazuemdXMc18ruUVZwJDA=
|
|
571
571
|
</data>
|
|
572
572
|
</dict>
|
|
573
573
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftdoc</key>
|
|
@@ -581,14 +581,14 @@
|
|
|
581
581
|
<dict>
|
|
582
582
|
<key>hash2</key>
|
|
583
583
|
<data>
|
|
584
|
-
|
|
584
|
+
cfmIYxvzumePCIQ+tGRJ9shazuemdXMc18ruUVZwJDA=
|
|
585
585
|
</data>
|
|
586
586
|
</dict>
|
|
587
587
|
<key>Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftmodule</key>
|
|
588
588
|
<dict>
|
|
589
589
|
<key>hash2</key>
|
|
590
590
|
<data>
|
|
591
|
-
|
|
591
|
+
j4+jEMseT5n0MWjcuL5E+mnDlzquCn53+kVnTh7mR/8=
|
|
592
592
|
</data>
|
|
593
593
|
</dict>
|
|
594
594
|
<key>Mulish-Bold.ttf</key>
|
|
@@ -749,7 +749,7 @@
|
|
|
749
749
|
<dict>
|
|
750
750
|
<key>hash2</key>
|
|
751
751
|
<data>
|
|
752
|
-
|
|
752
|
+
55dJ0iU5Us0bBh1Ge1AzosaBJLWiPDIkB+UNHveoD08=
|
|
753
753
|
</data>
|
|
754
754
|
</dict>
|
|
755
755
|
<key>document_detector.mlmodelc/metadata.json</key>
|
|
Binary file
|
|
Binary file
|