@thegrizzlylabs/react-native-genius-scan 6.0.0-beta11 → 6.0.0-beta12
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/README.md +1 -1
- package/RNGeniusScan.podspec +1 -1
- package/android/build.gradle +1 -1
- 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 +5 -0
- 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 +70 -22
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64/GSSDK.framework/Modules/GSSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +1 -0
- 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 +1 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64/GSSDK.framework/en.lproj/GSSDK.strings +0 -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 +10 -0
- 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 +70 -22
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/Modules/GSSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +1 -0
- 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 +1 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/Modules/GSSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +70 -22
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/Modules/GSSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +1 -0
- 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 +1 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/en.lproj/GSSDK.strings +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/RNGeniusScan.podspec
CHANGED
package/android/build.gradle
CHANGED
|
Binary file
|
|
@@ -708,6 +708,11 @@ SWIFT_PROTOCOL("_TtP5GSSDK31GSKCameraViewControllerDelegate_")
|
|
|
708
708
|
/// \param cameraViewController The camera view controller
|
|
709
709
|
///
|
|
710
710
|
- (void)cameraViewControllerPhotoStabilizationDidStart:(GSKCameraViewController * _Nonnull)cameraViewController;
|
|
711
|
+
/// The camera view controller is about to decide whether to automatically take a photo because the detection was stable enough.
|
|
712
|
+
/// This is an override point where you can return <code>false</code> to stop that automatic process from proceeding.
|
|
713
|
+
/// \param cameraViewController The camera view controller
|
|
714
|
+
///
|
|
715
|
+
- (BOOL)cameraViewControllerShouldSnapPhoto:(GSKCameraViewController * _Nonnull)cameraViewController SWIFT_WARN_UNUSED_RESULT;
|
|
711
716
|
/// The camera view controller is going to automatically take a photo because the detection was stable enough.
|
|
712
717
|
/// The photo taking is underway and cannot be interrupted at this stage.
|
|
713
718
|
/// \param cameraViewController The camera view controller
|
|
Binary file
|
|
@@ -6077,6 +6077,40 @@
|
|
|
6077
6077
|
"reqNewWitnessTableEntry": true,
|
|
6078
6078
|
"funcSelfKind": "NonMutating"
|
|
6079
6079
|
},
|
|
6080
|
+
{
|
|
6081
|
+
"kind": "Function",
|
|
6082
|
+
"name": "cameraViewControllerShouldSnapPhoto",
|
|
6083
|
+
"printedName": "cameraViewControllerShouldSnapPhoto(_:)",
|
|
6084
|
+
"children": [
|
|
6085
|
+
{
|
|
6086
|
+
"kind": "TypeNominal",
|
|
6087
|
+
"name": "Bool",
|
|
6088
|
+
"printedName": "Swift.Bool",
|
|
6089
|
+
"usr": "s:Sb"
|
|
6090
|
+
},
|
|
6091
|
+
{
|
|
6092
|
+
"kind": "TypeNominal",
|
|
6093
|
+
"name": "GSKCameraViewController",
|
|
6094
|
+
"printedName": "GSSDK.GSKCameraViewController",
|
|
6095
|
+
"usr": "c:@M@GSSDK@objc(cs)GSKCameraViewController"
|
|
6096
|
+
}
|
|
6097
|
+
],
|
|
6098
|
+
"declKind": "Func",
|
|
6099
|
+
"usr": "c:@M@GSSDK@objc(pl)GSKCameraViewControllerDelegate(im)cameraViewControllerShouldSnapPhoto:",
|
|
6100
|
+
"mangledName": "$s5GSSDK31GSKCameraViewControllerDelegateP06cameracD15ShouldSnapPhotoySbAA0bcD0CF",
|
|
6101
|
+
"moduleName": "GSSDK",
|
|
6102
|
+
"genericSig": "<τ_0_0 where τ_0_0 : GSSDK.GSKCameraViewControllerDelegate>",
|
|
6103
|
+
"sugared_genericSig": "<Self where Self : GSSDK.GSKCameraViewControllerDelegate>",
|
|
6104
|
+
"protocolReq": true,
|
|
6105
|
+
"declAttributes": [
|
|
6106
|
+
"Custom",
|
|
6107
|
+
"Optional",
|
|
6108
|
+
"ObjC",
|
|
6109
|
+
"RawDocComment"
|
|
6110
|
+
],
|
|
6111
|
+
"reqNewWitnessTableEntry": true,
|
|
6112
|
+
"funcSelfKind": "NonMutating"
|
|
6113
|
+
},
|
|
6080
6114
|
{
|
|
6081
6115
|
"kind": "Function",
|
|
6082
6116
|
"name": "cameraViewController",
|
|
@@ -22828,6 +22862,13 @@
|
|
|
22828
22862
|
"declKind": "Import",
|
|
22829
22863
|
"moduleName": "GSSDK"
|
|
22830
22864
|
},
|
|
22865
|
+
{
|
|
22866
|
+
"kind": "Import",
|
|
22867
|
+
"name": "UIKit",
|
|
22868
|
+
"printedName": "UIKit",
|
|
22869
|
+
"declKind": "Import",
|
|
22870
|
+
"moduleName": "GSSDK"
|
|
22871
|
+
},
|
|
22831
22872
|
{
|
|
22832
22873
|
"kind": "TypeDecl",
|
|
22833
22874
|
"name": "GSKScanFlowConfiguration",
|
|
@@ -32402,6 +32443,13 @@
|
|
|
32402
32443
|
"RawDocComment"
|
|
32403
32444
|
]
|
|
32404
32445
|
},
|
|
32446
|
+
{
|
|
32447
|
+
"kind": "Import",
|
|
32448
|
+
"name": "Combine",
|
|
32449
|
+
"printedName": "Combine",
|
|
32450
|
+
"declKind": "Import",
|
|
32451
|
+
"moduleName": "GSSDK"
|
|
32452
|
+
},
|
|
32405
32453
|
{
|
|
32406
32454
|
"kind": "Import",
|
|
32407
32455
|
"name": "UIKit",
|
|
@@ -42089,16 +42137,16 @@
|
|
|
42089
42137
|
{
|
|
42090
42138
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/GSKScanFlowFeatureFlags.swift",
|
|
42091
42139
|
"kind": "BooleanLiteral",
|
|
42092
|
-
"offset":
|
|
42140
|
+
"offset": 338,
|
|
42093
42141
|
"length": 4,
|
|
42094
42142
|
"value": "true"
|
|
42095
42143
|
},
|
|
42096
42144
|
{
|
|
42097
|
-
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/
|
|
42098
|
-
"kind": "
|
|
42099
|
-
"offset":
|
|
42100
|
-
"length":
|
|
42101
|
-
"value": "
|
|
42145
|
+
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/GSKUIPhotoLibraryPresenter.swift",
|
|
42146
|
+
"kind": "BooleanLiteral",
|
|
42147
|
+
"offset": 260,
|
|
42148
|
+
"length": 5,
|
|
42149
|
+
"value": "false"
|
|
42102
42150
|
},
|
|
42103
42151
|
{
|
|
42104
42152
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Models\/GSKScanFlowConfiguration.swift",
|
|
@@ -42390,21 +42438,21 @@
|
|
|
42390
42438
|
{
|
|
42391
42439
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Models\/GSKScanFlowScanInternal.swift",
|
|
42392
42440
|
"kind": "IntegerLiteral",
|
|
42393
|
-
"offset":
|
|
42441
|
+
"offset": 5537,
|
|
42394
42442
|
"length": 5,
|
|
42395
42443
|
"value": "1"
|
|
42396
42444
|
},
|
|
42397
42445
|
{
|
|
42398
42446
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Models\/GSKScanFlowScanInternal.swift",
|
|
42399
42447
|
"kind": "IntegerLiteral",
|
|
42400
|
-
"offset":
|
|
42448
|
+
"offset": 5544,
|
|
42401
42449
|
"length": 4,
|
|
42402
42450
|
"value": "2"
|
|
42403
42451
|
},
|
|
42404
42452
|
{
|
|
42405
42453
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Models\/GSKScanFlowScanInternal.swift",
|
|
42406
42454
|
"kind": "IntegerLiteral",
|
|
42407
|
-
"offset":
|
|
42455
|
+
"offset": 5550,
|
|
42408
42456
|
"length": 4,
|
|
42409
42457
|
"value": "3"
|
|
42410
42458
|
},
|
|
@@ -42663,14 +42711,14 @@
|
|
|
42663
42711
|
{
|
|
42664
42712
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/View Controllers\/GSKUIDocumentCameraViewController.swift",
|
|
42665
42713
|
"kind": "FloatLiteral",
|
|
42666
|
-
"offset":
|
|
42714
|
+
"offset": 10736,
|
|
42667
42715
|
"length": 4,
|
|
42668
42716
|
"value": "62.0"
|
|
42669
42717
|
},
|
|
42670
42718
|
{
|
|
42671
42719
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/View Controllers\/GSKUIDocumentCameraViewController.swift",
|
|
42672
42720
|
"kind": "FloatLiteral",
|
|
42673
|
-
"offset":
|
|
42721
|
+
"offset": 10840,
|
|
42674
42722
|
"length": 4,
|
|
42675
42723
|
"value": "44.0"
|
|
42676
42724
|
},
|
|
@@ -42691,7 +42739,7 @@
|
|
|
42691
42739
|
{
|
|
42692
42740
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/View Controllers\/GSKUIPostProcessingToolbarController.swift",
|
|
42693
42741
|
"kind": "BooleanLiteral",
|
|
42694
|
-
"offset":
|
|
42742
|
+
"offset": 6246,
|
|
42695
42743
|
"length": 5,
|
|
42696
42744
|
"value": "false"
|
|
42697
42745
|
},
|
|
@@ -42747,49 +42795,49 @@
|
|
|
42747
42795
|
{
|
|
42748
42796
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUIScanCollectionView.swift",
|
|
42749
42797
|
"kind": "BooleanLiteral",
|
|
42750
|
-
"offset":
|
|
42798
|
+
"offset": 1457,
|
|
42751
42799
|
"length": 5,
|
|
42752
42800
|
"value": "false"
|
|
42753
42801
|
},
|
|
42754
42802
|
{
|
|
42755
42803
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUIScanCollectionView.swift",
|
|
42756
42804
|
"kind": "BooleanLiteral",
|
|
42757
|
-
"offset":
|
|
42805
|
+
"offset": 1568,
|
|
42758
42806
|
"length": 5,
|
|
42759
42807
|
"value": "false"
|
|
42760
42808
|
},
|
|
42761
42809
|
{
|
|
42762
42810
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUIScanCollectionView.swift",
|
|
42763
42811
|
"kind": "IntegerLiteral",
|
|
42764
|
-
"offset":
|
|
42812
|
+
"offset": 13659,
|
|
42765
42813
|
"length": 1,
|
|
42766
42814
|
"value": "4"
|
|
42767
42815
|
},
|
|
42768
42816
|
{
|
|
42769
42817
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUIScanCollectionView.swift",
|
|
42770
42818
|
"kind": "StringLiteral",
|
|
42771
|
-
"offset":
|
|
42819
|
+
"offset": 17036,
|
|
42772
42820
|
"length": 30,
|
|
42773
42821
|
"value": "\"GSKUIScanCollectionView.Cell\""
|
|
42774
42822
|
},
|
|
42775
42823
|
{
|
|
42776
42824
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUIScanCollectionView.swift",
|
|
42777
42825
|
"kind": "IntegerLiteral",
|
|
42778
|
-
"offset":
|
|
42826
|
+
"offset": 17100,
|
|
42779
42827
|
"length": 1,
|
|
42780
42828
|
"value": "3"
|
|
42781
42829
|
},
|
|
42782
42830
|
{
|
|
42783
42831
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUIScanCollectionView.swift",
|
|
42784
42832
|
"kind": "IntegerLiteral",
|
|
42785
|
-
"offset":
|
|
42833
|
+
"offset": 17158,
|
|
42786
42834
|
"length": 2,
|
|
42787
42835
|
"value": "28"
|
|
42788
42836
|
},
|
|
42789
42837
|
{
|
|
42790
42838
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUIScanCollectionView.swift",
|
|
42791
42839
|
"kind": "IntegerLiteral",
|
|
42792
|
-
"offset":
|
|
42840
|
+
"offset": 17208,
|
|
42793
42841
|
"length": 2,
|
|
42794
42842
|
"value": "12"
|
|
42795
42843
|
},
|
|
@@ -42873,21 +42921,21 @@
|
|
|
42873
42921
|
{
|
|
42874
42922
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUserGuidanceLabel.swift",
|
|
42875
42923
|
"kind": "FloatLiteral",
|
|
42876
|
-
"offset":
|
|
42924
|
+
"offset": 2659,
|
|
42877
42925
|
"length": 3,
|
|
42878
42926
|
"value": "5.0"
|
|
42879
42927
|
},
|
|
42880
42928
|
{
|
|
42881
42929
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUserGuidanceLabel.swift",
|
|
42882
42930
|
"kind": "FloatLiteral",
|
|
42883
|
-
"offset":
|
|
42931
|
+
"offset": 2698,
|
|
42884
42932
|
"length": 4,
|
|
42885
42933
|
"value": "12.0"
|
|
42886
42934
|
},
|
|
42887
42935
|
{
|
|
42888
42936
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUserGuidanceLabel.swift",
|
|
42889
42937
|
"kind": "IntegerLiteral",
|
|
42890
|
-
"offset":
|
|
42938
|
+
"offset": 2750,
|
|
42891
42939
|
"length": 2,
|
|
42892
42940
|
"value": "20"
|
|
42893
42941
|
},
|
|
@@ -256,6 +256,7 @@ extension GSSDK.GSKCameraViewController {
|
|
|
256
256
|
@objc @_Concurrency.MainActor optional func cameraViewController(_ cameraViewController: GSSDK.GSKCameraViewController, didFindDocumentWithQuadrangle quadrangle: GSSDK.GSKQuadrangle)
|
|
257
257
|
@objc @_Concurrency.MainActor optional func cameraViewControllerFailedToFindDocument(_ cameraViewController: GSSDK.GSKCameraViewController)
|
|
258
258
|
@objc @_Concurrency.MainActor optional func cameraViewControllerPhotoStabilizationDidStart(_ cameraViewController: GSSDK.GSKCameraViewController)
|
|
259
|
+
@objc @_Concurrency.MainActor optional func cameraViewControllerShouldSnapPhoto(_ cameraViewController: GSSDK.GSKCameraViewController) -> Swift.Bool
|
|
259
260
|
@objc @_Concurrency.MainActor optional func cameraViewController(_ cameraViewController: GSSDK.GSKCameraViewController, willSnapPhotoWithQuadrangle quadrangle: GSSDK.GSKQuadrangle)
|
|
260
261
|
@objc @_Concurrency.MainActor optional func cameraViewControllerDidSnapPhoto(_ cameraViewController: GSSDK.GSKCameraViewController)
|
|
261
262
|
@objc @_Concurrency.MainActor optional func cameraViewController(_ cameraViewController: GSSDK.GSKCameraViewController, didGenerateScan scan: GSSDK.GSKScan)
|
|
Binary file
|
|
@@ -256,6 +256,7 @@ extension GSSDK.GSKCameraViewController {
|
|
|
256
256
|
@objc @_Concurrency.MainActor optional func cameraViewController(_ cameraViewController: GSSDK.GSKCameraViewController, didFindDocumentWithQuadrangle quadrangle: GSSDK.GSKQuadrangle)
|
|
257
257
|
@objc @_Concurrency.MainActor optional func cameraViewControllerFailedToFindDocument(_ cameraViewController: GSSDK.GSKCameraViewController)
|
|
258
258
|
@objc @_Concurrency.MainActor optional func cameraViewControllerPhotoStabilizationDidStart(_ cameraViewController: GSSDK.GSKCameraViewController)
|
|
259
|
+
@objc @_Concurrency.MainActor optional func cameraViewControllerShouldSnapPhoto(_ cameraViewController: GSSDK.GSKCameraViewController) -> Swift.Bool
|
|
259
260
|
@objc @_Concurrency.MainActor optional func cameraViewController(_ cameraViewController: GSSDK.GSKCameraViewController, willSnapPhotoWithQuadrangle quadrangle: GSSDK.GSKQuadrangle)
|
|
260
261
|
@objc @_Concurrency.MainActor optional func cameraViewControllerDidSnapPhoto(_ cameraViewController: GSSDK.GSKCameraViewController)
|
|
261
262
|
@objc @_Concurrency.MainActor optional func cameraViewController(_ cameraViewController: GSSDK.GSKCameraViewController, didGenerateScan scan: GSSDK.GSKScan)
|
|
Binary file
|
|
Binary file
|
package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/Headers/GSSDK-Swift.h
CHANGED
|
@@ -708,6 +708,11 @@ SWIFT_PROTOCOL("_TtP5GSSDK31GSKCameraViewControllerDelegate_")
|
|
|
708
708
|
/// \param cameraViewController The camera view controller
|
|
709
709
|
///
|
|
710
710
|
- (void)cameraViewControllerPhotoStabilizationDidStart:(GSKCameraViewController * _Nonnull)cameraViewController;
|
|
711
|
+
/// The camera view controller is about to decide whether to automatically take a photo because the detection was stable enough.
|
|
712
|
+
/// This is an override point where you can return <code>false</code> to stop that automatic process from proceeding.
|
|
713
|
+
/// \param cameraViewController The camera view controller
|
|
714
|
+
///
|
|
715
|
+
- (BOOL)cameraViewControllerShouldSnapPhoto:(GSKCameraViewController * _Nonnull)cameraViewController SWIFT_WARN_UNUSED_RESULT;
|
|
711
716
|
/// The camera view controller is going to automatically take a photo because the detection was stable enough.
|
|
712
717
|
/// The photo taking is underway and cannot be interrupted at this stage.
|
|
713
718
|
/// \param cameraViewController The camera view controller
|
|
@@ -2426,6 +2431,11 @@ SWIFT_PROTOCOL("_TtP5GSSDK31GSKCameraViewControllerDelegate_")
|
|
|
2426
2431
|
/// \param cameraViewController The camera view controller
|
|
2427
2432
|
///
|
|
2428
2433
|
- (void)cameraViewControllerPhotoStabilizationDidStart:(GSKCameraViewController * _Nonnull)cameraViewController;
|
|
2434
|
+
/// The camera view controller is about to decide whether to automatically take a photo because the detection was stable enough.
|
|
2435
|
+
/// This is an override point where you can return <code>false</code> to stop that automatic process from proceeding.
|
|
2436
|
+
/// \param cameraViewController The camera view controller
|
|
2437
|
+
///
|
|
2438
|
+
- (BOOL)cameraViewControllerShouldSnapPhoto:(GSKCameraViewController * _Nonnull)cameraViewController SWIFT_WARN_UNUSED_RESULT;
|
|
2429
2439
|
/// The camera view controller is going to automatically take a photo because the detection was stable enough.
|
|
2430
2440
|
/// The photo taking is underway and cannot be interrupted at this stage.
|
|
2431
2441
|
/// \param cameraViewController The camera view controller
|
|
Binary file
|
|
@@ -6077,6 +6077,40 @@
|
|
|
6077
6077
|
"reqNewWitnessTableEntry": true,
|
|
6078
6078
|
"funcSelfKind": "NonMutating"
|
|
6079
6079
|
},
|
|
6080
|
+
{
|
|
6081
|
+
"kind": "Function",
|
|
6082
|
+
"name": "cameraViewControllerShouldSnapPhoto",
|
|
6083
|
+
"printedName": "cameraViewControllerShouldSnapPhoto(_:)",
|
|
6084
|
+
"children": [
|
|
6085
|
+
{
|
|
6086
|
+
"kind": "TypeNominal",
|
|
6087
|
+
"name": "Bool",
|
|
6088
|
+
"printedName": "Swift.Bool",
|
|
6089
|
+
"usr": "s:Sb"
|
|
6090
|
+
},
|
|
6091
|
+
{
|
|
6092
|
+
"kind": "TypeNominal",
|
|
6093
|
+
"name": "GSKCameraViewController",
|
|
6094
|
+
"printedName": "GSSDK.GSKCameraViewController",
|
|
6095
|
+
"usr": "c:@M@GSSDK@objc(cs)GSKCameraViewController"
|
|
6096
|
+
}
|
|
6097
|
+
],
|
|
6098
|
+
"declKind": "Func",
|
|
6099
|
+
"usr": "c:@M@GSSDK@objc(pl)GSKCameraViewControllerDelegate(im)cameraViewControllerShouldSnapPhoto:",
|
|
6100
|
+
"mangledName": "$s5GSSDK31GSKCameraViewControllerDelegateP06cameracD15ShouldSnapPhotoySbAA0bcD0CF",
|
|
6101
|
+
"moduleName": "GSSDK",
|
|
6102
|
+
"genericSig": "<τ_0_0 where τ_0_0 : GSSDK.GSKCameraViewControllerDelegate>",
|
|
6103
|
+
"sugared_genericSig": "<Self where Self : GSSDK.GSKCameraViewControllerDelegate>",
|
|
6104
|
+
"protocolReq": true,
|
|
6105
|
+
"declAttributes": [
|
|
6106
|
+
"Custom",
|
|
6107
|
+
"Optional",
|
|
6108
|
+
"ObjC",
|
|
6109
|
+
"RawDocComment"
|
|
6110
|
+
],
|
|
6111
|
+
"reqNewWitnessTableEntry": true,
|
|
6112
|
+
"funcSelfKind": "NonMutating"
|
|
6113
|
+
},
|
|
6080
6114
|
{
|
|
6081
6115
|
"kind": "Function",
|
|
6082
6116
|
"name": "cameraViewController",
|
|
@@ -22828,6 +22862,13 @@
|
|
|
22828
22862
|
"declKind": "Import",
|
|
22829
22863
|
"moduleName": "GSSDK"
|
|
22830
22864
|
},
|
|
22865
|
+
{
|
|
22866
|
+
"kind": "Import",
|
|
22867
|
+
"name": "UIKit",
|
|
22868
|
+
"printedName": "UIKit",
|
|
22869
|
+
"declKind": "Import",
|
|
22870
|
+
"moduleName": "GSSDK"
|
|
22871
|
+
},
|
|
22831
22872
|
{
|
|
22832
22873
|
"kind": "TypeDecl",
|
|
22833
22874
|
"name": "GSKScanFlowConfiguration",
|
|
@@ -32402,6 +32443,13 @@
|
|
|
32402
32443
|
"RawDocComment"
|
|
32403
32444
|
]
|
|
32404
32445
|
},
|
|
32446
|
+
{
|
|
32447
|
+
"kind": "Import",
|
|
32448
|
+
"name": "Combine",
|
|
32449
|
+
"printedName": "Combine",
|
|
32450
|
+
"declKind": "Import",
|
|
32451
|
+
"moduleName": "GSSDK"
|
|
32452
|
+
},
|
|
32405
32453
|
{
|
|
32406
32454
|
"kind": "Import",
|
|
32407
32455
|
"name": "UIKit",
|
|
@@ -42089,16 +42137,16 @@
|
|
|
42089
42137
|
{
|
|
42090
42138
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/GSKScanFlowFeatureFlags.swift",
|
|
42091
42139
|
"kind": "BooleanLiteral",
|
|
42092
|
-
"offset":
|
|
42140
|
+
"offset": 338,
|
|
42093
42141
|
"length": 4,
|
|
42094
42142
|
"value": "true"
|
|
42095
42143
|
},
|
|
42096
42144
|
{
|
|
42097
|
-
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/
|
|
42098
|
-
"kind": "
|
|
42099
|
-
"offset":
|
|
42100
|
-
"length":
|
|
42101
|
-
"value": "
|
|
42145
|
+
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/GSKUIPhotoLibraryPresenter.swift",
|
|
42146
|
+
"kind": "BooleanLiteral",
|
|
42147
|
+
"offset": 260,
|
|
42148
|
+
"length": 5,
|
|
42149
|
+
"value": "false"
|
|
42102
42150
|
},
|
|
42103
42151
|
{
|
|
42104
42152
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Models\/GSKScanFlowConfiguration.swift",
|
|
@@ -42390,21 +42438,21 @@
|
|
|
42390
42438
|
{
|
|
42391
42439
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Models\/GSKScanFlowScanInternal.swift",
|
|
42392
42440
|
"kind": "IntegerLiteral",
|
|
42393
|
-
"offset":
|
|
42441
|
+
"offset": 5537,
|
|
42394
42442
|
"length": 5,
|
|
42395
42443
|
"value": "1"
|
|
42396
42444
|
},
|
|
42397
42445
|
{
|
|
42398
42446
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Models\/GSKScanFlowScanInternal.swift",
|
|
42399
42447
|
"kind": "IntegerLiteral",
|
|
42400
|
-
"offset":
|
|
42448
|
+
"offset": 5544,
|
|
42401
42449
|
"length": 4,
|
|
42402
42450
|
"value": "2"
|
|
42403
42451
|
},
|
|
42404
42452
|
{
|
|
42405
42453
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Models\/GSKScanFlowScanInternal.swift",
|
|
42406
42454
|
"kind": "IntegerLiteral",
|
|
42407
|
-
"offset":
|
|
42455
|
+
"offset": 5550,
|
|
42408
42456
|
"length": 4,
|
|
42409
42457
|
"value": "3"
|
|
42410
42458
|
},
|
|
@@ -42663,14 +42711,14 @@
|
|
|
42663
42711
|
{
|
|
42664
42712
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/View Controllers\/GSKUIDocumentCameraViewController.swift",
|
|
42665
42713
|
"kind": "FloatLiteral",
|
|
42666
|
-
"offset":
|
|
42714
|
+
"offset": 10736,
|
|
42667
42715
|
"length": 4,
|
|
42668
42716
|
"value": "62.0"
|
|
42669
42717
|
},
|
|
42670
42718
|
{
|
|
42671
42719
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/View Controllers\/GSKUIDocumentCameraViewController.swift",
|
|
42672
42720
|
"kind": "FloatLiteral",
|
|
42673
|
-
"offset":
|
|
42721
|
+
"offset": 10840,
|
|
42674
42722
|
"length": 4,
|
|
42675
42723
|
"value": "44.0"
|
|
42676
42724
|
},
|
|
@@ -42691,7 +42739,7 @@
|
|
|
42691
42739
|
{
|
|
42692
42740
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/View Controllers\/GSKUIPostProcessingToolbarController.swift",
|
|
42693
42741
|
"kind": "BooleanLiteral",
|
|
42694
|
-
"offset":
|
|
42742
|
+
"offset": 6246,
|
|
42695
42743
|
"length": 5,
|
|
42696
42744
|
"value": "false"
|
|
42697
42745
|
},
|
|
@@ -42747,49 +42795,49 @@
|
|
|
42747
42795
|
{
|
|
42748
42796
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUIScanCollectionView.swift",
|
|
42749
42797
|
"kind": "BooleanLiteral",
|
|
42750
|
-
"offset":
|
|
42798
|
+
"offset": 1457,
|
|
42751
42799
|
"length": 5,
|
|
42752
42800
|
"value": "false"
|
|
42753
42801
|
},
|
|
42754
42802
|
{
|
|
42755
42803
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUIScanCollectionView.swift",
|
|
42756
42804
|
"kind": "BooleanLiteral",
|
|
42757
|
-
"offset":
|
|
42805
|
+
"offset": 1568,
|
|
42758
42806
|
"length": 5,
|
|
42759
42807
|
"value": "false"
|
|
42760
42808
|
},
|
|
42761
42809
|
{
|
|
42762
42810
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUIScanCollectionView.swift",
|
|
42763
42811
|
"kind": "IntegerLiteral",
|
|
42764
|
-
"offset":
|
|
42812
|
+
"offset": 13659,
|
|
42765
42813
|
"length": 1,
|
|
42766
42814
|
"value": "4"
|
|
42767
42815
|
},
|
|
42768
42816
|
{
|
|
42769
42817
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUIScanCollectionView.swift",
|
|
42770
42818
|
"kind": "StringLiteral",
|
|
42771
|
-
"offset":
|
|
42819
|
+
"offset": 17036,
|
|
42772
42820
|
"length": 30,
|
|
42773
42821
|
"value": "\"GSKUIScanCollectionView.Cell\""
|
|
42774
42822
|
},
|
|
42775
42823
|
{
|
|
42776
42824
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUIScanCollectionView.swift",
|
|
42777
42825
|
"kind": "IntegerLiteral",
|
|
42778
|
-
"offset":
|
|
42826
|
+
"offset": 17100,
|
|
42779
42827
|
"length": 1,
|
|
42780
42828
|
"value": "3"
|
|
42781
42829
|
},
|
|
42782
42830
|
{
|
|
42783
42831
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUIScanCollectionView.swift",
|
|
42784
42832
|
"kind": "IntegerLiteral",
|
|
42785
|
-
"offset":
|
|
42833
|
+
"offset": 17158,
|
|
42786
42834
|
"length": 2,
|
|
42787
42835
|
"value": "28"
|
|
42788
42836
|
},
|
|
42789
42837
|
{
|
|
42790
42838
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUIScanCollectionView.swift",
|
|
42791
42839
|
"kind": "IntegerLiteral",
|
|
42792
|
-
"offset":
|
|
42840
|
+
"offset": 17208,
|
|
42793
42841
|
"length": 2,
|
|
42794
42842
|
"value": "12"
|
|
42795
42843
|
},
|
|
@@ -42873,21 +42921,21 @@
|
|
|
42873
42921
|
{
|
|
42874
42922
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUserGuidanceLabel.swift",
|
|
42875
42923
|
"kind": "FloatLiteral",
|
|
42876
|
-
"offset":
|
|
42924
|
+
"offset": 2659,
|
|
42877
42925
|
"length": 3,
|
|
42878
42926
|
"value": "5.0"
|
|
42879
42927
|
},
|
|
42880
42928
|
{
|
|
42881
42929
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUserGuidanceLabel.swift",
|
|
42882
42930
|
"kind": "FloatLiteral",
|
|
42883
|
-
"offset":
|
|
42931
|
+
"offset": 2698,
|
|
42884
42932
|
"length": 4,
|
|
42885
42933
|
"value": "12.0"
|
|
42886
42934
|
},
|
|
42887
42935
|
{
|
|
42888
42936
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUserGuidanceLabel.swift",
|
|
42889
42937
|
"kind": "IntegerLiteral",
|
|
42890
|
-
"offset":
|
|
42938
|
+
"offset": 2750,
|
|
42891
42939
|
"length": 2,
|
|
42892
42940
|
"value": "20"
|
|
42893
42941
|
},
|
|
@@ -256,6 +256,7 @@ extension GSSDK.GSKCameraViewController {
|
|
|
256
256
|
@objc @_Concurrency.MainActor optional func cameraViewController(_ cameraViewController: GSSDK.GSKCameraViewController, didFindDocumentWithQuadrangle quadrangle: GSSDK.GSKQuadrangle)
|
|
257
257
|
@objc @_Concurrency.MainActor optional func cameraViewControllerFailedToFindDocument(_ cameraViewController: GSSDK.GSKCameraViewController)
|
|
258
258
|
@objc @_Concurrency.MainActor optional func cameraViewControllerPhotoStabilizationDidStart(_ cameraViewController: GSSDK.GSKCameraViewController)
|
|
259
|
+
@objc @_Concurrency.MainActor optional func cameraViewControllerShouldSnapPhoto(_ cameraViewController: GSSDK.GSKCameraViewController) -> Swift.Bool
|
|
259
260
|
@objc @_Concurrency.MainActor optional func cameraViewController(_ cameraViewController: GSSDK.GSKCameraViewController, willSnapPhotoWithQuadrangle quadrangle: GSSDK.GSKQuadrangle)
|
|
260
261
|
@objc @_Concurrency.MainActor optional func cameraViewControllerDidSnapPhoto(_ cameraViewController: GSSDK.GSKCameraViewController)
|
|
261
262
|
@objc @_Concurrency.MainActor optional func cameraViewController(_ cameraViewController: GSSDK.GSKCameraViewController, didGenerateScan scan: GSSDK.GSKScan)
|
|
Binary file
|
|
@@ -256,6 +256,7 @@ extension GSSDK.GSKCameraViewController {
|
|
|
256
256
|
@objc @_Concurrency.MainActor optional func cameraViewController(_ cameraViewController: GSSDK.GSKCameraViewController, didFindDocumentWithQuadrangle quadrangle: GSSDK.GSKQuadrangle)
|
|
257
257
|
@objc @_Concurrency.MainActor optional func cameraViewControllerFailedToFindDocument(_ cameraViewController: GSSDK.GSKCameraViewController)
|
|
258
258
|
@objc @_Concurrency.MainActor optional func cameraViewControllerPhotoStabilizationDidStart(_ cameraViewController: GSSDK.GSKCameraViewController)
|
|
259
|
+
@objc @_Concurrency.MainActor optional func cameraViewControllerShouldSnapPhoto(_ cameraViewController: GSSDK.GSKCameraViewController) -> Swift.Bool
|
|
259
260
|
@objc @_Concurrency.MainActor optional func cameraViewController(_ cameraViewController: GSSDK.GSKCameraViewController, willSnapPhotoWithQuadrangle quadrangle: GSSDK.GSKQuadrangle)
|
|
260
261
|
@objc @_Concurrency.MainActor optional func cameraViewControllerDidSnapPhoto(_ cameraViewController: GSSDK.GSKCameraViewController)
|
|
261
262
|
@objc @_Concurrency.MainActor optional func cameraViewController(_ cameraViewController: GSSDK.GSKCameraViewController, didGenerateScan scan: GSSDK.GSKScan)
|
|
@@ -6077,6 +6077,40 @@
|
|
|
6077
6077
|
"reqNewWitnessTableEntry": true,
|
|
6078
6078
|
"funcSelfKind": "NonMutating"
|
|
6079
6079
|
},
|
|
6080
|
+
{
|
|
6081
|
+
"kind": "Function",
|
|
6082
|
+
"name": "cameraViewControllerShouldSnapPhoto",
|
|
6083
|
+
"printedName": "cameraViewControllerShouldSnapPhoto(_:)",
|
|
6084
|
+
"children": [
|
|
6085
|
+
{
|
|
6086
|
+
"kind": "TypeNominal",
|
|
6087
|
+
"name": "Bool",
|
|
6088
|
+
"printedName": "Swift.Bool",
|
|
6089
|
+
"usr": "s:Sb"
|
|
6090
|
+
},
|
|
6091
|
+
{
|
|
6092
|
+
"kind": "TypeNominal",
|
|
6093
|
+
"name": "GSKCameraViewController",
|
|
6094
|
+
"printedName": "GSSDK.GSKCameraViewController",
|
|
6095
|
+
"usr": "c:@M@GSSDK@objc(cs)GSKCameraViewController"
|
|
6096
|
+
}
|
|
6097
|
+
],
|
|
6098
|
+
"declKind": "Func",
|
|
6099
|
+
"usr": "c:@M@GSSDK@objc(pl)GSKCameraViewControllerDelegate(im)cameraViewControllerShouldSnapPhoto:",
|
|
6100
|
+
"mangledName": "$s5GSSDK31GSKCameraViewControllerDelegateP06cameracD15ShouldSnapPhotoySbAA0bcD0CF",
|
|
6101
|
+
"moduleName": "GSSDK",
|
|
6102
|
+
"genericSig": "<τ_0_0 where τ_0_0 : GSSDK.GSKCameraViewControllerDelegate>",
|
|
6103
|
+
"sugared_genericSig": "<Self where Self : GSSDK.GSKCameraViewControllerDelegate>",
|
|
6104
|
+
"protocolReq": true,
|
|
6105
|
+
"declAttributes": [
|
|
6106
|
+
"Custom",
|
|
6107
|
+
"Optional",
|
|
6108
|
+
"ObjC",
|
|
6109
|
+
"RawDocComment"
|
|
6110
|
+
],
|
|
6111
|
+
"reqNewWitnessTableEntry": true,
|
|
6112
|
+
"funcSelfKind": "NonMutating"
|
|
6113
|
+
},
|
|
6080
6114
|
{
|
|
6081
6115
|
"kind": "Function",
|
|
6082
6116
|
"name": "cameraViewController",
|
|
@@ -22828,6 +22862,13 @@
|
|
|
22828
22862
|
"declKind": "Import",
|
|
22829
22863
|
"moduleName": "GSSDK"
|
|
22830
22864
|
},
|
|
22865
|
+
{
|
|
22866
|
+
"kind": "Import",
|
|
22867
|
+
"name": "UIKit",
|
|
22868
|
+
"printedName": "UIKit",
|
|
22869
|
+
"declKind": "Import",
|
|
22870
|
+
"moduleName": "GSSDK"
|
|
22871
|
+
},
|
|
22831
22872
|
{
|
|
22832
22873
|
"kind": "TypeDecl",
|
|
22833
22874
|
"name": "GSKScanFlowConfiguration",
|
|
@@ -32402,6 +32443,13 @@
|
|
|
32402
32443
|
"RawDocComment"
|
|
32403
32444
|
]
|
|
32404
32445
|
},
|
|
32446
|
+
{
|
|
32447
|
+
"kind": "Import",
|
|
32448
|
+
"name": "Combine",
|
|
32449
|
+
"printedName": "Combine",
|
|
32450
|
+
"declKind": "Import",
|
|
32451
|
+
"moduleName": "GSSDK"
|
|
32452
|
+
},
|
|
32405
32453
|
{
|
|
32406
32454
|
"kind": "Import",
|
|
32407
32455
|
"name": "UIKit",
|
|
@@ -42089,16 +42137,16 @@
|
|
|
42089
42137
|
{
|
|
42090
42138
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/GSKScanFlowFeatureFlags.swift",
|
|
42091
42139
|
"kind": "BooleanLiteral",
|
|
42092
|
-
"offset":
|
|
42140
|
+
"offset": 338,
|
|
42093
42141
|
"length": 4,
|
|
42094
42142
|
"value": "true"
|
|
42095
42143
|
},
|
|
42096
42144
|
{
|
|
42097
|
-
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/
|
|
42098
|
-
"kind": "
|
|
42099
|
-
"offset":
|
|
42100
|
-
"length":
|
|
42101
|
-
"value": "
|
|
42145
|
+
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/GSKUIPhotoLibraryPresenter.swift",
|
|
42146
|
+
"kind": "BooleanLiteral",
|
|
42147
|
+
"offset": 260,
|
|
42148
|
+
"length": 5,
|
|
42149
|
+
"value": "false"
|
|
42102
42150
|
},
|
|
42103
42151
|
{
|
|
42104
42152
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Models\/GSKScanFlowConfiguration.swift",
|
|
@@ -42390,21 +42438,21 @@
|
|
|
42390
42438
|
{
|
|
42391
42439
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Models\/GSKScanFlowScanInternal.swift",
|
|
42392
42440
|
"kind": "IntegerLiteral",
|
|
42393
|
-
"offset":
|
|
42441
|
+
"offset": 5537,
|
|
42394
42442
|
"length": 5,
|
|
42395
42443
|
"value": "1"
|
|
42396
42444
|
},
|
|
42397
42445
|
{
|
|
42398
42446
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Models\/GSKScanFlowScanInternal.swift",
|
|
42399
42447
|
"kind": "IntegerLiteral",
|
|
42400
|
-
"offset":
|
|
42448
|
+
"offset": 5544,
|
|
42401
42449
|
"length": 4,
|
|
42402
42450
|
"value": "2"
|
|
42403
42451
|
},
|
|
42404
42452
|
{
|
|
42405
42453
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Models\/GSKScanFlowScanInternal.swift",
|
|
42406
42454
|
"kind": "IntegerLiteral",
|
|
42407
|
-
"offset":
|
|
42455
|
+
"offset": 5550,
|
|
42408
42456
|
"length": 4,
|
|
42409
42457
|
"value": "3"
|
|
42410
42458
|
},
|
|
@@ -42663,14 +42711,14 @@
|
|
|
42663
42711
|
{
|
|
42664
42712
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/View Controllers\/GSKUIDocumentCameraViewController.swift",
|
|
42665
42713
|
"kind": "FloatLiteral",
|
|
42666
|
-
"offset":
|
|
42714
|
+
"offset": 10736,
|
|
42667
42715
|
"length": 4,
|
|
42668
42716
|
"value": "62.0"
|
|
42669
42717
|
},
|
|
42670
42718
|
{
|
|
42671
42719
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/View Controllers\/GSKUIDocumentCameraViewController.swift",
|
|
42672
42720
|
"kind": "FloatLiteral",
|
|
42673
|
-
"offset":
|
|
42721
|
+
"offset": 10840,
|
|
42674
42722
|
"length": 4,
|
|
42675
42723
|
"value": "44.0"
|
|
42676
42724
|
},
|
|
@@ -42691,7 +42739,7 @@
|
|
|
42691
42739
|
{
|
|
42692
42740
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/View Controllers\/GSKUIPostProcessingToolbarController.swift",
|
|
42693
42741
|
"kind": "BooleanLiteral",
|
|
42694
|
-
"offset":
|
|
42742
|
+
"offset": 6246,
|
|
42695
42743
|
"length": 5,
|
|
42696
42744
|
"value": "false"
|
|
42697
42745
|
},
|
|
@@ -42747,49 +42795,49 @@
|
|
|
42747
42795
|
{
|
|
42748
42796
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUIScanCollectionView.swift",
|
|
42749
42797
|
"kind": "BooleanLiteral",
|
|
42750
|
-
"offset":
|
|
42798
|
+
"offset": 1457,
|
|
42751
42799
|
"length": 5,
|
|
42752
42800
|
"value": "false"
|
|
42753
42801
|
},
|
|
42754
42802
|
{
|
|
42755
42803
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUIScanCollectionView.swift",
|
|
42756
42804
|
"kind": "BooleanLiteral",
|
|
42757
|
-
"offset":
|
|
42805
|
+
"offset": 1568,
|
|
42758
42806
|
"length": 5,
|
|
42759
42807
|
"value": "false"
|
|
42760
42808
|
},
|
|
42761
42809
|
{
|
|
42762
42810
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUIScanCollectionView.swift",
|
|
42763
42811
|
"kind": "IntegerLiteral",
|
|
42764
|
-
"offset":
|
|
42812
|
+
"offset": 13659,
|
|
42765
42813
|
"length": 1,
|
|
42766
42814
|
"value": "4"
|
|
42767
42815
|
},
|
|
42768
42816
|
{
|
|
42769
42817
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUIScanCollectionView.swift",
|
|
42770
42818
|
"kind": "StringLiteral",
|
|
42771
|
-
"offset":
|
|
42819
|
+
"offset": 17036,
|
|
42772
42820
|
"length": 30,
|
|
42773
42821
|
"value": "\"GSKUIScanCollectionView.Cell\""
|
|
42774
42822
|
},
|
|
42775
42823
|
{
|
|
42776
42824
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUIScanCollectionView.swift",
|
|
42777
42825
|
"kind": "IntegerLiteral",
|
|
42778
|
-
"offset":
|
|
42826
|
+
"offset": 17100,
|
|
42779
42827
|
"length": 1,
|
|
42780
42828
|
"value": "3"
|
|
42781
42829
|
},
|
|
42782
42830
|
{
|
|
42783
42831
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUIScanCollectionView.swift",
|
|
42784
42832
|
"kind": "IntegerLiteral",
|
|
42785
|
-
"offset":
|
|
42833
|
+
"offset": 17158,
|
|
42786
42834
|
"length": 2,
|
|
42787
42835
|
"value": "28"
|
|
42788
42836
|
},
|
|
42789
42837
|
{
|
|
42790
42838
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUIScanCollectionView.swift",
|
|
42791
42839
|
"kind": "IntegerLiteral",
|
|
42792
|
-
"offset":
|
|
42840
|
+
"offset": 17208,
|
|
42793
42841
|
"length": 2,
|
|
42794
42842
|
"value": "12"
|
|
42795
42843
|
},
|
|
@@ -42873,21 +42921,21 @@
|
|
|
42873
42921
|
{
|
|
42874
42922
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUserGuidanceLabel.swift",
|
|
42875
42923
|
"kind": "FloatLiteral",
|
|
42876
|
-
"offset":
|
|
42924
|
+
"offset": 2659,
|
|
42877
42925
|
"length": 3,
|
|
42878
42926
|
"value": "5.0"
|
|
42879
42927
|
},
|
|
42880
42928
|
{
|
|
42881
42929
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUserGuidanceLabel.swift",
|
|
42882
42930
|
"kind": "FloatLiteral",
|
|
42883
|
-
"offset":
|
|
42931
|
+
"offset": 2698,
|
|
42884
42932
|
"length": 4,
|
|
42885
42933
|
"value": "12.0"
|
|
42886
42934
|
},
|
|
42887
42935
|
{
|
|
42888
42936
|
"filePath": "\/Users\/distiller\/project\/prj-ios\/GSSDK\/ScanFlow\/Views\/GSKUserGuidanceLabel.swift",
|
|
42889
42937
|
"kind": "IntegerLiteral",
|
|
42890
|
-
"offset":
|
|
42938
|
+
"offset": 2750,
|
|
42891
42939
|
"length": 2,
|
|
42892
42940
|
"value": "20"
|
|
42893
42941
|
},
|
|
@@ -256,6 +256,7 @@ extension GSSDK.GSKCameraViewController {
|
|
|
256
256
|
@objc @_Concurrency.MainActor optional func cameraViewController(_ cameraViewController: GSSDK.GSKCameraViewController, didFindDocumentWithQuadrangle quadrangle: GSSDK.GSKQuadrangle)
|
|
257
257
|
@objc @_Concurrency.MainActor optional func cameraViewControllerFailedToFindDocument(_ cameraViewController: GSSDK.GSKCameraViewController)
|
|
258
258
|
@objc @_Concurrency.MainActor optional func cameraViewControllerPhotoStabilizationDidStart(_ cameraViewController: GSSDK.GSKCameraViewController)
|
|
259
|
+
@objc @_Concurrency.MainActor optional func cameraViewControllerShouldSnapPhoto(_ cameraViewController: GSSDK.GSKCameraViewController) -> Swift.Bool
|
|
259
260
|
@objc @_Concurrency.MainActor optional func cameraViewController(_ cameraViewController: GSSDK.GSKCameraViewController, willSnapPhotoWithQuadrangle quadrangle: GSSDK.GSKQuadrangle)
|
|
260
261
|
@objc @_Concurrency.MainActor optional func cameraViewControllerDidSnapPhoto(_ cameraViewController: GSSDK.GSKCameraViewController)
|
|
261
262
|
@objc @_Concurrency.MainActor optional func cameraViewController(_ cameraViewController: GSSDK.GSKCameraViewController, didGenerateScan scan: GSSDK.GSKScan)
|
|
Binary file
|
|
@@ -256,6 +256,7 @@ extension GSSDK.GSKCameraViewController {
|
|
|
256
256
|
@objc @_Concurrency.MainActor optional func cameraViewController(_ cameraViewController: GSSDK.GSKCameraViewController, didFindDocumentWithQuadrangle quadrangle: GSSDK.GSKQuadrangle)
|
|
257
257
|
@objc @_Concurrency.MainActor optional func cameraViewControllerFailedToFindDocument(_ cameraViewController: GSSDK.GSKCameraViewController)
|
|
258
258
|
@objc @_Concurrency.MainActor optional func cameraViewControllerPhotoStabilizationDidStart(_ cameraViewController: GSSDK.GSKCameraViewController)
|
|
259
|
+
@objc @_Concurrency.MainActor optional func cameraViewControllerShouldSnapPhoto(_ cameraViewController: GSSDK.GSKCameraViewController) -> Swift.Bool
|
|
259
260
|
@objc @_Concurrency.MainActor optional func cameraViewController(_ cameraViewController: GSSDK.GSKCameraViewController, willSnapPhotoWithQuadrangle quadrangle: GSSDK.GSKQuadrangle)
|
|
260
261
|
@objc @_Concurrency.MainActor optional func cameraViewControllerDidSnapPhoto(_ cameraViewController: GSSDK.GSKCameraViewController)
|
|
261
262
|
@objc @_Concurrency.MainActor optional func cameraViewController(_ cameraViewController: GSSDK.GSKCameraViewController, didGenerateScan scan: GSSDK.GSKScan)
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thegrizzlylabs/react-native-genius-scan",
|
|
3
|
-
"version": "6.0.0-
|
|
3
|
+
"version": "6.0.0-beta12",
|
|
4
4
|
"description": "React Native Plugin for Genius Scan SDK",
|
|
5
5
|
"author": "TheGrizzlyLabs <sdk@thegrizzlylabs.com> (https://www.thegrizzlylabs.com/)",
|
|
6
6
|
"homepage": "https://geniusscansdk.com",
|