react-native-scanbot-barcode-scanner-sdk 7.1.2 → 8.0.0-rc.2
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 +83 -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 +74 -58
- 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
package/LICENSE
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
All items and source code Copyright (c)
|
|
1
|
+
All items and source code Copyright (c) 2026 Scanbot SDK GmbH (https://scanbot.io).
|
|
2
2
|
|
|
3
3
|
Scanbot Document and Barcode Scanner SDK for React Native is a commercial
|
|
4
4
|
product and requires a license to be used in a production environment. It will
|
package/Libraries.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Open Source libraries used in the Scanbot Barcode SDK for React Native version
|
|
1
|
+
Open Source libraries used in the Scanbot Barcode SDK for React Native version 8.0.0
|
|
2
2
|
|
|
3
|
-
Open Source libraries used in ScanbotBarcodeScannerSDK for iOS version
|
|
3
|
+
Open Source libraries used in ScanbotBarcodeScannerSDK for iOS version 8.0.1:
|
|
4
4
|
|
|
5
5
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
6
6
|
|
|
@@ -299,7 +299,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
299
299
|
|
|
300
300
|
expected
|
|
301
301
|
|
|
302
|
-
Version 1.1
|
|
302
|
+
Version 1.1.0
|
|
303
303
|
(https://github.com/TartanLlama/expected)
|
|
304
304
|
|
|
305
305
|
Creative Commons Legal Code
|
|
@@ -430,7 +430,7 @@ express Statement of Purpose.
|
|
|
430
430
|
flatbuffers
|
|
431
431
|
|
|
432
432
|
Version 2.0.6
|
|
433
|
-
(https://github.com/google/flatbuffers
|
|
433
|
+
(https://github.com/google/flatbuffers)
|
|
434
434
|
|
|
435
435
|
|
|
436
436
|
Apache License
|
|
@@ -1364,7 +1364,7 @@ This work is licensed under a [Creative Commons Attribution-ShareAlike 4.0 Inter
|
|
|
1364
1364
|
|
|
1365
1365
|
JSON for Modern C++
|
|
1366
1366
|
|
|
1367
|
-
Version
|
|
1367
|
+
Version 3.11.3
|
|
1368
1368
|
(https://github.com/nlohmann/json)
|
|
1369
1369
|
|
|
1370
1370
|
MIT License
|
|
@@ -1774,7 +1774,7 @@ OF THIS SOFTWARE.
|
|
|
1774
1774
|
|
|
1775
1775
|
libzueci
|
|
1776
1776
|
|
|
1777
|
-
Version 1.0.
|
|
1777
|
+
Version 1.0.1
|
|
1778
1778
|
(https://sourceforge.net/projects/libzueci/)
|
|
1779
1779
|
|
|
1780
1780
|
A simple, standalone, BSD-3-Clause C library for converting UTF-8 to/from Extended Channel Interpretations, as
|
|
@@ -2187,11 +2187,221 @@ Version 1.1.1t
|
|
|
2187
2187
|
|
|
2188
2188
|
|
|
2189
2189
|
|
|
2190
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
2191
|
+
|
|
2192
|
+
snowflake-arctic-embed-xs
|
|
2193
|
+
|
|
2194
|
+
Version eadfba3b
|
|
2195
|
+
(https://huggingface.co/Snowflake/snowflake-arctic-embed-xs/tree/main)
|
|
2196
|
+
|
|
2197
|
+
Apache License
|
|
2198
|
+
Version 2.0, January 2004
|
|
2199
|
+
http://www.apache.org/licenses/
|
|
2200
|
+
|
|
2201
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
2202
|
+
|
|
2203
|
+
1. Definitions.
|
|
2204
|
+
|
|
2205
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
2206
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
2207
|
+
|
|
2208
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
2209
|
+
the copyright owner that is granting the License.
|
|
2210
|
+
|
|
2211
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
2212
|
+
other entities that control, are controlled by, or are under common
|
|
2213
|
+
control with that entity. For the purposes of this definition,
|
|
2214
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
2215
|
+
direction or management of such entity, whether by contract or
|
|
2216
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
2217
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
2218
|
+
|
|
2219
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
2220
|
+
exercising permissions granted by this License.
|
|
2221
|
+
|
|
2222
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
2223
|
+
including but not limited to software source code, documentation
|
|
2224
|
+
source, and configuration files.
|
|
2225
|
+
|
|
2226
|
+
"Object" form shall mean any form resulting from mechanical
|
|
2227
|
+
transformation or translation of a Source form, including but
|
|
2228
|
+
not limited to compiled object code, generated documentation,
|
|
2229
|
+
and conversions to other media types.
|
|
2230
|
+
|
|
2231
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
2232
|
+
Object form, made available under the License, as indicated by a
|
|
2233
|
+
copyright notice that is included in or attached to the work
|
|
2234
|
+
(an example is provided in the Appendix below).
|
|
2235
|
+
|
|
2236
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
2237
|
+
form, that is based on (or derived from) the Work and for which the
|
|
2238
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
2239
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
2240
|
+
of this License, Derivative Works shall not include works that remain
|
|
2241
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
2242
|
+
the Work and Derivative Works thereof.
|
|
2243
|
+
|
|
2244
|
+
"Contribution" shall mean any work of authorship, including
|
|
2245
|
+
the original version of the Work and any modifications or additions
|
|
2246
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
2247
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
2248
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
2249
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
2250
|
+
means any form of electronic, verbal, or written communication sent
|
|
2251
|
+
to the Licensor or its representatives, including but not limited to
|
|
2252
|
+
communication on electronic mailing lists, source code control systems,
|
|
2253
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
2254
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
2255
|
+
excluding communication that is conspicuously marked or otherwise
|
|
2256
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
2257
|
+
|
|
2258
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
2259
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
2260
|
+
subsequently incorporated within the Work.
|
|
2261
|
+
|
|
2262
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
2263
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
2264
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
2265
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
2266
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
2267
|
+
Work and such Derivative Works in Source or Object form.
|
|
2268
|
+
|
|
2269
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
2270
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
2271
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
2272
|
+
(except as stated in this section) patent license to make, have made,
|
|
2273
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
2274
|
+
where such license applies only to those patent claims licensable
|
|
2275
|
+
by such Contributor that are necessarily infringed by their
|
|
2276
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
2277
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
2278
|
+
institute patent litigation against any entity (including a
|
|
2279
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
2280
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
2281
|
+
or contributory patent infringement, then any patent licenses
|
|
2282
|
+
granted to You under this License for that Work shall terminate
|
|
2283
|
+
as of the date such litigation is filed.
|
|
2284
|
+
|
|
2285
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
2286
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
2287
|
+
modifications, and in Source or Object form, provided that You
|
|
2288
|
+
meet the following conditions:
|
|
2289
|
+
|
|
2290
|
+
(a) You must give any other recipients of the Work or
|
|
2291
|
+
Derivative Works a copy of this License; and
|
|
2292
|
+
|
|
2293
|
+
(b) You must cause any modified files to carry prominent notices
|
|
2294
|
+
stating that You changed the files; and
|
|
2295
|
+
|
|
2296
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
2297
|
+
that You distribute, all copyright, patent, trademark, and
|
|
2298
|
+
attribution notices from the Source form of the Work,
|
|
2299
|
+
excluding those notices that do not pertain to any part of
|
|
2300
|
+
the Derivative Works; and
|
|
2301
|
+
|
|
2302
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
2303
|
+
distribution, then any Derivative Works that You distribute must
|
|
2304
|
+
include a readable copy of the attribution notices contained
|
|
2305
|
+
within such NOTICE file, excluding those notices that do not
|
|
2306
|
+
pertain to any part of the Derivative Works, in at least one
|
|
2307
|
+
of the following places: within a NOTICE text file distributed
|
|
2308
|
+
as part of the Derivative Works; within the Source form or
|
|
2309
|
+
documentation, if provided along with the Derivative Works; or,
|
|
2310
|
+
within a display generated by the Derivative Works, if and
|
|
2311
|
+
wherever such third-party notices normally appear. The contents
|
|
2312
|
+
of the NOTICE file are for informational purposes only and
|
|
2313
|
+
do not modify the License. You may add Your own attribution
|
|
2314
|
+
notices within Derivative Works that You distribute, alongside
|
|
2315
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
2316
|
+
that such additional attribution notices cannot be construed
|
|
2317
|
+
as modifying the License.
|
|
2318
|
+
|
|
2319
|
+
You may add Your own copyright statement to Your modifications and
|
|
2320
|
+
may provide additional or different license terms and conditions
|
|
2321
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
2322
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
2323
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
2324
|
+
the conditions stated in this License.
|
|
2325
|
+
|
|
2326
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
2327
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
2328
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
2329
|
+
this License, without any additional terms or conditions.
|
|
2330
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
2331
|
+
the terms of any separate license agreement you may have executed
|
|
2332
|
+
with Licensor regarding such Contributions.
|
|
2333
|
+
|
|
2334
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
2335
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
2336
|
+
except as required for reasonable and customary use in describing the
|
|
2337
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
2338
|
+
|
|
2339
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
2340
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
2341
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
2342
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
2343
|
+
implied, including, without limitation, any warranties or conditions
|
|
2344
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
2345
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
2346
|
+
appropriateness of using or redistributing the Work and assume any
|
|
2347
|
+
risks associated with Your exercise of permissions under this License.
|
|
2348
|
+
|
|
2349
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
2350
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
2351
|
+
unless required by applicable law (such as deliberate and grossly
|
|
2352
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
2353
|
+
liable to You for damages, including any direct, indirect, special,
|
|
2354
|
+
incidental, or consequential damages of any character arising as a
|
|
2355
|
+
result of this License or out of the use or inability to use the
|
|
2356
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
2357
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
2358
|
+
other commercial damages or losses), even if such Contributor
|
|
2359
|
+
has been advised of the possibility of such damages.
|
|
2360
|
+
|
|
2361
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
2362
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
2363
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
2364
|
+
or other liability obligations and/or rights consistent with this
|
|
2365
|
+
License. However, in accepting such obligations, You may act only
|
|
2366
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
2367
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
2368
|
+
defend, and hold each Contributor harmless for any liability
|
|
2369
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
2370
|
+
of your accepting any such warranty or additional liability.
|
|
2371
|
+
|
|
2372
|
+
END OF TERMS AND CONDITIONS
|
|
2373
|
+
|
|
2374
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
2375
|
+
|
|
2376
|
+
To apply the Apache License to your work, attach the following
|
|
2377
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
2378
|
+
replaced with your own identifying information. (Don't include
|
|
2379
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
2380
|
+
comment syntax for the file format. We also recommend that a
|
|
2381
|
+
file or class name and description of purpose be included on the
|
|
2382
|
+
same "printed page" as the copyright notice for easier
|
|
2383
|
+
identification within third-party archives.
|
|
2384
|
+
|
|
2385
|
+
Copyright [yyyy] [name of copyright owner]
|
|
2386
|
+
|
|
2387
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
2388
|
+
you may not use this file except in compliance with the License.
|
|
2389
|
+
You may obtain a copy of the License at
|
|
2390
|
+
|
|
2391
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
2392
|
+
|
|
2393
|
+
Unless required by applicable law or agreed to in writing, software
|
|
2394
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
2395
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2396
|
+
See the License for the specific language governing permissions and
|
|
2397
|
+
limitations under the License.
|
|
2398
|
+
|
|
2399
|
+
|
|
2190
2400
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
2191
2401
|
|
|
2192
2402
|
spdlog
|
|
2193
2403
|
|
|
2194
|
-
Version
|
|
2404
|
+
Version 1.15.2
|
|
2195
2405
|
(https://github.com/gabime/spdlog)
|
|
2196
2406
|
|
|
2197
2407
|
The MIT License (MIT)
|
|
@@ -2774,7 +2984,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
2774
2984
|
|
|
2775
2985
|
xtensor
|
|
2776
2986
|
|
|
2777
|
-
Version 0.26.0
|
|
2987
|
+
Version 0.26.0
|
|
2778
2988
|
(https://github.com/doo/xtensor)
|
|
2779
2989
|
|
|
2780
2990
|
Copyright (c) 2016, Johan Mabille, Sylvain Corlay and Wolf Vollprecht
|
|
@@ -3103,7 +3313,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
3103
3313
|
|
|
3104
3314
|
------------------------------------------------------------------------------------------------------------------------
|
|
3105
3315
|
|
|
3106
|
-
Open Source libraries used in the Scanbot Barcode Scanner SDK for Android version
|
|
3316
|
+
Open Source libraries used in the Scanbot Barcode Scanner SDK for Android version 8.0.1
|
|
3107
3317
|
|
|
3108
3318
|
CWAC-Camera
|
|
3109
3319
|
|
|
@@ -3150,7 +3360,7 @@ limitations under the License.
|
|
|
3150
3360
|
|
|
3151
3361
|
Kotlin Standard Library
|
|
3152
3362
|
|
|
3153
|
-
Version 1.
|
|
3363
|
+
Version 2.1.21
|
|
3154
3364
|
(https://github.com/JetBrains/kotlin)
|
|
3155
3365
|
|
|
3156
3366
|
Copyright 2010-2018 JetBrains s.r.o.
|
|
@@ -3223,7 +3433,7 @@ limitations under the License.
|
|
|
3223
3433
|
|
|
3224
3434
|
Dagger
|
|
3225
3435
|
|
|
3226
|
-
Version 2.
|
|
3436
|
+
Version 2.56.2
|
|
3227
3437
|
(https://github.com/google/dagger)
|
|
3228
3438
|
|
|
3229
3439
|
Copyright 2012 The Dagger Authors
|
|
@@ -3594,7 +3804,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
3594
3804
|
|
|
3595
3805
|
expected
|
|
3596
3806
|
|
|
3597
|
-
Version 1.1
|
|
3807
|
+
Version 1.1.0
|
|
3598
3808
|
(https://github.com/TartanLlama/expected)
|
|
3599
3809
|
|
|
3600
3810
|
Creative Commons Legal Code
|
|
@@ -3725,7 +3935,7 @@ express Statement of Purpose.
|
|
|
3725
3935
|
flatbuffers
|
|
3726
3936
|
|
|
3727
3937
|
Version 2.0.6
|
|
3728
|
-
(https://github.com/google/flatbuffers
|
|
3938
|
+
(https://github.com/google/flatbuffers)
|
|
3729
3939
|
|
|
3730
3940
|
|
|
3731
3941
|
Apache License
|
|
@@ -4659,7 +4869,7 @@ This work is licensed under a [Creative Commons Attribution-ShareAlike 4.0 Inter
|
|
|
4659
4869
|
|
|
4660
4870
|
JSON for Modern C++
|
|
4661
4871
|
|
|
4662
|
-
Version
|
|
4872
|
+
Version 3.11.3
|
|
4663
4873
|
(https://github.com/nlohmann/json)
|
|
4664
4874
|
|
|
4665
4875
|
MIT License
|
|
@@ -5069,7 +5279,7 @@ OF THIS SOFTWARE.
|
|
|
5069
5279
|
|
|
5070
5280
|
libzueci
|
|
5071
5281
|
|
|
5072
|
-
Version 1.0.
|
|
5282
|
+
Version 1.0.1
|
|
5073
5283
|
(https://sourceforge.net/projects/libzueci/)
|
|
5074
5284
|
|
|
5075
5285
|
A simple, standalone, BSD-3-Clause C library for converting UTF-8 to/from Extended Channel Interpretations, as
|
|
@@ -5482,11 +5692,221 @@ Version 1.1.0h
|
|
|
5482
5692
|
|
|
5483
5693
|
|
|
5484
5694
|
|
|
5695
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
5696
|
+
|
|
5697
|
+
snowflake-arctic-embed-xs
|
|
5698
|
+
|
|
5699
|
+
Version eadfba3b
|
|
5700
|
+
(https://huggingface.co/Snowflake/snowflake-arctic-embed-xs/tree/main)
|
|
5701
|
+
|
|
5702
|
+
Apache License
|
|
5703
|
+
Version 2.0, January 2004
|
|
5704
|
+
http://www.apache.org/licenses/
|
|
5705
|
+
|
|
5706
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
5707
|
+
|
|
5708
|
+
1. Definitions.
|
|
5709
|
+
|
|
5710
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
5711
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
5712
|
+
|
|
5713
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
5714
|
+
the copyright owner that is granting the License.
|
|
5715
|
+
|
|
5716
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
5717
|
+
other entities that control, are controlled by, or are under common
|
|
5718
|
+
control with that entity. For the purposes of this definition,
|
|
5719
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
5720
|
+
direction or management of such entity, whether by contract or
|
|
5721
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
5722
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
5723
|
+
|
|
5724
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
5725
|
+
exercising permissions granted by this License.
|
|
5726
|
+
|
|
5727
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
5728
|
+
including but not limited to software source code, documentation
|
|
5729
|
+
source, and configuration files.
|
|
5730
|
+
|
|
5731
|
+
"Object" form shall mean any form resulting from mechanical
|
|
5732
|
+
transformation or translation of a Source form, including but
|
|
5733
|
+
not limited to compiled object code, generated documentation,
|
|
5734
|
+
and conversions to other media types.
|
|
5735
|
+
|
|
5736
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
5737
|
+
Object form, made available under the License, as indicated by a
|
|
5738
|
+
copyright notice that is included in or attached to the work
|
|
5739
|
+
(an example is provided in the Appendix below).
|
|
5740
|
+
|
|
5741
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
5742
|
+
form, that is based on (or derived from) the Work and for which the
|
|
5743
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
5744
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
5745
|
+
of this License, Derivative Works shall not include works that remain
|
|
5746
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
5747
|
+
the Work and Derivative Works thereof.
|
|
5748
|
+
|
|
5749
|
+
"Contribution" shall mean any work of authorship, including
|
|
5750
|
+
the original version of the Work and any modifications or additions
|
|
5751
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
5752
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
5753
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
5754
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
5755
|
+
means any form of electronic, verbal, or written communication sent
|
|
5756
|
+
to the Licensor or its representatives, including but not limited to
|
|
5757
|
+
communication on electronic mailing lists, source code control systems,
|
|
5758
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
5759
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
5760
|
+
excluding communication that is conspicuously marked or otherwise
|
|
5761
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
5762
|
+
|
|
5763
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
5764
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
5765
|
+
subsequently incorporated within the Work.
|
|
5766
|
+
|
|
5767
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
5768
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
5769
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
5770
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
5771
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
5772
|
+
Work and such Derivative Works in Source or Object form.
|
|
5773
|
+
|
|
5774
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
5775
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
5776
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
5777
|
+
(except as stated in this section) patent license to make, have made,
|
|
5778
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
5779
|
+
where such license applies only to those patent claims licensable
|
|
5780
|
+
by such Contributor that are necessarily infringed by their
|
|
5781
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
5782
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
5783
|
+
institute patent litigation against any entity (including a
|
|
5784
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
5785
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
5786
|
+
or contributory patent infringement, then any patent licenses
|
|
5787
|
+
granted to You under this License for that Work shall terminate
|
|
5788
|
+
as of the date such litigation is filed.
|
|
5789
|
+
|
|
5790
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
5791
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
5792
|
+
modifications, and in Source or Object form, provided that You
|
|
5793
|
+
meet the following conditions:
|
|
5794
|
+
|
|
5795
|
+
(a) You must give any other recipients of the Work or
|
|
5796
|
+
Derivative Works a copy of this License; and
|
|
5797
|
+
|
|
5798
|
+
(b) You must cause any modified files to carry prominent notices
|
|
5799
|
+
stating that You changed the files; and
|
|
5800
|
+
|
|
5801
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
5802
|
+
that You distribute, all copyright, patent, trademark, and
|
|
5803
|
+
attribution notices from the Source form of the Work,
|
|
5804
|
+
excluding those notices that do not pertain to any part of
|
|
5805
|
+
the Derivative Works; and
|
|
5806
|
+
|
|
5807
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
5808
|
+
distribution, then any Derivative Works that You distribute must
|
|
5809
|
+
include a readable copy of the attribution notices contained
|
|
5810
|
+
within such NOTICE file, excluding those notices that do not
|
|
5811
|
+
pertain to any part of the Derivative Works, in at least one
|
|
5812
|
+
of the following places: within a NOTICE text file distributed
|
|
5813
|
+
as part of the Derivative Works; within the Source form or
|
|
5814
|
+
documentation, if provided along with the Derivative Works; or,
|
|
5815
|
+
within a display generated by the Derivative Works, if and
|
|
5816
|
+
wherever such third-party notices normally appear. The contents
|
|
5817
|
+
of the NOTICE file are for informational purposes only and
|
|
5818
|
+
do not modify the License. You may add Your own attribution
|
|
5819
|
+
notices within Derivative Works that You distribute, alongside
|
|
5820
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
5821
|
+
that such additional attribution notices cannot be construed
|
|
5822
|
+
as modifying the License.
|
|
5823
|
+
|
|
5824
|
+
You may add Your own copyright statement to Your modifications and
|
|
5825
|
+
may provide additional or different license terms and conditions
|
|
5826
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
5827
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
5828
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
5829
|
+
the conditions stated in this License.
|
|
5830
|
+
|
|
5831
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
5832
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
5833
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
5834
|
+
this License, without any additional terms or conditions.
|
|
5835
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
5836
|
+
the terms of any separate license agreement you may have executed
|
|
5837
|
+
with Licensor regarding such Contributions.
|
|
5838
|
+
|
|
5839
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
5840
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
5841
|
+
except as required for reasonable and customary use in describing the
|
|
5842
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
5843
|
+
|
|
5844
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
5845
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
5846
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
5847
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
5848
|
+
implied, including, without limitation, any warranties or conditions
|
|
5849
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
5850
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
5851
|
+
appropriateness of using or redistributing the Work and assume any
|
|
5852
|
+
risks associated with Your exercise of permissions under this License.
|
|
5853
|
+
|
|
5854
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
5855
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
5856
|
+
unless required by applicable law (such as deliberate and grossly
|
|
5857
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
5858
|
+
liable to You for damages, including any direct, indirect, special,
|
|
5859
|
+
incidental, or consequential damages of any character arising as a
|
|
5860
|
+
result of this License or out of the use or inability to use the
|
|
5861
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
5862
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
5863
|
+
other commercial damages or losses), even if such Contributor
|
|
5864
|
+
has been advised of the possibility of such damages.
|
|
5865
|
+
|
|
5866
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
5867
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
5868
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
5869
|
+
or other liability obligations and/or rights consistent with this
|
|
5870
|
+
License. However, in accepting such obligations, You may act only
|
|
5871
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
5872
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
5873
|
+
defend, and hold each Contributor harmless for any liability
|
|
5874
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
5875
|
+
of your accepting any such warranty or additional liability.
|
|
5876
|
+
|
|
5877
|
+
END OF TERMS AND CONDITIONS
|
|
5878
|
+
|
|
5879
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
5880
|
+
|
|
5881
|
+
To apply the Apache License to your work, attach the following
|
|
5882
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
5883
|
+
replaced with your own identifying information. (Don't include
|
|
5884
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
5885
|
+
comment syntax for the file format. We also recommend that a
|
|
5886
|
+
file or class name and description of purpose be included on the
|
|
5887
|
+
same "printed page" as the copyright notice for easier
|
|
5888
|
+
identification within third-party archives.
|
|
5889
|
+
|
|
5890
|
+
Copyright [yyyy] [name of copyright owner]
|
|
5891
|
+
|
|
5892
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5893
|
+
you may not use this file except in compliance with the License.
|
|
5894
|
+
You may obtain a copy of the License at
|
|
5895
|
+
|
|
5896
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
5897
|
+
|
|
5898
|
+
Unless required by applicable law or agreed to in writing, software
|
|
5899
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
5900
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
5901
|
+
See the License for the specific language governing permissions and
|
|
5902
|
+
limitations under the License.
|
|
5903
|
+
|
|
5904
|
+
|
|
5485
5905
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
5486
5906
|
|
|
5487
5907
|
spdlog
|
|
5488
5908
|
|
|
5489
|
-
Version
|
|
5909
|
+
Version 1.15.2
|
|
5490
5910
|
(https://github.com/gabime/spdlog)
|
|
5491
5911
|
|
|
5492
5912
|
The MIT License (MIT)
|
|
@@ -6069,7 +6489,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
6069
6489
|
|
|
6070
6490
|
xtensor
|
|
6071
6491
|
|
|
6072
|
-
Version 0.26.0
|
|
6492
|
+
Version 0.26.0
|
|
6073
6493
|
(https://github.com/doo/xtensor)
|
|
6074
6494
|
|
|
6075
6495
|
Copyright (c) 2016, Johan Mabille, Sylvain Corlay and Wolf Vollprecht
|