@ahmed_hani/dot-document-auto-capture 7.6.1 → 7.7.0

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/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@ahmed_hani/dot-document-auto-capture",
3
3
  "private": false,
4
- "version": "7.6.1",
5
- "license": "Innovatrics proprietary license",
4
+ "version": "7.7.0",
5
+ "license": "ahmed_hani proprietary license",
6
6
  "description": "Digital onboarding document capture",
7
7
  "keywords": [
8
8
  "document",
@@ -31,6 +31,7 @@ export type BaseCameraProps<TDetectedObject> = {
31
31
  cameraFacing?: FacingModeValues;
32
32
  candidateSelectionDurationMillis?: number;
33
33
  captureMode?: CaptureModeValues;
34
+ isVideoCaptureEnabled?: boolean;
34
35
  onError: (e: Error) => void;
35
36
  onPhotoTaken: (imageData: CallbackImage<TDetectedObject>, content: Uint8Array) => void;
36
37
  sessionToken?: string;
@@ -36,7 +36,7 @@ export type PalmImageParameters = ImageParameters;
36
36
  export type PalmQualityAttributes = {
37
37
  handOrientation: ObjectValues<typeof PalmHandOrientation>;
38
38
  handPosition: ObjectValues<typeof PalmHandPosition>;
39
- quality: number;
39
+ templateExtractionQuality: number;
40
40
  };
41
41
  export type DetectedPalm = PalmQualityAttributes & PalmImageParameters & DetectedPalmCorners & {
42
42
  confidence: number;