react-native-scanbot-barcode-scanner-sdk 7.1.2-rc.2 → 8.0.0-rc.1

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.
Files changed (682) hide show
  1. package/LICENSE +1 -1
  2. package/Libraries.txt +437 -17
  3. package/README.md +32 -34
  4. package/RNScanbotBarcodeSDK.podspec +3 -2
  5. package/android/gradle.properties +3 -3
  6. package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/ScanbotBarcodeSdkModule.kt +117 -69
  7. package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/ScanbotBarcodeSdkPluginResultDelegate.kt +3 -2
  8. package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/components/barcode_scanner_view/ScanbotBarcodeScannerView.kt +76 -50
  9. package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/components/barcode_scanner_view/ScanbotBarcodeScannerViewEvents.kt +24 -1
  10. package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/components/barcode_scanner_view/ScanbotBarcodeScannerViewManager.kt +66 -55
  11. package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/components/barcode_scanner_view/models/ScanbotBarcodeScannerModels.kt +1 -1
  12. package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/extensions/Extensions.kt +19 -0
  13. package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerLegacyView.h +8 -7
  14. package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerLegacyView.m +92 -221
  15. package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerView.h +12 -8
  16. package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerView.mm +147 -317
  17. package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewController+Utils.swift +74 -0
  18. package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewController.swift +429 -0
  19. package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewManager.mm +17 -23
  20. package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewOperators.h +95 -0
  21. package/ios/ScanbotBarcodeSdk.m +58 -76
  22. package/ios/ScanbotBarcodeSdkPluginResultDelegate.m +2 -6
  23. package/lib/commonjs/Barcode.js +51 -0
  24. package/lib/commonjs/Barcode.js.map +1 -0
  25. package/lib/commonjs/ImageProcessor.js +24 -0
  26. package/lib/commonjs/ImageProcessor.js.map +1 -0
  27. package/lib/commonjs/Sdk.js +57 -0
  28. package/lib/commonjs/Sdk.js.map +1 -0
  29. package/lib/commonjs/{component → components}/barcode-camera-view/ScanbotBarcodeCameraView.js +14 -9
  30. package/lib/commonjs/components/barcode-camera-view/ScanbotBarcodeCameraView.js.map +1 -0
  31. package/lib/commonjs/components/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js.map +1 -0
  32. package/lib/commonjs/components/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js.map +1 -0
  33. package/lib/commonjs/{component/barcode-camera-view → components}/index.js +3 -3
  34. package/lib/commonjs/components/index.js.map +1 -0
  35. package/lib/commonjs/components/spec/ScanbotBarcodeScannerViewNativeComponent.js.map +1 -0
  36. package/lib/commonjs/impl/BarcodeScannerImpl.js +59 -0
  37. package/lib/commonjs/impl/BarcodeScannerImpl.js.map +1 -0
  38. package/lib/commonjs/impl/ImageProcessorImpl.js +20 -0
  39. package/lib/commonjs/impl/ImageProcessorImpl.js.map +1 -0
  40. package/lib/commonjs/impl/SdkImpl.js +27 -0
  41. package/lib/commonjs/impl/SdkImpl.js.map +1 -0
  42. package/lib/commonjs/impl/index.js +39 -0
  43. package/lib/commonjs/impl/index.js.map +1 -0
  44. package/lib/commonjs/impl/scanbotBarcodeSDKModule.js +22 -0
  45. package/lib/commonjs/impl/scanbotBarcodeSDKModule.js.map +1 -0
  46. package/lib/commonjs/index.js +18 -162
  47. package/lib/commonjs/index.js.map +1 -1
  48. package/lib/commonjs/types/base/SdkConfiguration.js +106 -0
  49. package/lib/commonjs/types/base/SdkConfiguration.js.map +1 -0
  50. package/lib/commonjs/{base/barcodeSDKConfigurations.js → types/base/customTypes.js} +1 -1
  51. package/lib/commonjs/types/base/customTypes.js.map +1 -0
  52. package/lib/commonjs/types/base/errors.js +139 -0
  53. package/lib/commonjs/types/base/errors.js.map +1 -0
  54. package/lib/commonjs/types/base/index.js +50 -0
  55. package/lib/commonjs/types/base/index.js.map +1 -0
  56. package/lib/commonjs/types/base/utils.js +59 -0
  57. package/lib/commonjs/types/base/utils.js.map +1 -0
  58. package/lib/commonjs/{barcode → types/core/barcode}/BarcodeConfigurationTypes.js +244 -74
  59. package/lib/commonjs/types/core/barcode/BarcodeConfigurationTypes.js.map +1 -0
  60. package/lib/commonjs/{barcode → types/core/barcode}/BarcodeDocumentTypes.js +62 -10
  61. package/lib/commonjs/types/core/barcode/BarcodeDocumentTypes.js.map +1 -0
  62. package/lib/commonjs/{barcode → types/core/barcode}/BarcodeScannerTypes.js +39 -28
  63. package/lib/commonjs/types/core/barcode/BarcodeScannerTypes.js.map +1 -0
  64. package/lib/commonjs/{barcode → types/core/barcode}/BarcodeTypes.js +31 -12
  65. package/lib/commonjs/types/core/barcode/BarcodeTypes.js.map +1 -0
  66. package/lib/commonjs/types/core/barcode/index.js.map +1 -0
  67. package/lib/commonjs/types/core/camera/Camera.js +23 -0
  68. package/lib/commonjs/types/core/camera/Camera.js.map +1 -0
  69. package/lib/commonjs/types/core/camera/index.js +17 -0
  70. package/lib/commonjs/types/core/camera/index.js.map +1 -0
  71. package/lib/commonjs/types/core/common/CommonTypes.js +29 -0
  72. package/lib/commonjs/types/core/common/CommonTypes.js.map +1 -0
  73. package/lib/commonjs/{utils/json → types/core/common}/JsonSerializationTypes.js +2 -3
  74. package/lib/commonjs/types/core/common/JsonSerializationTypes.js.map +1 -0
  75. package/lib/commonjs/types/core/common/index.js +28 -0
  76. package/lib/commonjs/types/core/common/index.js.map +1 -0
  77. package/lib/commonjs/{documents → types/core/generic_document}/BarcodeDocumentModel.js +1131 -160
  78. package/lib/commonjs/types/core/generic_document/BarcodeDocumentModel.js.map +1 -0
  79. package/lib/commonjs/{documents → types/core/generic_document}/CommonFieldType.js +6 -3
  80. package/lib/commonjs/types/core/generic_document/CommonFieldType.js.map +1 -0
  81. package/lib/commonjs/{documents → types/core/generic_document}/GenericDocument.js +13 -18
  82. package/lib/commonjs/types/core/generic_document/GenericDocument.js.map +1 -0
  83. package/lib/commonjs/types/core/generic_document/index.js.map +1 -0
  84. package/lib/commonjs/{utils → types/core}/geometry/Geometry.js +4 -8
  85. package/lib/commonjs/types/core/geometry/Geometry.js.map +1 -0
  86. package/lib/commonjs/types/core/geometry/index.js +17 -0
  87. package/lib/commonjs/types/core/geometry/index.js.map +1 -0
  88. package/lib/commonjs/{imageRef → types/core/image}/ImageRefTypes.js +157 -69
  89. package/lib/commonjs/types/core/image/ImageRefTypes.js.map +1 -0
  90. package/lib/commonjs/types/core/image/ImageTypes.js +41 -0
  91. package/lib/commonjs/types/core/image/ImageTypes.js.map +1 -0
  92. package/lib/commonjs/{imageRef → types/core/image}/image.js +54 -50
  93. package/lib/commonjs/types/core/image/image.js.map +1 -0
  94. package/lib/commonjs/{imageRef → types/core/image}/index.js +0 -11
  95. package/lib/commonjs/types/core/image/index.js.map +1 -0
  96. package/lib/commonjs/types/core/index.js +105 -0
  97. package/lib/commonjs/types/core/index.js.map +1 -0
  98. package/lib/commonjs/types/core/licensing/LicensingTypes.js +239 -0
  99. package/lib/commonjs/types/core/licensing/LicensingTypes.js.map +1 -0
  100. package/lib/commonjs/types/core/licensing/index.js +17 -0
  101. package/lib/commonjs/types/core/licensing/index.js.map +1 -0
  102. package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/ArTrackingOverlayConfiguration.js +8 -14
  103. package/lib/commonjs/types/core/ui_v2/barcode/ArTrackingOverlayConfiguration.js.map +1 -0
  104. package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeInfoMapping.js +4 -8
  105. package/lib/commonjs/types/core/ui_v2/barcode/BarcodeInfoMapping.js.map +1 -0
  106. package/lib/commonjs/types/core/ui_v2/barcode/BarcodeItemMapper.js.map +1 -0
  107. package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerScreenConfiguration.js +17 -19
  108. package/lib/commonjs/types/core/ui_v2/barcode/BarcodeScannerScreenConfiguration.js.map +1 -0
  109. package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerUiResult.js +3 -6
  110. package/lib/commonjs/types/core/ui_v2/barcode/BarcodeScannerUiResult.js.map +1 -0
  111. package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeTextLocalization.js +1 -3
  112. package/lib/commonjs/types/core/ui_v2/barcode/BarcodeTextLocalization.js.map +1 -0
  113. package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeUseCase.js +6 -6
  114. package/lib/commonjs/types/core/ui_v2/barcode/BarcodeUseCase.js.map +1 -0
  115. package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/FindAndPickScanningModeUseCase.js +6 -9
  116. package/lib/commonjs/types/core/ui_v2/barcode/FindAndPickScanningModeUseCase.js.map +1 -0
  117. package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/MultipleScanningModeUseCase.js +11 -14
  118. package/lib/commonjs/types/core/ui_v2/barcode/MultipleScanningModeUseCase.js.map +1 -0
  119. package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/SingleScanningModeUseCase.js +4 -6
  120. package/lib/commonjs/types/core/ui_v2/barcode/SingleScanningModeUseCase.js.map +1 -0
  121. package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/ActionBarConfiguration.js +2 -4
  122. package/lib/commonjs/types/core/ui_v2/common/ActionBarConfiguration.js.map +1 -0
  123. package/lib/commonjs/types/core/ui_v2/common/BottomBarConfiguration.js +23 -0
  124. package/lib/commonjs/types/core/ui_v2/common/BottomBarConfiguration.js.map +1 -0
  125. package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/CameraConfiguration.js +11 -3
  126. package/lib/commonjs/types/core/ui_v2/common/CameraConfiguration.js.map +1 -0
  127. package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/CameraPermission.js +2 -4
  128. package/lib/commonjs/types/core/ui_v2/common/CameraPermission.js.map +1 -0
  129. package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/Common.js +20 -35
  130. package/lib/commonjs/types/core/ui_v2/common/Common.js.map +1 -0
  131. package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/NavigationBarConfiguration.js +1 -0
  132. package/lib/commonjs/types/core/ui_v2/common/NavigationBarConfiguration.js.map +1 -0
  133. package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/ScanCompletionOverlay.js +2 -4
  134. package/lib/commonjs/types/core/ui_v2/common/ScanCompletionOverlay.js.map +1 -0
  135. package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/ScanbotAlertDialog.js +2 -4
  136. package/lib/commonjs/types/core/ui_v2/common/ScanbotAlertDialog.js.map +1 -0
  137. package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/TopBarConfiguration.js +4 -4
  138. package/lib/commonjs/types/core/ui_v2/common/TopBarConfiguration.js.map +1 -0
  139. package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/UserGuidanceConfiguration.js +3 -6
  140. package/lib/commonjs/types/core/ui_v2/common/UserGuidanceConfiguration.js.map +1 -0
  141. package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/ViewFinderConfiguration.js +14 -19
  142. package/lib/commonjs/types/core/ui_v2/common/ViewFinderConfiguration.js.map +1 -0
  143. package/lib/commonjs/{ui_v2 → types/core/ui_v2}/index.js +15 -15
  144. package/lib/commonjs/types/core/ui_v2/index.js.map +1 -0
  145. package/lib/commonjs/{imageRef → types/core/utils}/ObjectPoolTypes.js +2 -4
  146. package/lib/commonjs/types/core/utils/ObjectPoolTypes.js.map +1 -0
  147. package/lib/commonjs/types/core/utils/index.js +28 -0
  148. package/lib/commonjs/types/core/utils/index.js.map +1 -0
  149. package/lib/commonjs/types/core/utils/utils.js +10 -0
  150. package/lib/commonjs/types/core/utils/utils.js.map +1 -0
  151. package/lib/commonjs/types/index.js +28 -0
  152. package/lib/commonjs/types/index.js.map +1 -0
  153. package/lib/module/Barcode.js +45 -0
  154. package/lib/module/Barcode.js.map +1 -0
  155. package/lib/module/ImageProcessor.js +19 -0
  156. package/lib/module/ImageProcessor.js.map +1 -0
  157. package/lib/module/Sdk.js +51 -0
  158. package/lib/module/Sdk.js.map +1 -0
  159. package/lib/module/{component → components}/barcode-camera-view/ScanbotBarcodeCameraView.js +10 -4
  160. package/lib/module/components/barcode-camera-view/ScanbotBarcodeCameraView.js.map +1 -0
  161. package/lib/module/components/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js.map +1 -0
  162. package/lib/module/components/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js.map +1 -0
  163. package/lib/module/components/index.js +4 -0
  164. package/lib/module/components/index.js.map +1 -0
  165. package/lib/module/components/spec/ScanbotBarcodeScannerViewNativeComponent.js.map +1 -0
  166. package/lib/module/impl/BarcodeScannerImpl.js +53 -0
  167. package/lib/module/impl/BarcodeScannerImpl.js.map +1 -0
  168. package/lib/module/impl/ImageProcessorImpl.js +15 -0
  169. package/lib/module/impl/ImageProcessorImpl.js.map +1 -0
  170. package/lib/module/impl/SdkImpl.js +22 -0
  171. package/lib/module/impl/SdkImpl.js.map +1 -0
  172. package/lib/module/impl/index.js +4 -0
  173. package/lib/module/impl/index.js.map +1 -0
  174. package/lib/module/impl/scanbotBarcodeSDKModule.js +16 -0
  175. package/lib/module/impl/scanbotBarcodeSDKModule.js.map +1 -0
  176. package/lib/module/index.js +5 -119
  177. package/lib/module/index.js.map +1 -1
  178. package/lib/module/types/base/SdkConfiguration.js +100 -0
  179. package/lib/module/types/base/SdkConfiguration.js.map +1 -0
  180. package/lib/module/types/base/customTypes.js +2 -0
  181. package/lib/module/types/base/customTypes.js.map +1 -0
  182. package/lib/module/types/base/errors.js +119 -0
  183. package/lib/module/types/base/errors.js.map +1 -0
  184. package/lib/module/types/base/index.js +5 -0
  185. package/lib/module/types/base/index.js.map +1 -0
  186. package/lib/module/types/base/utils.js +52 -0
  187. package/lib/module/types/base/utils.js.map +1 -0
  188. package/lib/module/{barcode → types/core/barcode}/BarcodeConfigurationTypes.js +244 -76
  189. package/lib/module/types/core/barcode/BarcodeConfigurationTypes.js.map +1 -0
  190. package/lib/module/{barcode → types/core/barcode}/BarcodeDocumentTypes.js +60 -9
  191. package/lib/module/types/core/barcode/BarcodeDocumentTypes.js.map +1 -0
  192. package/lib/module/{barcode → types/core/barcode}/BarcodeScannerTypes.js +39 -28
  193. package/lib/module/types/core/barcode/BarcodeScannerTypes.js.map +1 -0
  194. package/lib/module/{barcode → types/core/barcode}/BarcodeTypes.js +30 -11
  195. package/lib/module/types/core/barcode/BarcodeTypes.js.map +1 -0
  196. package/lib/module/types/core/barcode/index.js.map +1 -0
  197. package/lib/module/types/core/camera/Camera.js +17 -0
  198. package/lib/module/types/core/camera/Camera.js.map +1 -0
  199. package/lib/module/types/core/camera/index.js +2 -0
  200. package/lib/module/types/core/camera/index.js.map +1 -0
  201. package/lib/module/types/core/common/CommonTypes.js +23 -0
  202. package/lib/module/types/core/common/CommonTypes.js.map +1 -0
  203. package/lib/module/{utils/json → types/core/common}/JsonSerializationTypes.js +2 -4
  204. package/lib/module/types/core/common/JsonSerializationTypes.js.map +1 -0
  205. package/lib/module/types/core/common/index.js +3 -0
  206. package/lib/module/types/core/common/index.js.map +1 -0
  207. package/lib/module/{documents → types/core/generic_document}/BarcodeDocumentModel.js +1129 -159
  208. package/lib/module/types/core/generic_document/BarcodeDocumentModel.js.map +1 -0
  209. package/lib/module/{documents → types/core/generic_document}/CommonFieldType.js +6 -3
  210. package/lib/module/types/core/generic_document/CommonFieldType.js.map +1 -0
  211. package/lib/module/{documents → types/core/generic_document}/GenericDocument.js +13 -18
  212. package/lib/module/types/core/generic_document/GenericDocument.js.map +1 -0
  213. package/lib/module/types/core/generic_document/index.js.map +1 -0
  214. package/lib/module/{utils → types/core}/geometry/Geometry.js +4 -9
  215. package/lib/module/types/core/geometry/Geometry.js.map +1 -0
  216. package/lib/module/types/core/geometry/index.js +2 -0
  217. package/lib/module/types/core/geometry/index.js.map +1 -0
  218. package/lib/module/{imageRef → types/core/image}/ImageRefTypes.js +156 -68
  219. package/lib/module/types/core/image/ImageRefTypes.js.map +1 -0
  220. package/lib/module/types/core/image/ImageTypes.js +35 -0
  221. package/lib/module/types/core/image/ImageTypes.js.map +1 -0
  222. package/lib/module/{imageRef → types/core/image}/image.js +54 -49
  223. package/lib/module/types/core/image/image.js.map +1 -0
  224. package/lib/module/{imageRef → types/core/image}/index.js +0 -1
  225. package/lib/module/types/core/image/index.js.map +1 -0
  226. package/lib/module/types/core/index.js +10 -0
  227. package/lib/module/types/core/index.js.map +1 -0
  228. package/lib/module/types/core/licensing/LicensingTypes.js +233 -0
  229. package/lib/module/types/core/licensing/LicensingTypes.js.map +1 -0
  230. package/lib/module/types/core/licensing/index.js +2 -0
  231. package/lib/module/types/core/licensing/index.js.map +1 -0
  232. package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/ArTrackingOverlayConfiguration.js +8 -14
  233. package/lib/module/types/core/ui_v2/barcode/ArTrackingOverlayConfiguration.js.map +1 -0
  234. package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeInfoMapping.js +4 -9
  235. package/lib/module/types/core/ui_v2/barcode/BarcodeInfoMapping.js.map +1 -0
  236. package/lib/module/types/core/ui_v2/barcode/BarcodeItemMapper.js.map +1 -0
  237. package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerScreenConfiguration.js +17 -19
  238. package/lib/module/types/core/ui_v2/barcode/BarcodeScannerScreenConfiguration.js.map +1 -0
  239. package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerUiResult.js +3 -7
  240. package/lib/module/types/core/ui_v2/barcode/BarcodeScannerUiResult.js.map +1 -0
  241. package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeTextLocalization.js +1 -4
  242. package/lib/module/types/core/ui_v2/barcode/BarcodeTextLocalization.js.map +1 -0
  243. package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeUseCase.js +6 -6
  244. package/lib/module/types/core/ui_v2/barcode/BarcodeUseCase.js.map +1 -0
  245. package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/FindAndPickScanningModeUseCase.js +6 -9
  246. package/lib/module/types/core/ui_v2/barcode/FindAndPickScanningModeUseCase.js.map +1 -0
  247. package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/MultipleScanningModeUseCase.js +11 -14
  248. package/lib/module/types/core/ui_v2/barcode/MultipleScanningModeUseCase.js.map +1 -0
  249. package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/SingleScanningModeUseCase.js +4 -6
  250. package/lib/module/types/core/ui_v2/barcode/SingleScanningModeUseCase.js.map +1 -0
  251. package/lib/module/{ui_v2 → types/core/ui_v2}/common/ActionBarConfiguration.js +2 -4
  252. package/lib/module/types/core/ui_v2/common/ActionBarConfiguration.js.map +1 -0
  253. package/lib/module/types/core/ui_v2/common/BottomBarConfiguration.js +17 -0
  254. package/lib/module/types/core/ui_v2/common/BottomBarConfiguration.js.map +1 -0
  255. package/lib/module/{ui_v2 → types/core/ui_v2}/common/CameraConfiguration.js +11 -4
  256. package/lib/module/types/core/ui_v2/common/CameraConfiguration.js.map +1 -0
  257. package/lib/module/{ui_v2 → types/core/ui_v2}/common/CameraPermission.js +2 -5
  258. package/lib/module/types/core/ui_v2/common/CameraPermission.js.map +1 -0
  259. package/lib/module/{ui_v2 → types/core/ui_v2}/common/Common.js +20 -36
  260. package/lib/module/types/core/ui_v2/common/Common.js.map +1 -0
  261. package/lib/module/{ui_v2 → types/core/ui_v2}/common/NavigationBarConfiguration.js +1 -0
  262. package/lib/module/types/core/ui_v2/common/NavigationBarConfiguration.js.map +1 -0
  263. package/lib/module/{ui_v2 → types/core/ui_v2}/common/ScanCompletionOverlay.js +2 -4
  264. package/lib/module/types/core/ui_v2/common/ScanCompletionOverlay.js.map +1 -0
  265. package/lib/module/{ui_v2 → types/core/ui_v2}/common/ScanbotAlertDialog.js +2 -4
  266. package/lib/module/types/core/ui_v2/common/ScanbotAlertDialog.js.map +1 -0
  267. package/lib/module/{ui_v2 → types/core/ui_v2}/common/TopBarConfiguration.js +4 -4
  268. package/lib/module/types/core/ui_v2/common/TopBarConfiguration.js.map +1 -0
  269. package/lib/module/{ui_v2 → types/core/ui_v2}/common/UserGuidanceConfiguration.js +3 -6
  270. package/lib/module/types/core/ui_v2/common/UserGuidanceConfiguration.js.map +1 -0
  271. package/lib/module/{ui_v2 → types/core/ui_v2}/common/ViewFinderConfiguration.js +14 -19
  272. package/lib/module/types/core/ui_v2/common/ViewFinderConfiguration.js.map +1 -0
  273. package/lib/module/{ui_v2 → types/core/ui_v2}/index.js +2 -2
  274. package/lib/module/types/core/ui_v2/index.js.map +1 -0
  275. package/lib/module/{imageRef → types/core/utils}/ObjectPoolTypes.js +2 -5
  276. package/lib/module/types/core/utils/ObjectPoolTypes.js.map +1 -0
  277. package/lib/module/types/core/utils/index.js +3 -0
  278. package/lib/module/types/core/utils/index.js.map +1 -0
  279. package/lib/module/types/core/utils/utils.js +8 -0
  280. package/lib/module/types/core/utils/utils.js.map +1 -0
  281. package/lib/module/types/index.js +3 -0
  282. package/lib/module/types/index.js.map +1 -0
  283. package/lib/typescript/src/Barcode.d.ts +47 -0
  284. package/lib/typescript/src/Barcode.d.ts.map +1 -0
  285. package/lib/typescript/src/ImageProcessor.d.ts +12 -0
  286. package/lib/typescript/src/ImageProcessor.d.ts.map +1 -0
  287. package/lib/typescript/src/Sdk.d.ts +58 -0
  288. package/lib/typescript/src/Sdk.d.ts.map +1 -0
  289. package/lib/typescript/src/components/barcode-camera-view/ScanbotBarcodeCameraView.d.ts.map +1 -0
  290. package/lib/typescript/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewProperties.d.ts +17 -12
  291. package/lib/typescript/src/components/barcode-camera-view/ScanbotBarcodeCameraViewProperties.d.ts.map +1 -0
  292. package/lib/typescript/src/components/barcode-camera-view/ScanbotBarcodeCameraViewTypes.d.ts.map +1 -0
  293. package/lib/typescript/src/components/index.d.ts +4 -0
  294. package/lib/typescript/src/components/index.d.ts.map +1 -0
  295. package/lib/typescript/src/{component → components}/spec/ScanbotBarcodeScannerViewNativeComponent.d.ts +6 -0
  296. package/lib/typescript/src/components/spec/ScanbotBarcodeScannerViewNativeComponent.d.ts.map +1 -0
  297. package/lib/typescript/src/impl/BarcodeScannerImpl.d.ts +2 -0
  298. package/lib/typescript/src/impl/BarcodeScannerImpl.d.ts.map +1 -0
  299. package/lib/typescript/src/impl/ImageProcessorImpl.d.ts +2 -0
  300. package/lib/typescript/src/impl/ImageProcessorImpl.d.ts.map +1 -0
  301. package/lib/typescript/src/impl/SdkImpl.d.ts +2 -0
  302. package/lib/typescript/src/impl/SdkImpl.d.ts.map +1 -0
  303. package/lib/typescript/src/impl/index.d.ts +4 -0
  304. package/lib/typescript/src/impl/index.d.ts.map +1 -0
  305. package/lib/typescript/src/impl/scanbotBarcodeSDKModule.d.ts +2 -0
  306. package/lib/typescript/src/impl/scanbotBarcodeSDKModule.d.ts.map +1 -0
  307. package/lib/typescript/src/index.d.ts +5 -66
  308. package/lib/typescript/src/index.d.ts.map +1 -1
  309. package/lib/typescript/src/types/base/SdkConfiguration.d.ts +74 -0
  310. package/lib/typescript/src/types/base/SdkConfiguration.d.ts.map +1 -0
  311. package/lib/typescript/src/types/base/customTypes.d.ts +15 -0
  312. package/lib/typescript/src/types/base/customTypes.d.ts.map +1 -0
  313. package/lib/typescript/src/types/base/errors.d.ts +55 -0
  314. package/lib/typescript/src/types/base/errors.d.ts.map +1 -0
  315. package/lib/typescript/src/types/base/index.d.ts +5 -0
  316. package/lib/typescript/src/types/base/index.d.ts.map +1 -0
  317. package/lib/typescript/src/types/base/utils.d.ts +3 -0
  318. package/lib/typescript/src/types/base/utils.d.ts.map +1 -0
  319. package/lib/typescript/src/{barcode → types/core/barcode}/BarcodeConfigurationTypes.d.ts +203 -36
  320. package/lib/typescript/src/types/core/barcode/BarcodeConfigurationTypes.d.ts.map +1 -0
  321. package/lib/typescript/src/types/core/barcode/BarcodeDocumentTypes.d.ts +117 -0
  322. package/lib/typescript/src/types/core/barcode/BarcodeDocumentTypes.d.ts.map +1 -0
  323. package/lib/typescript/src/{barcode → types/core/barcode}/BarcodeScannerTypes.d.ts +68 -21
  324. package/lib/typescript/src/types/core/barcode/BarcodeScannerTypes.d.ts.map +1 -0
  325. package/lib/typescript/src/{barcode → types/core/barcode}/BarcodeTypes.d.ts +390 -13
  326. package/lib/typescript/src/types/core/barcode/BarcodeTypes.d.ts.map +1 -0
  327. package/lib/typescript/src/types/core/barcode/index.d.ts.map +1 -0
  328. package/lib/typescript/src/types/core/camera/Camera.d.ts +26 -0
  329. package/lib/typescript/src/types/core/camera/Camera.d.ts.map +1 -0
  330. package/lib/typescript/src/types/core/camera/index.d.ts +2 -0
  331. package/lib/typescript/src/types/core/camera/index.d.ts.map +1 -0
  332. package/lib/typescript/src/types/core/common/CommonTypes.d.ts +36 -0
  333. package/lib/typescript/src/types/core/common/CommonTypes.d.ts.map +1 -0
  334. package/lib/typescript/src/{utils/json → types/core/common}/JsonSerializationTypes.d.ts +13 -4
  335. package/lib/typescript/src/types/core/common/JsonSerializationTypes.d.ts.map +1 -0
  336. package/lib/typescript/src/types/core/common/index.d.ts +3 -0
  337. package/lib/typescript/src/types/core/common/index.d.ts.map +1 -0
  338. package/lib/typescript/src/types/core/generic_document/BarcodeDocumentModel.d.ts +2360 -0
  339. package/lib/typescript/src/types/core/generic_document/BarcodeDocumentModel.d.ts.map +1 -0
  340. package/lib/typescript/src/types/core/generic_document/CommonFieldType.d.ts +176 -0
  341. package/lib/typescript/src/types/core/generic_document/CommonFieldType.d.ts.map +1 -0
  342. package/lib/typescript/src/{documents → types/core/generic_document}/GenericDocument.d.ts +82 -14
  343. package/lib/typescript/src/types/core/generic_document/GenericDocument.d.ts.map +1 -0
  344. package/lib/typescript/src/types/core/generic_document/index.d.ts.map +1 -0
  345. package/lib/typescript/src/{utils → types/core}/geometry/Geometry.d.ts +6 -5
  346. package/lib/typescript/src/types/core/geometry/Geometry.d.ts.map +1 -0
  347. package/lib/typescript/src/types/core/geometry/index.d.ts +2 -0
  348. package/lib/typescript/src/types/core/geometry/index.d.ts.map +1 -0
  349. package/lib/typescript/src/{imageRef → types/core/image}/ImageRefTypes.d.ts +208 -40
  350. package/lib/typescript/src/types/core/image/ImageRefTypes.d.ts.map +1 -0
  351. package/lib/typescript/src/types/core/image/ImageTypes.d.ts +63 -0
  352. package/lib/typescript/src/types/core/image/ImageTypes.d.ts.map +1 -0
  353. package/lib/typescript/src/{imageRef → types/core/image}/image.d.ts +6 -10
  354. package/lib/typescript/src/types/core/image/image.d.ts.map +1 -0
  355. package/lib/typescript/src/{imageRef → types/core/image}/index.d.ts +0 -1
  356. package/lib/typescript/src/types/core/image/index.d.ts.map +1 -0
  357. package/lib/typescript/src/types/core/index.d.ts +10 -0
  358. package/lib/typescript/src/types/core/index.d.ts.map +1 -0
  359. package/lib/typescript/src/types/core/licensing/LicensingTypes.d.ts +243 -0
  360. package/lib/typescript/src/types/core/licensing/LicensingTypes.d.ts.map +1 -0
  361. package/lib/typescript/src/types/core/licensing/index.d.ts +2 -0
  362. package/lib/typescript/src/types/core/licensing/index.d.ts.map +1 -0
  363. package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/ArTrackingOverlayConfiguration.d.ts +27 -10
  364. package/lib/typescript/src/types/core/ui_v2/barcode/ArTrackingOverlayConfiguration.d.ts.map +1 -0
  365. package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeInfoMapping.d.ts +6 -6
  366. package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeInfoMapping.d.ts.map +1 -0
  367. package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeItemMapper.d.ts.map +1 -0
  368. package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerScreenConfiguration.d.ts +14 -14
  369. package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeScannerScreenConfiguration.d.ts.map +1 -0
  370. package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerUiResult.d.ts +4 -4
  371. package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeScannerUiResult.d.ts.map +1 -0
  372. package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeTextLocalization.d.ts +2 -2
  373. package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeTextLocalization.d.ts.map +1 -0
  374. package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeUseCase.d.ts +8 -0
  375. package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeUseCase.d.ts.map +1 -0
  376. package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/FindAndPickScanningModeUseCase.d.ts +6 -6
  377. package/lib/typescript/src/types/core/ui_v2/barcode/FindAndPickScanningModeUseCase.d.ts.map +1 -0
  378. package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/MultipleScanningModeUseCase.d.ts +42 -15
  379. package/lib/typescript/src/types/core/ui_v2/barcode/MultipleScanningModeUseCase.d.ts.map +1 -0
  380. package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/SingleScanningModeUseCase.d.ts +5 -5
  381. package/lib/typescript/src/types/core/ui_v2/barcode/SingleScanningModeUseCase.d.ts.map +1 -0
  382. package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/ActionBarConfiguration.d.ts +3 -3
  383. package/lib/typescript/src/types/core/ui_v2/common/ActionBarConfiguration.d.ts.map +1 -0
  384. package/lib/typescript/src/types/core/ui_v2/common/BottomBarConfiguration.d.ts +26 -0
  385. package/lib/typescript/src/types/core/ui_v2/common/BottomBarConfiguration.d.ts.map +1 -0
  386. package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/CameraConfiguration.d.ts +25 -5
  387. package/lib/typescript/src/types/core/ui_v2/common/CameraConfiguration.d.ts.map +1 -0
  388. package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/CameraPermission.d.ts +4 -4
  389. package/lib/typescript/src/types/core/ui_v2/common/CameraPermission.d.ts.map +1 -0
  390. package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/Common.d.ts +55 -24
  391. package/lib/typescript/src/types/core/ui_v2/common/Common.d.ts.map +1 -0
  392. package/lib/typescript/src/types/core/ui_v2/common/NavigationBarConfiguration.d.ts +26 -0
  393. package/lib/typescript/src/types/core/ui_v2/common/NavigationBarConfiguration.d.ts.map +1 -0
  394. package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/ScanCompletionOverlay.d.ts +3 -3
  395. package/lib/typescript/src/types/core/ui_v2/common/ScanCompletionOverlay.d.ts.map +1 -0
  396. package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/ScanbotAlertDialog.d.ts +3 -3
  397. package/lib/typescript/src/types/core/ui_v2/common/ScanbotAlertDialog.d.ts.map +1 -0
  398. package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/TopBarConfiguration.d.ts +33 -7
  399. package/lib/typescript/src/types/core/ui_v2/common/TopBarConfiguration.d.ts.map +1 -0
  400. package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/UserGuidanceConfiguration.d.ts +4 -4
  401. package/lib/typescript/src/types/core/ui_v2/common/UserGuidanceConfiguration.d.ts.map +1 -0
  402. package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/ViewFinderConfiguration.d.ts +7 -7
  403. package/lib/typescript/src/types/core/ui_v2/common/ViewFinderConfiguration.d.ts.map +1 -0
  404. package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/index.d.ts +2 -2
  405. package/lib/typescript/src/types/core/ui_v2/index.d.ts.map +1 -0
  406. package/lib/typescript/src/{imageRef → types/core/utils}/ObjectPoolTypes.d.ts +3 -3
  407. package/lib/typescript/src/types/core/utils/ObjectPoolTypes.d.ts.map +1 -0
  408. package/lib/typescript/src/types/core/utils/index.d.ts +3 -0
  409. package/lib/typescript/src/types/core/utils/index.d.ts.map +1 -0
  410. package/lib/typescript/src/types/core/utils/utils.d.ts +28 -0
  411. package/lib/typescript/src/types/core/utils/utils.d.ts.map +1 -0
  412. package/lib/typescript/src/types/index.d.ts +3 -0
  413. package/lib/typescript/src/types/index.d.ts.map +1 -0
  414. package/package.json +13 -13
  415. package/src/Barcode.ts +67 -0
  416. package/src/ImageProcessor.ts +18 -0
  417. package/src/Sdk.ts +53 -0
  418. package/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraView.tsx +13 -4
  419. package/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewProperties.ts +22 -14
  420. package/src/components/index.ts +3 -0
  421. package/src/{component → components}/spec/ScanbotBarcodeScannerViewNativeComponent.ts +3 -0
  422. package/src/impl/BarcodeScannerImpl.ts +115 -0
  423. package/src/impl/ImageProcessorImpl.ts +14 -0
  424. package/src/impl/SdkImpl.ts +28 -0
  425. package/src/impl/index.ts +3 -0
  426. package/src/impl/scanbotBarcodeSDKModule.ts +22 -0
  427. package/src/index.ts +5 -178
  428. package/src/types/base/SdkConfiguration.ts +120 -0
  429. package/src/types/base/customTypes.ts +14 -0
  430. package/src/types/base/errors.ts +158 -0
  431. package/src/types/base/index.ts +4 -0
  432. package/src/types/base/utils.ts +53 -0
  433. package/src/{barcode → types/core/barcode}/BarcodeConfigurationTypes.ts +294 -83
  434. package/src/types/core/barcode/BarcodeDocumentTypes.ts +218 -0
  435. package/src/{barcode → types/core/barcode}/BarcodeScannerTypes.ts +91 -44
  436. package/src/{barcode → types/core/barcode}/BarcodeTypes.ts +315 -19
  437. package/src/types/core/camera/Camera.ts +33 -0
  438. package/src/types/core/camera/index.ts +1 -0
  439. package/src/types/core/common/CommonTypes.ts +43 -0
  440. package/src/{utils/json → types/core/common}/JsonSerializationTypes.ts +16 -5
  441. package/src/types/core/common/index.ts +2 -0
  442. package/src/{documents → types/core/generic_document}/BarcodeDocumentModel.ts +1524 -172
  443. package/src/{documents → types/core/generic_document}/CommonFieldType.ts +96 -7
  444. package/src/{documents → types/core/generic_document}/GenericDocument.ts +77 -28
  445. package/src/{utils → types/core}/geometry/Geometry.ts +6 -8
  446. package/src/types/core/geometry/index.ts +1 -0
  447. package/src/{imageRef → types/core/image}/ImageRefTypes.ts +277 -83
  448. package/src/types/core/image/ImageTypes.ts +78 -0
  449. package/src/{imageRef → types/core/image}/image.ts +44 -76
  450. package/src/{imageRef → types/core/image}/index.ts +0 -1
  451. package/src/types/core/index.ts +9 -0
  452. package/src/types/core/licensing/LicensingTypes.ts +377 -0
  453. package/src/types/core/licensing/index.ts +1 -0
  454. package/src/{ui_v2 → types/core/ui_v2}/barcode/ArTrackingOverlayConfiguration.ts +28 -17
  455. package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeInfoMapping.ts +6 -9
  456. package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerScreenConfiguration.ts +18 -25
  457. package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerUiResult.ts +5 -7
  458. package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeTextLocalization.ts +2 -3
  459. package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeUseCase.ts +6 -5
  460. package/src/{ui_v2 → types/core/ui_v2}/barcode/FindAndPickScanningModeUseCase.ts +17 -19
  461. package/src/{ui_v2 → types/core/ui_v2}/barcode/MultipleScanningModeUseCase.ts +50 -25
  462. package/src/{ui_v2 → types/core/ui_v2}/barcode/SingleScanningModeUseCase.ts +9 -10
  463. package/src/{ui_v2 → types/core/ui_v2}/common/ActionBarConfiguration.ts +3 -4
  464. package/src/types/core/ui_v2/common/BottomBarConfiguration.ts +33 -0
  465. package/src/{ui_v2 → types/core/ui_v2}/common/CameraConfiguration.ts +33 -7
  466. package/src/{ui_v2 → types/core/ui_v2}/common/CameraPermission.ts +4 -5
  467. package/src/{ui_v2 → types/core/ui_v2}/common/Common.ts +62 -41
  468. package/src/{ui_v2 → types/core/ui_v2}/common/NavigationBarConfiguration.ts +19 -2
  469. package/src/{ui_v2 → types/core/ui_v2}/common/ScanCompletionOverlay.ts +3 -4
  470. package/src/{ui_v2 → types/core/ui_v2}/common/ScanbotAlertDialog.ts +3 -4
  471. package/src/{ui_v2 → types/core/ui_v2}/common/TopBarConfiguration.ts +37 -13
  472. package/src/{ui_v2 → types/core/ui_v2}/common/UserGuidanceConfiguration.ts +4 -6
  473. package/src/{ui_v2 → types/core/ui_v2}/common/ViewFinderConfiguration.ts +15 -17
  474. package/src/{ui_v2 → types/core/ui_v2}/index.ts +2 -4
  475. package/src/{imageRef → types/core/utils}/ObjectPoolTypes.ts +3 -4
  476. package/src/types/core/utils/index.ts +2 -0
  477. package/src/types/core/utils/utils.ts +45 -0
  478. package/src/types/index.ts +2 -0
  479. package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/extensions/IntExtensions.kt +0 -7
  480. package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewControllerWrapper.h +0 -121
  481. package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewControllerWrapper.m +0 -307
  482. package/lib/commonjs/barcode/BarcodeConfigurationTypes.js.map +0 -1
  483. package/lib/commonjs/barcode/BarcodeDocumentTypes.js.map +0 -1
  484. package/lib/commonjs/barcode/BarcodeScannerTypes.js.map +0 -1
  485. package/lib/commonjs/barcode/BarcodeTypes.js.map +0 -1
  486. package/lib/commonjs/barcode/index.js.map +0 -1
  487. package/lib/commonjs/base/barcodeSDKConfigurations.js.map +0 -1
  488. package/lib/commonjs/base/barcodeSDKTypes.js +0 -2
  489. package/lib/commonjs/base/barcodeSDKTypes.js.map +0 -1
  490. package/lib/commonjs/base/index.js +0 -28
  491. package/lib/commonjs/base/index.js.map +0 -1
  492. package/lib/commonjs/component/barcode-camera-view/ScanbotBarcodeCameraView.js.map +0 -1
  493. package/lib/commonjs/component/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js.map +0 -1
  494. package/lib/commonjs/component/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js.map +0 -1
  495. package/lib/commonjs/component/barcode-camera-view/index.js.map +0 -1
  496. package/lib/commonjs/component/spec/ScanbotBarcodeScannerViewNativeComponent.js.map +0 -1
  497. package/lib/commonjs/documents/BarcodeDocumentModel.js.map +0 -1
  498. package/lib/commonjs/documents/CommonFieldType.js.map +0 -1
  499. package/lib/commonjs/documents/GenericDocument.js.map +0 -1
  500. package/lib/commonjs/documents/index.js.map +0 -1
  501. package/lib/commonjs/imageRef/ImageRefTypes.js.map +0 -1
  502. package/lib/commonjs/imageRef/ImageTypes.js +0 -24
  503. package/lib/commonjs/imageRef/ImageTypes.js.map +0 -1
  504. package/lib/commonjs/imageRef/ObjectPoolTypes.js.map +0 -1
  505. package/lib/commonjs/imageRef/image.js.map +0 -1
  506. package/lib/commonjs/imageRef/index.js.map +0 -1
  507. package/lib/commonjs/ui_v2/barcode/ArTrackingOverlayConfiguration.js.map +0 -1
  508. package/lib/commonjs/ui_v2/barcode/BarcodeInfoMapping.js.map +0 -1
  509. package/lib/commonjs/ui_v2/barcode/BarcodeItemMapper.js.map +0 -1
  510. package/lib/commonjs/ui_v2/barcode/BarcodeScannerConfiguration.js +0 -179
  511. package/lib/commonjs/ui_v2/barcode/BarcodeScannerConfiguration.js.map +0 -1
  512. package/lib/commonjs/ui_v2/barcode/BarcodeScannerScreenConfiguration.js.map +0 -1
  513. package/lib/commonjs/ui_v2/barcode/BarcodeScannerUiResult.js.map +0 -1
  514. package/lib/commonjs/ui_v2/barcode/BarcodeTextLocalization.js.map +0 -1
  515. package/lib/commonjs/ui_v2/barcode/BarcodeUseCase.js.map +0 -1
  516. package/lib/commonjs/ui_v2/barcode/FindAndPickScanningModeUseCase.js.map +0 -1
  517. package/lib/commonjs/ui_v2/barcode/MultipleScanningModeUseCase.js.map +0 -1
  518. package/lib/commonjs/ui_v2/barcode/SingleScanningModeUseCase.js.map +0 -1
  519. package/lib/commonjs/ui_v2/common/ActionBarConfiguration.js.map +0 -1
  520. package/lib/commonjs/ui_v2/common/CameraConfiguration.js.map +0 -1
  521. package/lib/commonjs/ui_v2/common/CameraPermission.js.map +0 -1
  522. package/lib/commonjs/ui_v2/common/Common.js.map +0 -1
  523. package/lib/commonjs/ui_v2/common/NavigationBarConfiguration.js.map +0 -1
  524. package/lib/commonjs/ui_v2/common/ScanCompletionOverlay.js.map +0 -1
  525. package/lib/commonjs/ui_v2/common/ScanbotAlertDialog.js.map +0 -1
  526. package/lib/commonjs/ui_v2/common/TopBarConfiguration.js.map +0 -1
  527. package/lib/commonjs/ui_v2/common/UserGuidanceConfiguration.js.map +0 -1
  528. package/lib/commonjs/ui_v2/common/ViewFinderConfiguration.js.map +0 -1
  529. package/lib/commonjs/ui_v2/index.js.map +0 -1
  530. package/lib/commonjs/utils/geometry/Geometry.js.map +0 -1
  531. package/lib/commonjs/utils/index.js +0 -39
  532. package/lib/commonjs/utils/index.js.map +0 -1
  533. package/lib/commonjs/utils/json/JsonSerializationTypes.js.map +0 -1
  534. package/lib/commonjs/utils/utils.js +0 -31
  535. package/lib/commonjs/utils/utils.js.map +0 -1
  536. package/lib/module/barcode/BarcodeConfigurationTypes.js.map +0 -1
  537. package/lib/module/barcode/BarcodeDocumentTypes.js.map +0 -1
  538. package/lib/module/barcode/BarcodeScannerTypes.js.map +0 -1
  539. package/lib/module/barcode/BarcodeTypes.js.map +0 -1
  540. package/lib/module/barcode/index.js.map +0 -1
  541. package/lib/module/base/barcodeSDKConfigurations.js +0 -2
  542. package/lib/module/base/barcodeSDKConfigurations.js.map +0 -1
  543. package/lib/module/base/barcodeSDKTypes.js +0 -2
  544. package/lib/module/base/barcodeSDKTypes.js.map +0 -1
  545. package/lib/module/base/index.js +0 -3
  546. package/lib/module/base/index.js.map +0 -1
  547. package/lib/module/component/barcode-camera-view/ScanbotBarcodeCameraView.js.map +0 -1
  548. package/lib/module/component/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js.map +0 -1
  549. package/lib/module/component/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js.map +0 -1
  550. package/lib/module/component/barcode-camera-view/index.js +0 -4
  551. package/lib/module/component/barcode-camera-view/index.js.map +0 -1
  552. package/lib/module/component/spec/ScanbotBarcodeScannerViewNativeComponent.js.map +0 -1
  553. package/lib/module/documents/BarcodeDocumentModel.js.map +0 -1
  554. package/lib/module/documents/CommonFieldType.js.map +0 -1
  555. package/lib/module/documents/GenericDocument.js.map +0 -1
  556. package/lib/module/documents/index.js.map +0 -1
  557. package/lib/module/imageRef/ImageRefTypes.js.map +0 -1
  558. package/lib/module/imageRef/ImageTypes.js +0 -18
  559. package/lib/module/imageRef/ImageTypes.js.map +0 -1
  560. package/lib/module/imageRef/ObjectPoolTypes.js.map +0 -1
  561. package/lib/module/imageRef/image.js.map +0 -1
  562. package/lib/module/imageRef/index.js.map +0 -1
  563. package/lib/module/ui_v2/barcode/ArTrackingOverlayConfiguration.js.map +0 -1
  564. package/lib/module/ui_v2/barcode/BarcodeInfoMapping.js.map +0 -1
  565. package/lib/module/ui_v2/barcode/BarcodeItemMapper.js.map +0 -1
  566. package/lib/module/ui_v2/barcode/BarcodeScannerConfiguration.js +0 -173
  567. package/lib/module/ui_v2/barcode/BarcodeScannerConfiguration.js.map +0 -1
  568. package/lib/module/ui_v2/barcode/BarcodeScannerScreenConfiguration.js.map +0 -1
  569. package/lib/module/ui_v2/barcode/BarcodeScannerUiResult.js.map +0 -1
  570. package/lib/module/ui_v2/barcode/BarcodeTextLocalization.js.map +0 -1
  571. package/lib/module/ui_v2/barcode/BarcodeUseCase.js.map +0 -1
  572. package/lib/module/ui_v2/barcode/FindAndPickScanningModeUseCase.js.map +0 -1
  573. package/lib/module/ui_v2/barcode/MultipleScanningModeUseCase.js.map +0 -1
  574. package/lib/module/ui_v2/barcode/SingleScanningModeUseCase.js.map +0 -1
  575. package/lib/module/ui_v2/common/ActionBarConfiguration.js.map +0 -1
  576. package/lib/module/ui_v2/common/CameraConfiguration.js.map +0 -1
  577. package/lib/module/ui_v2/common/CameraPermission.js.map +0 -1
  578. package/lib/module/ui_v2/common/Common.js.map +0 -1
  579. package/lib/module/ui_v2/common/NavigationBarConfiguration.js.map +0 -1
  580. package/lib/module/ui_v2/common/ScanCompletionOverlay.js.map +0 -1
  581. package/lib/module/ui_v2/common/ScanbotAlertDialog.js.map +0 -1
  582. package/lib/module/ui_v2/common/TopBarConfiguration.js.map +0 -1
  583. package/lib/module/ui_v2/common/UserGuidanceConfiguration.js.map +0 -1
  584. package/lib/module/ui_v2/common/ViewFinderConfiguration.js.map +0 -1
  585. package/lib/module/ui_v2/index.js.map +0 -1
  586. package/lib/module/utils/geometry/Geometry.js.map +0 -1
  587. package/lib/module/utils/index.js +0 -4
  588. package/lib/module/utils/index.js.map +0 -1
  589. package/lib/module/utils/json/JsonSerializationTypes.js.map +0 -1
  590. package/lib/module/utils/utils.js +0 -22
  591. package/lib/module/utils/utils.js.map +0 -1
  592. package/lib/typescript/src/barcode/BarcodeConfigurationTypes.d.ts.map +0 -1
  593. package/lib/typescript/src/barcode/BarcodeDocumentTypes.d.ts +0 -50
  594. package/lib/typescript/src/barcode/BarcodeDocumentTypes.d.ts.map +0 -1
  595. package/lib/typescript/src/barcode/BarcodeScannerTypes.d.ts.map +0 -1
  596. package/lib/typescript/src/barcode/BarcodeTypes.d.ts.map +0 -1
  597. package/lib/typescript/src/barcode/index.d.ts.map +0 -1
  598. package/lib/typescript/src/base/barcodeSDKConfigurations.d.ts +0 -60
  599. package/lib/typescript/src/base/barcodeSDKConfigurations.d.ts.map +0 -1
  600. package/lib/typescript/src/base/barcodeSDKTypes.d.ts +0 -46
  601. package/lib/typescript/src/base/barcodeSDKTypes.d.ts.map +0 -1
  602. package/lib/typescript/src/base/index.d.ts +0 -3
  603. package/lib/typescript/src/base/index.d.ts.map +0 -1
  604. package/lib/typescript/src/component/barcode-camera-view/ScanbotBarcodeCameraView.d.ts.map +0 -1
  605. package/lib/typescript/src/component/barcode-camera-view/ScanbotBarcodeCameraViewProperties.d.ts.map +0 -1
  606. package/lib/typescript/src/component/barcode-camera-view/ScanbotBarcodeCameraViewTypes.d.ts.map +0 -1
  607. package/lib/typescript/src/component/barcode-camera-view/index.d.ts +0 -4
  608. package/lib/typescript/src/component/barcode-camera-view/index.d.ts.map +0 -1
  609. package/lib/typescript/src/component/spec/ScanbotBarcodeScannerViewNativeComponent.d.ts.map +0 -1
  610. package/lib/typescript/src/documents/BarcodeDocumentModel.d.ts +0 -1458
  611. package/lib/typescript/src/documents/BarcodeDocumentModel.d.ts.map +0 -1
  612. package/lib/typescript/src/documents/CommonFieldType.d.ts +0 -61
  613. package/lib/typescript/src/documents/CommonFieldType.d.ts.map +0 -1
  614. package/lib/typescript/src/documents/GenericDocument.d.ts.map +0 -1
  615. package/lib/typescript/src/documents/index.d.ts.map +0 -1
  616. package/lib/typescript/src/imageRef/ImageRefTypes.d.ts.map +0 -1
  617. package/lib/typescript/src/imageRef/ImageTypes.d.ts +0 -15
  618. package/lib/typescript/src/imageRef/ImageTypes.d.ts.map +0 -1
  619. package/lib/typescript/src/imageRef/ObjectPoolTypes.d.ts.map +0 -1
  620. package/lib/typescript/src/imageRef/image.d.ts.map +0 -1
  621. package/lib/typescript/src/imageRef/index.d.ts.map +0 -1
  622. package/lib/typescript/src/ui_v2/barcode/ArTrackingOverlayConfiguration.d.ts.map +0 -1
  623. package/lib/typescript/src/ui_v2/barcode/BarcodeInfoMapping.d.ts.map +0 -1
  624. package/lib/typescript/src/ui_v2/barcode/BarcodeItemMapper.d.ts.map +0 -1
  625. package/lib/typescript/src/ui_v2/barcode/BarcodeScannerConfiguration.d.ts +0 -114
  626. package/lib/typescript/src/ui_v2/barcode/BarcodeScannerConfiguration.d.ts.map +0 -1
  627. package/lib/typescript/src/ui_v2/barcode/BarcodeScannerScreenConfiguration.d.ts.map +0 -1
  628. package/lib/typescript/src/ui_v2/barcode/BarcodeScannerUiResult.d.ts.map +0 -1
  629. package/lib/typescript/src/ui_v2/barcode/BarcodeTextLocalization.d.ts.map +0 -1
  630. package/lib/typescript/src/ui_v2/barcode/BarcodeUseCase.d.ts +0 -8
  631. package/lib/typescript/src/ui_v2/barcode/BarcodeUseCase.d.ts.map +0 -1
  632. package/lib/typescript/src/ui_v2/barcode/FindAndPickScanningModeUseCase.d.ts.map +0 -1
  633. package/lib/typescript/src/ui_v2/barcode/MultipleScanningModeUseCase.d.ts.map +0 -1
  634. package/lib/typescript/src/ui_v2/barcode/SingleScanningModeUseCase.d.ts.map +0 -1
  635. package/lib/typescript/src/ui_v2/common/ActionBarConfiguration.d.ts.map +0 -1
  636. package/lib/typescript/src/ui_v2/common/CameraConfiguration.d.ts.map +0 -1
  637. package/lib/typescript/src/ui_v2/common/CameraPermission.d.ts.map +0 -1
  638. package/lib/typescript/src/ui_v2/common/Common.d.ts.map +0 -1
  639. package/lib/typescript/src/ui_v2/common/NavigationBarConfiguration.d.ts +0 -13
  640. package/lib/typescript/src/ui_v2/common/NavigationBarConfiguration.d.ts.map +0 -1
  641. package/lib/typescript/src/ui_v2/common/ScanCompletionOverlay.d.ts.map +0 -1
  642. package/lib/typescript/src/ui_v2/common/ScanbotAlertDialog.d.ts.map +0 -1
  643. package/lib/typescript/src/ui_v2/common/TopBarConfiguration.d.ts.map +0 -1
  644. package/lib/typescript/src/ui_v2/common/UserGuidanceConfiguration.d.ts.map +0 -1
  645. package/lib/typescript/src/ui_v2/common/ViewFinderConfiguration.d.ts.map +0 -1
  646. package/lib/typescript/src/ui_v2/index.d.ts.map +0 -1
  647. package/lib/typescript/src/utils/geometry/Geometry.d.ts.map +0 -1
  648. package/lib/typescript/src/utils/index.d.ts +0 -4
  649. package/lib/typescript/src/utils/index.d.ts.map +0 -1
  650. package/lib/typescript/src/utils/json/JsonSerializationTypes.d.ts.map +0 -1
  651. package/lib/typescript/src/utils/utils.d.ts +0 -17
  652. package/lib/typescript/src/utils/utils.d.ts.map +0 -1
  653. package/src/barcode/BarcodeDocumentTypes.ts +0 -120
  654. package/src/base/barcodeSDKConfigurations.ts +0 -70
  655. package/src/base/barcodeSDKTypes.ts +0 -44
  656. package/src/base/index.ts +0 -2
  657. package/src/component/barcode-camera-view/index.ts +0 -3
  658. package/src/imageRef/ImageTypes.ts +0 -23
  659. package/src/ui_v2/barcode/BarcodeScannerConfiguration.ts +0 -207
  660. package/src/utils/index.ts +0 -3
  661. package/src/utils/utils.ts +0 -42
  662. /package/lib/commonjs/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js +0 -0
  663. /package/lib/commonjs/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js +0 -0
  664. /package/lib/commonjs/{component → components}/spec/ScanbotBarcodeScannerViewNativeComponent.js +0 -0
  665. /package/lib/commonjs/{barcode → types/core/barcode}/index.js +0 -0
  666. /package/lib/commonjs/{documents → types/core/generic_document}/index.js +0 -0
  667. /package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeItemMapper.js +0 -0
  668. /package/lib/module/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js +0 -0
  669. /package/lib/module/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js +0 -0
  670. /package/lib/module/{component → components}/spec/ScanbotBarcodeScannerViewNativeComponent.js +0 -0
  671. /package/lib/module/{barcode → types/core/barcode}/index.js +0 -0
  672. /package/lib/module/{documents → types/core/generic_document}/index.js +0 -0
  673. /package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeItemMapper.js +0 -0
  674. /package/lib/typescript/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraView.d.ts +0 -0
  675. /package/lib/typescript/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewTypes.d.ts +0 -0
  676. /package/lib/typescript/src/{barcode → types/core/barcode}/index.d.ts +0 -0
  677. /package/lib/typescript/src/{documents → types/core/generic_document}/index.d.ts +0 -0
  678. /package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeItemMapper.d.ts +0 -0
  679. /package/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewTypes.ts +0 -0
  680. /package/src/{barcode → types/core/barcode}/index.ts +0 -0
  681. /package/src/{documents → types/core/generic_document}/index.ts +0 -0
  682. /package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeItemMapper.ts +0 -0
@@ -1,121 +1,7 @@
1
- import { NativeEventEmitter, NativeModules, Platform } from 'react-native';
2
- import { BarcodeScannerResult } from './barcode';
3
- import { BarcodeScannerUiResult, MultipleScanningMode, SingleScanningMode } from './ui_v2';
4
- import { mapRTUUIResult } from './utils';
5
- const LINKING_ERROR = `The package 'react-native-scanbot-barcode-scanner-sdk' doesn't seem to be linked. Make sure: \n\n` + Platform.select({
6
- ios: "- You have run 'pod install'\n",
7
- default: ''
8
- }) + '- You rebuilt the app after installing the package\n' + '- You are not using Expo Go\n';
9
- const ScanbotBarcodeSDKImpl = NativeModules.ScanbotBarcodeSdk ? NativeModules.ScanbotBarcodeSdk : new Proxy({}, {
10
- get() {
11
- throw new Error(LINKING_ERROR);
12
- }
13
- });
14
- const isIOS = Platform.OS === 'ios';
15
- const ScanbotBarcodeSDK = {
16
- /**
17
- * Initialize the Scanbot Barcode Scanner SDK with the preferred configuration.
18
- *
19
- * @param {ScanbotBarcodeSdkConfiguration} config
20
- * @returns {Promise<LicenseInfoResult>}
21
- */
22
- initializeSdk: config => {
23
- return ScanbotBarcodeSDKImpl.initializeSdk(config);
24
- },
25
- /**
26
- * Provides complete information about the current license status.
27
- *
28
- * @returns {Promise<LicenseInfoResult>}
29
- */
30
- getLicenseInfo: () => {
31
- return ScanbotBarcodeSDKImpl.getLicenseInfo();
32
- },
33
- /**
34
- * Remove all files generated by this plugin.
35
- *
36
- * @returns {Promise<string>}
37
- */
38
- cleanup: () => {
39
- return ScanbotBarcodeSDKImpl.cleanup();
40
- },
41
- /**
42
- * Opens the Ready-To-Use UI screen for scanning barcodes with the desired configuration.
43
- *
44
- * @param {BarcodeScannerScreenConfiguration} config
45
- * @returns {Promise<ResultWrapper<BarcodeScannerUiResult>>}
46
- */
47
- startBarcodeScanner: async config => {
48
- const barcodeItemMapperEventName = 'barcodeItemMapperEvent';
49
- let barcodeItemMapperCallback = null;
50
- let barcodeItemMapperEventEmitter = null;
51
- if (config.useCase instanceof SingleScanningMode || config.useCase instanceof MultipleScanningMode) {
52
- barcodeItemMapperCallback = config.useCase.barcodeInfoMapping.barcodeItemMapper;
53
- if (barcodeItemMapperCallback) {
54
- barcodeItemMapperEventEmitter = new NativeEventEmitter(ScanbotBarcodeSDKImpl);
55
- barcodeItemMapperEventEmitter.removeAllListeners(barcodeItemMapperEventName);
56
- barcodeItemMapperEventEmitter.addListener(barcodeItemMapperEventName, barcodeItem => {
57
- const barcodeItemUuid = `${barcodeItem.text}${barcodeItem.upcEanExtension}_${barcodeItem.format}`;
58
- barcodeItemMapperCallback(barcodeItem, barcodeMappedData => ScanbotBarcodeSDKImpl.onBarcodeItemMapper(barcodeItemUuid, barcodeMappedData), () => ScanbotBarcodeSDKImpl.onBarcodeItemMapper(barcodeItemUuid, null));
59
- });
60
-
61
- // On iOS, the communication with the native part is throwing an error (startBarcodeScannerV2) because of the barcodeItemMapper
62
- // callback in the configuration class (not parsable), that's why we need to remove it before executing startBarcodeScannerV2 method
63
- config.useCase.barcodeInfoMapping.barcodeItemMapper = null;
64
- return new Promise((resolve, reject) => {
65
- ScanbotBarcodeSDKImpl.startBarcodeScanner(isIOS ? JSON.stringify(config) : config, true).then(result => {
66
- barcodeItemMapperEventEmitter?.removeAllListeners(barcodeItemMapperEventName);
67
- barcodeItemMapperEventEmitter = null;
68
- resolve(mapRTUUIResult(result, BarcodeScannerUiResult));
69
- }).catch(error => {
70
- barcodeItemMapperEventEmitter?.removeAllListeners(barcodeItemMapperEventName);
71
- barcodeItemMapperEventEmitter = null;
72
- reject(error);
73
- });
74
- });
75
- }
76
- }
77
- return ScanbotBarcodeSDKImpl.startBarcodeScanner(isIOS ? JSON.stringify(config) : config, false).then(result => mapRTUUIResult(result, BarcodeScannerUiResult));
78
- },
79
- /**
80
- * Detect barcodes on the image represented by the file URL. The image file URL is part of the input parameters.
81
- *
82
- * @param {{imageFileUri: string, configuration: BarcodeScannerConfiguration}} params
83
- * @returns {Promise<BarcodeScannerResult>}
84
- */
85
- detectBarcodesOnImage: async params => {
86
- return ScanbotBarcodeSDKImpl.detectBarcodesOnImage(params).then(result => new BarcodeScannerResult(result));
87
- },
88
- /**
89
- * Extract images from a PDF represented by the file URL. The PDF file URL is part of the input parameters.
90
- *
91
- * @param {ExtractImagesFromPdfArguments} params
92
- * @returns {Promise<string[]>}
93
- */
94
- extractImagesFromPDF: params => {
95
- return ScanbotBarcodeSDKImpl.extractImagesFromPDF(params);
96
- },
97
- /**
98
- * Returns the Base 64 encoded representation of the image data.
99
- *
100
- * @returns {Promise<string>}
101
- */
102
- getImageData(imageUri) {
103
- return ScanbotBarcodeSDKImpl.getImageData(imageUri);
104
- },
105
- /**
106
- * Mock camera preview by using static images as a frame source.
107
- * This is useful for testing purposes.
108
- */
109
- mockCamera(params) {
110
- return ScanbotBarcodeSDKImpl.mockCamera(params);
111
- }
112
- };
1
+ import { ScanbotBarcodeSdk as ScanbotBarcodeSDK } from './Sdk';
113
2
  export default ScanbotBarcodeSDK;
114
- export * from './barcode';
115
- export * from './base';
116
- export * from './component/barcode-camera-view';
117
- export * from './documents';
118
- export * from './imageRef';
119
- export * from './ui_v2';
120
- export * from './utils';
3
+ export * from './Barcode';
4
+ export * from './ImageProcessor';
5
+ export * from './components';
6
+ export * from './types';
121
7
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["NativeEventEmitter","NativeModules","Platform","BarcodeScannerResult","BarcodeScannerUiResult","MultipleScanningMode","SingleScanningMode","mapRTUUIResult","LINKING_ERROR","select","ios","default","ScanbotBarcodeSDKImpl","ScanbotBarcodeSdk","Proxy","get","Error","isIOS","OS","ScanbotBarcodeSDK","initializeSdk","config","getLicenseInfo","cleanup","startBarcodeScanner","barcodeItemMapperEventName","barcodeItemMapperCallback","barcodeItemMapperEventEmitter","useCase","barcodeInfoMapping","barcodeItemMapper","removeAllListeners","addListener","barcodeItem","barcodeItemUuid","text","upcEanExtension","format","barcodeMappedData","onBarcodeItemMapper","Promise","resolve","reject","JSON","stringify","then","result","catch","error","detectBarcodesOnImage","params","extractImagesFromPDF","getImageData","imageUri","mockCamera"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["ScanbotBarcodeSdk","ScanbotBarcodeSDK"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":"AAAA,SAASA,iBAAiB,IAAIC,iBAAiB,QAAQ,OAAO;AAE9D,eAAeA,iBAAiB;AAChC,cAAc,WAAW;AACzB,cAAc,kBAAkB;AAChC,cAAc,cAAc;AAC5B,cAAc,SAAS","ignoreList":[]}
@@ -0,0 +1,100 @@
1
+ /// Auto-generated with ScanbotSDKCodegenV3. Modifications will be overwritten.
2
+ /// Generated from xplatforms/schemas/barcode_scanner/SdkConfiguration.yaml
3
+
4
+ /**
5
+ Initialize configuration for the Scanbot SDK.
6
+ */
7
+ export class SdkConfiguration {
8
+ /**
9
+ Your license key for the Scanbot SDK. See the "License Key" section below.
10
+ */
11
+
12
+ /**
13
+ Optional boolean flag to enable logging. See the "Logging" section below.
14
+
15
+ Default is false
16
+ */
17
+ loggingEnabled = false;
18
+ /**
19
+ Optional boolean flag that enables Scanbot SDK Core native logging (default is false, Android only).
20
+
21
+ Default is false
22
+ */
23
+ enableNativeLogging = false;
24
+ /**
25
+ Optional directory as file URI to override the default storage base directory of the Scanbot SDK. Refer to the section "Storage" for more details.
26
+ */
27
+ storageBaseDirectory = null;
28
+ /**
29
+ Optional file encryption mode, 'AES128' or 'AES256'.
30
+ */
31
+ fileEncryptionMode = null;
32
+ /**
33
+ Optional file encryption password. Refer to the section "Storage Encryption" for more details.
34
+ */
35
+ fileEncryptionPassword = null;
36
+ /**
37
+ If set to `true`, PerformanceHintApi is enabled, which lead to increase of performance due of increased use of top CPU cores (Android only), also increase battery usage.
38
+
39
+ Default is true
40
+ */
41
+ performanceHintApi = true;
42
+ /**
43
+ If set to `true`, GPU Acceleration will be enabled for Barcode Scanner, Document Scanner and Generic Document Recognizer (Android only).
44
+
45
+ Default is true
46
+ */
47
+ allowGpuAcceleration = true;
48
+ /**
49
+ Enables/disables XNNPACK acceleration for TensorFlow ML models, which provides highly optimized implementations of floating-point neural network operators (Android only).
50
+
51
+ Default is true
52
+ */
53
+ allowXnnpackAcceleration = true;
54
+
55
+ /** @param source {@displayType `DeepPartial<SdkConfiguration>`} */
56
+ constructor(source = {}) {
57
+ if (source.licenseKey !== undefined) {
58
+ this.licenseKey = source.licenseKey;
59
+ } else {
60
+ throw new Error('licenseKey must be present in constructor argument');
61
+ }
62
+ if (source.loggingEnabled !== undefined) {
63
+ this.loggingEnabled = source.loggingEnabled;
64
+ }
65
+ if (source.enableNativeLogging !== undefined) {
66
+ this.enableNativeLogging = source.enableNativeLogging;
67
+ }
68
+ if (source.storageBaseDirectory !== undefined) {
69
+ this.storageBaseDirectory = source.storageBaseDirectory != null ? source.storageBaseDirectory : null;
70
+ }
71
+ if (source.fileEncryptionMode !== undefined) {
72
+ this.fileEncryptionMode = source.fileEncryptionMode != null ? FileEncryptionModeValues.includes(source.fileEncryptionMode) ? source.fileEncryptionMode : null : null;
73
+ }
74
+ if (source.fileEncryptionPassword !== undefined) {
75
+ this.fileEncryptionPassword = source.fileEncryptionPassword != null ? source.fileEncryptionPassword : null;
76
+ }
77
+ if (source.performanceHintApi !== undefined) {
78
+ this.performanceHintApi = source.performanceHintApi;
79
+ }
80
+ if (source.allowGpuAcceleration !== undefined) {
81
+ this.allowGpuAcceleration = source.allowGpuAcceleration;
82
+ }
83
+ if (source.allowXnnpackAcceleration !== undefined) {
84
+ this.allowXnnpackAcceleration = source.allowXnnpackAcceleration;
85
+ }
86
+ }
87
+ }
88
+
89
+ /**
90
+ File encryption mode.
91
+
92
+ - `AES128`:
93
+ AES 128-bit encryption.
94
+ - `AES256`:
95
+ AES 256-bit encryption.
96
+ */
97
+
98
+ /** @hidden */
99
+ export const FileEncryptionModeValues = ['AES128', 'AES256'];
100
+ //# sourceMappingURL=SdkConfiguration.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["SdkConfiguration","loggingEnabled","enableNativeLogging","storageBaseDirectory","fileEncryptionMode","fileEncryptionPassword","performanceHintApi","allowGpuAcceleration","allowXnnpackAcceleration","constructor","source","licenseKey","undefined","Error","FileEncryptionModeValues","includes"],"sourceRoot":"../../../../src","sources":["types/base/SdkConfiguration.ts"],"mappings":"AAAA;AACA;;AAIA;AACA;AACA;AACA,OAAO,MAAMA,gBAAgB,CAAC;EAC5B;AACF;AACA;;EAEE;AACF;AACA;AACA;AACA;EACSC,cAAc,GAAY,KAAK;EACtC;AACF;AACA;AACA;AACA;EACSC,mBAAmB,GAAY,KAAK;EAC3C;AACF;AACA;EACSC,oBAAoB,GAAkB,IAAI;EACjD;AACF;AACA;EACSC,kBAAkB,GAA8B,IAAI;EAC3D;AACF;AACA;EACSC,sBAAsB,GAAkB,IAAI;EACnD;AACF;AACA;AACA;AACA;EACSC,kBAAkB,GAAY,IAAI;EACzC;AACF;AACA;AACA;AACA;EACSC,oBAAoB,GAAY,IAAI;EAC3C;AACF;AACA;AACA;AACA;EACSC,wBAAwB,GAAY,IAAI;;EAE/C;EACOC,WAAWA,CAACC,MAAqC,GAAG,CAAC,CAAC,EAAE;IAC7D,IAAIA,MAAM,CAACC,UAAU,KAAKC,SAAS,EAAE;MACnC,IAAI,CAACD,UAAU,GAAGD,MAAM,CAACC,UAAU;IACrC,CAAC,MAAM;MACL,MAAM,IAAIE,KAAK,CAAC,oDAAoD,CAAC;IACvE;IACA,IAAIH,MAAM,CAACT,cAAc,KAAKW,SAAS,EAAE;MACvC,IAAI,CAACX,cAAc,GAAGS,MAAM,CAACT,cAAc;IAC7C;IACA,IAAIS,MAAM,CAACR,mBAAmB,KAAKU,SAAS,EAAE;MAC5C,IAAI,CAACV,mBAAmB,GAAGQ,MAAM,CAACR,mBAAmB;IACvD;IACA,IAAIQ,MAAM,CAACP,oBAAoB,KAAKS,SAAS,EAAE;MAC7C,IAAI,CAACT,oBAAoB,GACvBO,MAAM,CAACP,oBAAoB,IAAI,IAAI,GAAGO,MAAM,CAACP,oBAAoB,GAAG,IAAI;IAC5E;IACA,IAAIO,MAAM,CAACN,kBAAkB,KAAKQ,SAAS,EAAE;MAC3C,IAAI,CAACR,kBAAkB,GACrBM,MAAM,CAACN,kBAAkB,IAAI,IAAI,GAC7BU,wBAAwB,CAACC,QAAQ,CAACL,MAAM,CAACN,kBAAkB,CAAC,GAC1DM,MAAM,CAACN,kBAAkB,GACzB,IAAI,GACN,IAAI;IACZ;IACA,IAAIM,MAAM,CAACL,sBAAsB,KAAKO,SAAS,EAAE;MAC/C,IAAI,CAACP,sBAAsB,GACzBK,MAAM,CAACL,sBAAsB,IAAI,IAAI,GAAGK,MAAM,CAACL,sBAAsB,GAAG,IAAI;IAChF;IACA,IAAIK,MAAM,CAACJ,kBAAkB,KAAKM,SAAS,EAAE;MAC3C,IAAI,CAACN,kBAAkB,GAAGI,MAAM,CAACJ,kBAAkB;IACrD;IACA,IAAII,MAAM,CAACH,oBAAoB,KAAKK,SAAS,EAAE;MAC7C,IAAI,CAACL,oBAAoB,GAAGG,MAAM,CAACH,oBAAoB;IACzD;IACA,IAAIG,MAAM,CAACF,wBAAwB,KAAKI,SAAS,EAAE;MACjD,IAAI,CAACJ,wBAAwB,GAAGE,MAAM,CAACF,wBAAwB;IACjE;EACF;AACF;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAWA;AACA,OAAO,MAAMM,wBAA2D,GAAG,CACzE,QAAQ,EACR,QAAQ,CACA","ignoreList":[]}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=customTypes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["types/base/customTypes.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,119 @@
1
+ export class SBError extends Error {
2
+ constructor(message) {
3
+ super(message);
4
+ }
5
+ }
6
+ export class InvalidLicenseError extends SBError {
7
+ type = 'InvalidLicense';
8
+ constructor(message) {
9
+ super(message);
10
+ }
11
+ }
12
+ export class NullPointerError extends SBError {
13
+ type = 'NullPointer';
14
+ constructor(message) {
15
+ super(message);
16
+ }
17
+ }
18
+ export class InvalidArgumentError extends SBError {
19
+ type = 'InvalidArgument';
20
+ constructor(message) {
21
+ super(message);
22
+ }
23
+ }
24
+ export class InvalidImageRefError extends SBError {
25
+ type = 'InvalidImageRef';
26
+ constructor(message) {
27
+ super(message);
28
+ }
29
+ }
30
+ export class ComponentUnavailableError extends SBError {
31
+ type = 'ComponentUnavailable';
32
+ constructor(message) {
33
+ super(message);
34
+ }
35
+ }
36
+ export class IllegalStateError extends SBError {
37
+ type = 'IllegalState';
38
+ constructor(message) {
39
+ super(message);
40
+ }
41
+ }
42
+ export class IOError extends SBError {
43
+ type = 'IOError';
44
+ constructor(message) {
45
+ super(message);
46
+ }
47
+ }
48
+ export class InvalidDataError extends SBError {
49
+ type = 'InvalidData';
50
+ constructor(message) {
51
+ super(message);
52
+ }
53
+ }
54
+ export class OutOfMemoryError extends SBError {
55
+ type = 'OutOfMemory';
56
+ constructor(message) {
57
+ super(message);
58
+ }
59
+ }
60
+ export class TimeoutError extends SBError {
61
+ type = 'Timeout';
62
+ constructor(message) {
63
+ super(message);
64
+ }
65
+ }
66
+ export class UnknownError extends SBError {
67
+ type = 'Unknown';
68
+ constructor(message) {
69
+ super(message);
70
+ }
71
+ }
72
+ export class ProcessError extends SBError {
73
+ type = 'ProcessError';
74
+ constructor(message, code) {
75
+ super(message);
76
+ this.code = code;
77
+ }
78
+ }
79
+
80
+ /**
81
+ * @internal
82
+ * @hidden
83
+ */
84
+ export function createSBError(err) {
85
+ const code = Number(err.code);
86
+ const message = err.message || err.errorMessage || 'An unknown error occurred';
87
+ switch (code) {
88
+ case 1:
89
+ return new UnknownError(message);
90
+ case 2:
91
+ return new InvalidLicenseError(message);
92
+ case 3:
93
+ return new NullPointerError(message);
94
+ case 4:
95
+ return new InvalidArgumentError(message);
96
+ case 5:
97
+ return new InvalidImageRefError(message);
98
+ case 6:
99
+ return new ComponentUnavailableError(message);
100
+ case 7:
101
+ return new IllegalStateError(message);
102
+ case 8:
103
+ return new IOError(message);
104
+ case 9:
105
+ return new InvalidDataError(message);
106
+ case 11:
107
+ return new OutOfMemoryError(message);
108
+ case 12:
109
+ return new TimeoutError(message);
110
+ default:
111
+ {
112
+ if (code >= 100) {
113
+ return new ProcessError(message, code);
114
+ }
115
+ return new UnknownError(message);
116
+ }
117
+ }
118
+ }
119
+ //# sourceMappingURL=errors.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["SBError","Error","constructor","message","InvalidLicenseError","type","NullPointerError","InvalidArgumentError","InvalidImageRefError","ComponentUnavailableError","IllegalStateError","IOError","InvalidDataError","OutOfMemoryError","TimeoutError","UnknownError","ProcessError","code","createSBError","err","Number","errorMessage"],"sourceRoot":"../../../../src","sources":["types/base/errors.ts"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,5 @@
1
+ export * from './SdkConfiguration';
2
+ export * from './customTypes';
3
+ export * from './errors';
4
+ export * from './utils';
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["types/base/index.ts"],"mappings":"AAAA,cAAc,oBAAoB;AAClC,cAAc,eAAe;AAC7B,cAAc,UAAU;AACxB,cAAc,SAAS","ignoreList":[]}
@@ -0,0 +1,52 @@
1
+ import { ImageRef } from '../core';
2
+ import { createSBError } from './errors';
3
+
4
+ /**
5
+ * @internal
6
+ * @hidden
7
+ */
8
+ export function mapRTUUIResult(result, LClass) {
9
+ if (result.status === 'OK') {
10
+ return {
11
+ ...result,
12
+ data: new LClass(result.data)
13
+ };
14
+ } else {
15
+ return result;
16
+ }
17
+ }
18
+
19
+ /**
20
+ * @internal
21
+ * @hidden
22
+ */
23
+
24
+ export function handleImageInput(image) {
25
+ const handleInput = input => {
26
+ if (input instanceof ImageRef) {
27
+ return input.uniqueId ? {
28
+ uniqueId: input.uniqueId
29
+ } : {
30
+ buffer: input.buffer
31
+ };
32
+ } else {
33
+ return {
34
+ imageFileUri: input
35
+ };
36
+ }
37
+ };
38
+ return Array.isArray(image) ? image.map(handleInput) : handleInput(image);
39
+ }
40
+
41
+ /**
42
+ * @internal
43
+ * @hidden
44
+ */
45
+ export async function withSBErrorHandling(fn) {
46
+ try {
47
+ return await fn();
48
+ } catch (error) {
49
+ throw createSBError(error);
50
+ }
51
+ }
52
+ //# sourceMappingURL=utils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["ImageRef","createSBError","mapRTUUIResult","result","LClass","status","data","handleImageInput","image","handleInput","input","uniqueId","buffer","imageFileUri","Array","isArray","map","withSBErrorHandling","fn","error"],"sourceRoot":"../../../../src","sources":["types/base/utils.ts"],"mappings":"AAAA,SAAsBA,QAAQ,QAAQ,SAAS;AAE/C,SAASC,aAAa,QAAQ,UAAU;;AAExC;AACA;AACA;AACA;AACA,OAAO,SAASC,cAAcA,CAC5BC,MAAqC,EACrCC,MAAyC,EACvB;EAClB,IAAID,MAAM,CAACE,MAAM,KAAK,IAAI,EAAE;IAC1B,OAAO;MACL,GAAGF,MAAM;MACTG,IAAI,EAAE,IAAIF,MAAM,CAACD,MAAM,CAACG,IAAI;IAC9B,CAAC;EACH,CAAC,MAAM;IACL,OAAOH,MAAM;EACf;AACF;;AAEA;AACA;AACA;AACA;;AAGA,OAAO,SAASI,gBAAgBA,CAC9BC,KAAgC,EACe;EAC/C,MAAMC,WAAW,GAAIC,KAAiB,IAA2B;IAC/D,IAAIA,KAAK,YAAYV,QAAQ,EAAE;MAC7B,OAAOU,KAAK,CAACC,QAAQ,GAAG;QAAEA,QAAQ,EAAED,KAAK,CAACC;MAAS,CAAC,GAAG;QAAEC,MAAM,EAAEF,KAAK,CAACE;MAAO,CAAC;IACjF,CAAC,MAAM;MACL,OAAO;QAAEC,YAAY,EAAEH;MAAM,CAAC;IAChC;EACF,CAAC;EAED,OAAOI,KAAK,CAACC,OAAO,CAACP,KAAK,CAAC,GAAGA,KAAK,CAACQ,GAAG,CAACP,WAAW,CAAC,GAAGA,WAAW,CAACD,KAAK,CAAC;AAC3E;;AAEA;AACA;AACA;AACA;AACA,OAAO,eAAeS,mBAAmBA,CAAIC,EAAoB,EAAc;EAC7E,IAAI;IACF,OAAO,MAAMA,EAAE,CAAC,CAAC;EACnB,CAAC,CAAC,OAAOC,KAAU,EAAE;IACnB,MAAMlB,aAAa,CAACkB,KAAK,CAAC;EAC5B;AACF","ignoreList":[]}