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.
- package/LICENSE +1 -1
- package/Libraries.txt +437 -17
- package/README.md +32 -34
- package/RNScanbotBarcodeSDK.podspec +3 -2
- package/android/gradle.properties +3 -3
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/ScanbotBarcodeSdkModule.kt +117 -69
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/ScanbotBarcodeSdkPluginResultDelegate.kt +3 -2
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/components/barcode_scanner_view/ScanbotBarcodeScannerView.kt +76 -50
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/components/barcode_scanner_view/ScanbotBarcodeScannerViewEvents.kt +24 -1
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/components/barcode_scanner_view/ScanbotBarcodeScannerViewManager.kt +66 -55
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/components/barcode_scanner_view/models/ScanbotBarcodeScannerModels.kt +1 -1
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/extensions/Extensions.kt +19 -0
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerLegacyView.h +8 -7
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerLegacyView.m +92 -221
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerView.h +12 -8
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerView.mm +147 -317
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewController+Utils.swift +74 -0
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewController.swift +429 -0
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewManager.mm +17 -23
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewOperators.h +95 -0
- package/ios/ScanbotBarcodeSdk.m +58 -76
- package/ios/ScanbotBarcodeSdkPluginResultDelegate.m +2 -6
- package/lib/commonjs/Barcode.js +51 -0
- package/lib/commonjs/Barcode.js.map +1 -0
- package/lib/commonjs/ImageProcessor.js +24 -0
- package/lib/commonjs/ImageProcessor.js.map +1 -0
- package/lib/commonjs/Sdk.js +57 -0
- package/lib/commonjs/Sdk.js.map +1 -0
- package/lib/commonjs/{component → components}/barcode-camera-view/ScanbotBarcodeCameraView.js +14 -9
- package/lib/commonjs/components/barcode-camera-view/ScanbotBarcodeCameraView.js.map +1 -0
- package/lib/commonjs/components/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js.map +1 -0
- package/lib/commonjs/components/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js.map +1 -0
- package/lib/commonjs/{component/barcode-camera-view → components}/index.js +3 -3
- package/lib/commonjs/components/index.js.map +1 -0
- package/lib/commonjs/components/spec/ScanbotBarcodeScannerViewNativeComponent.js.map +1 -0
- package/lib/commonjs/impl/BarcodeScannerImpl.js +59 -0
- package/lib/commonjs/impl/BarcodeScannerImpl.js.map +1 -0
- package/lib/commonjs/impl/ImageProcessorImpl.js +20 -0
- package/lib/commonjs/impl/ImageProcessorImpl.js.map +1 -0
- package/lib/commonjs/impl/SdkImpl.js +27 -0
- package/lib/commonjs/impl/SdkImpl.js.map +1 -0
- package/lib/commonjs/impl/index.js +39 -0
- package/lib/commonjs/impl/index.js.map +1 -0
- package/lib/commonjs/impl/scanbotBarcodeSDKModule.js +22 -0
- package/lib/commonjs/impl/scanbotBarcodeSDKModule.js.map +1 -0
- package/lib/commonjs/index.js +18 -162
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/types/base/SdkConfiguration.js +106 -0
- package/lib/commonjs/types/base/SdkConfiguration.js.map +1 -0
- package/lib/commonjs/{base/barcodeSDKConfigurations.js → types/base/customTypes.js} +1 -1
- package/lib/commonjs/types/base/customTypes.js.map +1 -0
- package/lib/commonjs/types/base/errors.js +139 -0
- package/lib/commonjs/types/base/errors.js.map +1 -0
- package/lib/commonjs/types/base/index.js +50 -0
- package/lib/commonjs/types/base/index.js.map +1 -0
- package/lib/commonjs/types/base/utils.js +59 -0
- package/lib/commonjs/types/base/utils.js.map +1 -0
- package/lib/commonjs/{barcode → types/core/barcode}/BarcodeConfigurationTypes.js +244 -74
- package/lib/commonjs/types/core/barcode/BarcodeConfigurationTypes.js.map +1 -0
- package/lib/commonjs/{barcode → types/core/barcode}/BarcodeDocumentTypes.js +62 -10
- package/lib/commonjs/types/core/barcode/BarcodeDocumentTypes.js.map +1 -0
- package/lib/commonjs/{barcode → types/core/barcode}/BarcodeScannerTypes.js +39 -28
- package/lib/commonjs/types/core/barcode/BarcodeScannerTypes.js.map +1 -0
- package/lib/commonjs/{barcode → types/core/barcode}/BarcodeTypes.js +31 -12
- package/lib/commonjs/types/core/barcode/BarcodeTypes.js.map +1 -0
- package/lib/commonjs/types/core/barcode/index.js.map +1 -0
- package/lib/commonjs/types/core/camera/Camera.js +23 -0
- package/lib/commonjs/types/core/camera/Camera.js.map +1 -0
- package/lib/commonjs/types/core/camera/index.js +17 -0
- package/lib/commonjs/types/core/camera/index.js.map +1 -0
- package/lib/commonjs/types/core/common/CommonTypes.js +29 -0
- package/lib/commonjs/types/core/common/CommonTypes.js.map +1 -0
- package/lib/commonjs/{utils/json → types/core/common}/JsonSerializationTypes.js +2 -3
- package/lib/commonjs/types/core/common/JsonSerializationTypes.js.map +1 -0
- package/lib/commonjs/types/core/common/index.js +28 -0
- package/lib/commonjs/types/core/common/index.js.map +1 -0
- package/lib/commonjs/{documents → types/core/generic_document}/BarcodeDocumentModel.js +1131 -160
- package/lib/commonjs/types/core/generic_document/BarcodeDocumentModel.js.map +1 -0
- package/lib/commonjs/{documents → types/core/generic_document}/CommonFieldType.js +6 -3
- package/lib/commonjs/types/core/generic_document/CommonFieldType.js.map +1 -0
- package/lib/commonjs/{documents → types/core/generic_document}/GenericDocument.js +13 -18
- package/lib/commonjs/types/core/generic_document/GenericDocument.js.map +1 -0
- package/lib/commonjs/types/core/generic_document/index.js.map +1 -0
- package/lib/commonjs/{utils → types/core}/geometry/Geometry.js +4 -8
- package/lib/commonjs/types/core/geometry/Geometry.js.map +1 -0
- package/lib/commonjs/types/core/geometry/index.js +17 -0
- package/lib/commonjs/types/core/geometry/index.js.map +1 -0
- package/lib/commonjs/{imageRef → types/core/image}/ImageRefTypes.js +157 -69
- package/lib/commonjs/types/core/image/ImageRefTypes.js.map +1 -0
- package/lib/commonjs/types/core/image/ImageTypes.js +41 -0
- package/lib/commonjs/types/core/image/ImageTypes.js.map +1 -0
- package/lib/commonjs/{imageRef → types/core/image}/image.js +54 -50
- package/lib/commonjs/types/core/image/image.js.map +1 -0
- package/lib/commonjs/{imageRef → types/core/image}/index.js +0 -11
- package/lib/commonjs/types/core/image/index.js.map +1 -0
- package/lib/commonjs/types/core/index.js +105 -0
- package/lib/commonjs/types/core/index.js.map +1 -0
- package/lib/commonjs/types/core/licensing/LicensingTypes.js +239 -0
- package/lib/commonjs/types/core/licensing/LicensingTypes.js.map +1 -0
- package/lib/commonjs/types/core/licensing/index.js +17 -0
- package/lib/commonjs/types/core/licensing/index.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/ArTrackingOverlayConfiguration.js +8 -14
- package/lib/commonjs/types/core/ui_v2/barcode/ArTrackingOverlayConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeInfoMapping.js +4 -8
- package/lib/commonjs/types/core/ui_v2/barcode/BarcodeInfoMapping.js.map +1 -0
- package/lib/commonjs/types/core/ui_v2/barcode/BarcodeItemMapper.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerScreenConfiguration.js +17 -19
- package/lib/commonjs/types/core/ui_v2/barcode/BarcodeScannerScreenConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerUiResult.js +3 -6
- package/lib/commonjs/types/core/ui_v2/barcode/BarcodeScannerUiResult.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeTextLocalization.js +1 -3
- package/lib/commonjs/types/core/ui_v2/barcode/BarcodeTextLocalization.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeUseCase.js +6 -6
- package/lib/commonjs/types/core/ui_v2/barcode/BarcodeUseCase.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/FindAndPickScanningModeUseCase.js +6 -9
- package/lib/commonjs/types/core/ui_v2/barcode/FindAndPickScanningModeUseCase.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/MultipleScanningModeUseCase.js +11 -14
- package/lib/commonjs/types/core/ui_v2/barcode/MultipleScanningModeUseCase.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/SingleScanningModeUseCase.js +4 -6
- package/lib/commonjs/types/core/ui_v2/barcode/SingleScanningModeUseCase.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/ActionBarConfiguration.js +2 -4
- package/lib/commonjs/types/core/ui_v2/common/ActionBarConfiguration.js.map +1 -0
- package/lib/commonjs/types/core/ui_v2/common/BottomBarConfiguration.js +23 -0
- package/lib/commonjs/types/core/ui_v2/common/BottomBarConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/CameraConfiguration.js +11 -3
- package/lib/commonjs/types/core/ui_v2/common/CameraConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/CameraPermission.js +2 -4
- package/lib/commonjs/types/core/ui_v2/common/CameraPermission.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/Common.js +20 -35
- package/lib/commonjs/types/core/ui_v2/common/Common.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/NavigationBarConfiguration.js +1 -0
- package/lib/commonjs/types/core/ui_v2/common/NavigationBarConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/ScanCompletionOverlay.js +2 -4
- package/lib/commonjs/types/core/ui_v2/common/ScanCompletionOverlay.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/ScanbotAlertDialog.js +2 -4
- package/lib/commonjs/types/core/ui_v2/common/ScanbotAlertDialog.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/TopBarConfiguration.js +4 -4
- package/lib/commonjs/types/core/ui_v2/common/TopBarConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/UserGuidanceConfiguration.js +3 -6
- package/lib/commonjs/types/core/ui_v2/common/UserGuidanceConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/ViewFinderConfiguration.js +14 -19
- package/lib/commonjs/types/core/ui_v2/common/ViewFinderConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/index.js +15 -15
- package/lib/commonjs/types/core/ui_v2/index.js.map +1 -0
- package/lib/commonjs/{imageRef → types/core/utils}/ObjectPoolTypes.js +2 -4
- package/lib/commonjs/types/core/utils/ObjectPoolTypes.js.map +1 -0
- package/lib/commonjs/types/core/utils/index.js +28 -0
- package/lib/commonjs/types/core/utils/index.js.map +1 -0
- package/lib/commonjs/types/core/utils/utils.js +10 -0
- package/lib/commonjs/types/core/utils/utils.js.map +1 -0
- package/lib/commonjs/types/index.js +28 -0
- package/lib/commonjs/types/index.js.map +1 -0
- package/lib/module/Barcode.js +45 -0
- package/lib/module/Barcode.js.map +1 -0
- package/lib/module/ImageProcessor.js +19 -0
- package/lib/module/ImageProcessor.js.map +1 -0
- package/lib/module/Sdk.js +51 -0
- package/lib/module/Sdk.js.map +1 -0
- package/lib/module/{component → components}/barcode-camera-view/ScanbotBarcodeCameraView.js +10 -4
- package/lib/module/components/barcode-camera-view/ScanbotBarcodeCameraView.js.map +1 -0
- package/lib/module/components/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js.map +1 -0
- package/lib/module/components/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js.map +1 -0
- package/lib/module/components/index.js +4 -0
- package/lib/module/components/index.js.map +1 -0
- package/lib/module/components/spec/ScanbotBarcodeScannerViewNativeComponent.js.map +1 -0
- package/lib/module/impl/BarcodeScannerImpl.js +53 -0
- package/lib/module/impl/BarcodeScannerImpl.js.map +1 -0
- package/lib/module/impl/ImageProcessorImpl.js +15 -0
- package/lib/module/impl/ImageProcessorImpl.js.map +1 -0
- package/lib/module/impl/SdkImpl.js +22 -0
- package/lib/module/impl/SdkImpl.js.map +1 -0
- package/lib/module/impl/index.js +4 -0
- package/lib/module/impl/index.js.map +1 -0
- package/lib/module/impl/scanbotBarcodeSDKModule.js +16 -0
- package/lib/module/impl/scanbotBarcodeSDKModule.js.map +1 -0
- package/lib/module/index.js +5 -119
- package/lib/module/index.js.map +1 -1
- package/lib/module/types/base/SdkConfiguration.js +100 -0
- package/lib/module/types/base/SdkConfiguration.js.map +1 -0
- package/lib/module/types/base/customTypes.js +2 -0
- package/lib/module/types/base/customTypes.js.map +1 -0
- package/lib/module/types/base/errors.js +119 -0
- package/lib/module/types/base/errors.js.map +1 -0
- package/lib/module/types/base/index.js +5 -0
- package/lib/module/types/base/index.js.map +1 -0
- package/lib/module/types/base/utils.js +52 -0
- package/lib/module/types/base/utils.js.map +1 -0
- package/lib/module/{barcode → types/core/barcode}/BarcodeConfigurationTypes.js +244 -76
- package/lib/module/types/core/barcode/BarcodeConfigurationTypes.js.map +1 -0
- package/lib/module/{barcode → types/core/barcode}/BarcodeDocumentTypes.js +60 -9
- package/lib/module/types/core/barcode/BarcodeDocumentTypes.js.map +1 -0
- package/lib/module/{barcode → types/core/barcode}/BarcodeScannerTypes.js +39 -28
- package/lib/module/types/core/barcode/BarcodeScannerTypes.js.map +1 -0
- package/lib/module/{barcode → types/core/barcode}/BarcodeTypes.js +30 -11
- package/lib/module/types/core/barcode/BarcodeTypes.js.map +1 -0
- package/lib/module/types/core/barcode/index.js.map +1 -0
- package/lib/module/types/core/camera/Camera.js +17 -0
- package/lib/module/types/core/camera/Camera.js.map +1 -0
- package/lib/module/types/core/camera/index.js +2 -0
- package/lib/module/types/core/camera/index.js.map +1 -0
- package/lib/module/types/core/common/CommonTypes.js +23 -0
- package/lib/module/types/core/common/CommonTypes.js.map +1 -0
- package/lib/module/{utils/json → types/core/common}/JsonSerializationTypes.js +2 -4
- package/lib/module/types/core/common/JsonSerializationTypes.js.map +1 -0
- package/lib/module/types/core/common/index.js +3 -0
- package/lib/module/types/core/common/index.js.map +1 -0
- package/lib/module/{documents → types/core/generic_document}/BarcodeDocumentModel.js +1129 -159
- package/lib/module/types/core/generic_document/BarcodeDocumentModel.js.map +1 -0
- package/lib/module/{documents → types/core/generic_document}/CommonFieldType.js +6 -3
- package/lib/module/types/core/generic_document/CommonFieldType.js.map +1 -0
- package/lib/module/{documents → types/core/generic_document}/GenericDocument.js +13 -18
- package/lib/module/types/core/generic_document/GenericDocument.js.map +1 -0
- package/lib/module/types/core/generic_document/index.js.map +1 -0
- package/lib/module/{utils → types/core}/geometry/Geometry.js +4 -9
- package/lib/module/types/core/geometry/Geometry.js.map +1 -0
- package/lib/module/types/core/geometry/index.js +2 -0
- package/lib/module/types/core/geometry/index.js.map +1 -0
- package/lib/module/{imageRef → types/core/image}/ImageRefTypes.js +156 -68
- package/lib/module/types/core/image/ImageRefTypes.js.map +1 -0
- package/lib/module/types/core/image/ImageTypes.js +35 -0
- package/lib/module/types/core/image/ImageTypes.js.map +1 -0
- package/lib/module/{imageRef → types/core/image}/image.js +54 -49
- package/lib/module/types/core/image/image.js.map +1 -0
- package/lib/module/{imageRef → types/core/image}/index.js +0 -1
- package/lib/module/types/core/image/index.js.map +1 -0
- package/lib/module/types/core/index.js +10 -0
- package/lib/module/types/core/index.js.map +1 -0
- package/lib/module/types/core/licensing/LicensingTypes.js +233 -0
- package/lib/module/types/core/licensing/LicensingTypes.js.map +1 -0
- package/lib/module/types/core/licensing/index.js +2 -0
- package/lib/module/types/core/licensing/index.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/ArTrackingOverlayConfiguration.js +8 -14
- package/lib/module/types/core/ui_v2/barcode/ArTrackingOverlayConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeInfoMapping.js +4 -9
- package/lib/module/types/core/ui_v2/barcode/BarcodeInfoMapping.js.map +1 -0
- package/lib/module/types/core/ui_v2/barcode/BarcodeItemMapper.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerScreenConfiguration.js +17 -19
- package/lib/module/types/core/ui_v2/barcode/BarcodeScannerScreenConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerUiResult.js +3 -7
- package/lib/module/types/core/ui_v2/barcode/BarcodeScannerUiResult.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeTextLocalization.js +1 -4
- package/lib/module/types/core/ui_v2/barcode/BarcodeTextLocalization.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeUseCase.js +6 -6
- package/lib/module/types/core/ui_v2/barcode/BarcodeUseCase.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/FindAndPickScanningModeUseCase.js +6 -9
- package/lib/module/types/core/ui_v2/barcode/FindAndPickScanningModeUseCase.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/MultipleScanningModeUseCase.js +11 -14
- package/lib/module/types/core/ui_v2/barcode/MultipleScanningModeUseCase.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/SingleScanningModeUseCase.js +4 -6
- package/lib/module/types/core/ui_v2/barcode/SingleScanningModeUseCase.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/ActionBarConfiguration.js +2 -4
- package/lib/module/types/core/ui_v2/common/ActionBarConfiguration.js.map +1 -0
- package/lib/module/types/core/ui_v2/common/BottomBarConfiguration.js +17 -0
- package/lib/module/types/core/ui_v2/common/BottomBarConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/CameraConfiguration.js +11 -4
- package/lib/module/types/core/ui_v2/common/CameraConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/CameraPermission.js +2 -5
- package/lib/module/types/core/ui_v2/common/CameraPermission.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/Common.js +20 -36
- package/lib/module/types/core/ui_v2/common/Common.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/NavigationBarConfiguration.js +1 -0
- package/lib/module/types/core/ui_v2/common/NavigationBarConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/ScanCompletionOverlay.js +2 -4
- package/lib/module/types/core/ui_v2/common/ScanCompletionOverlay.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/ScanbotAlertDialog.js +2 -4
- package/lib/module/types/core/ui_v2/common/ScanbotAlertDialog.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/TopBarConfiguration.js +4 -4
- package/lib/module/types/core/ui_v2/common/TopBarConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/UserGuidanceConfiguration.js +3 -6
- package/lib/module/types/core/ui_v2/common/UserGuidanceConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/ViewFinderConfiguration.js +14 -19
- package/lib/module/types/core/ui_v2/common/ViewFinderConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/index.js +2 -2
- package/lib/module/types/core/ui_v2/index.js.map +1 -0
- package/lib/module/{imageRef → types/core/utils}/ObjectPoolTypes.js +2 -5
- package/lib/module/types/core/utils/ObjectPoolTypes.js.map +1 -0
- package/lib/module/types/core/utils/index.js +3 -0
- package/lib/module/types/core/utils/index.js.map +1 -0
- package/lib/module/types/core/utils/utils.js +8 -0
- package/lib/module/types/core/utils/utils.js.map +1 -0
- package/lib/module/types/index.js +3 -0
- package/lib/module/types/index.js.map +1 -0
- package/lib/typescript/src/Barcode.d.ts +47 -0
- package/lib/typescript/src/Barcode.d.ts.map +1 -0
- package/lib/typescript/src/ImageProcessor.d.ts +12 -0
- package/lib/typescript/src/ImageProcessor.d.ts.map +1 -0
- package/lib/typescript/src/Sdk.d.ts +58 -0
- package/lib/typescript/src/Sdk.d.ts.map +1 -0
- package/lib/typescript/src/components/barcode-camera-view/ScanbotBarcodeCameraView.d.ts.map +1 -0
- package/lib/typescript/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewProperties.d.ts +17 -12
- package/lib/typescript/src/components/barcode-camera-view/ScanbotBarcodeCameraViewProperties.d.ts.map +1 -0
- package/lib/typescript/src/components/barcode-camera-view/ScanbotBarcodeCameraViewTypes.d.ts.map +1 -0
- package/lib/typescript/src/components/index.d.ts +4 -0
- package/lib/typescript/src/components/index.d.ts.map +1 -0
- package/lib/typescript/src/{component → components}/spec/ScanbotBarcodeScannerViewNativeComponent.d.ts +6 -0
- package/lib/typescript/src/components/spec/ScanbotBarcodeScannerViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/impl/BarcodeScannerImpl.d.ts +2 -0
- package/lib/typescript/src/impl/BarcodeScannerImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/ImageProcessorImpl.d.ts +2 -0
- package/lib/typescript/src/impl/ImageProcessorImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/SdkImpl.d.ts +2 -0
- package/lib/typescript/src/impl/SdkImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/index.d.ts +4 -0
- package/lib/typescript/src/impl/index.d.ts.map +1 -0
- package/lib/typescript/src/impl/scanbotBarcodeSDKModule.d.ts +2 -0
- package/lib/typescript/src/impl/scanbotBarcodeSDKModule.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +5 -66
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/types/base/SdkConfiguration.d.ts +74 -0
- package/lib/typescript/src/types/base/SdkConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/types/base/customTypes.d.ts +15 -0
- package/lib/typescript/src/types/base/customTypes.d.ts.map +1 -0
- package/lib/typescript/src/types/base/errors.d.ts +55 -0
- package/lib/typescript/src/types/base/errors.d.ts.map +1 -0
- package/lib/typescript/src/types/base/index.d.ts +5 -0
- package/lib/typescript/src/types/base/index.d.ts.map +1 -0
- package/lib/typescript/src/types/base/utils.d.ts +3 -0
- package/lib/typescript/src/types/base/utils.d.ts.map +1 -0
- package/lib/typescript/src/{barcode → types/core/barcode}/BarcodeConfigurationTypes.d.ts +203 -36
- package/lib/typescript/src/types/core/barcode/BarcodeConfigurationTypes.d.ts.map +1 -0
- package/lib/typescript/src/types/core/barcode/BarcodeDocumentTypes.d.ts +117 -0
- package/lib/typescript/src/types/core/barcode/BarcodeDocumentTypes.d.ts.map +1 -0
- package/lib/typescript/src/{barcode → types/core/barcode}/BarcodeScannerTypes.d.ts +68 -21
- package/lib/typescript/src/types/core/barcode/BarcodeScannerTypes.d.ts.map +1 -0
- package/lib/typescript/src/{barcode → types/core/barcode}/BarcodeTypes.d.ts +390 -13
- package/lib/typescript/src/types/core/barcode/BarcodeTypes.d.ts.map +1 -0
- package/lib/typescript/src/types/core/barcode/index.d.ts.map +1 -0
- package/lib/typescript/src/types/core/camera/Camera.d.ts +26 -0
- package/lib/typescript/src/types/core/camera/Camera.d.ts.map +1 -0
- package/lib/typescript/src/types/core/camera/index.d.ts +2 -0
- package/lib/typescript/src/types/core/camera/index.d.ts.map +1 -0
- package/lib/typescript/src/types/core/common/CommonTypes.d.ts +36 -0
- package/lib/typescript/src/types/core/common/CommonTypes.d.ts.map +1 -0
- package/lib/typescript/src/{utils/json → types/core/common}/JsonSerializationTypes.d.ts +13 -4
- package/lib/typescript/src/types/core/common/JsonSerializationTypes.d.ts.map +1 -0
- package/lib/typescript/src/types/core/common/index.d.ts +3 -0
- package/lib/typescript/src/types/core/common/index.d.ts.map +1 -0
- package/lib/typescript/src/types/core/generic_document/BarcodeDocumentModel.d.ts +2360 -0
- package/lib/typescript/src/types/core/generic_document/BarcodeDocumentModel.d.ts.map +1 -0
- package/lib/typescript/src/types/core/generic_document/CommonFieldType.d.ts +176 -0
- package/lib/typescript/src/types/core/generic_document/CommonFieldType.d.ts.map +1 -0
- package/lib/typescript/src/{documents → types/core/generic_document}/GenericDocument.d.ts +82 -14
- package/lib/typescript/src/types/core/generic_document/GenericDocument.d.ts.map +1 -0
- package/lib/typescript/src/types/core/generic_document/index.d.ts.map +1 -0
- package/lib/typescript/src/{utils → types/core}/geometry/Geometry.d.ts +6 -5
- package/lib/typescript/src/types/core/geometry/Geometry.d.ts.map +1 -0
- package/lib/typescript/src/types/core/geometry/index.d.ts +2 -0
- package/lib/typescript/src/types/core/geometry/index.d.ts.map +1 -0
- package/lib/typescript/src/{imageRef → types/core/image}/ImageRefTypes.d.ts +208 -40
- package/lib/typescript/src/types/core/image/ImageRefTypes.d.ts.map +1 -0
- package/lib/typescript/src/types/core/image/ImageTypes.d.ts +63 -0
- package/lib/typescript/src/types/core/image/ImageTypes.d.ts.map +1 -0
- package/lib/typescript/src/{imageRef → types/core/image}/image.d.ts +6 -10
- package/lib/typescript/src/types/core/image/image.d.ts.map +1 -0
- package/lib/typescript/src/{imageRef → types/core/image}/index.d.ts +0 -1
- package/lib/typescript/src/types/core/image/index.d.ts.map +1 -0
- package/lib/typescript/src/types/core/index.d.ts +10 -0
- package/lib/typescript/src/types/core/index.d.ts.map +1 -0
- package/lib/typescript/src/types/core/licensing/LicensingTypes.d.ts +243 -0
- package/lib/typescript/src/types/core/licensing/LicensingTypes.d.ts.map +1 -0
- package/lib/typescript/src/types/core/licensing/index.d.ts +2 -0
- package/lib/typescript/src/types/core/licensing/index.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/ArTrackingOverlayConfiguration.d.ts +27 -10
- package/lib/typescript/src/types/core/ui_v2/barcode/ArTrackingOverlayConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeInfoMapping.d.ts +6 -6
- package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeInfoMapping.d.ts.map +1 -0
- package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeItemMapper.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerScreenConfiguration.d.ts +14 -14
- package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeScannerScreenConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerUiResult.d.ts +4 -4
- package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeScannerUiResult.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeTextLocalization.d.ts +2 -2
- package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeTextLocalization.d.ts.map +1 -0
- package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeUseCase.d.ts +8 -0
- package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeUseCase.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/FindAndPickScanningModeUseCase.d.ts +6 -6
- package/lib/typescript/src/types/core/ui_v2/barcode/FindAndPickScanningModeUseCase.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/MultipleScanningModeUseCase.d.ts +42 -15
- package/lib/typescript/src/types/core/ui_v2/barcode/MultipleScanningModeUseCase.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/SingleScanningModeUseCase.d.ts +5 -5
- package/lib/typescript/src/types/core/ui_v2/barcode/SingleScanningModeUseCase.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/ActionBarConfiguration.d.ts +3 -3
- package/lib/typescript/src/types/core/ui_v2/common/ActionBarConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/types/core/ui_v2/common/BottomBarConfiguration.d.ts +26 -0
- package/lib/typescript/src/types/core/ui_v2/common/BottomBarConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/CameraConfiguration.d.ts +25 -5
- package/lib/typescript/src/types/core/ui_v2/common/CameraConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/CameraPermission.d.ts +4 -4
- package/lib/typescript/src/types/core/ui_v2/common/CameraPermission.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/Common.d.ts +55 -24
- package/lib/typescript/src/types/core/ui_v2/common/Common.d.ts.map +1 -0
- package/lib/typescript/src/types/core/ui_v2/common/NavigationBarConfiguration.d.ts +26 -0
- package/lib/typescript/src/types/core/ui_v2/common/NavigationBarConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/ScanCompletionOverlay.d.ts +3 -3
- package/lib/typescript/src/types/core/ui_v2/common/ScanCompletionOverlay.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/ScanbotAlertDialog.d.ts +3 -3
- package/lib/typescript/src/types/core/ui_v2/common/ScanbotAlertDialog.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/TopBarConfiguration.d.ts +33 -7
- package/lib/typescript/src/types/core/ui_v2/common/TopBarConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/UserGuidanceConfiguration.d.ts +4 -4
- package/lib/typescript/src/types/core/ui_v2/common/UserGuidanceConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/ViewFinderConfiguration.d.ts +7 -7
- package/lib/typescript/src/types/core/ui_v2/common/ViewFinderConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/index.d.ts +2 -2
- package/lib/typescript/src/types/core/ui_v2/index.d.ts.map +1 -0
- package/lib/typescript/src/{imageRef → types/core/utils}/ObjectPoolTypes.d.ts +3 -3
- package/lib/typescript/src/types/core/utils/ObjectPoolTypes.d.ts.map +1 -0
- package/lib/typescript/src/types/core/utils/index.d.ts +3 -0
- package/lib/typescript/src/types/core/utils/index.d.ts.map +1 -0
- package/lib/typescript/src/types/core/utils/utils.d.ts +28 -0
- package/lib/typescript/src/types/core/utils/utils.d.ts.map +1 -0
- package/lib/typescript/src/types/index.d.ts +3 -0
- package/lib/typescript/src/types/index.d.ts.map +1 -0
- package/package.json +13 -13
- package/src/Barcode.ts +67 -0
- package/src/ImageProcessor.ts +18 -0
- package/src/Sdk.ts +53 -0
- package/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraView.tsx +13 -4
- package/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewProperties.ts +22 -14
- package/src/components/index.ts +3 -0
- package/src/{component → components}/spec/ScanbotBarcodeScannerViewNativeComponent.ts +3 -0
- package/src/impl/BarcodeScannerImpl.ts +115 -0
- package/src/impl/ImageProcessorImpl.ts +14 -0
- package/src/impl/SdkImpl.ts +28 -0
- package/src/impl/index.ts +3 -0
- package/src/impl/scanbotBarcodeSDKModule.ts +22 -0
- package/src/index.ts +5 -178
- package/src/types/base/SdkConfiguration.ts +120 -0
- package/src/types/base/customTypes.ts +14 -0
- package/src/types/base/errors.ts +158 -0
- package/src/types/base/index.ts +4 -0
- package/src/types/base/utils.ts +53 -0
- package/src/{barcode → types/core/barcode}/BarcodeConfigurationTypes.ts +294 -83
- package/src/types/core/barcode/BarcodeDocumentTypes.ts +218 -0
- package/src/{barcode → types/core/barcode}/BarcodeScannerTypes.ts +91 -44
- package/src/{barcode → types/core/barcode}/BarcodeTypes.ts +315 -19
- package/src/types/core/camera/Camera.ts +33 -0
- package/src/types/core/camera/index.ts +1 -0
- package/src/types/core/common/CommonTypes.ts +43 -0
- package/src/{utils/json → types/core/common}/JsonSerializationTypes.ts +16 -5
- package/src/types/core/common/index.ts +2 -0
- package/src/{documents → types/core/generic_document}/BarcodeDocumentModel.ts +1524 -172
- package/src/{documents → types/core/generic_document}/CommonFieldType.ts +96 -7
- package/src/{documents → types/core/generic_document}/GenericDocument.ts +77 -28
- package/src/{utils → types/core}/geometry/Geometry.ts +6 -8
- package/src/types/core/geometry/index.ts +1 -0
- package/src/{imageRef → types/core/image}/ImageRefTypes.ts +277 -83
- package/src/types/core/image/ImageTypes.ts +78 -0
- package/src/{imageRef → types/core/image}/image.ts +44 -76
- package/src/{imageRef → types/core/image}/index.ts +0 -1
- package/src/types/core/index.ts +9 -0
- package/src/types/core/licensing/LicensingTypes.ts +377 -0
- package/src/types/core/licensing/index.ts +1 -0
- package/src/{ui_v2 → types/core/ui_v2}/barcode/ArTrackingOverlayConfiguration.ts +28 -17
- package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeInfoMapping.ts +6 -9
- package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerScreenConfiguration.ts +18 -25
- package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerUiResult.ts +5 -7
- package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeTextLocalization.ts +2 -3
- package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeUseCase.ts +6 -5
- package/src/{ui_v2 → types/core/ui_v2}/barcode/FindAndPickScanningModeUseCase.ts +17 -19
- package/src/{ui_v2 → types/core/ui_v2}/barcode/MultipleScanningModeUseCase.ts +50 -25
- package/src/{ui_v2 → types/core/ui_v2}/barcode/SingleScanningModeUseCase.ts +9 -10
- package/src/{ui_v2 → types/core/ui_v2}/common/ActionBarConfiguration.ts +3 -4
- package/src/types/core/ui_v2/common/BottomBarConfiguration.ts +33 -0
- package/src/{ui_v2 → types/core/ui_v2}/common/CameraConfiguration.ts +33 -7
- package/src/{ui_v2 → types/core/ui_v2}/common/CameraPermission.ts +4 -5
- package/src/{ui_v2 → types/core/ui_v2}/common/Common.ts +62 -41
- package/src/{ui_v2 → types/core/ui_v2}/common/NavigationBarConfiguration.ts +19 -2
- package/src/{ui_v2 → types/core/ui_v2}/common/ScanCompletionOverlay.ts +3 -4
- package/src/{ui_v2 → types/core/ui_v2}/common/ScanbotAlertDialog.ts +3 -4
- package/src/{ui_v2 → types/core/ui_v2}/common/TopBarConfiguration.ts +37 -13
- package/src/{ui_v2 → types/core/ui_v2}/common/UserGuidanceConfiguration.ts +4 -6
- package/src/{ui_v2 → types/core/ui_v2}/common/ViewFinderConfiguration.ts +15 -17
- package/src/{ui_v2 → types/core/ui_v2}/index.ts +2 -4
- package/src/{imageRef → types/core/utils}/ObjectPoolTypes.ts +3 -4
- package/src/types/core/utils/index.ts +2 -0
- package/src/types/core/utils/utils.ts +45 -0
- package/src/types/index.ts +2 -0
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/extensions/IntExtensions.kt +0 -7
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewControllerWrapper.h +0 -121
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewControllerWrapper.m +0 -307
- package/lib/commonjs/barcode/BarcodeConfigurationTypes.js.map +0 -1
- package/lib/commonjs/barcode/BarcodeDocumentTypes.js.map +0 -1
- package/lib/commonjs/barcode/BarcodeScannerTypes.js.map +0 -1
- package/lib/commonjs/barcode/BarcodeTypes.js.map +0 -1
- package/lib/commonjs/barcode/index.js.map +0 -1
- package/lib/commonjs/base/barcodeSDKConfigurations.js.map +0 -1
- package/lib/commonjs/base/barcodeSDKTypes.js +0 -2
- package/lib/commonjs/base/barcodeSDKTypes.js.map +0 -1
- package/lib/commonjs/base/index.js +0 -28
- package/lib/commonjs/base/index.js.map +0 -1
- package/lib/commonjs/component/barcode-camera-view/ScanbotBarcodeCameraView.js.map +0 -1
- package/lib/commonjs/component/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js.map +0 -1
- package/lib/commonjs/component/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js.map +0 -1
- package/lib/commonjs/component/barcode-camera-view/index.js.map +0 -1
- package/lib/commonjs/component/spec/ScanbotBarcodeScannerViewNativeComponent.js.map +0 -1
- package/lib/commonjs/documents/BarcodeDocumentModel.js.map +0 -1
- package/lib/commonjs/documents/CommonFieldType.js.map +0 -1
- package/lib/commonjs/documents/GenericDocument.js.map +0 -1
- package/lib/commonjs/documents/index.js.map +0 -1
- package/lib/commonjs/imageRef/ImageRefTypes.js.map +0 -1
- package/lib/commonjs/imageRef/ImageTypes.js +0 -24
- package/lib/commonjs/imageRef/ImageTypes.js.map +0 -1
- package/lib/commonjs/imageRef/ObjectPoolTypes.js.map +0 -1
- package/lib/commonjs/imageRef/image.js.map +0 -1
- package/lib/commonjs/imageRef/index.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/ArTrackingOverlayConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/BarcodeInfoMapping.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/BarcodeItemMapper.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/BarcodeScannerConfiguration.js +0 -179
- package/lib/commonjs/ui_v2/barcode/BarcodeScannerConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/BarcodeScannerScreenConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/BarcodeScannerUiResult.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/BarcodeTextLocalization.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/BarcodeUseCase.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/FindAndPickScanningModeUseCase.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/MultipleScanningModeUseCase.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/SingleScanningModeUseCase.js.map +0 -1
- package/lib/commonjs/ui_v2/common/ActionBarConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/common/CameraConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/common/CameraPermission.js.map +0 -1
- package/lib/commonjs/ui_v2/common/Common.js.map +0 -1
- package/lib/commonjs/ui_v2/common/NavigationBarConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/common/ScanCompletionOverlay.js.map +0 -1
- package/lib/commonjs/ui_v2/common/ScanbotAlertDialog.js.map +0 -1
- package/lib/commonjs/ui_v2/common/TopBarConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/common/UserGuidanceConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/common/ViewFinderConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/index.js.map +0 -1
- package/lib/commonjs/utils/geometry/Geometry.js.map +0 -1
- package/lib/commonjs/utils/index.js +0 -39
- package/lib/commonjs/utils/index.js.map +0 -1
- package/lib/commonjs/utils/json/JsonSerializationTypes.js.map +0 -1
- package/lib/commonjs/utils/utils.js +0 -31
- package/lib/commonjs/utils/utils.js.map +0 -1
- package/lib/module/barcode/BarcodeConfigurationTypes.js.map +0 -1
- package/lib/module/barcode/BarcodeDocumentTypes.js.map +0 -1
- package/lib/module/barcode/BarcodeScannerTypes.js.map +0 -1
- package/lib/module/barcode/BarcodeTypes.js.map +0 -1
- package/lib/module/barcode/index.js.map +0 -1
- package/lib/module/base/barcodeSDKConfigurations.js +0 -2
- package/lib/module/base/barcodeSDKConfigurations.js.map +0 -1
- package/lib/module/base/barcodeSDKTypes.js +0 -2
- package/lib/module/base/barcodeSDKTypes.js.map +0 -1
- package/lib/module/base/index.js +0 -3
- package/lib/module/base/index.js.map +0 -1
- package/lib/module/component/barcode-camera-view/ScanbotBarcodeCameraView.js.map +0 -1
- package/lib/module/component/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js.map +0 -1
- package/lib/module/component/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js.map +0 -1
- package/lib/module/component/barcode-camera-view/index.js +0 -4
- package/lib/module/component/barcode-camera-view/index.js.map +0 -1
- package/lib/module/component/spec/ScanbotBarcodeScannerViewNativeComponent.js.map +0 -1
- package/lib/module/documents/BarcodeDocumentModel.js.map +0 -1
- package/lib/module/documents/CommonFieldType.js.map +0 -1
- package/lib/module/documents/GenericDocument.js.map +0 -1
- package/lib/module/documents/index.js.map +0 -1
- package/lib/module/imageRef/ImageRefTypes.js.map +0 -1
- package/lib/module/imageRef/ImageTypes.js +0 -18
- package/lib/module/imageRef/ImageTypes.js.map +0 -1
- package/lib/module/imageRef/ObjectPoolTypes.js.map +0 -1
- package/lib/module/imageRef/image.js.map +0 -1
- package/lib/module/imageRef/index.js.map +0 -1
- package/lib/module/ui_v2/barcode/ArTrackingOverlayConfiguration.js.map +0 -1
- package/lib/module/ui_v2/barcode/BarcodeInfoMapping.js.map +0 -1
- package/lib/module/ui_v2/barcode/BarcodeItemMapper.js.map +0 -1
- package/lib/module/ui_v2/barcode/BarcodeScannerConfiguration.js +0 -173
- package/lib/module/ui_v2/barcode/BarcodeScannerConfiguration.js.map +0 -1
- package/lib/module/ui_v2/barcode/BarcodeScannerScreenConfiguration.js.map +0 -1
- package/lib/module/ui_v2/barcode/BarcodeScannerUiResult.js.map +0 -1
- package/lib/module/ui_v2/barcode/BarcodeTextLocalization.js.map +0 -1
- package/lib/module/ui_v2/barcode/BarcodeUseCase.js.map +0 -1
- package/lib/module/ui_v2/barcode/FindAndPickScanningModeUseCase.js.map +0 -1
- package/lib/module/ui_v2/barcode/MultipleScanningModeUseCase.js.map +0 -1
- package/lib/module/ui_v2/barcode/SingleScanningModeUseCase.js.map +0 -1
- package/lib/module/ui_v2/common/ActionBarConfiguration.js.map +0 -1
- package/lib/module/ui_v2/common/CameraConfiguration.js.map +0 -1
- package/lib/module/ui_v2/common/CameraPermission.js.map +0 -1
- package/lib/module/ui_v2/common/Common.js.map +0 -1
- package/lib/module/ui_v2/common/NavigationBarConfiguration.js.map +0 -1
- package/lib/module/ui_v2/common/ScanCompletionOverlay.js.map +0 -1
- package/lib/module/ui_v2/common/ScanbotAlertDialog.js.map +0 -1
- package/lib/module/ui_v2/common/TopBarConfiguration.js.map +0 -1
- package/lib/module/ui_v2/common/UserGuidanceConfiguration.js.map +0 -1
- package/lib/module/ui_v2/common/ViewFinderConfiguration.js.map +0 -1
- package/lib/module/ui_v2/index.js.map +0 -1
- package/lib/module/utils/geometry/Geometry.js.map +0 -1
- package/lib/module/utils/index.js +0 -4
- package/lib/module/utils/index.js.map +0 -1
- package/lib/module/utils/json/JsonSerializationTypes.js.map +0 -1
- package/lib/module/utils/utils.js +0 -22
- package/lib/module/utils/utils.js.map +0 -1
- package/lib/typescript/src/barcode/BarcodeConfigurationTypes.d.ts.map +0 -1
- package/lib/typescript/src/barcode/BarcodeDocumentTypes.d.ts +0 -50
- package/lib/typescript/src/barcode/BarcodeDocumentTypes.d.ts.map +0 -1
- package/lib/typescript/src/barcode/BarcodeScannerTypes.d.ts.map +0 -1
- package/lib/typescript/src/barcode/BarcodeTypes.d.ts.map +0 -1
- package/lib/typescript/src/barcode/index.d.ts.map +0 -1
- package/lib/typescript/src/base/barcodeSDKConfigurations.d.ts +0 -60
- package/lib/typescript/src/base/barcodeSDKConfigurations.d.ts.map +0 -1
- package/lib/typescript/src/base/barcodeSDKTypes.d.ts +0 -46
- package/lib/typescript/src/base/barcodeSDKTypes.d.ts.map +0 -1
- package/lib/typescript/src/base/index.d.ts +0 -3
- package/lib/typescript/src/base/index.d.ts.map +0 -1
- package/lib/typescript/src/component/barcode-camera-view/ScanbotBarcodeCameraView.d.ts.map +0 -1
- package/lib/typescript/src/component/barcode-camera-view/ScanbotBarcodeCameraViewProperties.d.ts.map +0 -1
- package/lib/typescript/src/component/barcode-camera-view/ScanbotBarcodeCameraViewTypes.d.ts.map +0 -1
- package/lib/typescript/src/component/barcode-camera-view/index.d.ts +0 -4
- package/lib/typescript/src/component/barcode-camera-view/index.d.ts.map +0 -1
- package/lib/typescript/src/component/spec/ScanbotBarcodeScannerViewNativeComponent.d.ts.map +0 -1
- package/lib/typescript/src/documents/BarcodeDocumentModel.d.ts +0 -1458
- package/lib/typescript/src/documents/BarcodeDocumentModel.d.ts.map +0 -1
- package/lib/typescript/src/documents/CommonFieldType.d.ts +0 -61
- package/lib/typescript/src/documents/CommonFieldType.d.ts.map +0 -1
- package/lib/typescript/src/documents/GenericDocument.d.ts.map +0 -1
- package/lib/typescript/src/documents/index.d.ts.map +0 -1
- package/lib/typescript/src/imageRef/ImageRefTypes.d.ts.map +0 -1
- package/lib/typescript/src/imageRef/ImageTypes.d.ts +0 -15
- package/lib/typescript/src/imageRef/ImageTypes.d.ts.map +0 -1
- package/lib/typescript/src/imageRef/ObjectPoolTypes.d.ts.map +0 -1
- package/lib/typescript/src/imageRef/image.d.ts.map +0 -1
- package/lib/typescript/src/imageRef/index.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/ArTrackingOverlayConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/BarcodeInfoMapping.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/BarcodeItemMapper.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/BarcodeScannerConfiguration.d.ts +0 -114
- package/lib/typescript/src/ui_v2/barcode/BarcodeScannerConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/BarcodeScannerScreenConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/BarcodeScannerUiResult.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/BarcodeTextLocalization.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/BarcodeUseCase.d.ts +0 -8
- package/lib/typescript/src/ui_v2/barcode/BarcodeUseCase.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/FindAndPickScanningModeUseCase.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/MultipleScanningModeUseCase.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/SingleScanningModeUseCase.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/ActionBarConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/CameraConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/CameraPermission.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/Common.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/NavigationBarConfiguration.d.ts +0 -13
- package/lib/typescript/src/ui_v2/common/NavigationBarConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/ScanCompletionOverlay.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/ScanbotAlertDialog.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/TopBarConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/UserGuidanceConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/ViewFinderConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/index.d.ts.map +0 -1
- package/lib/typescript/src/utils/geometry/Geometry.d.ts.map +0 -1
- package/lib/typescript/src/utils/index.d.ts +0 -4
- package/lib/typescript/src/utils/index.d.ts.map +0 -1
- package/lib/typescript/src/utils/json/JsonSerializationTypes.d.ts.map +0 -1
- package/lib/typescript/src/utils/utils.d.ts +0 -17
- package/lib/typescript/src/utils/utils.d.ts.map +0 -1
- package/src/barcode/BarcodeDocumentTypes.ts +0 -120
- package/src/base/barcodeSDKConfigurations.ts +0 -70
- package/src/base/barcodeSDKTypes.ts +0 -44
- package/src/base/index.ts +0 -2
- package/src/component/barcode-camera-view/index.ts +0 -3
- package/src/imageRef/ImageTypes.ts +0 -23
- package/src/ui_v2/barcode/BarcodeScannerConfiguration.ts +0 -207
- package/src/utils/index.ts +0 -3
- package/src/utils/utils.ts +0 -42
- /package/lib/commonjs/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js +0 -0
- /package/lib/commonjs/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js +0 -0
- /package/lib/commonjs/{component → components}/spec/ScanbotBarcodeScannerViewNativeComponent.js +0 -0
- /package/lib/commonjs/{barcode → types/core/barcode}/index.js +0 -0
- /package/lib/commonjs/{documents → types/core/generic_document}/index.js +0 -0
- /package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeItemMapper.js +0 -0
- /package/lib/module/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js +0 -0
- /package/lib/module/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js +0 -0
- /package/lib/module/{component → components}/spec/ScanbotBarcodeScannerViewNativeComponent.js +0 -0
- /package/lib/module/{barcode → types/core/barcode}/index.js +0 -0
- /package/lib/module/{documents → types/core/generic_document}/index.js +0 -0
- /package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeItemMapper.js +0 -0
- /package/lib/typescript/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraView.d.ts +0 -0
- /package/lib/typescript/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewTypes.d.ts +0 -0
- /package/lib/typescript/src/{barcode → types/core/barcode}/index.d.ts +0 -0
- /package/lib/typescript/src/{documents → types/core/generic_document}/index.d.ts +0 -0
- /package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeItemMapper.d.ts +0 -0
- /package/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewTypes.ts +0 -0
- /package/src/{barcode → types/core/barcode}/index.ts +0 -0
- /package/src/{documents → types/core/generic_document}/index.ts +0 -0
- /package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeItemMapper.ts +0 -0
|
@@ -1,11 +1,62 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { RefCountedObjectProfile } from '../
|
|
3
|
-
import {
|
|
4
|
-
import { DeepPartial
|
|
1
|
+
import { ToJsonConfiguration } from '../common/JsonSerializationTypes';
|
|
2
|
+
import { RefCountedObjectProfile } from '../utils/ObjectPoolTypes';
|
|
3
|
+
import type { Rectangle } from '../utils/utils';
|
|
4
|
+
import { DeepPartial } from '../utils/utils';
|
|
5
|
+
import { ImageOrigin, ImageRotation } from './ImageTypes';
|
|
6
|
+
/**
|
|
7
|
+
Color conversion to apply during image loading.
|
|
8
|
+
|
|
9
|
+
- `GRAY`:
|
|
10
|
+
Load image as grayscale.
|
|
11
|
+
- `COLOR`:
|
|
12
|
+
Load image as 3-channel BGR.
|
|
13
|
+
- `ANY_COLOR`:
|
|
14
|
+
Load image as 3-channel BGR if the source color space is color, otherwise as single-channel grayscale. Alpha channel is discarded.
|
|
15
|
+
- `UNCHANGED`:
|
|
16
|
+
Load image as-is, preserving the alpha channel if it exists.
|
|
17
|
+
*/
|
|
18
|
+
export type ColorConversion =
|
|
19
|
+
/**
|
|
20
|
+
Load image as grayscale.
|
|
21
|
+
*/
|
|
22
|
+
'GRAY'
|
|
23
|
+
/**
|
|
24
|
+
Load image as 3-channel BGR.
|
|
25
|
+
*/
|
|
26
|
+
| 'COLOR'
|
|
27
|
+
/**
|
|
28
|
+
Load image as 3-channel BGR if the source color space is color, otherwise as single-channel grayscale. Alpha channel is discarded.
|
|
29
|
+
*/
|
|
30
|
+
| 'ANY_COLOR'
|
|
31
|
+
/**
|
|
32
|
+
Load image as-is, preserving the alpha channel if it exists.
|
|
33
|
+
*/
|
|
34
|
+
| 'UNCHANGED';
|
|
35
|
+
/** @hidden */
|
|
36
|
+
export declare const ColorConversionValues: ReadonlyArray<ColorConversion>;
|
|
37
|
+
/**
|
|
38
|
+
Canvas color to use when converting images with alpha channel to images without alpha channel.
|
|
39
|
+
|
|
40
|
+
- `WHITE`:
|
|
41
|
+
White canvas color.
|
|
42
|
+
- `BLACK`:
|
|
43
|
+
Black canvas color.
|
|
44
|
+
*/
|
|
45
|
+
export type CanvasColor =
|
|
46
|
+
/**
|
|
47
|
+
White canvas color.
|
|
48
|
+
*/
|
|
49
|
+
'WHITE'
|
|
50
|
+
/**
|
|
51
|
+
Black canvas color.
|
|
52
|
+
*/
|
|
53
|
+
| 'BLACK';
|
|
54
|
+
/** @hidden */
|
|
55
|
+
export declare const CanvasColorValues: ReadonlyArray<CanvasColor>;
|
|
5
56
|
/**
|
|
6
57
|
Image Info.
|
|
7
58
|
*/
|
|
8
|
-
export declare class ImageInfo
|
|
59
|
+
export declare class ImageInfo {
|
|
9
60
|
/**
|
|
10
61
|
Image height in pixels.
|
|
11
62
|
*/
|
|
@@ -32,8 +83,21 @@ Image Ref Path Load Mode.
|
|
|
32
83
|
- `LAZY_WITH_COPY`:
|
|
33
84
|
Image is loaded into memory the first time it's requested. Specified path is copied into internal directory and so isn't required to exist at the time of loading.
|
|
34
85
|
*/
|
|
35
|
-
export type PathLoadMode =
|
|
36
|
-
|
|
86
|
+
export type PathLoadMode =
|
|
87
|
+
/**
|
|
88
|
+
Image is immediately loaded into memory.
|
|
89
|
+
*/
|
|
90
|
+
'EAGER'
|
|
91
|
+
/**
|
|
92
|
+
Image is loaded into memory the first time it's requested. Specified path must exist at the time of loading.
|
|
93
|
+
*/
|
|
94
|
+
| 'LAZY'
|
|
95
|
+
/**
|
|
96
|
+
Image is loaded into memory the first time it's requested. Specified path is copied into internal directory and so isn't required to exist at the time of loading.
|
|
97
|
+
*/
|
|
98
|
+
| 'LAZY_WITH_COPY';
|
|
99
|
+
/** @hidden */
|
|
100
|
+
export declare const PathLoadModeValues: ReadonlyArray<PathLoadMode>;
|
|
37
101
|
/**
|
|
38
102
|
Image Ref Buffer Load Mode.
|
|
39
103
|
|
|
@@ -42,8 +106,17 @@ Image Ref Buffer Load Mode.
|
|
|
42
106
|
- `LAZY`:
|
|
43
107
|
Image is decoded the first time it's requested.
|
|
44
108
|
*/
|
|
45
|
-
export type BufferLoadMode =
|
|
46
|
-
|
|
109
|
+
export type BufferLoadMode =
|
|
110
|
+
/**
|
|
111
|
+
Image is immediately decoded.
|
|
112
|
+
*/
|
|
113
|
+
'EAGER'
|
|
114
|
+
/**
|
|
115
|
+
Image is decoded the first time it's requested.
|
|
116
|
+
*/
|
|
117
|
+
| 'LAZY';
|
|
118
|
+
/** @hidden */
|
|
119
|
+
export declare const BufferLoadModeValues: ReadonlyArray<BufferLoadMode>;
|
|
47
120
|
/**
|
|
48
121
|
Image Encoding Format.
|
|
49
122
|
|
|
@@ -52,41 +125,87 @@ Image Encoding Format.
|
|
|
52
125
|
- `PNG`:
|
|
53
126
|
PNG encoding.
|
|
54
127
|
*/
|
|
55
|
-
export type EncodingFormat =
|
|
56
|
-
|
|
128
|
+
export type EncodingFormat =
|
|
129
|
+
/**
|
|
130
|
+
JPEG encoding.
|
|
131
|
+
*/
|
|
132
|
+
'JPEG'
|
|
133
|
+
/**
|
|
134
|
+
PNG encoding.
|
|
135
|
+
*/
|
|
136
|
+
| 'PNG';
|
|
137
|
+
/** @hidden */
|
|
138
|
+
export declare const EncodingFormatValues: ReadonlyArray<EncodingFormat>;
|
|
57
139
|
/**
|
|
58
140
|
Encryption/Decryption mode to be used when an image is loaded/saved.
|
|
59
141
|
|
|
60
142
|
- `REQUIRED`:
|
|
61
143
|
Encryption/Decryption is used when loading/saving an image. A crypting provider must first be set using `ImageRef.setStorageCryptingProvider`. If no provider is set, the loading/saving operation will fail.
|
|
62
144
|
- `DISABLED`:
|
|
63
|
-
Encryption
|
|
64
|
-
- `
|
|
65
|
-
|
|
145
|
+
Encryption is not used when loading or saving images. Trying to load an encrypted image will fail.
|
|
146
|
+
- `AUTO`:
|
|
147
|
+
When saving, images are encrypted only if a crypting provider is set using `ImageRef.setStorageCryptingProvider`.
|
|
148
|
+
When loading, images will be decrypted if they're encrypted and a crypting provider is set, and loaded as-is otherwise.
|
|
66
149
|
*/
|
|
67
|
-
export type EncryptionMode =
|
|
68
|
-
|
|
150
|
+
export type EncryptionMode =
|
|
151
|
+
/**
|
|
152
|
+
Encryption/Decryption is used when loading/saving an image. A crypting provider must first be set using `ImageRef.setStorageCryptingProvider`. If no provider is set, the loading/saving operation will fail.
|
|
153
|
+
*/
|
|
154
|
+
'REQUIRED'
|
|
155
|
+
/**
|
|
156
|
+
Encryption is not used when loading or saving images. Trying to load an encrypted image will fail.
|
|
157
|
+
*/
|
|
158
|
+
| 'DISABLED'
|
|
159
|
+
/**
|
|
160
|
+
When saving, images are encrypted only if a crypting provider is set using `ImageRef.setStorageCryptingProvider`.
|
|
161
|
+
When loading, images will be decrypted if they're encrypted and a crypting provider is set, and loaded as-is otherwise.
|
|
162
|
+
*/
|
|
163
|
+
| 'AUTO';
|
|
164
|
+
/** @hidden */
|
|
165
|
+
export declare const EncryptionModeValues: ReadonlyArray<EncryptionMode>;
|
|
69
166
|
/**
|
|
70
167
|
Basic options for loading image.
|
|
71
168
|
*/
|
|
72
|
-
export declare class BasicImageLoadOptions
|
|
169
|
+
export declare class BasicImageLoadOptions {
|
|
73
170
|
/**
|
|
74
|
-
|
|
171
|
+
If the rect is not empty, the image will be cropped to this rect before processing.
|
|
172
|
+
*/
|
|
173
|
+
cropRect: Rectangle;
|
|
174
|
+
/**
|
|
175
|
+
CanvasColor color to use when converting images with alpha channel to images without alpha channel.
|
|
176
|
+
|
|
177
|
+
Default is WHITE
|
|
75
178
|
*/
|
|
76
|
-
|
|
179
|
+
canvasColor: CanvasColor;
|
|
77
180
|
/** @param source {@displayType `DeepPartial<BasicImageLoadOptions>`} */
|
|
78
181
|
constructor(source?: DeepPartial<BasicImageLoadOptions>);
|
|
79
182
|
}
|
|
80
183
|
/**
|
|
81
184
|
Options for loading images that come from sensor.
|
|
82
185
|
*/
|
|
83
|
-
export declare class RawImageLoadOptions
|
|
186
|
+
export declare class RawImageLoadOptions {
|
|
84
187
|
/**
|
|
85
|
-
|
|
188
|
+
If the rect is not empty, the image will be cropped to this rect before processing.
|
|
86
189
|
*/
|
|
87
|
-
|
|
190
|
+
cropRect: Rectangle;
|
|
88
191
|
/**
|
|
89
|
-
|
|
192
|
+
Location of the image origin in the image coordinate system.
|
|
193
|
+
During loading images are flipped such that after the flip their new origin is in their top-left corner.
|
|
194
|
+
For example, an image coming from the front camera might have its origin set to the top-right, which will flip it along its vertical axis to create a mirror effect.
|
|
195
|
+
|
|
196
|
+
The origin is interpreted net of the image orientation. The origin rotates together with the image. The origin value is interpreted and the resulting flip executed AFTER the image matrix has been reoriented to have a neutral orientation.
|
|
197
|
+
|
|
198
|
+
Default is TOP_LEFT
|
|
199
|
+
*/
|
|
200
|
+
origin: ImageOrigin;
|
|
201
|
+
/**
|
|
202
|
+
CanvasColor color to use when converting images with alpha channel to images without alpha channel.
|
|
203
|
+
|
|
204
|
+
Default is WHITE
|
|
205
|
+
*/
|
|
206
|
+
canvasColor: CanvasColor;
|
|
207
|
+
/**
|
|
208
|
+
Rotation that should be applied to the image to recover correct orientation. Is applied before cropping.
|
|
90
209
|
|
|
91
210
|
Default is NONE
|
|
92
211
|
*/
|
|
@@ -97,11 +216,23 @@ export declare class RawImageLoadOptions extends PartiallyConstructible {
|
|
|
97
216
|
/**
|
|
98
217
|
Options for loading image from path.
|
|
99
218
|
*/
|
|
100
|
-
export declare class PathImageLoadOptions
|
|
219
|
+
export declare class PathImageLoadOptions {
|
|
101
220
|
/**
|
|
102
|
-
|
|
221
|
+
If the rect is not empty, the image will be cropped to this rect before processing.
|
|
222
|
+
*/
|
|
223
|
+
cropRect: Rectangle;
|
|
224
|
+
/**
|
|
225
|
+
Color conversion to apply during image loading.
|
|
226
|
+
|
|
227
|
+
Default is ANY_COLOR
|
|
228
|
+
*/
|
|
229
|
+
colorConversion: ColorConversion;
|
|
230
|
+
/**
|
|
231
|
+
CanvasColor color to use when converting images with alpha channel to images without alpha channel.
|
|
232
|
+
|
|
233
|
+
Default is WHITE
|
|
103
234
|
*/
|
|
104
|
-
|
|
235
|
+
canvasColor: CanvasColor;
|
|
105
236
|
/**
|
|
106
237
|
Load mode.
|
|
107
238
|
|
|
@@ -111,7 +242,7 @@ export declare class PathImageLoadOptions extends PartiallyConstructible {
|
|
|
111
242
|
/**
|
|
112
243
|
Encryption mode.
|
|
113
244
|
|
|
114
|
-
Default is
|
|
245
|
+
Default is AUTO
|
|
115
246
|
*/
|
|
116
247
|
encryptionMode: EncryptionMode;
|
|
117
248
|
/** @param source {@displayType `DeepPartial<PathImageLoadOptions>`} */
|
|
@@ -120,11 +251,23 @@ export declare class PathImageLoadOptions extends PartiallyConstructible {
|
|
|
120
251
|
/**
|
|
121
252
|
Options for loading image from buffer.
|
|
122
253
|
*/
|
|
123
|
-
export declare class BufferImageLoadOptions
|
|
254
|
+
export declare class BufferImageLoadOptions {
|
|
124
255
|
/**
|
|
125
|
-
|
|
256
|
+
If the rect is not empty, the image will be cropped to this rect before processing.
|
|
126
257
|
*/
|
|
127
|
-
|
|
258
|
+
cropRect: Rectangle;
|
|
259
|
+
/**
|
|
260
|
+
Color conversion to apply during image loading.
|
|
261
|
+
|
|
262
|
+
Default is ANY_COLOR
|
|
263
|
+
*/
|
|
264
|
+
colorConversion: ColorConversion;
|
|
265
|
+
/**
|
|
266
|
+
CanvasColor color to use when converting images with alpha channel to images without alpha channel.
|
|
267
|
+
|
|
268
|
+
Default is WHITE
|
|
269
|
+
*/
|
|
270
|
+
canvasColor: CanvasColor;
|
|
128
271
|
/**
|
|
129
272
|
Load mode.
|
|
130
273
|
|
|
@@ -137,7 +280,7 @@ export declare class BufferImageLoadOptions extends PartiallyConstructible {
|
|
|
137
280
|
/**
|
|
138
281
|
Options for saving image to a path.
|
|
139
282
|
*/
|
|
140
|
-
export declare class SaveImageOptions
|
|
283
|
+
export declare class SaveImageOptions {
|
|
141
284
|
/**
|
|
142
285
|
Quality parameter is for jpeg only and is in range 0 to 100. If -1, then settings from hibernation are used.
|
|
143
286
|
In case when the Image Ref was created with a lazy load mode and originally has the same format as the requested to save,
|
|
@@ -150,7 +293,7 @@ export declare class SaveImageOptions extends PartiallyConstructible {
|
|
|
150
293
|
/**
|
|
151
294
|
Encryption mode.
|
|
152
295
|
|
|
153
|
-
Default is
|
|
296
|
+
Default is AUTO
|
|
154
297
|
*/
|
|
155
298
|
encryptionMode: EncryptionMode;
|
|
156
299
|
/** @param source {@displayType `DeepPartial<SaveImageOptions>`} */
|
|
@@ -159,7 +302,7 @@ export declare class SaveImageOptions extends PartiallyConstructible {
|
|
|
159
302
|
/**
|
|
160
303
|
Options for encoding image.
|
|
161
304
|
*/
|
|
162
|
-
export declare class EncodeImageOptions
|
|
305
|
+
export declare class EncodeImageOptions {
|
|
163
306
|
/**
|
|
164
307
|
Quality parameter is for jpeg only and is in range 0 to 100. If -1, then settings from hibernation are used.
|
|
165
308
|
In case when the Image Ref was created with a lazy load mode and originally has the same format as the requested to save,
|
|
@@ -194,12 +337,37 @@ The type of source which originated the underlying image.
|
|
|
194
337
|
- `OTHER`:
|
|
195
338
|
ImageRef was created from another type, e.g. from custom loader.
|
|
196
339
|
*/
|
|
197
|
-
export type ImageSourceType =
|
|
198
|
-
|
|
340
|
+
export type ImageSourceType =
|
|
341
|
+
/**
|
|
342
|
+
ImageRef was created by a call to an SDK feature, such as a scanner, image processor, etc.
|
|
343
|
+
*/
|
|
344
|
+
'API'
|
|
345
|
+
/**
|
|
346
|
+
ImageRef was created from a platform image, e.g. Bitmap on Android, UIImage on iOS.
|
|
347
|
+
*/
|
|
348
|
+
| 'PLATFORM_IMAGE'
|
|
349
|
+
/**
|
|
350
|
+
ImageRef was created from data from the camera.
|
|
351
|
+
*/
|
|
352
|
+
| 'CAMERA'
|
|
353
|
+
/**
|
|
354
|
+
ImageRef was created from a file.
|
|
355
|
+
*/
|
|
356
|
+
| 'FILE'
|
|
357
|
+
/**
|
|
358
|
+
ImageRef was created from an encoded buffer.
|
|
359
|
+
*/
|
|
360
|
+
| 'BUFFER'
|
|
361
|
+
/**
|
|
362
|
+
ImageRef was created from another type, e.g. from custom loader.
|
|
363
|
+
*/
|
|
364
|
+
| 'OTHER';
|
|
365
|
+
/** @hidden */
|
|
366
|
+
export declare const ImageSourceTypeValues: ReadonlyArray<ImageSourceType>;
|
|
199
367
|
/**
|
|
200
368
|
Description of source from which the ImageRef was created.
|
|
201
369
|
*/
|
|
202
|
-
export declare class ImageSource
|
|
370
|
+
export declare class ImageSource {
|
|
203
371
|
/**
|
|
204
372
|
Source type from which the ImageRef was created.
|
|
205
373
|
*/
|
|
@@ -215,7 +383,7 @@ export declare class ImageSource extends PartiallyConstructible {
|
|
|
215
383
|
/**
|
|
216
384
|
ImageRef profile part specific to image information.
|
|
217
385
|
*/
|
|
218
|
-
export declare class ImageProfile
|
|
386
|
+
export declare class ImageProfile {
|
|
219
387
|
/**
|
|
220
388
|
Memory consumption of a memory-backed bitmap. Zero, if the image is hibernating.
|
|
221
389
|
|
|
@@ -235,7 +403,7 @@ export declare class ImageProfile extends PartiallyConstructible {
|
|
|
235
403
|
/**
|
|
236
404
|
ImageRef profile which provides detailed information about stored object.
|
|
237
405
|
*/
|
|
238
|
-
export declare class ImageRefProfile
|
|
406
|
+
export declare class ImageRefProfile {
|
|
239
407
|
/**
|
|
240
408
|
Information about the strong and serialized references to the image.
|
|
241
409
|
*/
|
|
@@ -255,7 +423,7 @@ export declare class ImageRefProfile extends PartiallyConstructible {
|
|
|
255
423
|
/**
|
|
256
424
|
Snapshot of all alive ImageRefs.
|
|
257
425
|
*/
|
|
258
|
-
export declare class ImageRefPoolSnapshot
|
|
426
|
+
export declare class ImageRefPoolSnapshot {
|
|
259
427
|
/**
|
|
260
428
|
Detailed profiles of all alive ImageRefs.
|
|
261
429
|
*/
|
|
@@ -273,7 +441,7 @@ export declare class ImageRefPoolSnapshot extends PartiallyConstructible {
|
|
|
273
441
|
/**
|
|
274
442
|
difference between two snapshots.
|
|
275
443
|
*/
|
|
276
|
-
export declare class ImageRefPoolSnapshotsDiff
|
|
444
|
+
export declare class ImageRefPoolSnapshotsDiff {
|
|
277
445
|
/**
|
|
278
446
|
Difference between total memory consumption in two snapshots.
|
|
279
447
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ImageRefTypes.d.ts","sourceRoot":"","sources":["../../../../../../src/types/core/image/ImageRefTypes.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/**
|
|
2
|
+
Image rotation.
|
|
3
|
+
|
|
4
|
+
- `NONE`:
|
|
5
|
+
No rotation.
|
|
6
|
+
- `CLOCKWISE_90`:
|
|
7
|
+
90 degrees clockwise rotation.
|
|
8
|
+
- `CLOCKWISE_180`:
|
|
9
|
+
180 degrees rotation.
|
|
10
|
+
- `COUNTERCLOCKWISE_90`:
|
|
11
|
+
90 degrees counterclockwise rotation.
|
|
12
|
+
*/
|
|
13
|
+
export type ImageRotation =
|
|
14
|
+
/**
|
|
15
|
+
No rotation.
|
|
16
|
+
*/
|
|
17
|
+
'NONE'
|
|
18
|
+
/**
|
|
19
|
+
90 degrees clockwise rotation.
|
|
20
|
+
*/
|
|
21
|
+
| 'CLOCKWISE_90'
|
|
22
|
+
/**
|
|
23
|
+
180 degrees rotation.
|
|
24
|
+
*/
|
|
25
|
+
| 'CLOCKWISE_180'
|
|
26
|
+
/**
|
|
27
|
+
90 degrees counterclockwise rotation.
|
|
28
|
+
*/
|
|
29
|
+
| 'COUNTERCLOCKWISE_90';
|
|
30
|
+
/** @hidden */
|
|
31
|
+
export declare const ImageRotationValues: ReadonlyArray<ImageRotation>;
|
|
32
|
+
/**
|
|
33
|
+
Location of the image origin in the image coordinate system.
|
|
34
|
+
|
|
35
|
+
- `TOP_LEFT`:
|
|
36
|
+
Origin is at the top left corner of the image.
|
|
37
|
+
- `TOP_RIGHT`:
|
|
38
|
+
Origin is at the top right corner of the image.
|
|
39
|
+
- `BOTTOM_LEFT`:
|
|
40
|
+
Origin is at the bottom left corner of the image.
|
|
41
|
+
- `BOTTOM_RIGHT`:
|
|
42
|
+
Origin is at the bottom right corner of the image.
|
|
43
|
+
*/
|
|
44
|
+
export type ImageOrigin =
|
|
45
|
+
/**
|
|
46
|
+
Origin is at the top left corner of the image.
|
|
47
|
+
*/
|
|
48
|
+
'TOP_LEFT'
|
|
49
|
+
/**
|
|
50
|
+
Origin is at the top right corner of the image.
|
|
51
|
+
*/
|
|
52
|
+
| 'TOP_RIGHT'
|
|
53
|
+
/**
|
|
54
|
+
Origin is at the bottom left corner of the image.
|
|
55
|
+
*/
|
|
56
|
+
| 'BOTTOM_LEFT'
|
|
57
|
+
/**
|
|
58
|
+
Origin is at the bottom right corner of the image.
|
|
59
|
+
*/
|
|
60
|
+
| 'BOTTOM_RIGHT';
|
|
61
|
+
/** @hidden */
|
|
62
|
+
export declare const ImageOriginValues: ReadonlyArray<ImageOrigin>;
|
|
63
|
+
//# sourceMappingURL=ImageTypes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ImageTypes.d.ts","sourceRoot":"","sources":["../../../../../../src/types/core/image/ImageTypes.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;;EAWE;AACF,MAAM,MAAM,aAAa;AACvB;;IAEI;AACF,MAAM;AACR;;IAEI;GACF,cAAc;AAChB;;IAEI;GACF,eAAe;AACjB;;IAEI;GACF,qBAAqB,CAAC;AAE1B,cAAc;AACd,eAAO,MAAM,mBAAmB,EAAE,aAAa,CAAC,aAAa,CAKnD,CAAC;AAEX;;;;;;;;;;;EAWE;AACF,MAAM,MAAM,WAAW;AACrB;;IAEI;AACF,UAAU;AACZ;;IAEI;GACF,WAAW;AACb;;IAEI;GACF,aAAa;AACf;;IAEI;GACF,cAAc,CAAC;AAEnB,cAAc;AACd,eAAO,MAAM,iBAAiB,EAAE,aAAa,CAAC,WAAW,CAK/C,CAAC"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ImageSerializationMode } from '../
|
|
2
|
-
import { DeepPartial
|
|
1
|
+
import { ImageSerializationMode } from '../common/JsonSerializationTypes';
|
|
2
|
+
import { DeepPartial } from '../utils/utils';
|
|
3
3
|
import { BufferImageLoadOptions, EncodeImageOptions, ImageInfo, ImageRefPoolSnapshot, PathImageLoadOptions, SaveImageOptions } from './ImageRefTypes';
|
|
4
4
|
export declare function autorelease<TReturn>(computation: () => TReturn | Promise<TReturn>): Promise<TReturn>;
|
|
5
|
-
|
|
5
|
+
declare abstract class AutoReleasable {
|
|
6
6
|
private retained;
|
|
7
7
|
protected constructor(uniqueId?: string);
|
|
8
8
|
abstract release(): void;
|
|
@@ -15,25 +15,20 @@ export declare class ImageRef extends AutoReleasable {
|
|
|
15
15
|
private released;
|
|
16
16
|
get buffer(): string | undefined;
|
|
17
17
|
private constructor();
|
|
18
|
-
static
|
|
18
|
+
static from(source: DeepPartial<ImageRef>): ImageRef;
|
|
19
19
|
static deserialize(serializedRef: DeepPartial<ImageRef>): ImageRef;
|
|
20
20
|
/**
|
|
21
21
|
* Converts the Image Ref to Json representation
|
|
22
22
|
*/
|
|
23
23
|
serialize(imageSerializationMode: ImageSerializationMode): Promise<DeepPartial<ImageRef | null>>;
|
|
24
24
|
/**
|
|
25
|
-
* Creates ImageRef with uniqueId from the
|
|
25
|
+
* Creates ImageRef with uniqueId from the file uri to an image.
|
|
26
26
|
*/
|
|
27
27
|
static fromImageFileUri(uri: string, options?: PathImageLoadOptions): Promise<ImageRef | null>;
|
|
28
28
|
/**
|
|
29
29
|
* Creates ImageRef with uniqueId from base64 encoded buffer, e.g. from jpeg.
|
|
30
30
|
*/
|
|
31
31
|
static fromEncodedBuffer(buffer: string, options?: BufferImageLoadOptions): Promise<ImageRef | null>;
|
|
32
|
-
/**
|
|
33
|
-
* Creates a deep copy of the image.
|
|
34
|
-
* If uniqueId is not set or the image is already released, an exception will be thrown.
|
|
35
|
-
*/
|
|
36
|
-
clone(): Promise<ImageRef | null>;
|
|
37
32
|
/**
|
|
38
33
|
* Compresses ImageRef and stores it either on disk or in memory according to global settings.
|
|
39
34
|
* If uniqueId is not set or the image is already released, an exception will be thrown.
|
|
@@ -80,4 +75,5 @@ export declare class ImageRef extends AutoReleasable {
|
|
|
80
75
|
private throwErrorIfUniqueIdIsMissing;
|
|
81
76
|
private throwErrorIfReleased;
|
|
82
77
|
}
|
|
78
|
+
export {};
|
|
83
79
|
//# sourceMappingURL=image.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"image.d.ts","sourceRoot":"","sources":["../../../../../../src/types/core/image/image.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,sBAAsB,EAAE,MAAM,kCAAkC,CAAC;AAC1E,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EACL,sBAAsB,EACtB,kBAAkB,EAClB,SAAS,EACT,oBAAoB,EACpB,oBAAoB,EACpB,gBAAgB,EACjB,MAAM,iBAAiB,CAAC;AA+BzB,wBAAsB,WAAW,CAAC,OAAO,EACvC,WAAW,EAAE,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,GAC5C,OAAO,CAAC,OAAO,CAAC,CAoBlB;AAED,uBAAe,cAAc;IAC3B,OAAO,CAAC,QAAQ,CAAkB;IAElC,SAAS,aAAa,QAAQ,CAAC,EAAE,MAAM;aAgBvB,OAAO,IAAI,IAAI;IAExB,UAAU;IAIV,MAAM;CAGd;AAED,qBAAa,QAAS,SAAQ,cAAc;IAC1C,SAAgB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClC,OAAO,CAAC,OAAO,CAAC,CAAS;IAEzB,OAAO,CAAC,QAAQ,CAAkB;IAElC,IAAW,MAAM,uBAEhB;IAED,OAAO;WAOO,IAAI,CAAC,MAAM,EAAE,WAAW,CAAC,QAAQ,CAAC,GAAG,QAAQ;WAQ7C,WAAW,CAAC,aAAa,EAAE,WAAW,CAAC,QAAQ,CAAC,GAAG,QAAQ;IAmBzE;;OAEG;IACU,SAAS,CACpB,sBAAsB,EAAE,sBAAsB,GAC7C,OAAO,CAAC,WAAW,CAAC,QAAQ,GAAG,IAAI,CAAC,CAAC;IA4BxC;;OAEG;WACiB,gBAAgB,CAClC,GAAG,EAAE,MAAM,EACX,OAAO,GAAE,oBAAiD,GACzD,OAAO,CAAC,QAAQ,GAAG,IAAI,CAAC;IAa3B;;OAEG;WACiB,iBAAiB,CACnC,MAAM,EAAE,MAAM,EACd,OAAO,GAAE,sBAAqD,GAC7D,OAAO,CAAC,QAAQ,GAAG,IAAI,CAAC;IAa3B;;;OAGG;IACU,SAAS;IAWtB;;;;OAIG;IACU,KAAK;IAWlB;;;OAGG;IACU,IAAI,IAAI,OAAO,CAAC,SAAS,GAAG,IAAI,CAAC;IAe9C;;;OAGG;IACU,SAAS,CACpB,IAAI,EAAE,MAAM,EACZ,OAAO,GAAE,gBAAyC,GACjD,OAAO,CAAC,OAAO,CAAC;IAiBnB;;OAEG;IACU,aAAa,IAAI,OAAO,CAAC,IAAI,CAAC;IAsB3C;;OAEG;IACU,WAAW,CAAC,OAAO,CAAC,EAAE,kBAAkB,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;IAwB9E;;;OAGG;IACI,OAAO;IAad;;;OAGG;WACiB,YAAY,IAAI,OAAO,CAAC,oBAAoB,GAAG,IAAI,CAAC;IAYxE;;OAEG;WACW,UAAU;IAKxB,OAAO,CAAC,6BAA6B;IAMrC,OAAO,CAAC,oBAAoB;CAK7B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/types/core/image/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from './barcode';
|
|
2
|
+
export * from './camera';
|
|
3
|
+
export * from './common';
|
|
4
|
+
export * from './generic_document';
|
|
5
|
+
export * from './geometry';
|
|
6
|
+
export * from './image';
|
|
7
|
+
export * from './licensing';
|
|
8
|
+
export * from './ui_v2';
|
|
9
|
+
export * from './utils';
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/types/core/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,oBAAoB,CAAC;AACnC,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC"}
|