scanbot-web-sdk 8.1.0-beta.7 → 8.1.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. package/@types/ui2/configuration/document/DocumentScannerCameraConfiguration.d.ts +5 -0
  2. package/bundle/ScanbotSDK.min.js +3 -3
  3. package/bundle/ScanbotSDK.ui2.min.js +3 -3
  4. package/bundle/bin/barcode-scanner/ScanbotSDK.Asm-simd-threads.js +1 -1
  5. package/bundle/bin/barcode-scanner/ScanbotSDK.Asm-simd-threads.wasm +0 -0
  6. package/bundle/bin/barcode-scanner/ScanbotSDK.Asm-simd.wasm +0 -0
  7. package/bundle/bin/barcode-scanner/ScanbotSDK.Asm.wasm +0 -0
  8. package/bundle/bin/barcode-scanner/ScanbotSDK.Core-simd-threads.js +1 -1
  9. package/bundle/bin/barcode-scanner/ScanbotSDK.Core-simd.js +1 -1
  10. package/bundle/bin/barcode-scanner/ScanbotSDK.Core.js +1 -1
  11. package/bundle/bin/complete/ScanbotSDK.Asm-simd-threads.js +1 -1
  12. package/bundle/bin/complete/ScanbotSDK.Asm-simd-threads.wasm +0 -0
  13. package/bundle/bin/complete/ScanbotSDK.Asm-simd.wasm +0 -0
  14. package/bundle/bin/complete/ScanbotSDK.Asm.wasm +0 -0
  15. package/bundle/bin/complete/ScanbotSDK.Core-simd-threads.js +1 -1
  16. package/bundle/bin/complete/ScanbotSDK.Core-simd.js +1 -1
  17. package/bundle/bin/complete/ScanbotSDK.Core.js +1 -1
  18. package/bundle/bin/document-scanner/ScanbotSDK.Asm-simd-threads.js +1 -1
  19. package/bundle/bin/document-scanner/ScanbotSDK.Asm-simd-threads.wasm +0 -0
  20. package/bundle/bin/document-scanner/ScanbotSDK.Asm-simd.wasm +0 -0
  21. package/bundle/bin/document-scanner/ScanbotSDK.Asm.wasm +0 -0
  22. package/bundle/bin/document-scanner/ScanbotSDK.Core-simd-threads.js +1 -1
  23. package/bundle/bin/document-scanner/ScanbotSDK.Core-simd.js +1 -1
  24. package/bundle/bin/document-scanner/ScanbotSDK.Core.js +1 -1
  25. package/package.json +1 -1
@@ -60,6 +60,11 @@ export declare class DocumentScannerCameraConfiguration {
60
60
  @defaultValue "FULL_HD";
61
61
  */
62
62
  cameraLiveScannerResolution: CameraLiveScannerResolution;
63
+ /**
64
+ Attempts to take a single exposure using the video capture device, resulting in a high resolution image and potentially greatly improved detection quality, but it may cause compatibility issues on some devices and browsers.
65
+ @defaultValue false;
66
+ */
67
+ useImageCaptureAPI: boolean;
63
68
  /** @param source {@displayType `DeepPartial<DocumentScannerCameraConfiguration>`} */
64
69
  constructor(source?: DeepPartial<DocumentScannerCameraConfiguration>);
65
70
  }