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
@@ -0,0 +1,243 @@
1
+ import { ToJsonConfiguration } from '../common/JsonSerializationTypes';
2
+ import { DeepPartial } from '../utils/utils';
3
+ /**
4
+ Status of the license plate scanner.
5
+
6
+ - `OKAY`:
7
+ License is valid and accepted.
8
+ - `TRIAL`:
9
+ No license set yet. The SDK is in trial mode.
10
+ - `OKAY_EXPIRING_SOON`:
11
+ License is valid but will expire soon. Make sure to update your license before it expires to ensure uninterrupted function.
12
+ - `FAILURE_NOT_SET`:
13
+ No license set. On platforms that support trial mode, it means that the SDK's trial mode is over.
14
+ - `FAILURE_CORRUPTED`:
15
+ No license active. The set license was unreadable or has an invalid format.
16
+ - `FAILURE_WRONG_OS`:
17
+ No license active. The set license does not cover the current operating system.
18
+ - `FAILURE_APP_ID_MISMATCH`:
19
+ No license active. The set license does not cover the current app's bundle identifier.
20
+ - `FAILURE_EXPIRED`:
21
+ No license active. The set license is valid but it has expired.
22
+ - `FAILURE_SERVER`:
23
+ No license active. The online license check failed.
24
+ - `FAILURE_VERSION`:
25
+ No license active. The set license does not cover the current SDK version.
26
+ - `FAILURE_INACTIVE`:
27
+ No license active. The set license is not yet active.
28
+ */
29
+ export type LicenseStatus =
30
+ /**
31
+ License is valid and accepted.
32
+ */
33
+ 'OKAY'
34
+ /**
35
+ No license set yet. The SDK is in trial mode.
36
+ */
37
+ | 'TRIAL'
38
+ /**
39
+ License is valid but will expire soon. Make sure to update your license before it expires to ensure uninterrupted function.
40
+ */
41
+ | 'OKAY_EXPIRING_SOON'
42
+ /**
43
+ No license set. On platforms that support trial mode, it means that the SDK's trial mode is over.
44
+ */
45
+ | 'FAILURE_NOT_SET'
46
+ /**
47
+ No license active. The set license was unreadable or has an invalid format.
48
+ */
49
+ | 'FAILURE_CORRUPTED'
50
+ /**
51
+ No license active. The set license does not cover the current operating system.
52
+ */
53
+ | 'FAILURE_WRONG_OS'
54
+ /**
55
+ No license active. The set license does not cover the current app's bundle identifier.
56
+ */
57
+ | 'FAILURE_APP_ID_MISMATCH'
58
+ /**
59
+ No license active. The set license is valid but it has expired.
60
+ */
61
+ | 'FAILURE_EXPIRED'
62
+ /**
63
+ No license active. The online license check failed.
64
+ */
65
+ | 'FAILURE_SERVER'
66
+ /**
67
+ No license active. The set license does not cover the current SDK version.
68
+ */
69
+ | 'FAILURE_VERSION'
70
+ /**
71
+ No license active. The set license is not yet active.
72
+ */
73
+ | 'FAILURE_INACTIVE';
74
+ /** @hidden */
75
+ export declare const LicenseStatusValues: ReadonlyArray<LicenseStatus>;
76
+ /**
77
+ Description of error that occurred during device deregistration.
78
+ */
79
+ export declare class DeviceDeregistrationError {
80
+ /**
81
+ Sequential number of the device registration. Starts with 0. Each time a call to initializeLicense with a new license is made, the device ID.
82
+ */
83
+ readonly deviceId: number;
84
+ /**
85
+ Error message describing the error.
86
+ */
87
+ readonly errorMessage: string;
88
+ /** @param source {@displayType `DeepPartial<DeviceDeregistrationError>`} */
89
+ constructor(source?: DeepPartial<DeviceDeregistrationError>);
90
+ serialize(config?: ToJsonConfiguration): DeepPartial<DeviceDeregistrationError>;
91
+ }
92
+ /**
93
+ Information about the SDK license.
94
+ */
95
+ export declare class LicenseInfo {
96
+ /**
97
+ License status.
98
+ */
99
+ readonly status: LicenseStatus;
100
+ /**
101
+ True if the license status corresponds to a valid license.
102
+ */
103
+ readonly isValid: boolean;
104
+ /**
105
+ Message describing the license status.
106
+ */
107
+ readonly licenseStatusMessage: string;
108
+ /**
109
+ Expiration timestamp of the license or trial period in seconds since the UNIX epoch.
110
+ */
111
+ readonly expirationTimestamp: number;
112
+ /**
113
+ Expiration date of the license or trial period in ISO 8601 date-time format.
114
+ */
115
+ readonly expirationDateString: string;
116
+ /**
117
+ Additional error message in case of a license error.
118
+ */
119
+ readonly errorMessage: string;
120
+ /**
121
+ True if an online license check is in progress.
122
+ */
123
+ readonly onlineLicenseCheckInProgress: boolean;
124
+ /**
125
+ The currently active license. May be different from the license used to initialize
126
+ the SDK if the online license check has completed and the server has sent
127
+ an updated license.
128
+ */
129
+ readonly license: string;
130
+ /**
131
+ Number of devices the license is valid for, if the license is floating.
132
+ */
133
+ readonly devices: number | null;
134
+ /**
135
+ Time in milliseconds until the next online license check will be performed. -1 if no online license check is scheduled.
136
+ */
137
+ readonly nextOnlineLicenseCheckInMs: number;
138
+ /**
139
+ List of errors that occurred during device deregistration. If for some device deregistration completed successfully, it will not be listed here. For each device at most one entry will be present.
140
+ */
141
+ readonly deviceDeregistationErrors: DeviceDeregistrationError[];
142
+ /** @param source {@displayType `DeepPartial<LicenseInfo>`} */
143
+ constructor(source?: DeepPartial<LicenseInfo>);
144
+ serialize(config?: ToJsonConfiguration): DeepPartial<LicenseInfo>;
145
+ }
146
+ /**
147
+ License features.
148
+
149
+ - `BARCODE_SCANNER`:
150
+ Barcode scanner.
151
+ - `CHECK_SCANNER`:
152
+ Check scanner.
153
+ - `CREDIT_CARD_SCANNER`:
154
+ Credit card scanner.
155
+ - `IMAGE_PROCESSING`:
156
+ Image processing.
157
+ - `DOCUMENT_SCANNER`:
158
+ Document scanner.
159
+ - `LICENSE_PLATE_SCANNER`:
160
+ License plate scanner.
161
+ - `MEDICAL_CERTIFICATE_SCANNER`:
162
+ Medical certificate scanner.
163
+ - `MRZ_SCANNER`:
164
+ MRZ scanner.
165
+ - `OCR`:
166
+ OCR.
167
+ - `TEXT_PATTERN_SCANNER`:
168
+ Text pattern scanner.
169
+ - `PDF_CREATION`:
170
+ PDF creation.
171
+ - `ID_CARD_SCANNER`:
172
+ ID card scanner.
173
+ - `DRIVER_LICENSE_SCANNER`:
174
+ Driver license scanner.
175
+ - `EHIC_SCANNER`:
176
+ EHIC scanner.
177
+ - `DOCUMENT_CLASSIFICATION`:
178
+ Document classification.
179
+ */
180
+ export type Feature =
181
+ /**
182
+ Barcode scanner.
183
+ */
184
+ 'BARCODE_SCANNER'
185
+ /**
186
+ Check scanner.
187
+ */
188
+ | 'CHECK_SCANNER'
189
+ /**
190
+ Credit card scanner.
191
+ */
192
+ | 'CREDIT_CARD_SCANNER'
193
+ /**
194
+ Image processing.
195
+ */
196
+ | 'IMAGE_PROCESSING'
197
+ /**
198
+ Document scanner.
199
+ */
200
+ | 'DOCUMENT_SCANNER'
201
+ /**
202
+ License plate scanner.
203
+ */
204
+ | 'LICENSE_PLATE_SCANNER'
205
+ /**
206
+ Medical certificate scanner.
207
+ */
208
+ | 'MEDICAL_CERTIFICATE_SCANNER'
209
+ /**
210
+ MRZ scanner.
211
+ */
212
+ | 'MRZ_SCANNER'
213
+ /**
214
+ OCR.
215
+ */
216
+ | 'OCR'
217
+ /**
218
+ Text pattern scanner.
219
+ */
220
+ | 'TEXT_PATTERN_SCANNER'
221
+ /**
222
+ PDF creation.
223
+ */
224
+ | 'PDF_CREATION'
225
+ /**
226
+ ID card scanner.
227
+ */
228
+ | 'ID_CARD_SCANNER'
229
+ /**
230
+ Driver license scanner.
231
+ */
232
+ | 'DRIVER_LICENSE_SCANNER'
233
+ /**
234
+ EHIC scanner.
235
+ */
236
+ | 'EHIC_SCANNER'
237
+ /**
238
+ Document classification.
239
+ */
240
+ | 'DOCUMENT_CLASSIFICATION';
241
+ /** @hidden */
242
+ export declare const FeatureValues: ReadonlyArray<Feature>;
243
+ //# sourceMappingURL=LicensingTypes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LicensingTypes.d.ts","sourceRoot":"","sources":["../../../../../../src/types/core/licensing/LicensingTypes.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAE7C;;;;;;;;;;;;;;;;;;;;;;;;;EAyBE;AACF,MAAM,MAAM,aAAa;AACvB;;IAEI;AACF,MAAM;AACR;;IAEI;GACF,OAAO;AACT;;IAEI;GACF,oBAAoB;AACtB;;IAEI;GACF,iBAAiB;AACnB;;IAEI;GACF,mBAAmB;AACrB;;IAEI;GACF,kBAAkB;AACpB;;IAEI;GACF,yBAAyB;AAC3B;;IAEI;GACF,iBAAiB;AACnB;;IAEI;GACF,gBAAgB;AAClB;;IAEI;GACF,iBAAiB;AACnB;;IAEI;GACF,kBAAkB,CAAC;AAEvB,cAAc;AACd,eAAO,MAAM,mBAAmB,EAAE,aAAa,CAAC,aAAa,CAYnD,CAAC;AAEX;;EAEE;AACF,qBAAa,yBAAyB;IACpC;;QAEI;IACJ,SAAgB,QAAQ,EAAE,MAAM,CAAC;IACjC;;QAEI;IACJ,SAAgB,YAAY,EAAE,MAAM,CAAC;IAErC,4EAA4E;gBACzD,MAAM,GAAE,WAAW,CAAC,yBAAyB,CAAM;IAa/D,SAAS,CACd,MAAM,GAAE,mBAA+C,GACtD,WAAW,CAAC,yBAAyB,CAAC;CAM1C;AAED;;EAEE;AACF,qBAAa,WAAW;IACtB;;QAEI;IACJ,SAAgB,MAAM,EAAE,aAAa,CAAC;IACtC;;QAEI;IACJ,SAAgB,OAAO,EAAE,OAAO,CAAC;IACjC;;QAEI;IACJ,SAAgB,oBAAoB,EAAE,MAAM,CAAC;IAC7C;;QAEI;IACJ,SAAgB,mBAAmB,EAAE,MAAM,CAAC;IAC5C;;QAEI;IACJ,SAAgB,oBAAoB,EAAE,MAAM,CAAC;IAC7C;;QAEI;IACJ,SAAgB,YAAY,EAAE,MAAM,CAAC;IACrC;;QAEI;IACJ,SAAgB,4BAA4B,EAAE,OAAO,CAAC;IACtD;;;;QAII;IACJ,SAAgB,OAAO,EAAE,MAAM,CAAC;IAChC;;QAEI;IACJ,SAAgB,OAAO,EAAE,MAAM,GAAG,IAAI,CAAQ;IAC9C;;QAEI;IACJ,SAAgB,0BAA0B,EAAE,MAAM,CAAC;IACnD;;QAEI;IACJ,SAAgB,yBAAyB,EAAE,yBAAyB,EAAE,CAAC;IAEvE,8DAA8D;gBAC3C,MAAM,GAAE,WAAW,CAAC,WAAW,CAAM;IA4DjD,SAAS,CACd,MAAM,GAAE,mBAA+C,GACtD,WAAW,CAAC,WAAW,CAAC;CAiB5B;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiCE;AACF,MAAM,MAAM,OAAO;AACjB;;IAEI;AACF,iBAAiB;AACnB;;IAEI;GACF,eAAe;AACjB;;IAEI;GACF,qBAAqB;AACvB;;IAEI;GACF,kBAAkB;AACpB;;IAEI;GACF,kBAAkB;AACpB;;IAEI;GACF,uBAAuB;AACzB;;IAEI;GACF,6BAA6B;AAC/B;;IAEI;GACF,aAAa;AACf;;IAEI;GACF,KAAK;AACP;;IAEI;GACF,sBAAsB;AACxB;;IAEI;GACF,cAAc;AAChB;;IAEI;GACF,iBAAiB;AACnB;;IAEI;GACF,wBAAwB;AAC1B;;IAEI;GACF,cAAc;AAChB;;IAEI;GACF,yBAAyB,CAAC;AAE9B,cAAc;AACd,eAAO,MAAM,aAAa,EAAE,aAAa,CAAC,OAAO,CAgBvC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './LicensingTypes';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/types/core/licensing/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC"}
@@ -1,9 +1,9 @@
1
- import { BadgeStyle, PolygonStyle, StyledText } from '../../ui_v2/common/Common';
2
- import { DeepPartial, PartiallyConstructible } from '../../utils/utils';
1
+ import { DeepPartial } from '../../utils/utils';
2
+ import { BadgeStyle, PolygonStyle, StyledText } from '../common/Common';
3
3
  /**
4
4
  Configuration of the overlay polygon displayed on top of a barcode in the camera preview.
5
5
  */
6
- export declare class ArOverlayPolygonConfiguration extends PartiallyConstructible {
6
+ export declare class ArOverlayPolygonConfiguration {
7
7
  /**
8
8
  Control the visibility of the overlay polygon.
9
9
 
@@ -33,12 +33,29 @@ Where to display the barcode info box in the camera preview.
33
33
  - `ABOVE`:
34
34
  Display the barcode info box above the overlay polygon.
35
35
  */
36
- export type BarcodeItemInfoPosition = 'DISABLED' | 'STACKED' | 'BELOW' | 'ABOVE';
37
- export declare const BarcodeItemInfoPositionValues: BarcodeItemInfoPosition[];
36
+ export type BarcodeItemInfoPosition =
37
+ /**
38
+ Don't display any barcode info.
39
+ */
40
+ 'DISABLED'
41
+ /**
42
+ Display the barcode info box in the center of the overlay polygon.
43
+ */
44
+ | 'STACKED'
45
+ /**
46
+ Display the barcode info box below the overlay polygon.
47
+ */
48
+ | 'BELOW'
49
+ /**
50
+ Display the barcode info box above the overlay polygon.
51
+ */
52
+ | 'ABOVE';
53
+ /** @hidden */
54
+ export declare const BarcodeItemInfoPositionValues: ReadonlyArray<BarcodeItemInfoPosition>;
38
55
  /**
39
56
  Configuration of the barcode info box displayed in the camera preview.
40
57
  */
41
- export declare class BarcodeItemConfiguration extends PartiallyConstructible {
58
+ export declare class BarcodeItemConfiguration {
42
59
  /**
43
60
  Control the visibility of the barcode image in the info box.
44
61
 
@@ -75,7 +92,7 @@ export declare class BarcodeItemConfiguration extends PartiallyConstructible {
75
92
  /**
76
93
  Configuration of the AR overlay displayed on top of barcodes in the camera preview.
77
94
  */
78
- export declare class ArOverlayGeneralConfiguration extends PartiallyConstructible {
95
+ export declare class ArOverlayGeneralConfiguration {
79
96
  /**
80
97
  Control the visibility of the user guidance.
81
98
 
@@ -112,7 +129,7 @@ export declare class ArOverlayGeneralConfiguration extends PartiallyConstructibl
112
129
  /**
113
130
  Configuration of the overlay polygon displayed on top of a barcode in the camera preview.
114
131
  */
115
- export declare class FindAndPickArOverlayPolygonConfiguration extends PartiallyConstructible {
132
+ export declare class FindAndPickArOverlayPolygonConfiguration {
116
133
  /**
117
134
  Control the visibility of the overlay polygon.
118
135
 
@@ -137,7 +154,7 @@ export declare class FindAndPickArOverlayPolygonConfiguration extends PartiallyC
137
154
  /**
138
155
  Configuration of the round badge on find and pick ar layer.
139
156
  */
140
- export declare class FindAndPickBadgeConfiguration extends PartiallyConstructible {
157
+ export declare class FindAndPickBadgeConfiguration {
141
158
  /**
142
159
  Appearance of the badge when a barcode is partially scanned.
143
160
  */
@@ -156,7 +173,7 @@ export declare class FindAndPickBadgeConfiguration extends PartiallyConstructibl
156
173
  /**
157
174
  Configuration of the AR overlay.
158
175
  */
159
- export declare class ArOverlayFindAndPickConfiguration extends PartiallyConstructible {
176
+ export declare class ArOverlayFindAndPickConfiguration {
160
177
  /**
161
178
  Control the visibility of the user guidance.
162
179
 
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ArTrackingOverlayConfiguration.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/core/ui_v2/barcode/ArTrackingOverlayConfiguration.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAmB,UAAU,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAEzF;;EAEE;AACF,qBAAa,6BAA6B;IACxC;;;;QAII;IACG,OAAO,EAAE,OAAO,CAAQ;IAC/B;;QAEI;IACG,UAAU,EAAE,YAAY,CAK5B;IACH;;QAEI;IACG,QAAQ,EAAE,YAAY,CAK1B;IAEH,gFAAgF;gBAC7D,MAAM,GAAE,WAAW,CAAC,6BAA6B,CAAM;CAW3E;AAED;;;;;;;;;;;EAWE;AACF,MAAM,MAAM,uBAAuB;AACjC;;IAEI;AACF,UAAU;AACZ;;IAEI;GACF,SAAS;AACX;;IAEI;GACF,OAAO;AACT;;IAEI;GACF,OAAO,CAAC;AAEZ,cAAc;AACd,eAAO,MAAM,6BAA6B,EAAE,aAAa,CAAC,uBAAuB,CAKvE,CAAC;AAEX;;EAEE;AACF,qBAAa,wBAAwB;IACnC;;;;QAII;IACG,YAAY,EAAE,OAAO,CAAQ;IACpC;;QAEI;IACG,aAAa,EAAE,UAAU,CAG7B;IACH;;QAEI;IACG,gBAAgB,EAAE,UAAU,CAGhC;IACH;;QAEI;IACG,eAAe,EAAE,UAAU,CAG/B;IACH;;QAEI;IACG,kBAAkB,EAAE,UAAU,CAGlC;IACH;;QAEI;IACG,kBAAkB,EAAE,YAAY,CAKpC;IACH;;QAEI;IACG,oBAAoB,EAAE,YAAY,CAKtC;IAEH,2EAA2E;gBACxD,MAAM,GAAE,WAAW,CAAC,wBAAwB,CAAM;CAuBtE;AAED;;EAEE;AACF,qBAAa,6BAA6B;IACxC;;;;QAII;IACG,OAAO,EAAE,OAAO,CAAS;IAChC;;QAEI;IACG,YAAY,EAAE,UAAU,CAG5B;IACH;;;;QAII;IACG,yBAAyB,EAAE,OAAO,CAAS;IAClD;;;;QAII;IACG,uBAAuB,EAAE,uBAAuB,CAAc;IACrE;;QAEI;IACG,OAAO,EAAE,6BAA6B,CAI1C;IACH;;QAEI;IACG,wBAAwB,EAAE,wBAAwB,CAwBtD;IAEH,gFAAgF;gBAC7D,MAAM,GAAE,WAAW,CAAC,6BAA6B,CAAM;CAoB3E;AAED;;EAEE;AACF,qBAAa,wCAAwC;IACnD;;;;QAII;IACG,OAAO,EAAE,OAAO,CAAQ;IAC/B;;QAEI;IACG,gBAAgB,EAAE,YAAY,CAKlC;IACH;;QAEI;IACG,QAAQ,EAAE,YAAY,CAK1B;IACH;;QAEI;IACG,SAAS,EAAE,YAAY,CAK3B;IAEH,2FAA2F;gBACxE,MAAM,GAAE,WAAW,CAAC,wCAAwC,CAAM;CActF;AAED;;EAEE;AACF,qBAAa,6BAA6B;IACxC;;QAEI;IACG,gBAAgB,EAAE,UAAU,CAQhC;IACH;;QAEI;IACG,QAAQ,EAAE,UAAU,CAQxB;IACH;;QAEI;IACG,SAAS,EAAE,UAAU,CAQzB;IAEH,gFAAgF;gBAC7D,MAAM,GAAE,WAAW,CAAC,6BAA6B,CAAM;CAW3E;AAED;;EAEE;AACF,qBAAa,iCAAiC;IAC5C;;;;QAII;IACG,OAAO,EAAE,OAAO,CAAS;IAChC;;;;QAII;IACG,yBAAyB,EAAE,OAAO,CAAQ;IACjD;;QAEI;IACG,OAAO,EAAE,wCAAwC,CACL;IACnD;;QAEI;IACG,KAAK,EAAE,6BAA6B,CAAyC;IAEpF,oFAAoF;gBACjE,MAAM,GAAE,WAAW,CAAC,iCAAiC,CAAM;CAc/E"}
@@ -1,10 +1,10 @@
1
- import { BarcodeItemMapper } from '../../ui_v2/barcode/BarcodeItemMapper';
2
- import { ButtonConfiguration, StyledText } from '../../ui_v2/common/Common';
3
- import { DeepPartial, PartiallyConstructible } from '../../utils/utils';
1
+ import { DeepPartial } from '../../utils/utils';
2
+ import { ButtonConfiguration, StyledText } from '../common/Common';
3
+ import { BarcodeItemMapper } from './BarcodeItemMapper';
4
4
  /**
5
5
  Configuration of the mapper's error dialog.
6
6
  */
7
- export declare class BarcodeItemErrorState extends PartiallyConstructible {
7
+ export declare class BarcodeItemErrorState {
8
8
  /**
9
9
  Title displayed above the error message.
10
10
  */
@@ -27,7 +27,7 @@ export declare class BarcodeItemErrorState extends PartiallyConstructible {
27
27
  /**
28
28
  Format of the mapped barcode data.
29
29
  */
30
- export declare class BarcodeMappedData extends PartiallyConstructible {
30
+ export declare class BarcodeMappedData {
31
31
  /**
32
32
  Title of the barcode.
33
33
  */
@@ -54,7 +54,7 @@ export declare namespace BarcodeMappedData {
54
54
  /**
55
55
  Configuration of the barcode data mapping.
56
56
  */
57
- export declare class BarcodeInfoMapping extends PartiallyConstructible {
57
+ export declare class BarcodeInfoMapping {
58
58
  /**
59
59
  Callback to map the barcode data to the data of the corresponding product.
60
60
  */
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BarcodeInfoMapping.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/core/ui_v2/barcode/BarcodeInfoMapping.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,mBAAmB,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACnE,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD;;EAEE;AACF,qBAAa,qBAAqB;IAChC;;QAEI;IACG,KAAK,EAAE,UAAU,CAGrB;IACH;;QAEI;IACG,QAAQ,EAAE,UAAU,CAGxB;IACH;;QAEI;IACG,WAAW,EAAE,mBAAmB,CAA+B;IACtE;;QAEI;IACG,YAAY,EAAE,mBAAmB,CAA+B;IAEvE,wEAAwE;gBACrD,MAAM,GAAE,WAAW,CAAC,qBAAqB,CAAM;CAcnE;AAED;;EAEE;AACF,qBAAa,iBAAiB;IAC5B;;QAEI;IACG,KAAK,EAAE,MAAM,CAAC;IACrB;;QAEI;IACG,QAAQ,EAAE,MAAM,CAAC;IACxB;;QAEI;IACG,YAAY,EAAE,MAAM,CAAC;IAE5B,oEAAoE;gBACjD,MAAM,GAAE,WAAW,CAAC,iBAAiB,CAAM;CAiB/D;AAED,yBAAiB,iBAAiB,CAAC;IACjC;;;;QAII;IACG,MAAM,iBAAiB,EAAE,MAAwB,CAAC;CAC1D;AAED;;EAEE;AACF,qBAAa,kBAAkB;IAC7B;;QAEI;IACG,iBAAiB,EAAE,iBAAiB,GAAG,IAAI,CAAQ;IAC1D;;;;QAII;IACG,UAAU,EAAE,MAAM,CAAqB;IAC9C;;;;QAII;IACG,YAAY,EAAE,MAAM,CAAqB;IAChD;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAA0B;IAC1D;;QAEI;IACG,cAAc,EAAE,UAAU,CAG9B;IACH;;QAEI;IACG,UAAU,EAAE,qBAAqB,CAAiC;IAEzE,qEAAqE;gBAClD,MAAM,GAAE,WAAW,CAAC,kBAAkB,CAAM;CAoBhE"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BarcodeItemMapper.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/core/ui_v2/barcode/BarcodeItemMapper.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAEzD,MAAM,MAAM,iBAAiB,GAAG,CAC9B,WAAW,EAAE,WAAW,EACxB,QAAQ,EAAE,CAAC,iBAAiB,EAAE,iBAAiB,KAAK,IAAI,EACxD,OAAO,EAAE,MAAM,IAAI,KAChB,IAAI,CAAC"}
@@ -1,18 +1,18 @@
1
- import { CommonBarcodeScannerConfiguration } from '../../ui_v2/barcode/BarcodeScannerConfiguration';
2
- import { BarcodeTextLocalization } from '../../ui_v2/barcode/BarcodeTextLocalization';
3
- import { BarcodeUseCase } from '../../ui_v2/barcode/BarcodeUseCase';
4
- import { ActionBarConfiguration } from '../../ui_v2/common/ActionBarConfiguration';
5
- import { CameraConfiguration } from '../../ui_v2/common/CameraConfiguration';
6
- import { CameraPermissionScreen } from '../../ui_v2/common/CameraPermission';
7
- import { Palette, Sound, Timeouts, Vibration } from '../../ui_v2/common/Common';
8
- import { TopBarConfiguration } from '../../ui_v2/common/TopBarConfiguration';
9
- import { UserGuidanceConfiguration } from '../../ui_v2/common/UserGuidanceConfiguration';
10
- import { ViewFinderConfiguration } from '../../ui_v2/common/ViewFinderConfiguration';
11
- import { DeepPartial, PartiallyConstructible } from '../../utils/utils';
1
+ import { BarcodeScannerConfiguration } from '../../barcode/BarcodeScannerTypes';
2
+ import { DeepPartial } from '../../utils/utils';
3
+ import { ActionBarConfiguration } from '../common/ActionBarConfiguration';
4
+ import { CameraConfiguration } from '../common/CameraConfiguration';
5
+ import { CameraPermissionScreen } from '../common/CameraPermission';
6
+ import { Palette, Sound, Timeouts, Vibration } from '../common/Common';
7
+ import { TopBarConfiguration } from '../common/TopBarConfiguration';
8
+ import { UserGuidanceConfiguration } from '../common/UserGuidanceConfiguration';
9
+ import { ViewFinderConfiguration } from '../common/ViewFinderConfiguration';
10
+ import { BarcodeTextLocalization } from './BarcodeTextLocalization';
11
+ import { BarcodeUseCase } from './BarcodeUseCase';
12
12
  /**
13
13
  Configuration of the barcode scanner screen.
14
14
  */
15
- export declare class BarcodeScannerScreenConfiguration extends PartiallyConstructible {
15
+ export declare class BarcodeScannerScreenConfiguration {
16
16
  /**
17
17
  Version number of the configuration object.
18
18
 
@@ -66,7 +66,7 @@ export declare class BarcodeScannerScreenConfiguration extends PartiallyConstruc
66
66
  /**
67
67
  Configuration of the scanning behavior.
68
68
  */
69
- scannerConfiguration: CommonBarcodeScannerConfiguration;
69
+ scannerConfiguration: BarcodeScannerConfiguration;
70
70
  /**
71
71
  Configuration of the barcode scanner screen's behavior.
72
72
  */
@@ -84,7 +84,7 @@ export declare class BarcodeScannerScreenConfiguration extends PartiallyConstruc
84
84
  */
85
85
  timeouts: Timeouts;
86
86
  /**
87
- If enabled, the screen will not turn off while the barcode scanner is active. (Android only).
87
+ If enabled, the screen will not turn off while the barcode scanner is active.
88
88
 
89
89
  Default is true
90
90
  */
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BarcodeScannerScreenConfiguration.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/core/ui_v2/barcode/BarcodeScannerScreenConfiguration.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,2BAA2B,EAAE,MAAM,mCAAmC,CAAC;AAEhF,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,sBAAsB,EAAE,MAAM,kCAAkC,CAAC;AAC1E,OAAO,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AACpE,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AACpE,OAAO,EAKL,OAAO,EAEP,KAAK,EAEL,QAAQ,EACR,SAAS,EACV,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AACpE,OAAO,EAAE,yBAAyB,EAAE,MAAM,qCAAqC,CAAC;AAChF,OAAO,EAAuB,uBAAuB,EAAE,MAAM,mCAAmC,CAAC;AACjG,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AACpE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAGlD;;EAEE;AACF,qBAAa,iCAAiC;IAC5C;;;;QAII;IACJ,SAAgB,OAAO,EAAE,MAAM,CAAS;IACxC;;;;QAII;IACJ,SAAgB,MAAM,EAAE,MAAM,CAAoB;IAClD;;QAEI;IACG,OAAO,EAAE,OAAO,CAiBpB;IACH;;QAEI;IACG,YAAY,EAAE,uBAAuB,CAAmC;IAC/E;;;;QAII;IACG,eAAe,EAAE,MAAM,CAAwB;IACtD;;QAEI;IACG,MAAM,EAAE,mBAAmB,CAoB/B;IACH;;QAEI;IACG,SAAS,EAAE,sBAAsB,CAyBrC;IACH;;QAEI;IACG,UAAU,EAAE,uBAAuB,CASvC;IACH;;QAEI;IACG,YAAY,EAAE,yBAAyB,CAQ3C;IACH;;QAEI;IACG,gBAAgB,EAAE,sBAAsB,CA2C5C;IACH;;QAEI;IACG,mBAAmB,EAAE,mBAAmB,CAA+B;IAC9E;;QAEI;IACG,oBAAoB,EAAE,2BAA2B,CAAuC;IAC/F;;QAEI;IACG,OAAO,EAAE,cAAc,CAA8B;IAC5D;;QAEI;IACG,KAAK,EAAE,KAAK,CAAqE;IACxF;;QAEI;IACG,SAAS,EAAE,SAAS,CAAoC;IAC/D;;QAEI;IACG,QAAQ,EAAE,QAAQ,CAA+D;IACxF;;;;QAII;IACG,YAAY,EAAE,OAAO,CAAQ;IAEpC,oFAAoF;gBACjE,MAAM,GAAE,WAAW,CAAC,iCAAiC,CAAM;CAqD/E"}
@@ -1,10 +1,10 @@
1
1
  import { BarcodeItem } from '../../barcode/BarcodeScannerTypes';
2
- import { ToJsonConfiguration } from '../../utils/json/JsonSerializationTypes';
3
- import { DeepPartial, PartiallyConstructible } from '../../utils/utils';
2
+ import { ToJsonConfiguration } from '../../common/JsonSerializationTypes';
3
+ import { DeepPartial } from '../../utils/utils';
4
4
  /**
5
5
  Data about the scanned barcode.
6
6
  */
7
- export declare class BarcodeScannerUiItem extends PartiallyConstructible {
7
+ export declare class BarcodeScannerUiItem {
8
8
  /**
9
9
  Scanned barcode.
10
10
  */
@@ -23,7 +23,7 @@ export declare class BarcodeScannerUiItem extends PartiallyConstructible {
23
23
  /**
24
24
  Results of the barcode scan.
25
25
  */
26
- export declare class BarcodeScannerUiResult extends PartiallyConstructible {
26
+ export declare class BarcodeScannerUiResult {
27
27
  /**
28
28
  Selected zoom factor for the camera.
29
29
 
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BarcodeScannerUiResult.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/core/ui_v2/barcode/BarcodeScannerUiResult.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,mCAAmC,CAAC;AAChE,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAC1E,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAEhD;;EAEE;AACF,qBAAa,oBAAoB;IAC/B;;QAEI;IACJ,SAAgB,OAAO,EAAE,WAAW,CAAC;IACrC;;QAEI;IACJ,SAAgB,KAAK,EAAE,MAAM,CAAC;IAE9B,uEAAuE;gBACpD,MAAM,GAAE,WAAW,CAAC,oBAAoB,CAAM;IAapD,SAAS,CACpB,MAAM,GAAE,mBAA+C,GACtD,OAAO,CAAC,WAAW,CAAC,oBAAoB,CAAC,CAAC;IAO7C,OAAO,CAAC,SAAS,CAAkB;IAE5B,OAAO;IAQD,YAAY,IAAI,OAAO,CAAC,IAAI,CAAC;CAG3C;AAED;;EAEE;AACF,qBAAa,sBAAsB;IACjC;;;;QAII;IACJ,SAAgB,kBAAkB,EAAE,MAAM,CAAO;IACjD;;QAEI;IACJ,SAAgB,KAAK,EAAE,oBAAoB,EAAE,CAAM;IAEnD,yEAAyE;gBACtD,MAAM,GAAE,WAAW,CAAC,sBAAsB,CAAM;IAWtD,SAAS,CACpB,MAAM,GAAE,mBAA+C,GACtD,OAAO,CAAC,WAAW,CAAC,sBAAsB,CAAC,CAAC;IAW/C,OAAO,CAAC,SAAS,CAAkB;IAE5B,OAAO;IAUD,YAAY,IAAI,OAAO,CAAC,IAAI,CAAC;CAO3C"}
@@ -1,8 +1,8 @@
1
- import { DeepPartial, PartiallyConstructible } from '../../utils/utils';
1
+ import { DeepPartial } from '../../utils/utils';
2
2
  /**
3
3
  Configuration of the all strings for barcode scanner.
4
4
  */
5
- export declare class BarcodeTextLocalization extends PartiallyConstructible {
5
+ export declare class BarcodeTextLocalization {
6
6
  /**
7
7
  Cancel button text for the top bar.
8
8
 
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BarcodeTextLocalization.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/core/ui_v2/barcode/BarcodeTextLocalization.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAEhD;;EAEE;AACF,qBAAa,uBAAuB;IAClC;;;;QAII;IACG,kBAAkB,EAAE,MAAM,CAAY;IAC7C;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAe;IACzC;;;;QAII;IACG,YAAY,EAAE,MAAM,CAAoC;IAC/D;;;;QAII;IACG,gCAAgC,EAAE,MAAM,CAAwB;IACvE;;;;QAII;IACG,iCAAiC,EAAE,MAAM,CAAuB;IACvE;;;;QAII;IACG,oCAAoC,EAAE,MAAM,CAC4E;IAC/H;;;;QAII;IACG,uCAAuC,EAAE,MAAM,CAAW;IACjE;;;;QAII;IACG,wCAAwC,EAAE,MAAM,CAAY;IACnE;;;;QAII;IACG,0BAA0B,EAAE,MAAM,CAAkB;IAC3D;;;;QAII;IACG,yBAAyB,EAAE,MAAM,CAA6C;IACrF;;;;QAII;IACG,iCAAiC,EAAE,MAAM,CAAY;IAC5D;;;;QAII;IACG,iCAAiC,EAAE,MAAM,CAAY;IAC5D;;;;QAII;IACG,gBAAgB,EAAE,MAAM,CAAW;IAC1C;;;;QAII;IACG,mBAAmB,EAAE,MAAM,CAAe;IACjD;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAY;IAC5C;;;;QAII;IACG,wBAAwB,EAAE,MAAM,CAAoB;IAC3D;;;;QAII;IACG,qBAAqB,EAAE,MAAM,CAAuB;IAC3D;;;;QAII;IACG,wBAAwB,EAAE,MAAM,CACoD;IAC3F;;;;QAII;IACG,kCAAkC,EAAE,MAAM,CAAW;IAC5D;;;;QAII;IACG,sBAAsB,EAAE,MAAM,CAAc;IACnD;;;;QAII;IACG,qBAAqB,EAAE,MAAM,CAAmB;IACvD;;;;QAII;IACG,mCAAmC,EAAE,MAAM,CAAiB;IACnE;;;;QAII;IACG,4BAA4B,EAAE,MAAM,CAAsB;IACjE;;;;QAII;IACG,+BAA+B,EAAE,MAAM,CACwB;IACtE;;;;QAII;IACG,mCAAmC,EAAE,MAAM,CAAY;IAC9D;;;;QAII;IACG,mCAAmC,EAAE,MAAM,CAAiB;IACnE;;;;QAII;IACG,6BAA6B,EAAE,MAAM,CAAsB;IAClE;;;;QAII;IACG,gCAAgC,EAAE,MAAM,CACuB;IACtE;;;;QAII;IACG,oCAAoC,EAAE,MAAM,CAAa;IAChE;;;;QAII;IACG,oCAAoC,EAAE,MAAM,CAAY;IAC/D;;;;QAII;IACG,oCAAoC,EAAE,MAAM,CAAY;IAC/D;;;;QAII;IACG,mCAAmC,EAAE,MAAM,CAAkB;IACpE;;;;QAII;IACG,kCAAkC,EAAE,MAAM,CAAwB;IACzE;;;;QAII;IACG,wCAAwC,EAAE,MAAM,CAAiB;IACxE;;;;QAII;IACG,iCAAiC,EAAE,MAAM,CAA+B;IAC/E;;;;QAII;IACG,uCAAuC,EAAE,MAAM,CACkB;IACxE;;;;QAII;IACG,kCAAkC,EAAE,MAAM,CAAsB;IACvE;;;;QAII;IACG,2BAA2B,EAAE,MAAM,CAAW;IACrD;;;;QAII;IACG,0DAA0D,EAAE,MAAM,CACtC;IACnC;;;;QAII;IACG,mDAAmD,EAAE,MAAM,CACrB;IAE7C,0EAA0E;gBACvD,MAAM,GAAE,WAAW,CAAC,uBAAuB,CAAM;CA8HrE"}
@@ -0,0 +1,8 @@
1
+ import { FindAndPickScanningMode } from './FindAndPickScanningModeUseCase';
2
+ import { MultipleScanningMode } from './MultipleScanningModeUseCase';
3
+ import { SingleScanningMode } from './SingleScanningModeUseCase';
4
+ /**
5
+ Configuration of the barcode scanner screen's behavior.
6
+ */
7
+ export type BarcodeUseCase = SingleScanningMode | MultipleScanningMode | FindAndPickScanningMode;
8
+ //# sourceMappingURL=BarcodeUseCase.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BarcodeUseCase.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/core/ui_v2/barcode/BarcodeUseCase.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,uBAAuB,EAAE,MAAM,kCAAkC,CAAC;AAC3E,OAAO,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AAEjE;;EAEE;AACF,MAAM,MAAM,cAAc,GAAG,kBAAkB,GAAG,oBAAoB,GAAG,uBAAuB,CAAC"}
@@ -1,11 +1,11 @@
1
- import { ArOverlayFindAndPickConfiguration } from '../../ui_v2/barcode/ArTrackingOverlayConfiguration';
2
- import { ManualCountEditDialog, Sheet, SheetContent } from '../../ui_v2/barcode/MultipleScanningModeUseCase';
3
- import { ScanbotAlertDialog } from '../../ui_v2/common/ScanbotAlertDialog';
4
- import { DeepPartial, PartiallyConstructible } from '../../utils/utils';
1
+ import { DeepPartial } from '../../utils/utils';
2
+ import { ScanbotAlertDialog } from '../common/ScanbotAlertDialog';
3
+ import { ArOverlayFindAndPickConfiguration } from './ArTrackingOverlayConfiguration';
4
+ import { ManualCountEditDialog, Sheet, SheetContent } from './MultipleScanningModeUseCase';
5
5
  /**
6
6
  Configuration of the barcode to find and scan.
7
7
  */
8
- export declare class ExpectedBarcode extends PartiallyConstructible {
8
+ export declare class ExpectedBarcode {
9
9
  /**
10
10
  Value of the barcode to find. If not set, any barcode value will be accepted.
11
11
  */
@@ -38,7 +38,7 @@ export declare namespace ExpectedBarcode {
38
38
  /**
39
39
  Configuration of the Find and Pick barcode scanning mode.
40
40
  */
41
- export declare class FindAndPickScanningMode extends PartiallyConstructible {
41
+ export declare class FindAndPickScanningMode {
42
42
  readonly _type: 'FindAndPickScanningMode';
43
43
  /**
44
44
  Color of the selected barcode.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FindAndPickScanningModeUseCase.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/core/ui_v2/barcode/FindAndPickScanningModeUseCase.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAWhD,OAAO,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAClE,OAAO,EACL,iCAAiC,EAGlC,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EACL,qBAAqB,EACrB,KAAK,EACL,YAAY,EAEb,MAAM,+BAA+B,CAAC;AAEvC;;EAEE;AACF,qBAAa,eAAe;IAC1B;;QAEI;IACG,YAAY,EAAE,MAAM,CAAC;IAC5B;;QAEI;IACG,KAAK,EAAE,MAAM,GAAG,IAAI,CAAQ;IACnC;;QAEI;IACG,KAAK,EAAE,MAAM,GAAG,IAAI,CAAQ;IACnC;;;;QAII;IACG,KAAK,EAAE,MAAM,CAAK;IAEzB,kEAAkE;gBAC/C,MAAM,GAAE,WAAW,CAAC,eAAe,CAAM;CAgB7D;AAED,yBAAiB,eAAe,CAAC;IAC/B;;;;QAII;IACG,MAAM,iBAAiB,EAAE,MAAwB,CAAC;CAC1D;AAED;;EAEE;AACF,qBAAa,uBAAuB;IAClC,SAAgB,KAAK,EAAE,yBAAyB,CAA6B;IAC7E;;;;QAII;IACG,sBAAsB,EAAE,MAAM,CAAsB;IAC3D;;;;QAII;IACG,sBAAsB,EAAE,MAAM,CAAqB;IAC1D;;;;QAII;IACG,uBAAuB,EAAE,MAAM,CAAqB;IAC3D;;;;QAII;IACG,gBAAgB,EAAE,OAAO,CAAS;IACzC;;QAEI;IACG,gBAAgB,EAAE,eAAe,EAAE,CAAM;IAChD;;;;QAII;IACG,mBAAmB,EAAE,MAAM,CAAQ;IAC1C;;QAEI;IACG,KAAK,EAAE,KAAK,CAYhB;IACH;;QAEI;IACG,YAAY,EAAE,YAAY,CA2E9B;IACH;;QAEI;IACG,qBAAqB,EAAE,qBAAqB,CAmChD;IACH;;QAEI;IACG,SAAS,EAAE,iCAAiC,CAoDhD;IACH;;;;QAII;IACG,gCAAgC,EAAE,OAAO,CAAQ;IACxD;;QAEI;IACG,yBAAyB,EAAE,kBAAkB,CAqCjD;IACH;;;;QAII;IACG,8BAA8B,EAAE,OAAO,CAAS;IACvD;;QAEI;IACG,uBAAuB,EAAE,kBAAkB,CAqC/C;IAEH,0EAA0E;gBACvD,MAAM,GAAE,WAAW,CAAC,uBAAuB,CAAM;CA8CrE"}
@@ -1,7 +1,7 @@
1
- import { ArOverlayGeneralConfiguration } from '../../ui_v2/barcode/ArTrackingOverlayConfiguration';
2
- import { BarcodeInfoMapping } from '../../ui_v2/barcode/BarcodeInfoMapping';
3
- import { BadgedButton, ButtonConfiguration, IconStyle, StyledText } from '../../ui_v2/common/Common';
4
- import { DeepPartial, PartiallyConstructible } from '../../utils/utils';
1
+ import { DeepPartial } from '../../utils/utils';
2
+ import { BadgedButton, ButtonConfiguration, IconStyle, StyledText } from '../common/Common';
3
+ import { ArOverlayGeneralConfiguration } from './ArTrackingOverlayConfiguration';
4
+ import { BarcodeInfoMapping } from './BarcodeInfoMapping';
5
5
  /**
6
6
  Configuration of the mode used for scanning multiple barcodes.
7
7
 
@@ -10,8 +10,17 @@ Configuration of the mode used for scanning multiple barcodes.
10
10
  - `UNIQUE`:
11
11
  Only scan barcodes with unique values. Subsequent barcodes with the same values will be ignored.
12
12
  */
13
- export type MultipleBarcodesScanningMode = 'COUNTING' | 'UNIQUE';
14
- export declare const MultipleBarcodesScanningModeValues: MultipleBarcodesScanningMode[];
13
+ export type MultipleBarcodesScanningMode =
14
+ /**
15
+ Scan barcodes even if they have the same value and count the number of repeated barcodes.
16
+ */
17
+ 'COUNTING'
18
+ /**
19
+ Only scan barcodes with unique values. Subsequent barcodes with the same values will be ignored.
20
+ */
21
+ | 'UNIQUE';
22
+ /** @hidden */
23
+ export declare const MultipleBarcodesScanningModeValues: ReadonlyArray<MultipleBarcodesScanningMode>;
15
24
  /**
16
25
  Configuration of the barcode result sheet's default visibility state.
17
26
 
@@ -20,8 +29,17 @@ Configuration of the barcode result sheet's default visibility state.
20
29
  - `COLLAPSED_SHEET`:
21
30
  Result sheet is visible and collapsed and can be expanded by dragging it up.
22
31
  */
23
- export type SheetMode = 'BUTTON' | 'COLLAPSED_SHEET';
24
- export declare const SheetModeValues: SheetMode[];
32
+ export type SheetMode =
33
+ /**
34
+ Result sheet is hidden and can be opened by pressing the button. The button can show the total barcode count.
35
+ */
36
+ 'BUTTON'
37
+ /**
38
+ Result sheet is visible and collapsed and can be expanded by dragging it up.
39
+ */
40
+ | 'COLLAPSED_SHEET';
41
+ /** @hidden */
42
+ export declare const SheetModeValues: ReadonlyArray<SheetMode>;
25
43
  /**
26
44
  Configuration of the barcodes result sheet's height while collapsed.
27
45
 
@@ -30,12 +48,21 @@ Configuration of the barcodes result sheet's height while collapsed.
30
48
  - `LARGE`:
31
49
  Result sheet is not completely collapsed, revealing more information.
32
50
  */
33
- export type CollapsedVisibleHeight = 'SMALL' | 'LARGE';
34
- export declare const CollapsedVisibleHeightValues: CollapsedVisibleHeight[];
51
+ export type CollapsedVisibleHeight =
52
+ /**
53
+ Result sheet is collapsed as much as possible, showing only the top part.
54
+ */
55
+ 'SMALL'
56
+ /**
57
+ Result sheet is not completely collapsed, revealing more information.
58
+ */
59
+ | 'LARGE';
60
+ /** @hidden */
61
+ export declare const CollapsedVisibleHeightValues: ReadonlyArray<CollapsedVisibleHeight>;
35
62
  /**
36
63
  Configuration of the preview mode for scanning multiple barcodes.
37
64
  */
38
- export declare class Sheet extends PartiallyConstructible {
65
+ export declare class Sheet {
39
66
  /**
40
67
  Mode used for the preview for scanning multiple barcodes.
41
68
 
@@ -58,7 +85,7 @@ export declare class Sheet extends PartiallyConstructible {
58
85
  /**
59
86
  Configuration of the swipe-to-delete button.
60
87
  */
61
- export declare class SwipeToDelete extends PartiallyConstructible {
88
+ export declare class SwipeToDelete {
62
89
  /**
63
90
  Whether swipe to delete is enabled or not.
64
91
 
@@ -83,7 +110,7 @@ export declare class SwipeToDelete extends PartiallyConstructible {
83
110
  /**
84
111
  Configuration of the dialog to manually edit the barcode count.
85
112
  */
86
- export declare class ManualCountEditDialog extends PartiallyConstructible {
113
+ export declare class ManualCountEditDialog {
87
114
  /**
88
115
  Color of the edit dialog's background.
89
116
 
@@ -128,7 +155,7 @@ export declare class ManualCountEditDialog extends PartiallyConstructible {
128
155
  /**
129
156
  Configuration of the list containing the barcodes that have already been scanned.
130
157
  */
131
- export declare class SheetContent extends PartiallyConstructible {
158
+ export declare class SheetContent {
132
159
  /**
133
160
  Color of the list's background.
134
161
 
@@ -217,7 +244,7 @@ export declare class SheetContent extends PartiallyConstructible {
217
244
  /**
218
245
  Configuration of the mode for scanning multiple barcodes.
219
246
  */
220
- export declare class MultipleScanningMode extends PartiallyConstructible {
247
+ export declare class MultipleScanningMode {
221
248
  readonly _type: 'MultipleScanningMode';
222
249
  /**
223
250
  Time interval in milliseconds before a barcode is counted again. 0 = no delay. The default value is 1000.