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,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { DeepPartial } from '../utils/utils';
|
|
2
|
+
import { BarcodeFormat, Gs1Handling, OneDConfirmationMode, UpcEanExtensionBehavior } from './BarcodeTypes';
|
|
3
3
|
/**
|
|
4
4
|
Base class for all barcode configurations.
|
|
5
5
|
*/
|
|
@@ -11,7 +11,7 @@ export type BarcodeFormatOneDConfigurationBase = BarcodeFormatCodabarConfigurati
|
|
|
11
11
|
/**
|
|
12
12
|
Codabar barcode configuration. Add to scanner configuration to scan Codabar barcodes.
|
|
13
13
|
*/
|
|
14
|
-
export declare class BarcodeFormatCodabarConfiguration
|
|
14
|
+
export declare class BarcodeFormatCodabarConfiguration {
|
|
15
15
|
readonly _type: 'BarcodeFormatCodabarConfiguration';
|
|
16
16
|
/**
|
|
17
17
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -49,6 +49,12 @@ export declare class BarcodeFormatCodabarConfiguration extends PartiallyConstruc
|
|
|
49
49
|
Default is 1
|
|
50
50
|
*/
|
|
51
51
|
minimumNumberOfRequiredFramesWithEqualRecognitionResult: number;
|
|
52
|
+
/**
|
|
53
|
+
Allows to select the balance between result accuracy (precision) and missed barcodes (recall) for linear barcodes.
|
|
54
|
+
|
|
55
|
+
Default is THOROUGH
|
|
56
|
+
*/
|
|
57
|
+
oneDConfirmationMode: OneDConfirmationMode;
|
|
52
58
|
/**
|
|
53
59
|
Minimum text length. Applied only to linear barcode formats that allow variable length.
|
|
54
60
|
|
|
@@ -61,6 +67,12 @@ export declare class BarcodeFormatCodabarConfiguration extends PartiallyConstruc
|
|
|
61
67
|
Default is 0
|
|
62
68
|
*/
|
|
63
69
|
maximumTextLength: number;
|
|
70
|
+
/**
|
|
71
|
+
If true, the scanner will try extra-hard to scan barcodes with heavy blur or that are otherwise damaged.
|
|
72
|
+
|
|
73
|
+
Default is true
|
|
74
|
+
*/
|
|
75
|
+
enableOneDBlurScanner: boolean;
|
|
64
76
|
/**
|
|
65
77
|
If true, return the start and end characters.
|
|
66
78
|
|
|
@@ -73,7 +85,7 @@ export declare class BarcodeFormatCodabarConfiguration extends PartiallyConstruc
|
|
|
73
85
|
/**
|
|
74
86
|
Code 11 barcode configuration. Add to scanner configuration to scan Code 11 barcodes.
|
|
75
87
|
*/
|
|
76
|
-
export declare class BarcodeFormatCode11Configuration
|
|
88
|
+
export declare class BarcodeFormatCode11Configuration {
|
|
77
89
|
readonly _type: 'BarcodeFormatCode11Configuration';
|
|
78
90
|
/**
|
|
79
91
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -111,6 +123,12 @@ export declare class BarcodeFormatCode11Configuration extends PartiallyConstruct
|
|
|
111
123
|
Default is 1
|
|
112
124
|
*/
|
|
113
125
|
minimumNumberOfRequiredFramesWithEqualRecognitionResult: number;
|
|
126
|
+
/**
|
|
127
|
+
Allows to select the balance between result accuracy (precision) and missed barcodes (recall) for linear barcodes.
|
|
128
|
+
|
|
129
|
+
Default is THOROUGH
|
|
130
|
+
*/
|
|
131
|
+
oneDConfirmationMode: OneDConfirmationMode;
|
|
114
132
|
/**
|
|
115
133
|
If true, the check digits are stripped from the result.
|
|
116
134
|
|
|
@@ -141,7 +159,7 @@ export declare class BarcodeFormatCode11Configuration extends PartiallyConstruct
|
|
|
141
159
|
/**
|
|
142
160
|
Code 39 barcode and derivatives configuration. Add to scanner configuration to scan Code 39, Code 32 (Italian Pharmacode), PZN7 and PZN8 (Pharmazentralnummer) barcodes.
|
|
143
161
|
*/
|
|
144
|
-
export declare class BarcodeFormatCode39Configuration
|
|
162
|
+
export declare class BarcodeFormatCode39Configuration {
|
|
145
163
|
readonly _type: 'BarcodeFormatCode39Configuration';
|
|
146
164
|
/**
|
|
147
165
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -179,6 +197,12 @@ export declare class BarcodeFormatCode39Configuration extends PartiallyConstruct
|
|
|
179
197
|
Default is 1
|
|
180
198
|
*/
|
|
181
199
|
minimumNumberOfRequiredFramesWithEqualRecognitionResult: number;
|
|
200
|
+
/**
|
|
201
|
+
Allows to select the balance between result accuracy (precision) and missed barcodes (recall) for linear barcodes.
|
|
202
|
+
|
|
203
|
+
Default is THOROUGH
|
|
204
|
+
*/
|
|
205
|
+
oneDConfirmationMode: OneDConfirmationMode;
|
|
182
206
|
/**
|
|
183
207
|
If true, the check digits are stripped from the result.
|
|
184
208
|
|
|
@@ -197,6 +221,12 @@ export declare class BarcodeFormatCode39Configuration extends PartiallyConstruct
|
|
|
197
221
|
Default is 0
|
|
198
222
|
*/
|
|
199
223
|
maximumTextLength: number;
|
|
224
|
+
/**
|
|
225
|
+
If true, the scanner will try extra-hard to scan barcodes with heavy blur or that are otherwise damaged.
|
|
226
|
+
|
|
227
|
+
Default is true
|
|
228
|
+
*/
|
|
229
|
+
enableOneDBlurScanner: boolean;
|
|
200
230
|
/**
|
|
201
231
|
If true, scan and return valid CODE_32 (Italian Pharmacode) barcodes. If false, CODE_32 barcodes are not decoded and are returned as CODE_39 instead.
|
|
202
232
|
|
|
@@ -239,7 +269,7 @@ export declare class BarcodeFormatCode39Configuration extends PartiallyConstruct
|
|
|
239
269
|
/**
|
|
240
270
|
Code 93 barcode configuration. Add to scanner configuration to scan Code 93 barcodes.
|
|
241
271
|
*/
|
|
242
|
-
export declare class BarcodeFormatCode93Configuration
|
|
272
|
+
export declare class BarcodeFormatCode93Configuration {
|
|
243
273
|
readonly _type: 'BarcodeFormatCode93Configuration';
|
|
244
274
|
/**
|
|
245
275
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -277,6 +307,12 @@ export declare class BarcodeFormatCode93Configuration extends PartiallyConstruct
|
|
|
277
307
|
Default is 1
|
|
278
308
|
*/
|
|
279
309
|
minimumNumberOfRequiredFramesWithEqualRecognitionResult: number;
|
|
310
|
+
/**
|
|
311
|
+
Allows to select the balance between result accuracy (precision) and missed barcodes (recall) for linear barcodes.
|
|
312
|
+
|
|
313
|
+
Default is THOROUGH
|
|
314
|
+
*/
|
|
315
|
+
oneDConfirmationMode: OneDConfirmationMode;
|
|
280
316
|
/**
|
|
281
317
|
If true, the check digits are stripped from the result.
|
|
282
318
|
|
|
@@ -295,13 +331,19 @@ export declare class BarcodeFormatCode93Configuration extends PartiallyConstruct
|
|
|
295
331
|
Default is 0
|
|
296
332
|
*/
|
|
297
333
|
maximumTextLength: number;
|
|
334
|
+
/**
|
|
335
|
+
If true, the scanner will try extra-hard to scan barcodes with heavy blur or that are otherwise damaged.
|
|
336
|
+
|
|
337
|
+
Default is true
|
|
338
|
+
*/
|
|
339
|
+
enableOneDBlurScanner: boolean;
|
|
298
340
|
/** @param source {@displayType `DeepPartial<BarcodeFormatCode93Configuration>`} */
|
|
299
341
|
constructor(source?: DeepPartial<BarcodeFormatCode93Configuration>);
|
|
300
342
|
}
|
|
301
343
|
/**
|
|
302
344
|
Code 128 barcode configuration. Add to scanner configuration to scan Code 128 barcodes.
|
|
303
345
|
*/
|
|
304
|
-
export declare class BarcodeFormatCode128Configuration
|
|
346
|
+
export declare class BarcodeFormatCode128Configuration {
|
|
305
347
|
readonly _type: 'BarcodeFormatCode128Configuration';
|
|
306
348
|
/**
|
|
307
349
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -339,6 +381,12 @@ export declare class BarcodeFormatCode128Configuration extends PartiallyConstruc
|
|
|
339
381
|
Default is 1
|
|
340
382
|
*/
|
|
341
383
|
minimumNumberOfRequiredFramesWithEqualRecognitionResult: number;
|
|
384
|
+
/**
|
|
385
|
+
Allows to select the balance between result accuracy (precision) and missed barcodes (recall) for linear barcodes.
|
|
386
|
+
|
|
387
|
+
Default is THOROUGH
|
|
388
|
+
*/
|
|
389
|
+
oneDConfirmationMode: OneDConfirmationMode;
|
|
342
390
|
/**
|
|
343
391
|
GS1 message handling options.
|
|
344
392
|
|
|
@@ -357,6 +405,12 @@ export declare class BarcodeFormatCode128Configuration extends PartiallyConstruc
|
|
|
357
405
|
Default is 0
|
|
358
406
|
*/
|
|
359
407
|
maximumTextLength: number;
|
|
408
|
+
/**
|
|
409
|
+
If true, the scanner will try extra-hard to scan barcodes with heavy blur or that are otherwise damaged.
|
|
410
|
+
|
|
411
|
+
Default is true
|
|
412
|
+
*/
|
|
413
|
+
enableOneDBlurScanner: boolean;
|
|
360
414
|
/** @param source {@displayType `DeepPartial<BarcodeFormatCode128Configuration>`} */
|
|
361
415
|
constructor(source?: DeepPartial<BarcodeFormatCode128Configuration>);
|
|
362
416
|
}
|
|
@@ -367,7 +421,7 @@ Add to scanner configuration to scan Code 25, IATA 2-of-5 and Industrial 2-of-5
|
|
|
367
421
|
Industrial 2-of-5 barcodes are a subset of Code 25 barcodes.
|
|
368
422
|
Any valid Industrial 2-of-5 barcode is also a valid Code 25 barcode.
|
|
369
423
|
*/
|
|
370
|
-
export declare class BarcodeFormatCode2Of5Configuration
|
|
424
|
+
export declare class BarcodeFormatCode2Of5Configuration {
|
|
371
425
|
readonly _type: 'BarcodeFormatCode2Of5Configuration';
|
|
372
426
|
/**
|
|
373
427
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -405,6 +459,12 @@ export declare class BarcodeFormatCode2Of5Configuration extends PartiallyConstru
|
|
|
405
459
|
Default is 1
|
|
406
460
|
*/
|
|
407
461
|
minimumNumberOfRequiredFramesWithEqualRecognitionResult: number;
|
|
462
|
+
/**
|
|
463
|
+
Allows to select the balance between result accuracy (precision) and missed barcodes (recall) for linear barcodes.
|
|
464
|
+
|
|
465
|
+
Default is THOROUGH
|
|
466
|
+
*/
|
|
467
|
+
oneDConfirmationMode: OneDConfirmationMode;
|
|
408
468
|
/**
|
|
409
469
|
If true, the check digits are stripped from the result.
|
|
410
470
|
|
|
@@ -453,7 +513,7 @@ export declare class BarcodeFormatCode2Of5Configuration extends PartiallyConstru
|
|
|
453
513
|
/**
|
|
454
514
|
GS1 DataBar barcode configuration. Add to scanner configuration to scan GS1 DataBar-14, GS1 DataBar-14 Truncated, GS1 DataBar-14 Stacked and GS1 DataBar-14 Stacked Omnidirectional barcodes.
|
|
455
515
|
*/
|
|
456
|
-
export declare class BarcodeFormatDataBarConfiguration
|
|
516
|
+
export declare class BarcodeFormatDataBarConfiguration {
|
|
457
517
|
readonly _type: 'BarcodeFormatDataBarConfiguration';
|
|
458
518
|
/**
|
|
459
519
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -491,6 +551,12 @@ export declare class BarcodeFormatDataBarConfiguration extends PartiallyConstruc
|
|
|
491
551
|
Default is 1
|
|
492
552
|
*/
|
|
493
553
|
minimumNumberOfRequiredFramesWithEqualRecognitionResult: number;
|
|
554
|
+
/**
|
|
555
|
+
Allows to select the balance between result accuracy (precision) and missed barcodes (recall) for linear barcodes.
|
|
556
|
+
|
|
557
|
+
Default is THOROUGH
|
|
558
|
+
*/
|
|
559
|
+
oneDConfirmationMode: OneDConfirmationMode;
|
|
494
560
|
/**
|
|
495
561
|
GS1 message handling options.
|
|
496
562
|
|
|
@@ -503,7 +569,7 @@ export declare class BarcodeFormatDataBarConfiguration extends PartiallyConstruc
|
|
|
503
569
|
/**
|
|
504
570
|
GS1 DataBar Expanded barcode configuration. Add to scanner configuration to scan GS1 DataBar Expanded and GS1 DataBar Expanded Stacked barcodes.
|
|
505
571
|
*/
|
|
506
|
-
export declare class BarcodeFormatDataBarExpandedConfiguration
|
|
572
|
+
export declare class BarcodeFormatDataBarExpandedConfiguration {
|
|
507
573
|
readonly _type: 'BarcodeFormatDataBarExpandedConfiguration';
|
|
508
574
|
/**
|
|
509
575
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -541,6 +607,12 @@ export declare class BarcodeFormatDataBarExpandedConfiguration extends Partially
|
|
|
541
607
|
Default is 1
|
|
542
608
|
*/
|
|
543
609
|
minimumNumberOfRequiredFramesWithEqualRecognitionResult: number;
|
|
610
|
+
/**
|
|
611
|
+
Allows to select the balance between result accuracy (precision) and missed barcodes (recall) for linear barcodes.
|
|
612
|
+
|
|
613
|
+
Default is THOROUGH
|
|
614
|
+
*/
|
|
615
|
+
oneDConfirmationMode: OneDConfirmationMode;
|
|
544
616
|
/**
|
|
545
617
|
GS1 message handling options.
|
|
546
618
|
|
|
@@ -553,7 +625,7 @@ export declare class BarcodeFormatDataBarExpandedConfiguration extends Partially
|
|
|
553
625
|
/**
|
|
554
626
|
GS1 DataBar Limited barcode configuration. Add to scanner configuration to scan GS1 DataBar Limited barcodes.
|
|
555
627
|
*/
|
|
556
|
-
export declare class BarcodeFormatDataBarLimitedConfiguration
|
|
628
|
+
export declare class BarcodeFormatDataBarLimitedConfiguration {
|
|
557
629
|
readonly _type: 'BarcodeFormatDataBarLimitedConfiguration';
|
|
558
630
|
/**
|
|
559
631
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -591,6 +663,12 @@ export declare class BarcodeFormatDataBarLimitedConfiguration extends PartiallyC
|
|
|
591
663
|
Default is 1
|
|
592
664
|
*/
|
|
593
665
|
minimumNumberOfRequiredFramesWithEqualRecognitionResult: number;
|
|
666
|
+
/**
|
|
667
|
+
Allows to select the balance between result accuracy (precision) and missed barcodes (recall) for linear barcodes.
|
|
668
|
+
|
|
669
|
+
Default is THOROUGH
|
|
670
|
+
*/
|
|
671
|
+
oneDConfirmationMode: OneDConfirmationMode;
|
|
594
672
|
/**
|
|
595
673
|
GS1 message handling options.
|
|
596
674
|
|
|
@@ -603,7 +681,7 @@ export declare class BarcodeFormatDataBarLimitedConfiguration extends PartiallyC
|
|
|
603
681
|
/**
|
|
604
682
|
ITF (Interleaved 2-of-5) barcode configuration. Add to scanner configuration to scan Interleaved 2-of-5 (ITF) barcodes.
|
|
605
683
|
*/
|
|
606
|
-
export declare class BarcodeFormatItfConfiguration
|
|
684
|
+
export declare class BarcodeFormatItfConfiguration {
|
|
607
685
|
readonly _type: 'BarcodeFormatITFConfiguration';
|
|
608
686
|
/**
|
|
609
687
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -641,6 +719,12 @@ export declare class BarcodeFormatItfConfiguration extends PartiallyConstructibl
|
|
|
641
719
|
Default is 1
|
|
642
720
|
*/
|
|
643
721
|
minimumNumberOfRequiredFramesWithEqualRecognitionResult: number;
|
|
722
|
+
/**
|
|
723
|
+
Allows to select the balance between result accuracy (precision) and missed barcodes (recall) for linear barcodes.
|
|
724
|
+
|
|
725
|
+
Default is THOROUGH
|
|
726
|
+
*/
|
|
727
|
+
oneDConfirmationMode: OneDConfirmationMode;
|
|
644
728
|
/**
|
|
645
729
|
Minimum text length. Applied only to linear barcode formats that allow variable length.
|
|
646
730
|
|
|
@@ -653,6 +737,12 @@ export declare class BarcodeFormatItfConfiguration extends PartiallyConstructibl
|
|
|
653
737
|
Default is 0
|
|
654
738
|
*/
|
|
655
739
|
maximumTextLength: number;
|
|
740
|
+
/**
|
|
741
|
+
If true, the scanner will try extra-hard to scan barcodes with heavy blur or that are otherwise damaged.
|
|
742
|
+
|
|
743
|
+
Default is true
|
|
744
|
+
*/
|
|
745
|
+
enableOneDBlurScanner: boolean;
|
|
656
746
|
/** @param source {@displayType `DeepPartial<BarcodeFormatItfConfiguration>`} */
|
|
657
747
|
constructor(source?: DeepPartial<BarcodeFormatItfConfiguration>);
|
|
658
748
|
}
|
|
@@ -672,12 +762,37 @@ Checksum algorithm for MSI_PLESSEY.
|
|
|
672
762
|
- `MOD_11_10_NCR`:
|
|
673
763
|
Modulo 1110 NCR.
|
|
674
764
|
*/
|
|
675
|
-
export type MsiPlesseyChecksumAlgorithm =
|
|
676
|
-
|
|
765
|
+
export type MsiPlesseyChecksumAlgorithm =
|
|
766
|
+
/**
|
|
767
|
+
Modulo 10.
|
|
768
|
+
*/
|
|
769
|
+
'MOD_10'
|
|
770
|
+
/**
|
|
771
|
+
Modulo 11 IBM.
|
|
772
|
+
*/
|
|
773
|
+
| 'MOD_11_IBM'
|
|
774
|
+
/**
|
|
775
|
+
Modulo 11 NCR.
|
|
776
|
+
*/
|
|
777
|
+
| 'MOD_11_NCR'
|
|
778
|
+
/**
|
|
779
|
+
Modulo 1010.
|
|
780
|
+
*/
|
|
781
|
+
| 'MOD_10_10'
|
|
782
|
+
/**
|
|
783
|
+
Modulo 1110 IBM.
|
|
784
|
+
*/
|
|
785
|
+
| 'MOD_11_10_IBM'
|
|
786
|
+
/**
|
|
787
|
+
Modulo 1110 NCR.
|
|
788
|
+
*/
|
|
789
|
+
| 'MOD_11_10_NCR';
|
|
790
|
+
/** @hidden */
|
|
791
|
+
export declare const MsiPlesseyChecksumAlgorithmValues: ReadonlyArray<MsiPlesseyChecksumAlgorithm>;
|
|
677
792
|
/**
|
|
678
793
|
MSI Plessey barcode configuration. Add to scanner configuration to scan MSI Plessey barcodes.
|
|
679
794
|
*/
|
|
680
|
-
export declare class BarcodeFormatMsiPlesseyConfiguration
|
|
795
|
+
export declare class BarcodeFormatMsiPlesseyConfiguration {
|
|
681
796
|
readonly _type: 'BarcodeFormatMSIPlesseyConfiguration';
|
|
682
797
|
/**
|
|
683
798
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -715,6 +830,12 @@ export declare class BarcodeFormatMsiPlesseyConfiguration extends PartiallyConst
|
|
|
715
830
|
Default is 1
|
|
716
831
|
*/
|
|
717
832
|
minimumNumberOfRequiredFramesWithEqualRecognitionResult: number;
|
|
833
|
+
/**
|
|
834
|
+
Allows to select the balance between result accuracy (precision) and missed barcodes (recall) for linear barcodes.
|
|
835
|
+
|
|
836
|
+
Default is THOROUGH
|
|
837
|
+
*/
|
|
838
|
+
oneDConfirmationMode: OneDConfirmationMode;
|
|
718
839
|
/**
|
|
719
840
|
If true, the check digits are stripped from the result.
|
|
720
841
|
|
|
@@ -733,6 +854,12 @@ export declare class BarcodeFormatMsiPlesseyConfiguration extends PartiallyConst
|
|
|
733
854
|
Default is 0
|
|
734
855
|
*/
|
|
735
856
|
maximumTextLength: number;
|
|
857
|
+
/**
|
|
858
|
+
If true, the scanner will try extra-hard to scan barcodes with heavy blur or that are otherwise damaged.
|
|
859
|
+
|
|
860
|
+
Default is true
|
|
861
|
+
*/
|
|
862
|
+
enableOneDBlurScanner: boolean;
|
|
736
863
|
/**
|
|
737
864
|
List of MSI Plessey checksum algorithms to apply during scanning.
|
|
738
865
|
A barcode is considered valid if it passes any of the checksum algorithms in the list.
|
|
@@ -745,7 +872,7 @@ export declare class BarcodeFormatMsiPlesseyConfiguration extends PartiallyConst
|
|
|
745
872
|
/**
|
|
746
873
|
UPC/EAN barcode configuration. Add to scanner configuration to scan EAN-8, EAN-13, UPC-E and UPC-A barcodes.
|
|
747
874
|
*/
|
|
748
|
-
export declare class BarcodeFormatUpcEanConfiguration
|
|
875
|
+
export declare class BarcodeFormatUpcEanConfiguration {
|
|
749
876
|
readonly _type: 'BarcodeFormatUpcEanConfiguration';
|
|
750
877
|
/**
|
|
751
878
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -783,12 +910,25 @@ export declare class BarcodeFormatUpcEanConfiguration extends PartiallyConstruct
|
|
|
783
910
|
Default is 1
|
|
784
911
|
*/
|
|
785
912
|
minimumNumberOfRequiredFramesWithEqualRecognitionResult: number;
|
|
913
|
+
/**
|
|
914
|
+
Allows to select the balance between result accuracy (precision) and missed barcodes (recall) for linear barcodes.
|
|
915
|
+
|
|
916
|
+
Default is THOROUGH
|
|
917
|
+
*/
|
|
918
|
+
oneDConfirmationMode: OneDConfirmationMode;
|
|
786
919
|
/**
|
|
787
920
|
If true, the check digits are stripped from the result.
|
|
788
921
|
|
|
789
922
|
Default is false
|
|
790
923
|
*/
|
|
791
924
|
stripCheckDigits: boolean;
|
|
925
|
+
/**
|
|
926
|
+
If true, the scanner will try extra-hard to scan barcodes with heavy blur or that are otherwise damaged.
|
|
927
|
+
Enabling this option may increase the number of misreads (false positives).
|
|
928
|
+
|
|
929
|
+
Default is false
|
|
930
|
+
*/
|
|
931
|
+
enableOneDBlurScanner: boolean;
|
|
792
932
|
/**
|
|
793
933
|
If true, scan and return valid EAN-8 barcodes.
|
|
794
934
|
|
|
@@ -834,7 +974,7 @@ export declare class BarcodeFormatUpcEanConfiguration extends PartiallyConstruct
|
|
|
834
974
|
/**
|
|
835
975
|
PharmaCode barcode configuration. Add to scanner configuration to scan linear (1D) Laetus Pharmacode barcodes. Two-track PharmaCode scanning is configured separately through the PharmaCodeTwoTrackConfig class.
|
|
836
976
|
*/
|
|
837
|
-
export declare class BarcodeFormatPharmaCodeConfiguration
|
|
977
|
+
export declare class BarcodeFormatPharmaCodeConfiguration {
|
|
838
978
|
readonly _type: 'BarcodeFormatPharmaCodeConfiguration';
|
|
839
979
|
/**
|
|
840
980
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -872,6 +1012,12 @@ export declare class BarcodeFormatPharmaCodeConfiguration extends PartiallyConst
|
|
|
872
1012
|
Default is 1
|
|
873
1013
|
*/
|
|
874
1014
|
minimumNumberOfRequiredFramesWithEqualRecognitionResult: number;
|
|
1015
|
+
/**
|
|
1016
|
+
Allows to select the balance between result accuracy (precision) and missed barcodes (recall) for linear barcodes.
|
|
1017
|
+
|
|
1018
|
+
Default is THOROUGH
|
|
1019
|
+
*/
|
|
1020
|
+
oneDConfirmationMode: OneDConfirmationMode;
|
|
875
1021
|
/**
|
|
876
1022
|
Minimum value for PharmaCode. Very low values are likely to produce more false positives.
|
|
877
1023
|
|
|
@@ -900,7 +1046,7 @@ export type BarcodeFormatTwoDConfigurationBase = BarcodeFormatAztecConfiguration
|
|
|
900
1046
|
/**
|
|
901
1047
|
Aztec configuration. Add to scanner configuration to scan Aztec codes.
|
|
902
1048
|
*/
|
|
903
|
-
export declare class BarcodeFormatAztecConfiguration
|
|
1049
|
+
export declare class BarcodeFormatAztecConfiguration {
|
|
904
1050
|
readonly _type: 'BarcodeFormatAztecConfiguration';
|
|
905
1051
|
/**
|
|
906
1052
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -935,7 +1081,7 @@ export declare class BarcodeFormatAztecConfiguration extends PartiallyConstructi
|
|
|
935
1081
|
/**
|
|
936
1082
|
QR Code configuration. Add to scanner configuration to scan QR codes, Micro QR codes and rectangular Micro QR (rMQR) codes.
|
|
937
1083
|
*/
|
|
938
|
-
export declare class BarcodeFormatQrCodeConfiguration
|
|
1084
|
+
export declare class BarcodeFormatQrCodeConfiguration {
|
|
939
1085
|
readonly _type: 'BarcodeFormatQRCodeConfiguration';
|
|
940
1086
|
/**
|
|
941
1087
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -994,7 +1140,7 @@ export declare class BarcodeFormatQrCodeConfiguration extends PartiallyConstruct
|
|
|
994
1140
|
/**
|
|
995
1141
|
PDF417 configuration. Add to scanner configuration to scan PDF417 codes.
|
|
996
1142
|
*/
|
|
997
|
-
export declare class BarcodeFormatPdf417Configuration
|
|
1143
|
+
export declare class BarcodeFormatPdf417Configuration {
|
|
998
1144
|
readonly _type: 'BarcodeFormatPDF417Configuration';
|
|
999
1145
|
/**
|
|
1000
1146
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -1035,7 +1181,7 @@ export declare class BarcodeFormatPdf417Configuration extends PartiallyConstruct
|
|
|
1035
1181
|
/**
|
|
1036
1182
|
MicroPDF417 configuration. Add to scanner configuration to scan MicroPDF417 codes.
|
|
1037
1183
|
*/
|
|
1038
|
-
export declare class BarcodeFormatMicroPdf417Configuration
|
|
1184
|
+
export declare class BarcodeFormatMicroPdf417Configuration {
|
|
1039
1185
|
readonly _type: 'BarcodeFormatMicroPDF417Configuration';
|
|
1040
1186
|
/**
|
|
1041
1187
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -1076,7 +1222,7 @@ export declare class BarcodeFormatMicroPdf417Configuration extends PartiallyCons
|
|
|
1076
1222
|
/**
|
|
1077
1223
|
DataMatrix configuration. Add to scanner configuration to scan DataMatrix and DataMatrix rectangular extensions (DMRE) codes.
|
|
1078
1224
|
*/
|
|
1079
|
-
export declare class BarcodeFormatDataMatrixConfiguration
|
|
1225
|
+
export declare class BarcodeFormatDataMatrixConfiguration {
|
|
1080
1226
|
readonly _type: 'BarcodeFormatDataMatrixConfiguration';
|
|
1081
1227
|
/**
|
|
1082
1228
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -1111,7 +1257,7 @@ export declare class BarcodeFormatDataMatrixConfiguration extends PartiallyConst
|
|
|
1111
1257
|
/**
|
|
1112
1258
|
MaxiCode configuration. Add to scanner configuration to scan MaxiCode codes.
|
|
1113
1259
|
*/
|
|
1114
|
-
export declare class BarcodeFormatMaxiCodeConfiguration
|
|
1260
|
+
export declare class BarcodeFormatMaxiCodeConfiguration {
|
|
1115
1261
|
readonly _type: 'BarcodeFormatMaxiCodeConfiguration';
|
|
1116
1262
|
/**
|
|
1117
1263
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -1149,12 +1295,21 @@ Can be either numeric or alphanumeric and is only relevant for Format Codes 59 a
|
|
|
1149
1295
|
- `ALPHA_NUMERIC`:
|
|
1150
1296
|
AlphaNumeric.
|
|
1151
1297
|
*/
|
|
1152
|
-
export type AustraliaPostCustomerFormat =
|
|
1153
|
-
|
|
1298
|
+
export type AustraliaPostCustomerFormat =
|
|
1299
|
+
/**
|
|
1300
|
+
Numeric.
|
|
1301
|
+
*/
|
|
1302
|
+
'NUMERIC'
|
|
1303
|
+
/**
|
|
1304
|
+
AlphaNumeric.
|
|
1305
|
+
*/
|
|
1306
|
+
| 'ALPHA_NUMERIC';
|
|
1307
|
+
/** @hidden */
|
|
1308
|
+
export declare const AustraliaPostCustomerFormatValues: ReadonlyArray<AustraliaPostCustomerFormat>;
|
|
1154
1309
|
/**
|
|
1155
1310
|
Australia Post barcode configuration. Add to scanner configuration to scan Australia Post barcodes.
|
|
1156
1311
|
*/
|
|
1157
|
-
export declare class BarcodeFormatAustraliaPostConfiguration
|
|
1312
|
+
export declare class BarcodeFormatAustraliaPostConfiguration {
|
|
1158
1313
|
readonly _type: 'BarcodeFormatAustraliaPostConfiguration';
|
|
1159
1314
|
/**
|
|
1160
1315
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -1189,7 +1344,7 @@ export declare class BarcodeFormatAustraliaPostConfiguration extends PartiallyCo
|
|
|
1189
1344
|
/**
|
|
1190
1345
|
Japan Post barcode configuration. Add to scanner configuration to scan Japan Post barcodes.
|
|
1191
1346
|
*/
|
|
1192
|
-
export declare class BarcodeFormatJapanPostConfiguration
|
|
1347
|
+
export declare class BarcodeFormatJapanPostConfiguration {
|
|
1193
1348
|
readonly _type: 'BarcodeFormatJapanPostConfiguration';
|
|
1194
1349
|
/**
|
|
1195
1350
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -1218,7 +1373,7 @@ export declare class BarcodeFormatJapanPostConfiguration extends PartiallyConstr
|
|
|
1218
1373
|
/**
|
|
1219
1374
|
Royal Mail barcode configuration. Add to scanner configuration to scan Royal Mail (a.k.a. RM4SCC, CBC, BPO 4-State) barcodes.
|
|
1220
1375
|
*/
|
|
1221
|
-
export declare class BarcodeFormatRoyalMailConfiguration
|
|
1376
|
+
export declare class BarcodeFormatRoyalMailConfiguration {
|
|
1222
1377
|
readonly _type: 'BarcodeFormatRoyalMailConfiguration';
|
|
1223
1378
|
/**
|
|
1224
1379
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -1253,7 +1408,7 @@ export declare class BarcodeFormatRoyalMailConfiguration extends PartiallyConstr
|
|
|
1253
1408
|
/**
|
|
1254
1409
|
Royal TNT Post barcode configuration. Add to scanner configuration to scan Royal TNT Post (a.k.a. KIX, Klant IndeX) barcodes.
|
|
1255
1410
|
*/
|
|
1256
|
-
export declare class BarcodeFormatRoyalTntPostConfiguration
|
|
1411
|
+
export declare class BarcodeFormatRoyalTntPostConfiguration {
|
|
1257
1412
|
readonly _type: 'BarcodeFormatRoyalTNTPostConfiguration';
|
|
1258
1413
|
/**
|
|
1259
1414
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -1282,7 +1437,7 @@ export declare class BarcodeFormatRoyalTntPostConfiguration extends PartiallyCon
|
|
|
1282
1437
|
/**
|
|
1283
1438
|
USPS Intelligent Mail barcode configuration. Add to scanner configuration to scan USPS Intelligent Mail (a.k.a. USPS OneCode, USPS-STD-11) barcodes.
|
|
1284
1439
|
*/
|
|
1285
|
-
export declare class BarcodeFormatUspsIntelligentMailConfiguration
|
|
1440
|
+
export declare class BarcodeFormatUspsIntelligentMailConfiguration {
|
|
1286
1441
|
readonly _type: 'BarcodeFormatUSPSIntelligentMailConfiguration';
|
|
1287
1442
|
/**
|
|
1288
1443
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -1311,7 +1466,7 @@ export declare class BarcodeFormatUspsIntelligentMailConfiguration extends Parti
|
|
|
1311
1466
|
/**
|
|
1312
1467
|
PHARMA_CODE_TWO_TRACK barcode configuration. Add to scanner configuration to scan Laetus two-track PharmaCode barcodes. Linear (i.e. one-track) PharmaCode scanning is configured separately through the PharmaCodeConfig class.
|
|
1313
1468
|
*/
|
|
1314
|
-
export declare class BarcodeFormatPharmaCodeTwoTrackConfiguration
|
|
1469
|
+
export declare class BarcodeFormatPharmaCodeTwoTrackConfiguration {
|
|
1315
1470
|
readonly _type: 'BarcodeFormatPharmaCodeTwoTrackConfiguration';
|
|
1316
1471
|
/**
|
|
1317
1472
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -1357,7 +1512,7 @@ the enabled formats.
|
|
|
1357
1512
|
If GS1 Composite scanning is disabled, but GS1 message validation is enabled, then the parts of the composite barcode may
|
|
1358
1513
|
fail validation and be rejected.
|
|
1359
1514
|
*/
|
|
1360
|
-
export declare class BarcodeFormatGs1CompositeConfiguration
|
|
1515
|
+
export declare class BarcodeFormatGs1CompositeConfiguration {
|
|
1361
1516
|
readonly _type: 'BarcodeFormatGS1CompositeConfiguration';
|
|
1362
1517
|
/**
|
|
1363
1518
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -1410,7 +1565,7 @@ The given configuration will be applied to all enabled barcode formats, if they
|
|
|
1410
1565
|
You can override the common configuration for individual barcode formats by additionally adding
|
|
1411
1566
|
their specific configuration to the scanner's configuration.
|
|
1412
1567
|
*/
|
|
1413
|
-
export declare class BarcodeFormatCommonOneDConfiguration
|
|
1568
|
+
export declare class BarcodeFormatCommonOneDConfiguration {
|
|
1414
1569
|
readonly _type: 'BarcodeFormatCommonOneDConfiguration';
|
|
1415
1570
|
/**
|
|
1416
1571
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -1472,6 +1627,12 @@ export declare class BarcodeFormatCommonOneDConfiguration extends PartiallyConst
|
|
|
1472
1627
|
Default is PARSE
|
|
1473
1628
|
*/
|
|
1474
1629
|
gs1Handling: Gs1Handling;
|
|
1630
|
+
/**
|
|
1631
|
+
Allows to select the balance between result accuracy (precision) and missed barcodes (recall) for linear barcodes.
|
|
1632
|
+
|
|
1633
|
+
Default is THOROUGH
|
|
1634
|
+
*/
|
|
1635
|
+
oneDConfirmationMode: OneDConfirmationMode;
|
|
1475
1636
|
/**
|
|
1476
1637
|
List of linear (1D) barcode formats to scan.
|
|
1477
1638
|
*/
|
|
@@ -1487,7 +1648,7 @@ The given configuration will be applied to all enabled barcode formats, if they
|
|
|
1487
1648
|
You can override the common configuration for individual barcode formats by additionally adding
|
|
1488
1649
|
their specific configuration to the scanner's configuration.
|
|
1489
1650
|
*/
|
|
1490
|
-
export declare class BarcodeFormatCommonTwoDConfiguration
|
|
1651
|
+
export declare class BarcodeFormatCommonTwoDConfiguration {
|
|
1491
1652
|
readonly _type: 'BarcodeFormatCommonTwoDConfiguration';
|
|
1492
1653
|
/**
|
|
1493
1654
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -1537,7 +1698,7 @@ The given configuration will be applied to all enabled barcode formats, if they
|
|
|
1537
1698
|
You can override the common configuration for individual barcode formats by additionally adding
|
|
1538
1699
|
their specific configuration to the scanner's configuration.
|
|
1539
1700
|
*/
|
|
1540
|
-
export declare class BarcodeFormatCommonFourStateConfiguration
|
|
1701
|
+
export declare class BarcodeFormatCommonFourStateConfiguration {
|
|
1541
1702
|
readonly _type: 'BarcodeFormatCommonFourStateConfiguration';
|
|
1542
1703
|
/**
|
|
1543
1704
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -1575,7 +1736,7 @@ The given configuration will be applied to all enabled barcode formats, if they
|
|
|
1575
1736
|
You can override the common configuration for individual barcode formats by additionally adding
|
|
1576
1737
|
their specific configuration to the scanner's configuration.
|
|
1577
1738
|
*/
|
|
1578
|
-
export declare class BarcodeFormatCommonConfiguration
|
|
1739
|
+
export declare class BarcodeFormatCommonConfiguration {
|
|
1579
1740
|
readonly _type: 'BarcodeFormatCommonConfiguration';
|
|
1580
1741
|
/**
|
|
1581
1742
|
Regular expression filter for barcode text. If the barcode text does not match the regular expression, it will not be scanned. The default is an empty string (setting is turned off).
|
|
@@ -1643,6 +1804,12 @@ export declare class BarcodeFormatCommonConfiguration extends PartiallyConstruct
|
|
|
1643
1804
|
Default is true
|
|
1644
1805
|
*/
|
|
1645
1806
|
strictMode: boolean;
|
|
1807
|
+
/**
|
|
1808
|
+
Allows to select the balance between result accuracy (precision) and missed barcodes (recall) for linear barcodes.
|
|
1809
|
+
|
|
1810
|
+
Default is THOROUGH
|
|
1811
|
+
*/
|
|
1812
|
+
oneDConfirmationMode: OneDConfirmationMode;
|
|
1646
1813
|
/**
|
|
1647
1814
|
List of barcode formats to scan. By default, the most commonly used formats are enabled.
|
|
1648
1815
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BarcodeConfigurationTypes.d.ts","sourceRoot":"","sources":["../../../../../../src/types/core/barcode/BarcodeConfigurationTypes.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EACL,aAAa,EACb,WAAW,EACX,oBAAoB,EACpB,uBAAuB,EACxB,MAAM,gBAAgB,CAAC;AAExB;;EAEE;AACF,MAAM,MAAM,8BAA8B,GACtC,iCAAiC,GACjC,gCAAgC,GAChC,gCAAgC,GAChC,gCAAgC,GAChC,iCAAiC,GACjC,kCAAkC,GAClC,iCAAiC,GACjC,yCAAyC,GACzC,wCAAwC,GACxC,6BAA6B,GAC7B,oCAAoC,GACpC,gCAAgC,GAChC,oCAAoC,GACpC,+BAA+B,GAC/B,gCAAgC,GAChC,gCAAgC,GAChC,qCAAqC,GACrC,oCAAoC,GACpC,kCAAkC,GAClC,uCAAuC,GACvC,mCAAmC,GACnC,mCAAmC,GACnC,sCAAsC,GACtC,6CAA6C,GAC7C,4CAA4C,GAC5C,sCAAsC,GACtC,oCAAoC,GACpC,oCAAoC,GACpC,yCAAyC,GACzC,gCAAgC,CAAC;AA2ErC;;EAEE;AACF,MAAM,MAAM,kCAAkC,GAC1C,iCAAiC,GACjC,gCAAgC,GAChC,gCAAgC,GAChC,gCAAgC,GAChC,iCAAiC,GACjC,kCAAkC,GAClC,iCAAiC,GACjC,yCAAyC,GACzC,wCAAwC,GACxC,6BAA6B,GAC7B,oCAAoC,GACpC,gCAAgC,GAChC,oCAAoC,CAAC;AAyCzC;;EAEE;AACF,qBAAa,iCAAiC;IAC5C,SAAgB,KAAK,EAAE,mCAAmC,CAAuC;IACjG;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;;QAKI;IACG,sBAAsB,EAAE,MAAM,CAAK;IAC1C;;;;;;QAMI;IACG,uDAAuD,EAAE,MAAM,CAAK;IAC3E;;;;QAII;IACG,oBAAoB,EAAE,oBAAoB,CAAc;IAC/D;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAK;IACrC;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAK;IACrC;;;;QAII;IACG,qBAAqB,EAAE,OAAO,CAAQ;IAC7C;;;;QAII;IACG,cAAc,EAAE,OAAO,CAAS;IAEvC,oFAAoF;gBACjE,MAAM,GAAE,WAAW,CAAC,iCAAiC,CAAM;CAiC/E;AAED;;EAEE;AACF,qBAAa,gCAAgC;IAC3C,SAAgB,KAAK,EAAE,kCAAkC,CAAsC;IAC/F;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;;QAKI;IACG,sBAAsB,EAAE,MAAM,CAAK;IAC1C;;;;;;QAMI;IACG,uDAAuD,EAAE,MAAM,CAAK;IAC3E;;;;QAII;IACG,oBAAoB,EAAE,oBAAoB,CAAc;IAC/D;;;;QAII;IACG,gBAAgB,EAAE,OAAO,CAAS;IACzC;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAK;IACrC;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAK;IACrC;;;;QAII;IACG,QAAQ,EAAE,OAAO,CAAQ;IAEhC,mFAAmF;gBAChE,MAAM,GAAE,WAAW,CAAC,gCAAgC,CAAM;CAiC9E;AAED;;EAEE;AACF,qBAAa,gCAAgC;IAC3C,SAAgB,KAAK,EAAE,kCAAkC,CAAsC;IAC/F;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;;QAKI;IACG,sBAAsB,EAAE,MAAM,CAAK;IAC1C;;;;;;QAMI;IACG,uDAAuD,EAAE,MAAM,CAAK;IAC3E;;;;QAII;IACG,oBAAoB,EAAE,oBAAoB,CAAc;IAC/D;;;;QAII;IACG,gBAAgB,EAAE,OAAO,CAAS;IACzC;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAK;IACrC;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAK;IACrC;;;;QAII;IACG,qBAAqB,EAAE,OAAO,CAAQ;IAC7C;;;;QAII;IACG,MAAM,EAAE,OAAO,CAAS;IAC/B;;;;QAII;IACG,MAAM,EAAE,OAAO,CAAQ;IAC9B;;;;QAII;IACG,IAAI,EAAE,OAAO,CAAQ;IAC5B;;;;QAII;IACG,IAAI,EAAE,OAAO,CAAQ;IAC5B;;;;QAII;IACG,qBAAqB,EAAE,OAAO,CAAS;IAC9C;;;;QAII;IACG,mBAAmB,EAAE,OAAO,CAAS;IAE5C,mFAAmF;gBAChE,MAAM,GAAE,WAAW,CAAC,gCAAgC,CAAM;CAmD9E;AAED;;EAEE;AACF,qBAAa,gCAAgC;IAC3C,SAAgB,KAAK,EAAE,kCAAkC,CAAsC;IAC/F;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;;QAKI;IACG,sBAAsB,EAAE,MAAM,CAAK;IAC1C;;;;;;QAMI;IACG,uDAAuD,EAAE,MAAM,CAAK;IAC3E;;;;QAII;IACG,oBAAoB,EAAE,oBAAoB,CAAc;IAC/D;;;;QAII;IACG,gBAAgB,EAAE,OAAO,CAAS;IACzC;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAK;IACrC;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAK;IACrC;;;;QAII;IACG,qBAAqB,EAAE,OAAO,CAAQ;IAE7C,mFAAmF;gBAChE,MAAM,GAAE,WAAW,CAAC,gCAAgC,CAAM;CAiC9E;AAED;;EAEE;AACF,qBAAa,iCAAiC;IAC5C,SAAgB,KAAK,EAAE,mCAAmC,CAAuC;IACjG;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;;QAKI;IACG,sBAAsB,EAAE,MAAM,CAAK;IAC1C;;;;;;QAMI;IACG,uDAAuD,EAAE,MAAM,CAAK;IAC3E;;;;QAII;IACG,oBAAoB,EAAE,oBAAoB,CAAc;IAC/D;;;;QAII;IACG,WAAW,EAAE,WAAW,CAAW;IAC1C;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAK;IACrC;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAK;IACrC;;;;QAII;IACG,qBAAqB,EAAE,OAAO,CAAQ;IAE7C,oFAAoF;gBACjE,MAAM,GAAE,WAAW,CAAC,iCAAiC,CAAM;CAiC/E;AAED;;;;;;EAME;AACF,qBAAa,kCAAkC;IAC7C,SAAgB,KAAK,EAAE,oCAAoC,CACpB;IACvC;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;;QAKI;IACG,sBAAsB,EAAE,MAAM,CAAK;IAC1C;;;;;;QAMI;IACG,uDAAuD,EAAE,MAAM,CAAK;IAC3E;;;;QAII;IACG,oBAAoB,EAAE,oBAAoB,CAAc;IAC/D;;;;QAII;IACG,gBAAgB,EAAE,OAAO,CAAS;IACzC;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAK;IACrC;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAK;IACrC;;;;QAII;IACG,QAAQ,EAAE,OAAO,CAAQ;IAChC;;;;QAII;IACG,MAAM,EAAE,OAAO,CAAS;IAC/B;;;;QAII;IACG,cAAc,EAAE,OAAO,CAAQ;IACtC;;;;QAII;IACG,mBAAmB,EAAE,OAAO,CAAQ;IAE3C,qFAAqF;gBAClE,MAAM,GAAE,WAAW,CAAC,kCAAkC,CAAM;CA0ChF;AAED;;EAEE;AACF,qBAAa,iCAAiC;IAC5C,SAAgB,KAAK,EAAE,mCAAmC,CAAuC;IACjG;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;;QAKI;IACG,sBAAsB,EAAE,MAAM,CAAK;IAC1C;;;;;;QAMI;IACG,uDAAuD,EAAE,MAAM,CAAK;IAC3E;;;;QAII;IACG,oBAAoB,EAAE,oBAAoB,CAAc;IAC/D;;;;QAII;IACG,WAAW,EAAE,WAAW,CAAW;IAE1C,oFAAoF;gBACjE,MAAM,GAAE,WAAW,CAAC,iCAAiC,CAAM;CAwB/E;AAED;;EAEE;AACF,qBAAa,yCAAyC;IACpD,SAAgB,KAAK,EAAE,2CAA2C,CACpB;IAC9C;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;;QAKI;IACG,sBAAsB,EAAE,MAAM,CAAK;IAC1C;;;;;;QAMI;IACG,uDAAuD,EAAE,MAAM,CAAK;IAC3E;;;;QAII;IACG,oBAAoB,EAAE,oBAAoB,CAAc;IAC/D;;;;QAII;IACG,WAAW,EAAE,WAAW,CAAW;IAE1C,4FAA4F;gBACzE,MAAM,GAAE,WAAW,CAAC,yCAAyC,CAAM;CAwBvF;AAED;;EAEE;AACF,qBAAa,wCAAwC;IACnD,SAAgB,KAAK,EAAE,0CAA0C,CACpB;IAC7C;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;;QAKI;IACG,sBAAsB,EAAE,MAAM,CAAK;IAC1C;;;;;;QAMI;IACG,uDAAuD,EAAE,MAAM,CAAK;IAC3E;;;;QAII;IACG,oBAAoB,EAAE,oBAAoB,CAAc;IAC/D;;;;QAII;IACG,WAAW,EAAE,WAAW,CAAW;IAE1C,2FAA2F;gBACxE,MAAM,GAAE,WAAW,CAAC,wCAAwC,CAAM;CAwBtF;AAED;;EAEE;AACF,qBAAa,6BAA6B;IACxC,SAAgB,KAAK,EAAE,+BAA+B,CAAmC;IACzF;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;;QAKI;IACG,sBAAsB,EAAE,MAAM,CAAK;IAC1C;;;;;;QAMI;IACG,uDAAuD,EAAE,MAAM,CAAK;IAC3E;;;;QAII;IACG,oBAAoB,EAAE,oBAAoB,CAAc;IAC/D;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAK;IACrC;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAK;IACrC;;;;QAII;IACG,qBAAqB,EAAE,OAAO,CAAQ;IAE7C,gFAAgF;gBAC7D,MAAM,GAAE,WAAW,CAAC,6BAA6B,CAAM;CA8B3E;AAED;;;;;;;;;;;;;;;EAeE;AACF,MAAM,MAAM,2BAA2B;AACrC;;IAEI;AACF,QAAQ;AACV;;IAEI;GACF,YAAY;AACd;;IAEI;GACF,YAAY;AACd;;IAEI;GACF,WAAW;AACb;;IAEI;GACF,eAAe;AACjB;;IAEI;GACF,eAAe,CAAC;AAEpB,cAAc;AACd,eAAO,MAAM,iCAAiC,EAAE,aAAa,CAAC,2BAA2B,CAO/E,CAAC;AAEX;;EAEE;AACF,qBAAa,oCAAoC;IAC/C,SAAgB,KAAK,EAAE,sCAAsC,CACpB;IACzC;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;;QAKI;IACG,sBAAsB,EAAE,MAAM,CAAK;IAC1C;;;;;;QAMI;IACG,uDAAuD,EAAE,MAAM,CAAK;IAC3E;;;;QAII;IACG,oBAAoB,EAAE,oBAAoB,CAAc;IAC/D;;;;QAII;IACG,gBAAgB,EAAE,OAAO,CAAS;IACzC;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAK;IACrC;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAK;IACrC;;;;QAII;IACG,qBAAqB,EAAE,OAAO,CAAQ;IAC7C;;;;QAII;IACG,kBAAkB,EAAE,2BAA2B,EAAE,CAAc;IAEtE,uFAAuF;gBACpE,MAAM,GAAE,WAAW,CAAC,oCAAoC,CAAM;CAwClF;AAED;;EAEE;AACF,qBAAa,gCAAgC;IAC3C,SAAgB,KAAK,EAAE,kCAAkC,CAAsC;IAC/F;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;;QAKI;IACG,sBAAsB,EAAE,MAAM,CAAK;IAC1C;;;;;;QAMI;IACG,uDAAuD,EAAE,MAAM,CAAK;IAC3E;;;;QAII;IACG,oBAAoB,EAAE,oBAAoB,CAAc;IAC/D;;;;QAII;IACG,gBAAgB,EAAE,OAAO,CAAS;IACzC;;;;;QAKI;IACG,qBAAqB,EAAE,OAAO,CAAS;IAC9C;;;;QAII;IACG,IAAI,EAAE,OAAO,CAAQ;IAC5B;;;;QAII;IACG,KAAK,EAAE,OAAO,CAAQ;IAC7B;;;;QAII;IACG,IAAI,EAAE,OAAO,CAAQ;IAC5B;;;;QAII;IACG,IAAI,EAAE,OAAO,CAAQ;IAC5B;;;;QAII;IACG,UAAU,EAAE,uBAAuB,CAAe;IACzD;;;;;;;QAOI;IACG,oEAAoE,EAAE,MAAM,CAAK;IAExF,mFAAmF;gBAChE,MAAM,GAAE,WAAW,CAAC,gCAAgC,CAAM;CA8C9E;AAED;;EAEE;AACF,qBAAa,oCAAoC;IAC/C,SAAgB,KAAK,EAAE,sCAAsC,CACpB;IACzC;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;;QAKI;IACG,sBAAsB,EAAE,MAAM,CAAK;IAC1C;;;;;;QAMI;IACG,uDAAuD,EAAE,MAAM,CAAK;IAC3E;;;;QAII;IACG,oBAAoB,EAAE,oBAAoB,CAAc;IAC/D;;;;QAII;IACG,YAAY,EAAE,MAAM,CAAM;IACjC;;;;QAII;IACG,mBAAmB,EAAE,OAAO,CAAS;IAC5C;;;;QAII;IACG,iBAAiB,EAAE,OAAO,CAAS;IAE1C,uFAAuF;gBACpE,MAAM,GAAE,WAAW,CAAC,oCAAoC,CAAM;CA8BlF;AAED;;EAEE;AACF,MAAM,MAAM,kCAAkC,GAC1C,+BAA+B,GAC/B,gCAAgC,GAChC,gCAAgC,GAChC,qCAAqC,GACrC,oCAAoC,GACpC,kCAAkC,CAAC;AA2BvC;;EAEE;AACF,qBAAa,+BAA+B;IAC1C,SAAgB,KAAK,EAAE,iCAAiC,CAAqC;IAC7F;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;QAII;IACG,WAAW,EAAE,WAAW,CAAW;IAE1C,kFAAkF;gBAC/D,MAAM,GAAE,WAAW,CAAC,+BAA+B,CAAM;CAc7E;AAED;;EAEE;AACF,qBAAa,gCAAgC;IAC3C,SAAgB,KAAK,EAAE,kCAAkC,CAAsC;IAC/F;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;QAII;IACG,WAAW,EAAE,WAAW,CAAW;IAC1C;;;;QAII;IACG,UAAU,EAAE,OAAO,CAAQ;IAClC;;;;QAII;IACG,EAAE,EAAE,OAAO,CAAQ;IAC1B;;;;QAII;IACG,OAAO,EAAE,OAAO,CAAS;IAChC;;;;QAII;IACG,IAAI,EAAE,OAAO,CAAS;IAE7B,mFAAmF;gBAChE,MAAM,GAAE,WAAW,CAAC,gCAAgC,CAAM;CA0B9E;AAED;;EAEE;AACF,qBAAa,gCAAgC;IAC3C,SAAgB,KAAK,EAAE,kCAAkC,CAAsC;IAC/F;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;QAII;IACG,WAAW,EAAE,WAAW,CAAW;IAC1C;;;;QAII;IACG,UAAU,EAAE,OAAO,CAAQ;IAElC,mFAAmF;gBAChE,MAAM,GAAE,WAAW,CAAC,gCAAgC,CAAM;CAiB9E;AAED;;EAEE;AACF,qBAAa,qCAAqC;IAChD,SAAgB,KAAK,EAAE,uCAAuC,CACpB;IAC1C;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;QAII;IACG,WAAW,EAAE,WAAW,CAAW;IAC1C;;;;QAII;IACG,UAAU,EAAE,OAAO,CAAQ;IAElC,wFAAwF;gBACrE,MAAM,GAAE,WAAW,CAAC,qCAAqC,CAAM;CAiBnF;AAED;;EAEE;AACF,qBAAa,oCAAoC;IAC/C,SAAgB,KAAK,EAAE,sCAAsC,CACpB;IACzC;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;QAII;IACG,WAAW,EAAE,WAAW,CAAW;IAE1C,uFAAuF;gBACpE,MAAM,GAAE,WAAW,CAAC,oCAAoC,CAAM;CAclF;AAED;;EAEE;AACF,qBAAa,kCAAkC;IAC7C,SAAgB,KAAK,EAAE,oCAAoC,CACpB;IACvC;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAE/C,qFAAqF;gBAClE,MAAM,GAAE,WAAW,CAAC,kCAAkC,CAAM;CAWhF;AAED;;EAEE;AACF,MAAM,MAAM,uCAAuC,GAC/C,uCAAuC,GACvC,mCAAmC,GACnC,mCAAmC,GACnC,sCAAsC,GACtC,6CAA6C,GAC7C,4CAA4C,CAAC;AA2BjD;;;;;;;EAOE;AACF,MAAM,MAAM,2BAA2B;AACrC;;IAEI;AACF,SAAS;AACX;;IAEI;GACF,eAAe,CAAC;AAEpB,cAAc;AACd,eAAO,MAAM,iCAAiC,EAAE,aAAa,CAAC,2BAA2B,CAG/E,CAAC;AAEX;;EAEE;AACF,qBAAa,uCAAuC;IAClD,SAAgB,KAAK,EAAE,yCAAyC,CACpB;IAC5C;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;QAII;IACG,2BAA2B,EAAE,2BAA2B,CAAmB;IAElF,0FAA0F;gBACvE,MAAM,GAAE,WAAW,CAAC,uCAAuC,CAAM;CAcrF;AAED;;EAEE;AACF,qBAAa,mCAAmC;IAC9C,SAAgB,KAAK,EAAE,qCAAqC,CACpB;IACxC;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAE/C,sFAAsF;gBACnE,MAAM,GAAE,WAAW,CAAC,mCAAmC,CAAM;CAWjF;AAED;;EAEE;AACF,qBAAa,mCAAmC;IAC9C,SAAgB,KAAK,EAAE,qCAAqC,CACpB;IACxC;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;QAII;IACG,gBAAgB,EAAE,OAAO,CAAS;IAEzC,sFAAsF;gBACnE,MAAM,GAAE,WAAW,CAAC,mCAAmC,CAAM;CAcjF;AAED;;EAEE;AACF,qBAAa,sCAAsC;IACjD,SAAgB,KAAK,EAAE,wCAAwC,CACpB;IAC3C;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAE/C,yFAAyF;gBACtE,MAAM,GAAE,WAAW,CAAC,sCAAsC,CAAM;CAWpF;AAED;;EAEE;AACF,qBAAa,6CAA6C;IACxD,SAAgB,KAAK,EAAE,+CAA+C,CACpB;IAClD;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAE/C,gGAAgG;gBAC7E,MAAM,GAAE,WAAW,CAAC,6CAA6C,CAAM;CAW3F;AAED;;EAEE;AACF,qBAAa,4CAA4C;IACvD,SAAgB,KAAK,EAAE,8CAA8C,CACpB;IACjD;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;QAII;IACG,YAAY,EAAE,MAAM,CAAO;IAElC,+FAA+F;gBAC5E,MAAM,GAAE,WAAW,CAAC,4CAA4C,CAAM;CAc1F;AAED;;;;;;;;;;;;;EAaE;AACF,qBAAa,sCAAsC;IACjD,SAAgB,KAAK,EAAE,wCAAwC,CACpB;IAC3C;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;;QAKI;IACG,sBAAsB,EAAE,MAAM,CAAK;IAC1C;;;;QAII;IACG,WAAW,EAAE,WAAW,CAAW;IAC1C;;;;QAII;IACG,UAAU,EAAE,OAAO,CAAQ;IAElC,yFAAyF;gBACtE,MAAM,GAAE,WAAW,CAAC,sCAAsC,CAAM;CAoBpF;AAED;;;;;;;EAOE;AACF,qBAAa,oCAAoC;IAC/C,SAAgB,KAAK,EAAE,sCAAsC,CACpB;IACzC;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;;QAKI;IACG,sBAAsB,EAAE,MAAM,CAAK;IAC1C;;;;;;QAMI;IACG,uDAAuD,EAAE,MAAM,CAAK;IAC3E;;;;QAII;IACG,gBAAgB,EAAE,OAAO,CAAS;IACzC;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAK;IACrC;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAK;IACrC;;;;QAII;IACG,WAAW,EAAE,WAAW,CAAW;IAC1C;;;;QAII;IACG,oBAAoB,EAAE,oBAAoB,CAAc;IAC/D;;QAEI;IACG,OAAO,EAAE,aAAa,EAAE,CAsB7B;IAEF,uFAAuF;gBACpE,MAAM,GAAE,WAAW,CAAC,oCAAoC,CAAM;CAsClF;AAED;;;;;;;EAOE;AACF,qBAAa,oCAAoC;IAC/C,SAAgB,KAAK,EAAE,sCAAsC,CACpB;IACzC;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;QAII;IACG,WAAW,EAAE,WAAW,CAAW;IAC1C;;;;QAII;IACG,UAAU,EAAE,OAAO,CAAQ;IAClC;;QAEI;IACG,OAAO,EAAE,aAAa,EAAE,CAS7B;IAEF,uFAAuF;gBACpE,MAAM,GAAE,WAAW,CAAC,oCAAoC,CAAM;CAsBlF;AAED;;;;;;;EAOE;AACF,qBAAa,yCAAyC;IACpD,SAAgB,KAAK,EAAE,2CAA2C,CACpB;IAC9C;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;QAEI;IACG,OAAO,EAAE,aAAa,EAAE,CAM7B;IAEF,4FAA4F;gBACzE,MAAM,GAAE,WAAW,CAAC,yCAAyC,CAAM;CAgBvF;AAED;;;;;;;EAOE;AACF,qBAAa,gCAAgC;IAC3C,SAAgB,KAAK,EAAE,kCAAkC,CAAsC;IAC/F;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAM;IAChC;;;;;;QAMI;IACG,gBAAgB,EAAE,MAAM,CAAO;IACtC;;;;;QAKI;IACG,sBAAsB,EAAE,OAAO,CAAS;IAC/C;;;;;QAKI;IACG,sBAAsB,EAAE,MAAM,CAAK;IAC1C;;;;;;QAMI;IACG,uDAAuD,EAAE,MAAM,CAAK;IAC3E;;;;QAII;IACG,gBAAgB,EAAE,OAAO,CAAS;IACzC;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAK;IACrC;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAK;IACrC;;;;QAII;IACG,WAAW,EAAE,WAAW,CAAW;IAC1C;;;;QAII;IACG,UAAU,EAAE,OAAO,CAAQ;IAClC;;;;QAII;IACG,oBAAoB,EAAE,oBAAoB,CAAc;IAC/D;;QAEI;IACG,OAAO,EAAE,aAAa,EAAE,CAiB7B;IAEF,mFAAmF;gBAChE,MAAM,GAAE,WAAW,CAAC,gCAAgC,CAAM;CAyC9E"}
|