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
@@ -4,14 +4,13 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.Vibration = exports.Timeouts = exports.StyledText = exports.SoundTypeValues = exports.Sound = exports.RoundButton = exports.PopupMenuItem = exports.PolygonStyle = exports.Palette = exports.OrientationLockModeValues = exports.IconStyle = exports.IconButton = exports.ForegroundStyle = exports.EdgeInsets = exports.CameraPreviewModeValues = exports.ButtonConfiguration = exports.BarButtonConfiguration = exports.BadgedButton = exports.BadgeStyle = exports.BackgroundStyle = void 0;
7
- var _utils = require("../../utils/utils");
8
7
  /// Auto-generated with ScanbotSDKCodegenV3. Modifications will be overwritten.
9
8
  /// Generated from rtu-ui-v2/schemas/common/Common.yaml
10
9
 
11
10
  /**
12
11
  Value palette describing the colors of the scanner screens.
13
12
  */
14
- class Palette extends _utils.PartiallyConstructible {
13
+ class Palette {
15
14
  /**
16
15
  The primary color used for enabled elements.
17
16
 
@@ -111,7 +110,6 @@ class Palette extends _utils.PartiallyConstructible {
111
110
 
112
111
  /** @param source {@displayType `DeepPartial<Palette>`} */
113
112
  constructor(source = {}) {
114
- super();
115
113
  if (source.sbColorPrimary !== undefined) {
116
114
  this.sbColorPrimary = source.sbColorPrimary;
117
115
  }
@@ -167,7 +165,7 @@ class Palette extends _utils.PartiallyConstructible {
167
165
  Configuration of the text field appearance.
168
166
  */
169
167
  exports.Palette = Palette;
170
- class StyledText extends _utils.PartiallyConstructible {
168
+ class StyledText {
171
169
  /**
172
170
  Determines whether the text field is visible or not.
173
171
 
@@ -195,7 +193,6 @@ class StyledText extends _utils.PartiallyConstructible {
195
193
 
196
194
  /** @param source {@displayType `DeepPartial<StyledText>`} */
197
195
  constructor(source = {}) {
198
- super();
199
196
  if (source.visible !== undefined) {
200
197
  this.visible = source.visible;
201
198
  }
@@ -215,7 +212,7 @@ class StyledText extends _utils.PartiallyConstructible {
215
212
  Configuration of the icon appearance.
216
213
  */
217
214
  exports.StyledText = StyledText;
218
- class IconStyle extends _utils.PartiallyConstructible {
215
+ class IconStyle {
219
216
  /**
220
217
  Determines whether the icon is visible or not.
221
218
 
@@ -231,7 +228,6 @@ class IconStyle extends _utils.PartiallyConstructible {
231
228
 
232
229
  /** @param source {@displayType `DeepPartial<IconStyle>`} */
233
230
  constructor(source = {}) {
234
- super();
235
231
  if (source.visible !== undefined) {
236
232
  this.visible = source.visible;
237
233
  }
@@ -245,7 +241,7 @@ class IconStyle extends _utils.PartiallyConstructible {
245
241
  Configuration of the icon appearance on a button.
246
242
  */
247
243
  exports.IconStyle = IconStyle;
248
- class IconButton extends _utils.PartiallyConstructible {
244
+ class IconButton {
249
245
  /**
250
246
  Determines whether the icon is visible on the button.
251
247
 
@@ -267,7 +263,6 @@ class IconButton extends _utils.PartiallyConstructible {
267
263
 
268
264
  /** @param source {@displayType `DeepPartial<IconButton>`} */
269
265
  constructor(source = {}) {
270
- super();
271
266
  if (source.visible !== undefined) {
272
267
  this.visible = source.visible;
273
268
  }
@@ -284,7 +279,7 @@ class IconButton extends _utils.PartiallyConstructible {
284
279
  Configuration of the polygon appearance.
285
280
  */
286
281
  exports.IconButton = IconButton;
287
- class PolygonStyle extends _utils.PartiallyConstructible {
282
+ class PolygonStyle {
288
283
  /**
289
284
  The color of the polygon outline.
290
285
 
@@ -312,7 +307,6 @@ class PolygonStyle extends _utils.PartiallyConstructible {
312
307
 
313
308
  /** @param source {@displayType `DeepPartial<PolygonStyle>`} */
314
309
  constructor(source = {}) {
315
- super();
316
310
  if (source.strokeColor !== undefined) {
317
311
  this.strokeColor = source.strokeColor;
318
312
  }
@@ -332,7 +326,7 @@ class PolygonStyle extends _utils.PartiallyConstructible {
332
326
  Configuration of the background appearance for buttons and hints.
333
327
  */
334
328
  exports.PolygonStyle = PolygonStyle;
335
- class BackgroundStyle extends _utils.PartiallyConstructible {
329
+ class BackgroundStyle {
336
330
  /**
337
331
  The color of the outline.
338
332
 
@@ -354,7 +348,6 @@ class BackgroundStyle extends _utils.PartiallyConstructible {
354
348
 
355
349
  /** @param source {@displayType `DeepPartial<BackgroundStyle>`} */
356
350
  constructor(source = {}) {
357
- super();
358
351
  if (source.strokeColor !== undefined) {
359
352
  this.strokeColor = source.strokeColor;
360
353
  }
@@ -371,7 +364,7 @@ class BackgroundStyle extends _utils.PartiallyConstructible {
371
364
  Configuration of the appearance for foreground elements (e.g. text and/or icons, etc).
372
365
  */
373
366
  exports.BackgroundStyle = BackgroundStyle;
374
- class ForegroundStyle extends _utils.PartiallyConstructible {
367
+ class ForegroundStyle {
375
368
  /**
376
369
  Determines whether the icon is visible or not.
377
370
 
@@ -393,7 +386,6 @@ class ForegroundStyle extends _utils.PartiallyConstructible {
393
386
 
394
387
  /** @param source {@displayType `DeepPartial<ForegroundStyle>`} */
395
388
  constructor(source = {}) {
396
- super();
397
389
  if (source.iconVisible !== undefined) {
398
390
  this.iconVisible = source.iconVisible;
399
391
  }
@@ -410,7 +402,7 @@ class ForegroundStyle extends _utils.PartiallyConstructible {
410
402
  Configuration of the badge.
411
403
  */
412
404
  exports.ForegroundStyle = ForegroundStyle;
413
- class BadgeStyle extends _utils.PartiallyConstructible {
405
+ class BadgeStyle {
414
406
  /**
415
407
  Determines whether the badge is visible or not.
416
408
 
@@ -430,7 +422,6 @@ class BadgeStyle extends _utils.PartiallyConstructible {
430
422
 
431
423
  /** @param source {@displayType `DeepPartial<BadgeStyle>`} */
432
424
  constructor(source = {}) {
433
- super();
434
425
  if (source.visible !== undefined) {
435
426
  this.visible = source.visible;
436
427
  }
@@ -447,7 +438,7 @@ class BadgeStyle extends _utils.PartiallyConstructible {
447
438
  Configuration of the round button.
448
439
  */
449
440
  exports.BadgeStyle = BadgeStyle;
450
- class RoundButton extends _utils.PartiallyConstructible {
441
+ class RoundButton {
451
442
  /**
452
443
  Determines whether the button is visible or not.
453
444
 
@@ -487,7 +478,6 @@ class RoundButton extends _utils.PartiallyConstructible {
487
478
 
488
479
  /** @param source {@displayType `DeepPartial<RoundButton>`} */
489
480
  constructor(source = {}) {
490
- super();
491
481
  if (source.visible !== undefined) {
492
482
  this.visible = source.visible;
493
483
  }
@@ -513,7 +503,7 @@ class RoundButton extends _utils.PartiallyConstructible {
513
503
  Configuration of the button with a badge.
514
504
  */
515
505
  exports.RoundButton = RoundButton;
516
- class BadgedButton extends _utils.PartiallyConstructible {
506
+ class BadgedButton {
517
507
  /**
518
508
  The color of the badge's background.
519
509
 
@@ -559,7 +549,6 @@ class BadgedButton extends _utils.PartiallyConstructible {
559
549
 
560
550
  /** @param source {@displayType `DeepPartial<BadgedButton>`} */
561
551
  constructor(source = {}) {
562
- super();
563
552
  if (source.badgeBackgroundColor !== undefined) {
564
553
  this.badgeBackgroundColor = source.badgeBackgroundColor;
565
554
  }
@@ -588,7 +577,7 @@ class BadgedButton extends _utils.PartiallyConstructible {
588
577
  Configuration of the button.
589
578
  */
590
579
  exports.BadgedButton = BadgedButton;
591
- class ButtonConfiguration extends _utils.PartiallyConstructible {
580
+ class ButtonConfiguration {
592
581
  /**
593
582
  Determines whether the button is visible or not.
594
583
 
@@ -618,7 +607,6 @@ class ButtonConfiguration extends _utils.PartiallyConstructible {
618
607
 
619
608
  /** @param source {@displayType `DeepPartial<ButtonConfiguration>`} */
620
609
  constructor(source = {}) {
621
- super();
622
610
  if (source.visible !== undefined) {
623
611
  this.visible = source.visible;
624
612
  }
@@ -641,7 +629,7 @@ class ButtonConfiguration extends _utils.PartiallyConstructible {
641
629
  Configuration for the popup menu items.
642
630
  */
643
631
  exports.ButtonConfiguration = ButtonConfiguration;
644
- class PopupMenuItem extends _utils.PartiallyConstructible {
632
+ class PopupMenuItem {
645
633
  /**
646
634
  The text to be displayed on the button.
647
635
  */
@@ -659,7 +647,6 @@ class PopupMenuItem extends _utils.PartiallyConstructible {
659
647
 
660
648
  /** @param source {@displayType `DeepPartial<PopupMenuItem>`} */
661
649
  constructor(source = {}) {
662
- super();
663
650
  if (source.title !== undefined) {
664
651
  this.title = new StyledText(source.title);
665
652
  }
@@ -676,7 +663,7 @@ class PopupMenuItem extends _utils.PartiallyConstructible {
676
663
  Configuration of the button located on a bar.
677
664
  */
678
665
  exports.PopupMenuItem = PopupMenuItem;
679
- class BarButtonConfiguration extends _utils.PartiallyConstructible {
666
+ class BarButtonConfiguration {
680
667
  /**
681
668
  Determines whether the button is visible or not.
682
669
 
@@ -704,7 +691,6 @@ class BarButtonConfiguration extends _utils.PartiallyConstructible {
704
691
 
705
692
  /** @param source {@displayType `DeepPartial<BarButtonConfiguration>`} */
706
693
  constructor(source = {}) {
707
- super();
708
694
  if (source.visible !== undefined) {
709
695
  this.visible = source.visible;
710
696
  }
@@ -734,6 +720,7 @@ Configure the orientation of the interface.
734
720
  Lock the orientation to landscape.
735
721
  */
736
722
  exports.BarButtonConfiguration = BarButtonConfiguration;
723
+ /** @hidden */
737
724
  const OrientationLockModeValues = exports.OrientationLockModeValues = ['NONE', 'PORTRAIT', 'LANDSCAPE'];
738
725
 
739
726
  /**
@@ -745,6 +732,7 @@ Configuration of the camera preview mode.
745
732
  In this mode, the camera preview frames fill the entire layout view - the preview frames may contain additional content at the edges that are not visible in the preview layout.
746
733
  */
747
734
 
735
+ /** @hidden */
748
736
  const CameraPreviewModeValues = exports.CameraPreviewModeValues = ['FIT_IN', 'FILL_IN'];
749
737
 
750
738
  /**
@@ -756,12 +744,13 @@ Determines the successful detection sound.
756
744
  The old, classic beep sound.
757
745
  */
758
746
 
747
+ /** @hidden */
759
748
  const SoundTypeValues = exports.SoundTypeValues = ['MODERN_BEEP', 'CLASSIC_BEEP'];
760
749
 
761
750
  /**
762
751
  Configuration for the sound.
763
752
  */
764
- class Sound extends _utils.PartiallyConstructible {
753
+ class Sound {
765
754
  /**
766
755
  Determine whether the beep sound should be enabled or not when a barcode is detected.
767
756
 
@@ -777,7 +766,6 @@ class Sound extends _utils.PartiallyConstructible {
777
766
 
778
767
  /** @param source {@displayType `DeepPartial<Sound>`} */
779
768
  constructor(source = {}) {
780
- super();
781
769
  if (source.successBeepEnabled !== undefined) {
782
770
  this.successBeepEnabled = source.successBeepEnabled;
783
771
  }
@@ -791,7 +779,7 @@ class Sound extends _utils.PartiallyConstructible {
791
779
  Configure the vibration.
792
780
  */
793
781
  exports.Sound = Sound;
794
- class Vibration extends _utils.PartiallyConstructible {
782
+ class Vibration {
795
783
  /**
796
784
  Determine whether vibration should be enabled or not when a barcode is detected.
797
785
 
@@ -801,7 +789,6 @@ class Vibration extends _utils.PartiallyConstructible {
801
789
 
802
790
  /** @param source {@displayType `DeepPartial<Vibration>`} */
803
791
  constructor(source = {}) {
804
- super();
805
792
  if (source.enabled !== undefined) {
806
793
  this.enabled = source.enabled;
807
794
  }
@@ -812,7 +799,7 @@ class Vibration extends _utils.PartiallyConstructible {
812
799
  Configuration of timeouts.
813
800
  */
814
801
  exports.Vibration = Vibration;
815
- class Timeouts extends _utils.PartiallyConstructible {
802
+ class Timeouts {
816
803
  /**
817
804
  Sets the length of time, in milliseconds, when the scanner should auto close. Default is 0 (disabled).
818
805
 
@@ -828,7 +815,6 @@ class Timeouts extends _utils.PartiallyConstructible {
828
815
 
829
816
  /** @param source {@displayType `DeepPartial<Timeouts>`} */
830
817
  constructor(source = {}) {
831
- super();
832
818
  if (source.autoCancelTimeout !== undefined) {
833
819
  this.autoCancelTimeout = source.autoCancelTimeout;
834
820
  }
@@ -842,7 +828,7 @@ class Timeouts extends _utils.PartiallyConstructible {
842
828
  Represents the insets of a rectangle.
843
829
  */
844
830
  exports.Timeouts = Timeouts;
845
- class EdgeInsets extends _utils.PartiallyConstructible {
831
+ class EdgeInsets {
846
832
  /**
847
833
  The top inset.
848
834
 
@@ -870,7 +856,6 @@ class EdgeInsets extends _utils.PartiallyConstructible {
870
856
 
871
857
  /** @param source {@displayType `DeepPartial<EdgeInsets>`} */
872
858
  constructor(source = {}) {
873
- super();
874
859
  if (source.top !== undefined) {
875
860
  this.top = source.top;
876
861
  }
@@ -0,0 +1 @@
1
+ {"version":3,"names":["Palette","sbColorPrimary","sbColorPrimaryDisabled","sbColorNegative","sbColorPositive","sbColorWarning","sbColorSecondary","sbColorSecondaryDisabled","sbColorOnPrimary","sbColorOnSecondary","sbColorSurface","sbColorOutline","sbColorOnSurfaceVariant","sbColorOnSurface","sbColorSurfaceLow","sbColorSurfaceHigh","sbColorModalOverlay","constructor","source","undefined","exports","StyledText","visible","text","color","useShadow","IconStyle","IconButton","accessibilityDescription","PolygonStyle","strokeColor","fillColor","strokeWidth","cornerRadius","BackgroundStyle","ForegroundStyle","iconVisible","BadgeStyle","background","foregroundColor","RoundButton","backgroundColor","activeBackgroundColor","activeForegroundColor","BadgedButton","badgeBackgroundColor","badgeForegroundColor","ButtonConfiguration","foreground","PopupMenuItem","title","icon","BarButtonConfiguration","OrientationLockModeValues","CameraPreviewModeValues","SoundTypeValues","Sound","successBeepEnabled","soundType","Vibration","enabled","Timeouts","autoCancelTimeout","initialScanDelay","EdgeInsets","top","left","bottom","right"],"sourceRoot":"../../../../../../src","sources":["types/core/ui_v2/common/Common.ts"],"mappings":";;;;;;AAAA;AACA;;AAIA;AACA;AACA;AACO,MAAMA,OAAO,CAAC;EACnB;AACF;AACA;AACA;AACA;EACSC,cAAc,GAAW,SAAS;EACzC;AACF;AACA;AACA;AACA;EACSC,sBAAsB,GAAW,SAAS;EACjD;AACF;AACA;AACA;AACA;EACSC,eAAe,GAAW,SAAS;EAC1C;AACF;AACA;AACA;AACA;EACSC,eAAe,GAAW,SAAS;EAC1C;AACF;AACA;AACA;AACA;EACSC,cAAc,GAAW,SAAS;EACzC;AACF;AACA;AACA;AACA;EACSC,gBAAgB,GAAW,SAAS;EAC3C;AACF;AACA;AACA;AACA;EACSC,wBAAwB,GAAW,SAAS;EACnD;AACF;AACA;AACA;AACA;EACSC,gBAAgB,GAAW,SAAS;EAC3C;AACF;AACA;AACA;AACA;EACSC,kBAAkB,GAAW,SAAS;EAC7C;AACF;AACA;AACA;AACA;EACSC,cAAc,GAAW,SAAS;EACzC;AACF;AACA;AACA;AACA;EACSC,cAAc,GAAW,SAAS;EACzC;AACF;AACA;AACA;AACA;EACSC,uBAAuB,GAAW,SAAS;EAClD;AACF;AACA;AACA;AACA;EACSC,gBAAgB,GAAW,SAAS;EAC3C;AACF;AACA;AACA;AACA;EACSC,iBAAiB,GAAW,WAAW;EAC9C;AACF;AACA;AACA;AACA;EACSC,kBAAkB,GAAW,WAAW;EAC/C;AACF;AACA;AACA;AACA;EACSC,mBAAmB,GAAW,WAAW;;EAEhD;EACOC,WAAWA,CAACC,MAA4B,GAAG,CAAC,CAAC,EAAE;IACpD,IAAIA,MAAM,CAACjB,cAAc,KAAKkB,SAAS,EAAE;MACvC,IAAI,CAAClB,cAAc,GAAGiB,MAAM,CAACjB,cAAc;IAC7C;IACA,IAAIiB,MAAM,CAAChB,sBAAsB,KAAKiB,SAAS,EAAE;MAC/C,IAAI,CAACjB,sBAAsB,GAAGgB,MAAM,CAAChB,sBAAsB;IAC7D;IACA,IAAIgB,MAAM,CAACf,eAAe,KAAKgB,SAAS,EAAE;MACxC,IAAI,CAAChB,eAAe,GAAGe,MAAM,CAACf,eAAe;IAC/C;IACA,IAAIe,MAAM,CAACd,eA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","ignoreList":[]}
@@ -18,5 +18,6 @@ The visual mode used for the navigation bar icons. Android only.
18
18
  Hide the navigation bar.
19
19
  */
20
20
 
21
+ /** @hidden */
21
22
  const NavigationBarModeValues = exports.NavigationBarModeValues = ['DARK', 'LIGHT', 'HIDDEN'];
22
23
  //# sourceMappingURL=NavigationBarConfiguration.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["NavigationBarModeValues","exports"],"sourceRoot":"../../../../../../src","sources":["types/core/ui_v2/common/NavigationBarConfiguration.ts"],"mappings":";;;;;;AAAA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAeA;AACO,MAAMA,uBAAyD,GAAAC,OAAA,CAAAD,uBAAA,GAAG,CACvE,MAAM,EACN,OAAO,EACP,QAAQ,CACA","ignoreList":[]}
@@ -4,15 +4,14 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.ScanCompletionOverlay = void 0;
7
- var _Common = require("../../ui_v2/common/Common");
8
- var _utils = require("../../utils/utils");
7
+ var _Common = require("./Common");
9
8
  /// Auto-generated with ScanbotSDKCodegenV3. Modifications will be overwritten.
10
9
  /// Generated from rtu-ui-v2/schemas/common/ScanCompletionOverlay.yaml
11
10
 
12
11
  /**
13
12
  Configuration of the overlay to be shown after the successful scan.
14
13
  */
15
- class ScanCompletionOverlay extends _utils.PartiallyConstructible {
14
+ class ScanCompletionOverlay {
16
15
  /**
17
16
  A caption below the icon.
18
17
  */
@@ -41,7 +40,6 @@ class ScanCompletionOverlay extends _utils.PartiallyConstructible {
41
40
 
42
41
  /** @param source {@displayType `DeepPartial<ScanCompletionOverlay>`} */
43
42
  constructor(source = {}) {
44
- super();
45
43
  if (source.message !== undefined) {
46
44
  this.message = new _Common.StyledText(source.message);
47
45
  }
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_Common","require","ScanCompletionOverlay","message","StyledText","text","color","iconColor","overlayBackgroundColor","timeout","constructor","source","undefined","exports"],"sourceRoot":"../../../../../../src","sources":["types/core/ui_v2/common/ScanCompletionOverlay.ts"],"mappings":";;;;;;AAIA,IAAAA,OAAA,GAAAC,OAAA;AAJA;AACA;;AAKA;AACA;AACA;AACO,MAAMC,qBAAqB,CAAC;EACjC;AACF;AACA;EACSC,OAAO,GAAe,IAAIC,kBAAU,CAAC;IAC1CC,IAAI,EAAE,kCAAkC;IACxCC,KAAK,EAAE;EACT,CAAC,CAAC;EACF;AACF;AACA;AACA;AACA;EACSC,SAAS,GAAW,mBAAmB;EAC9C;AACF;AACA;AACA;AACA;EACSC,sBAAsB,GAAW,qBAAqB;EAC7D;AACF;AACA;AACA;AACA;EACSC,OAAO,GAAW,IAAI;;EAE7B;EACOC,WAAWA,CAACC,MAA0C,GAAG,CAAC,CAAC,EAAE;IAClE,IAAIA,MAAM,CAACR,OAAO,KAAKS,SAAS,EAAE;MAChC,IAAI,CAACT,OAAO,GAAG,IAAIC,kBAAU,CAACO,MAAM,CAACR,OAAO,CAAC;IAC/C;IACA,IAAIQ,MAAM,CAACJ,SAAS,KAAKK,SAAS,EAAE;MAClC,IAAI,CAACL,SAAS,GAAGI,MAAM,CAACJ,SAAS;IACnC;IACA,IAAII,MAAM,CAACH,sBAAsB,KAAKI,SAAS,EAAE;MAC/C,IAAI,CAACJ,sBAAsB,GAAGG,MAAM,CAACH,sBAAsB;IAC7D;IACA,IAAIG,MAAM,CAACF,OAAO,KAAKG,SAAS,EAAE;MAChC,IAAI,CAACH,OAAO,GAAGE,MAAM,CAACF,OAAO;IAC/B;EACF;AACF;AAACI,OAAA,CAAAX,qBAAA,GAAAA,qBAAA","ignoreList":[]}
@@ -4,15 +4,14 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.ScanbotAlertDialog = void 0;
7
- var _Common = require("../../ui_v2/common/Common");
8
- var _utils = require("../../utils/utils");
7
+ var _Common = require("./Common");
9
8
  /// Auto-generated with ScanbotSDKCodegenV3. Modifications will be overwritten.
10
9
  /// Generated from rtu-ui-v2/schemas/common/ScanbotAlertDialog.yaml
11
10
 
12
11
  /**
13
12
  Configuration of the standard alert dialog.
14
13
  */
15
- class ScanbotAlertDialog extends _utils.PartiallyConstructible {
14
+ class ScanbotAlertDialog {
16
15
  /**
17
16
  The title displayed above the message.
18
17
  */
@@ -78,7 +77,6 @@ class ScanbotAlertDialog extends _utils.PartiallyConstructible {
78
77
 
79
78
  /** @param source {@displayType `DeepPartial<ScanbotAlertDialog>`} */
80
79
  constructor(source = {}) {
81
- super();
82
80
  if (source.title !== undefined) {
83
81
  this.title = new _Common.StyledText(source.title);
84
82
  }
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_Common","require","ScanbotAlertDialog","title","StyledText","text","color","subtitle","sheetColor","modalOverlayColor","dividerColor","okButton","ButtonConfiguration","background","BackgroundStyle","fillColor","actionButton","visible","strokeColor","strokeWidth","cancelButton","constructor","source","undefined","exports"],"sourceRoot":"../../../../../../src","sources":["types/core/ui_v2/common/ScanbotAlertDialog.ts"],"mappings":";;;;;;AAIA,IAAAA,OAAA,GAAAC,OAAA;AAJA;AACA;;AAKA;AACA;AACA;AACO,MAAMC,kBAAkB,CAAC;EAC9B;AACF;AACA;EACSC,KAAK,GAAe,IAAIC,kBAAU,CAAC;IAAEC,IAAI,EAAE,OAAO;IAAEC,KAAK,EAAE;EAAoB,CAAC,CAAC;EACxF;AACF;AACA;EACSC,QAAQ,GAAe,IAAIH,kBAAU,CAAC;IAC3CC,IAAI,EAAE,oCAAoC;IAC1CC,KAAK,EAAE;EACT,CAAC,CAAC;EACF;AACF;AACA;AACA;AACA;EACSE,UAAU,GAAW,iBAAiB;EAC7C;AACF;AACA;AACA;AACA;EACSC,iBAAiB,GAAW,sBAAsB;EACzD;AACF;AACA;AACA;AACA;EACSC,YAAY,GAAW,iBAAiB;EAC/C;AACF;AACA;EACSC,QAAQ,GAAwB,IAAIC,2BAAmB,CAAC;IAC7DC,UAAU,EAAE,IAAIC,uBAAe,CAAC;MAAEC,SAAS,EAAE;IAAkB,CAAC;EAClE,CAAC,CAAC;EACF;AACF;AACA;EACSC,YAAY,GAAwB,IAAIJ,2BAAmB,CAAC;IACjEK,OAAO,EAAE,KAAK;IACdJ,UAAU,EAAE,IAAIC,uBAAe,CAAC;MAC9BI,WAAW,EAAE,WAAW;MACxBH,SAAS,EAAE,WAAW;MACtBI,WAAW,EAAE;IACf,CAAC;EACH,CAAC,CAAC;EACF;AACF;AACA;EACSC,YAAY,GAAwB,IAAIR,2BAAmB,CAAC;IACjEK,OAAO,EAAE,IAAI;IACbJ,UAAU,EAAE,IAAIC,uBAAe,CAAC;MAC9BI,WAAW,EAAE,WAAW;MACxBH,SAAS,EAAE,WAAW;MACtBI,WAAW,EAAE;IACf,CAAC;EACH,CAAC,CAAC;;EAEF;EACOE,WAAWA,CAACC,MAAuC,GAAG,CAAC,CAAC,EAAE;IAC/D,IAAIA,MAAM,CAACnB,KAAK,KAAKoB,SAAS,EAAE;MAC9B,IAAI,CAACpB,KAAK,GAAG,IAAIC,kBAAU,CAACkB,MAAM,CAACnB,KAAK,CAAC;IAC3C;IACA,IAAImB,MAAM,CAACf,QAAQ,KAAKgB,SAAS,EAAE;MACjC,IAAI,CAAChB,QAAQ,GAAG,IAAIH,kBAAU,CAACkB,MAAM,CAACf,QAAQ,CAAC;IACjD;IACA,IAAIe,MAAM,CAACd,UAAU,KAAKe,SAAS,EAAE;MACnC,IAAI,CAACf,UAAU,GAAGc,MAAM,CAACd,UAAU;IACrC;IACA,IAAIc,MAAM,CAACb,iBAAiB,KAAKc,SAAS,EAAE;MAC1C,IAAI,CAACd,iBAAiB,GAAGa,MAAM,CAACb,iBAAiB;IACnD;IACA,IAAIa,MAAM,CAACZ,YAAY,KAAKa,SAAS,EAAE;MACrC,IAAI,CAACb,YAAY,GAAGY,MAAM,CAACZ,YAAY;IACzC;IACA,IAAIY,MAAM,CAACX,QAAQ,KAAKY,SAAS,EAAE;MACjC,IAAI,CAACZ,QAAQ,GAAG,IAAIC,2BAAmB,CAACU,MAAM,CAACX,QAAQ,CAAC;IAC1D;IACA,IAAIW,MAAM,CAACN,YAAY,KAAKO,SAAS,EAAE;MACrC,IAAI,CAACP,YAAY,GAAG,IAAIJ,2BAAmB,CAACU,MAAM,CAACN,YAAY,CAAC;IAClE;IACA,IAAIM,MAAM,CAACF,YAAY,KAAKG,SAAS,EAAE;MACrC,IAAI,CAACH,YAAY,GAAG,IAAIR,2BAAmB,CAACU,MAAM,CAACF,YAAY,CAAC;IAClE;EACF;AACF;AAACI,OAAA,CAAAtB,kBAAA,GAAAA,kBAAA","ignoreList":[]}
@@ -4,15 +4,14 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.TopBarModeValues = exports.TopBarConfiguration = exports.StatusBarModeValues = void 0;
7
- var _Common = require("../../ui_v2/common/Common");
8
- var _utils = require("../../utils/utils");
7
+ var _Common = require("./Common");
9
8
  /// Auto-generated with ScanbotSDKCodegenV3. Modifications will be overwritten.
10
9
  /// Generated from rtu-ui-v2/schemas/common/TopBarConfiguration.yaml
11
10
 
12
11
  /**
13
12
  Configuration of the top bar's appearance.
14
13
  */
15
- class TopBarConfiguration extends _utils.PartiallyConstructible {
14
+ class TopBarConfiguration {
16
15
  /**
17
16
  Appearance of the top bar's title.
18
17
  */
@@ -56,7 +55,6 @@ class TopBarConfiguration extends _utils.PartiallyConstructible {
56
55
 
57
56
  /** @param source {@displayType `DeepPartial<TopBarConfiguration>`} */
58
57
  constructor(source = {}) {
59
- super();
60
58
  if (source.title !== undefined) {
61
59
  this.title = new _Common.StyledText(source.title);
62
60
  }
@@ -86,6 +84,7 @@ The visual mode used for the status bar icons.
86
84
  Hide the status bar icons.
87
85
  */
88
86
  exports.TopBarConfiguration = TopBarConfiguration;
87
+ /** @hidden */
89
88
  const StatusBarModeValues = exports.StatusBarModeValues = ['DARK', 'LIGHT', 'HIDDEN'];
90
89
 
91
90
  /**
@@ -99,5 +98,6 @@ The visual mode used for the top bar.
99
98
  Hide the top bar completely.
100
99
  */
101
100
 
101
+ /** @hidden */
102
102
  const TopBarModeValues = exports.TopBarModeValues = ['SOLID', 'GRADIENT', 'HIDDEN'];
103
103
  //# sourceMappingURL=TopBarConfiguration.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_Common","require","TopBarConfiguration","title","StyledText","visible","text","color","mode","statusBarMode","backgroundColor","cancelButton","ButtonConfiguration","background","BackgroundStyle","strokeColor","fillColor","strokeWidth","foreground","ForegroundStyle","constructor","source","undefined","exports","StatusBarModeValues","TopBarModeValues"],"sourceRoot":"../../../../../../src","sources":["types/core/ui_v2/common/TopBarConfiguration.ts"],"mappings":";;;;;;AAIA,IAAAA,OAAA,GAAAC,OAAA;AAJA;AACA;;AAKA;AACA;AACA;AACO,MAAMC,mBAAmB,CAAC;EAC/B;AACF;AACA;EACSC,KAAK,GAAe,IAAIC,kBAAU,CAAC;IACxCC,OAAO,EAAE,KAAK;IACdC,IAAI,EAAE,WAAW;IACjBC,KAAK,EAAE;EACT,CAAC,CAAC;EACF;AACF;AACA;AACA;AACA;EACSC,IAAI,GAAe,OAAO;EACjC;AACF;AACA;AACA;AACA;EACSC,aAAa,GAAkB,OAAO;EAC7C;AACF;AACA;AACA;AACA;EACSC,eAAe,GAAW,iBAAiB;EAClD;AACF;AACA;EACSC,YAAY,GAAwB,IAAIC,2BAAmB,CAAC;IACjEN,IAAI,EAAE,QAAQ;IACdO,UAAU,EAAE,IAAIC,uBAAe,CAAC;MAC9BC,WAAW,EAAE,WAAW;MACxBC,SAAS,EAAE,WAAW;MACtBC,WAAW,EAAE;IACf,CAAC,CAAC;IACFC,UAAU,EAAE,IAAIC,uBAAe,CAAC;MAAEZ,KAAK,EAAE;IAAoB,CAAC;EAChE,CAAC,CAAC;;EAEF;EACOa,WAAWA,CAACC,MAAwC,GAAG,CAAC,CAAC,EAAE;IAChE,IAAIA,MAAM,CAAClB,KAAK,KAAKmB,SAAS,EAAE;MAC9B,IAAI,CAACnB,KAAK,GAAG,IAAIC,kBAAU,CAACiB,MAAM,CAAClB,KAAK,CAAC;IAC3C;IACA,IAAIkB,MAAM,CAACb,IAAI,KAAKc,SAAS,EAAE;MAC7B,IAAI,CAACd,IAAI,GAAGa,MAAM,CAACb,IAAI;IACzB;IACA,IAAIa,MAAM,CAACZ,aAAa,KAAKa,SAAS,EAAE;MACtC,IAAI,CAACb,aAAa,GAAGY,MAAM,CAACZ,aAAa;IAC3C;IACA,IAAIY,MAAM,CAACX,eAAe,KAAKY,SAAS,EAAE;MACxC,IAAI,CAACZ,eAAe,GAAGW,MAAM,CAACX,eAAe;IAC/C;IACA,IAAIW,MAAM,CAACV,YAAY,KAAKW,SAAS,EAAE;MACrC,IAAI,CAACX,YAAY,GAAG,IAAIC,2BAAmB,CAACS,MAAM,CAACV,YAAY,CAAC;IAClE;EACF;AACF;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AATAY,OAAA,CAAArB,mBAAA,GAAAA,mBAAA;AAwBA;AACO,MAAMsB,mBAAiD,GAAAD,OAAA,CAAAC,mBAAA,GAAG,CAC/D,MAAM,EACN,OAAO,EACP,QAAQ,CACA;;AAEV;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAeA;AACO,MAAMC,gBAA2C,GAAAF,OAAA,CAAAE,gBAAA,GAAG,CAAC,OAAO,EAAE,UAAU,EAAE,QAAQ,CAAU","ignoreList":[]}
@@ -4,15 +4,14 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.UserGuidanceConfiguration = exports.IconUserGuidanceConfiguration = void 0;
7
- var _Common = require("../../ui_v2/common/Common");
8
- var _utils = require("../../utils/utils");
7
+ var _Common = require("./Common");
9
8
  /// Auto-generated with ScanbotSDKCodegenV3. Modifications will be overwritten.
10
9
  /// Generated from rtu-ui-v2/schemas/common/UserGuidanceConfiguration.yaml
11
10
 
12
11
  /**
13
12
  Configuration of the hint guiding users through the scanning process.
14
13
  */
15
- class UserGuidanceConfiguration extends _utils.PartiallyConstructible {
14
+ class UserGuidanceConfiguration {
16
15
  /**
17
16
  Determines whether the user guidance is visible or not.
18
17
 
@@ -35,7 +34,6 @@ class UserGuidanceConfiguration extends _utils.PartiallyConstructible {
35
34
 
36
35
  /** @param source {@displayType `DeepPartial<UserGuidanceConfiguration>`} */
37
36
  constructor(source = {}) {
38
- super();
39
37
  if (source.visible !== undefined) {
40
38
  this.visible = source.visible;
41
39
  }
@@ -52,7 +50,7 @@ class UserGuidanceConfiguration extends _utils.PartiallyConstructible {
52
50
  Configuration of the hint (containing an icon) guiding users through the scanning process.
53
51
  */
54
52
  exports.UserGuidanceConfiguration = UserGuidanceConfiguration;
55
- class IconUserGuidanceConfiguration extends _utils.PartiallyConstructible {
53
+ class IconUserGuidanceConfiguration {
56
54
  /**
57
55
  Determines whether the user guidance is visible or not.
58
56
 
@@ -80,7 +78,6 @@ class IconUserGuidanceConfiguration extends _utils.PartiallyConstructible {
80
78
 
81
79
  /** @param source {@displayType `DeepPartial<IconUserGuidanceConfiguration>`} */
82
80
  constructor(source = {}) {
83
- super();
84
81
  if (source.visible !== undefined) {
85
82
  this.visible = source.visible;
86
83
  }
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_Common","require","UserGuidanceConfiguration","visible","title","StyledText","color","background","BackgroundStyle","strokeColor","fillColor","constructor","source","undefined","exports","IconUserGuidanceConfiguration","icon","IconStyle"],"sourceRoot":"../../../../../../src","sources":["types/core/ui_v2/common/UserGuidanceConfiguration.ts"],"mappings":";;;;;;AAIA,IAAAA,OAAA,GAAAC,OAAA;AAJA;AACA;;AAKA;AACA;AACA;AACO,MAAMC,yBAAyB,CAAC;EACrC;AACF;AACA;AACA;AACA;EACSC,OAAO,GAAY,IAAI;EAC9B;AACF;AACA;EACSC,KAAK,GAAe,IAAIC,kBAAU,CAAC;IAAEC,KAAK,EAAE;EAAoB,CAAC,CAAC;EACzE;AACF;AACA;EACSC,UAAU,GAAoB,IAAIC,uBAAe,CAAC;IACvDC,WAAW,EAAE,WAAW;IACxBC,SAAS,EAAE;EACb,CAAC,CAAC;;EAEF;EACOC,WAAWA,CAACC,MAA8C,GAAG,CAAC,CAAC,EAAE;IACtE,IAAIA,MAAM,CAACT,OAAO,KAAKU,SAAS,EAAE;MAChC,IAAI,CAACV,OAAO,GAAGS,MAAM,CAACT,OAAO;IAC/B;IACA,IAAIS,MAAM,CAACR,KAAK,KAAKS,SAAS,EAAE;MAC9B,IAAI,CAACT,KAAK,GAAG,IAAIC,kBAAU,CAACO,MAAM,CAACR,KAAK,CAAC;IAC3C;IACA,IAAIQ,MAAM,CAACL,UAAU,KAAKM,SAAS,EAAE;MACnC,IAAI,CAACN,UAAU,GAAG,IAAIC,uBAAe,CAACI,MAAM,CAACL,UAAU,CAAC;IAC1D;EACF;AACF;;AAEA;AACA;AACA;AAFAO,OAAA,CAAAZ,yBAAA,GAAAA,yBAAA;AAGO,MAAMa,6BAA6B,CAAC;EACzC;AACF;AACA;AACA;AACA;EACSZ,OAAO,GAAY,IAAI;EAC9B;AACF;AACA;EACSa,IAAI,GAAc,IAAIC,iBAAS,CAAC;IAAEX,KAAK,EAAE;EAAoB,CAAC,CAAC;EACtE;AACF;AACA;EACSF,KAAK,GAAe,IAAIC,kBAAU,CAAC;IAAEC,KAAK,EAAE;EAAoB,CAAC,CAAC;EACzE;AACF;AACA;EACSC,UAAU,GAAoB,IAAIC,uBAAe,CAAC;IAAEE,SAAS,EAAE;EAAqB,CAAC,CAAC;;EAE7F;EACOC,WAAWA,CAACC,MAAkD,GAAG,CAAC,CAAC,EAAE;IAC1E,IAAIA,MAAM,CAACT,OAAO,KAAKU,SAAS,EAAE;MAChC,IAAI,CAACV,OAAO,GAAGS,MAAM,CAACT,OAAO;IAC/B;IACA,IAAIS,MAAM,CAACI,IAAI,KAAKH,SAAS,EAAE;MAC7B,IAAI,CAACG,IAAI,GAAG,IAAIC,iBAAS,CAACL,MAAM,CAACI,IAAI,CAAC;IACxC;IACA,IAAIJ,MAAM,CAACR,KAAK,KAAKS,SAAS,EAAE;MAC9B,IAAI,CAACT,KAAK,GAAG,IAAIC,kBAAU,CAACO,MAAM,CAACR,KAAK,CAAC;IAC3C;IACA,IAAIQ,MAAM,CAACL,UAAU,KAAKM,SAAS,EAAE;MACnC,IAAI,CAACN,UAAU,GAAG,IAAIC,uBAAe,CAACI,MAAM,CAACL,UAAU,CAAC;IAC1D;EACF;AACF;AAACO,OAAA,CAAAC,6BAAA,GAAAA,6BAAA","ignoreList":[]}
@@ -4,9 +4,8 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.ViewFinderConfiguration = exports.PermanentViewFinderConfiguration = exports.FinderStyle = exports.FinderStrokedStyle = exports.FinderCorneredStyle = exports.BaseViewFinderConfiguration = void 0;
7
- var _Common = require("../../ui_v2/common/Common");
8
- var _Geometry = require("../../utils/geometry/Geometry");
9
- var _utils = require("../../utils/utils");
7
+ var _Geometry = require("../../geometry/Geometry");
8
+ var _Common = require("./Common");
10
9
  /// Auto-generated with ScanbotSDKCodegenV3. Modifications will be overwritten.
11
10
  /// Generated from rtu-ui-v2/schemas/common/ViewFinderConfiguration.yaml
12
11
  /**
@@ -15,7 +14,7 @@ Base configuration of the scanning interface’s viewfinder, serving as guidance
15
14
  /** @internal */
16
15
  let BaseViewFinderConfiguration = exports.BaseViewFinderConfiguration = void 0;
17
16
  (function (_BaseViewFinderConfiguration) {
18
- function From(source) {
17
+ function from(source) {
19
18
  const _type = source._type;
20
19
  switch (_type) {
21
20
  case 'ViewFinderConfiguration':
@@ -23,15 +22,15 @@ let BaseViewFinderConfiguration = exports.BaseViewFinderConfiguration = void 0;
23
22
  case 'PermanentViewFinderConfiguration':
24
23
  return new PermanentViewFinderConfiguration(source);
25
24
  default:
26
- throw `Unknown child class name: ${_type}`;
25
+ throw new Error(`Unknown child class name: ${_type}`);
27
26
  }
28
27
  }
29
- _BaseViewFinderConfiguration.From = From;
28
+ _BaseViewFinderConfiguration.from = from;
30
29
  })(BaseViewFinderConfiguration || (exports.BaseViewFinderConfiguration = BaseViewFinderConfiguration = {}));
31
30
  /**
32
31
  Configuration of the scanning interface’s viewfinder, allowing it to be shown or hidden as guidance to the user.
33
32
  */
34
- class ViewFinderConfiguration extends _utils.PartiallyConstructible {
33
+ class ViewFinderConfiguration {
35
34
  _type = 'ViewFinderConfiguration';
36
35
  /**
37
36
  The visual appearance of the viewfinder.
@@ -78,9 +77,8 @@ class ViewFinderConfiguration extends _utils.PartiallyConstructible {
78
77
 
79
78
  /** @param source {@displayType `DeepPartial<ViewFinderConfiguration>`} */
80
79
  constructor(source = {}) {
81
- super();
82
80
  if (source.style !== undefined) {
83
- this.style = FinderStyle.From(source.style);
81
+ this.style = FinderStyle.from(source.style);
84
82
  }
85
83
  if (source.overlayColor !== undefined) {
86
84
  this.overlayColor = source.overlayColor;
@@ -104,7 +102,7 @@ class ViewFinderConfiguration extends _utils.PartiallyConstructible {
104
102
  Configuration of the scanning interface’s viewfinder, which is always visible to guide the user.
105
103
  */
106
104
  exports.ViewFinderConfiguration = ViewFinderConfiguration;
107
- class PermanentViewFinderConfiguration extends _utils.PartiallyConstructible {
105
+ class PermanentViewFinderConfiguration {
108
106
  _type = 'PermanentViewFinderConfiguration';
109
107
  /**
110
108
  The visual appearance of the viewfinder.
@@ -145,9 +143,8 @@ class PermanentViewFinderConfiguration extends _utils.PartiallyConstructible {
145
143
 
146
144
  /** @param source {@displayType `DeepPartial<PermanentViewFinderConfiguration>`} */
147
145
  constructor(source = {}) {
148
- super();
149
146
  if (source.style !== undefined) {
150
- this.style = FinderStyle.From(source.style);
147
+ this.style = FinderStyle.from(source.style);
151
148
  }
152
149
  if (source.overlayColor !== undefined) {
153
150
  this.overlayColor = source.overlayColor;
@@ -171,7 +168,7 @@ exports.PermanentViewFinderConfiguration = PermanentViewFinderConfiguration;
171
168
  /** @internal */
172
169
  let FinderStyle = exports.FinderStyle = void 0;
173
170
  (function (_FinderStyle) {
174
- function From(source) {
171
+ function from(source) {
175
172
  const _type = source._type;
176
173
  switch (_type) {
177
174
  case 'FinderCorneredStyle':
@@ -179,15 +176,15 @@ let FinderStyle = exports.FinderStyle = void 0;
179
176
  case 'FinderStrokedStyle':
180
177
  return new FinderStrokedStyle(source);
181
178
  default:
182
- throw `Unknown child class name: ${_type}`;
179
+ throw new Error(`Unknown child class name: ${_type}`);
183
180
  }
184
181
  }
185
- _FinderStyle.From = From;
182
+ _FinderStyle.from = from;
186
183
  })(FinderStyle || (exports.FinderStyle = FinderStyle = {}));
187
184
  /**
188
185
  A variant of the viewfinder displaying only the four corners of the scanning area.
189
186
  */
190
- class FinderCorneredStyle extends _utils.PartiallyConstructible {
187
+ class FinderCorneredStyle {
191
188
  _type = 'FinderCorneredStyle';
192
189
  /**
193
190
  The color of the viewfinder corner's outlines.
@@ -210,7 +207,6 @@ class FinderCorneredStyle extends _utils.PartiallyConstructible {
210
207
 
211
208
  /** @param source {@displayType `DeepPartial<FinderCorneredStyle>`} */
212
209
  constructor(source = {}) {
213
- super();
214
210
  if (source.strokeColor !== undefined) {
215
211
  this.strokeColor = source.strokeColor;
216
212
  }
@@ -227,7 +223,7 @@ class FinderCorneredStyle extends _utils.PartiallyConstructible {
227
223
  A variant of the viewfinder displaying a full outline of the scanning area.
228
224
  */
229
225
  exports.FinderCorneredStyle = FinderCorneredStyle;
230
- class FinderStrokedStyle extends _utils.PartiallyConstructible {
226
+ class FinderStrokedStyle {
231
227
  _type = 'FinderStrokedStyle';
232
228
  /**
233
229
  The color of the viewfinder corner's outlines.
@@ -250,7 +246,6 @@ class FinderStrokedStyle extends _utils.PartiallyConstructible {
250
246
 
251
247
  /** @param source {@displayType `DeepPartial<FinderStrokedStyle>`} */
252
248
  constructor(source = {}) {
253
- super();
254
249
  if (source.strokeColor !== undefined) {
255
250
  this.strokeColor = source.strokeColor;
256
251
  }
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_Geometry","require","_Common","BaseViewFinderConfiguration","exports","_BaseViewFinderConfiguration","from","source","_type","ViewFinderConfiguration","PermanentViewFinderConfiguration","Error","style","FinderCorneredStyle","strokeColor","strokeWidth","cornerRadius","overlayColor","aspectRatio","AspectRatio","width","height","minimumInsets","EdgeInsets","top","left","bottom","right","preferredHeight","visible","constructor","undefined","FinderStyle","_FinderStyle","FinderStrokedStyle"],"sourceRoot":"../../../../../../src","sources":["types/core/ui_v2/common/ViewFinderConfiguration.ts"],"mappings":"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","ignoreList":[]}