@thegrizzlylabs/react-native-genius-scan 5.0.0-beta4 → 5.0.0-beta6
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/build.gradle +1 -1
- package/ios/GSSDK/GSSDK.xcframework/Info.plist +5 -5
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64/GSSDK.framework/GSSDK +0 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64/GSSDK.framework/Headers/GSSDK-Swift.h +29 -6
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64/GSSDK.framework/Info.plist +0 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64/GSSDK.framework/Modules/GSSDK.swiftmodule/arm64-apple-ios.abi.json +1205 -350
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64/GSSDK.framework/Modules/GSSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +30 -1
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64/GSSDK.framework/Modules/GSSDK.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64/GSSDK.framework/Modules/GSSDK.swiftmodule/arm64-apple-ios.swiftinterface +30 -1
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64/GSSDK.framework/PhoneNumberKit_PhoneNumberKit.bundle/PrivacyInfo.xcprivacy +14 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/GSSDK +0 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/Headers/GSSDK-Swift.h +58 -12
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/Info.plist +0 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/Modules/GSSDK.swiftmodule/arm64-apple-ios-simulator.abi.json +1205 -350
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/Modules/GSSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +30 -1
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/Modules/GSSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/Modules/GSSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface +30 -1
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/Modules/GSSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +1205 -350
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/Modules/GSSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +30 -1
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/Modules/GSSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/Modules/GSSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +30 -1
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/PhoneNumberKit_PhoneNumberKit.bundle/PrivacyInfo.xcprivacy +14 -0
- package/package.json +1 -1
|
@@ -113,6 +113,17 @@ extension GSSDK.GSKPDFDocument {
|
|
|
113
113
|
@objc public init(hocr: Swift.String?)
|
|
114
114
|
@objc deinit
|
|
115
115
|
}
|
|
116
|
+
@objc @_inheritsConvenienceInitializers @objcMembers final public class GSKTextLayoutToTextConverter : ObjectiveC.NSObject {
|
|
117
|
+
@objc final public func convert(_ textLayout: GSSDK.GSKTextLayout) throws -> GSSDK.GSKTextLayoutToTextConverterResult
|
|
118
|
+
@objc override dynamic public init()
|
|
119
|
+
@objc deinit
|
|
120
|
+
}
|
|
121
|
+
@objc @_hasMissingDesignatedInitializers @objcMembers final public class GSKTextLayoutToTextConverterResult : ObjectiveC.NSObject {
|
|
122
|
+
@objc final public let text: Swift.String
|
|
123
|
+
@objc final public let averageWordConfidence: Swift.Int
|
|
124
|
+
@objc final public let wordCount: Swift.Int
|
|
125
|
+
@objc deinit
|
|
126
|
+
}
|
|
116
127
|
public enum GSSDKAsset {
|
|
117
128
|
public static let artboardExpand: GSSDK.GSSDKImages
|
|
118
129
|
public static let chargingFlashSync: GSSDK.GSSDKImages
|
|
@@ -215,9 +226,10 @@ public enum GSSDKStrings {
|
|
|
215
226
|
public static let gssdkSettings: Swift.String
|
|
216
227
|
}
|
|
217
228
|
}
|
|
218
|
-
@objc @
|
|
229
|
+
@objc @objcMembers final public class GSKOCRResult : ObjectiveC.NSObject {
|
|
219
230
|
@objc final public let text: Swift.String
|
|
220
231
|
@objc final public let textLayout: GSSDK.GSKTextLayout
|
|
232
|
+
@objc public init(text: Swift.String, textLayout: GSSDK.GSKTextLayout)
|
|
221
233
|
@objc deinit
|
|
222
234
|
}
|
|
223
235
|
@objc @_hasMissingDesignatedInitializers @objcMembers final public class GSKOCRConfiguration : ObjectiveC.NSObject {
|
|
@@ -232,6 +244,23 @@ public enum GSSDKStrings {
|
|
|
232
244
|
#endif
|
|
233
245
|
@objc deinit
|
|
234
246
|
}
|
|
247
|
+
public struct GSKOCRLanguage {
|
|
248
|
+
public static var allLanguages: [GSSDK.GSKOCRLanguage]
|
|
249
|
+
public let tag: Swift.String
|
|
250
|
+
public let displayName: Swift.String
|
|
251
|
+
}
|
|
252
|
+
extension GSSDK.GSKOCRLanguage : Swift.CustomStringConvertible {
|
|
253
|
+
public var description: Swift.String {
|
|
254
|
+
get
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
extension GSSDK.GSKOCRLanguage : Swift.Equatable, Swift.Hashable {
|
|
258
|
+
public static func == (lhs: GSSDK.GSKOCRLanguage, rhs: GSSDK.GSKOCRLanguage) -> Swift.Bool
|
|
259
|
+
public func hash(into hasher: inout Swift.Hasher)
|
|
260
|
+
public var hashValue: Swift.Int {
|
|
261
|
+
get
|
|
262
|
+
}
|
|
263
|
+
}
|
|
235
264
|
@objc extension GSSDK.GSKView {
|
|
236
265
|
@objc @_Concurrency.MainActor(unsafe) dynamic public func startSnapAnimation(withDuration duration: Foundation.TimeInterval)
|
|
237
266
|
@objc @_Concurrency.MainActor(unsafe) dynamic public func endSnapAnimation()
|
|
Binary file
|
|
@@ -113,6 +113,17 @@ extension GSSDK.GSKPDFDocument {
|
|
|
113
113
|
@objc public init(hocr: Swift.String?)
|
|
114
114
|
@objc deinit
|
|
115
115
|
}
|
|
116
|
+
@objc @_inheritsConvenienceInitializers @objcMembers final public class GSKTextLayoutToTextConverter : ObjectiveC.NSObject {
|
|
117
|
+
@objc final public func convert(_ textLayout: GSSDK.GSKTextLayout) throws -> GSSDK.GSKTextLayoutToTextConverterResult
|
|
118
|
+
@objc override dynamic public init()
|
|
119
|
+
@objc deinit
|
|
120
|
+
}
|
|
121
|
+
@objc @_hasMissingDesignatedInitializers @objcMembers final public class GSKTextLayoutToTextConverterResult : ObjectiveC.NSObject {
|
|
122
|
+
@objc final public let text: Swift.String
|
|
123
|
+
@objc final public let averageWordConfidence: Swift.Int
|
|
124
|
+
@objc final public let wordCount: Swift.Int
|
|
125
|
+
@objc deinit
|
|
126
|
+
}
|
|
116
127
|
public enum GSSDKAsset {
|
|
117
128
|
public static let artboardExpand: GSSDK.GSSDKImages
|
|
118
129
|
public static let chargingFlashSync: GSSDK.GSSDKImages
|
|
@@ -215,9 +226,10 @@ public enum GSSDKStrings {
|
|
|
215
226
|
public static let gssdkSettings: Swift.String
|
|
216
227
|
}
|
|
217
228
|
}
|
|
218
|
-
@objc @
|
|
229
|
+
@objc @objcMembers final public class GSKOCRResult : ObjectiveC.NSObject {
|
|
219
230
|
@objc final public let text: Swift.String
|
|
220
231
|
@objc final public let textLayout: GSSDK.GSKTextLayout
|
|
232
|
+
@objc public init(text: Swift.String, textLayout: GSSDK.GSKTextLayout)
|
|
221
233
|
@objc deinit
|
|
222
234
|
}
|
|
223
235
|
@objc @_hasMissingDesignatedInitializers @objcMembers final public class GSKOCRConfiguration : ObjectiveC.NSObject {
|
|
@@ -232,6 +244,23 @@ public enum GSSDKStrings {
|
|
|
232
244
|
#endif
|
|
233
245
|
@objc deinit
|
|
234
246
|
}
|
|
247
|
+
public struct GSKOCRLanguage {
|
|
248
|
+
public static var allLanguages: [GSSDK.GSKOCRLanguage]
|
|
249
|
+
public let tag: Swift.String
|
|
250
|
+
public let displayName: Swift.String
|
|
251
|
+
}
|
|
252
|
+
extension GSSDK.GSKOCRLanguage : Swift.CustomStringConvertible {
|
|
253
|
+
public var description: Swift.String {
|
|
254
|
+
get
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
extension GSSDK.GSKOCRLanguage : Swift.Equatable, Swift.Hashable {
|
|
258
|
+
public static func == (lhs: GSSDK.GSKOCRLanguage, rhs: GSSDK.GSKOCRLanguage) -> Swift.Bool
|
|
259
|
+
public func hash(into hasher: inout Swift.Hasher)
|
|
260
|
+
public var hashValue: Swift.Int {
|
|
261
|
+
get
|
|
262
|
+
}
|
|
263
|
+
}
|
|
235
264
|
@objc extension GSSDK.GSKView {
|
|
236
265
|
@objc @_Concurrency.MainActor(unsafe) dynamic public func startSnapAnimation(withDuration duration: Foundation.TimeInterval)
|
|
237
266
|
@objc @_Concurrency.MainActor(unsafe) dynamic public func endSnapAnimation()
|