@regulaforensics/vp-frontend-face-components 1.4.0 → 2.0.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 (214) hide show
  1. package/README.md +60 -23
  2. package/dist/main.js +1 -1
  3. package/dist/main.js.LICENSE.txt +28 -19
  4. package/lib/common/Button.d.ts +2 -2
  5. package/lib/common/Icon.d.ts +58 -1
  6. package/lib/common/Message.d.ts +5 -4
  7. package/lib/common/NoGlareIconLivenessDetection.d.ts +5 -0
  8. package/lib/common/NoSmilingIconLivenessDetection.d.ts +5 -0
  9. package/lib/common/PortraitOrientationOnlyIcon.d.ts +6 -0
  10. package/lib/common/RegulaLogoLivenessDetection.d.ts +5 -0
  11. package/lib/components/ButtonFaceLiveness.d.ts +7 -0
  12. package/lib/components/CameraCapture.d.ts +9 -0
  13. package/lib/components/CameraSnapshot.d.ts +2 -0
  14. package/lib/components/CameraSnapshotFileCapture.d.ts +10 -0
  15. package/lib/components/DocumentCapture.d.ts +11 -0
  16. package/lib/components/DocumentContainer.d.ts +11 -0
  17. package/lib/components/DocumentReader.d.ts +2 -0
  18. package/lib/components/DocumentReaderFileCapture.d.ts +12 -0
  19. package/lib/components/DocumentReaderLayout.d.ts +22 -0
  20. package/lib/components/DocumentReaderStartScreen.d.ts +10 -0
  21. package/lib/components/ErrorBoundary.d.ts +10 -9
  22. package/lib/components/FaceCapture.d.ts +17 -9
  23. package/lib/components/FaceFullScreenOverlay.d.ts +2 -3
  24. package/lib/components/FaceHintAnimaition.d.ts +16 -0
  25. package/lib/components/FaceLayout.d.ts +16 -12
  26. package/lib/components/InfoScreen.d.ts +2 -1
  27. package/lib/components/InfoScreenFaceLiveness.d.ts +12 -0
  28. package/lib/components/InstructionVideoScreen.d.ts +9 -0
  29. package/lib/components/ProcessScreenFaceLiveness.d.ts +6 -0
  30. package/lib/components/RetryScreenFaceLiveness.d.ts +7 -0
  31. package/lib/components/SectorAnimationSvg.d.ts +11 -0
  32. package/lib/components/WebCamera.d.ts +8 -9
  33. package/lib/constants.d.ts +471 -169
  34. package/lib/contexts/DocumentAttributesContext.d.ts +25 -0
  35. package/lib/contexts/DocumentSDKContext.d.ts +8 -0
  36. package/lib/contexts/FaceAttributesContext.d.ts +14 -12
  37. package/lib/hoc/withDocumentAttributesContext.d.ts +4 -0
  38. package/lib/hoc/withDocumentSDKContext.d.ts +3 -0
  39. package/lib/hoc/withFaceAttributesContext.d.ts +2 -2
  40. package/lib/hoc/withLocalize.d.ts +6 -5
  41. package/lib/hooks/useDocumentReaderSeries.d.ts +19 -0
  42. package/lib/hooks/useDocumentReaderSingle.d.ts +14 -0
  43. package/lib/hooks/useFaceLiveness.d.ts +34 -26
  44. package/lib/hooks/useImageInputParam.d.ts +7 -0
  45. package/lib/hooks/useStateCallback.d.ts +1 -0
  46. package/lib/hooks/useStream.d.ts +3 -9
  47. package/lib/i18n/dictionaries/_dictionaries.d.ts +2212 -1988
  48. package/lib/index-document.d.ts +4 -0
  49. package/lib/media-resources/resourcesBase64.d.ts +7 -0
  50. package/lib/models/CameraModel.d.ts +2 -2
  51. package/lib/models/CustomError.d.ts +7 -0
  52. package/lib/models/DocReaderWebclient/ext/authenticity/authenticity.d.ts +32 -0
  53. package/lib/models/DocReaderWebclient/ext/authenticity/fiber.d.ts +7 -0
  54. package/lib/models/DocReaderWebclient/ext/authenticity/ident.d.ts +8 -0
  55. package/lib/models/DocReaderWebclient/ext/authenticity/image-ident.d.ts +7 -0
  56. package/lib/models/DocReaderWebclient/ext/authenticity/index.d.ts +5 -0
  57. package/lib/models/DocReaderWebclient/ext/authenticity/ocr-security-text.d.ts +7 -0
  58. package/lib/models/DocReaderWebclient/ext/authenticity/security-feature.d.ts +8 -0
  59. package/lib/models/DocReaderWebclient/ext/images.d.ts +16 -0
  60. package/lib/models/DocReaderWebclient/ext/index.d.ts +6 -0
  61. package/lib/models/DocReaderWebclient/ext/process-request-image.d.ts +5 -0
  62. package/lib/models/DocReaderWebclient/ext/process-request.d.ts +38 -0
  63. package/lib/models/DocReaderWebclient/ext/process-response.d.ts +36 -0
  64. package/lib/models/DocReaderWebclient/ext/text-field.d.ts +40 -0
  65. package/lib/models/DocReaderWebclient/ext/text.d.ts +14 -0
  66. package/lib/models/DocReaderWebclient/models/area-array.d.ts +32 -0
  67. package/lib/models/DocReaderWebclient/models/area-container.d.ts +38 -0
  68. package/lib/models/DocReaderWebclient/models/authenticity-check-list.d.ts +31 -0
  69. package/lib/models/DocReaderWebclient/models/authenticity-check-result-item.d.ts +38 -0
  70. package/lib/models/DocReaderWebclient/models/authenticity-check-result.d.ts +43 -0
  71. package/lib/models/DocReaderWebclient/models/authenticity-result-all-of.d.ts +25 -0
  72. package/lib/models/DocReaderWebclient/models/authenticity-result-type.d.ts +33 -0
  73. package/lib/models/DocReaderWebclient/models/authenticity-result.d.ts +18 -0
  74. package/lib/models/DocReaderWebclient/models/bc-pdf417-info.d.ts +54 -0
  75. package/lib/models/DocReaderWebclient/models/bc-roidetect.d.ts +42 -0
  76. package/lib/models/DocReaderWebclient/models/check-diagnose.d.ts +98 -0
  77. package/lib/models/DocReaderWebclient/models/check-result.d.ts +30 -0
  78. package/lib/models/DocReaderWebclient/models/chosen-document-type-result-all-of.d.ts +25 -0
  79. package/lib/models/DocReaderWebclient/models/chosen-document-type-result.d.ts +19 -0
  80. package/lib/models/DocReaderWebclient/models/chosen-document-type.d.ts +74 -0
  81. package/lib/models/DocReaderWebclient/models/container-list.d.ts +45 -0
  82. package/lib/models/DocReaderWebclient/models/critical.d.ts +26 -0
  83. package/lib/models/DocReaderWebclient/models/cross-source-value-comparison.d.ts +38 -0
  84. package/lib/models/DocReaderWebclient/models/data-module.d.ts +48 -0
  85. package/lib/models/DocReaderWebclient/models/details-optical.d.ts +67 -0
  86. package/lib/models/DocReaderWebclient/models/details-rfid.d.ts +61 -0
  87. package/lib/models/DocReaderWebclient/models/device-info.d.ts +54 -0
  88. package/lib/models/DocReaderWebclient/models/doc-bar-code-info-all-of.d.ts +31 -0
  89. package/lib/models/DocReaderWebclient/models/doc-bar-code-info.d.ts +19 -0
  90. package/lib/models/DocReaderWebclient/models/doc-visual-extended-field.d.ts +70 -0
  91. package/lib/models/DocReaderWebclient/models/doc-visual-extended-info.d.ts +25 -0
  92. package/lib/models/DocReaderWebclient/models/document-format.d.ts +70 -0
  93. package/lib/models/DocReaderWebclient/models/document-image-result-all-of.d.ts +25 -0
  94. package/lib/models/DocReaderWebclient/models/document-image-result.d.ts +18 -0
  95. package/lib/models/DocReaderWebclient/models/document-image.d.ts +24 -0
  96. package/lib/models/DocReaderWebclient/models/document-position-result-all-of.d.ts +25 -0
  97. package/lib/models/DocReaderWebclient/models/document-position-result.d.ts +19 -0
  98. package/lib/models/DocReaderWebclient/models/document-position.d.ts +80 -0
  99. package/lib/models/DocReaderWebclient/models/document-type-recognition-result.d.ts +30 -0
  100. package/lib/models/DocReaderWebclient/models/document-type.d.ts +246 -0
  101. package/lib/models/DocReaderWebclient/models/document-types-candidates-list.d.ts +32 -0
  102. package/lib/models/DocReaderWebclient/models/document-types-candidates-result-all-of.d.ts +25 -0
  103. package/lib/models/DocReaderWebclient/models/document-types-candidates-result.d.ts +18 -0
  104. package/lib/models/DocReaderWebclient/models/document-types-candidates.d.ts +32 -0
  105. package/lib/models/DocReaderWebclient/models/encrypted-rclresult-all-of.d.ts +24 -0
  106. package/lib/models/DocReaderWebclient/models/encrypted-rclresult.d.ts +18 -0
  107. package/lib/models/DocReaderWebclient/models/fdsidlist.d.ts +80 -0
  108. package/lib/models/DocReaderWebclient/models/fiber-result-all-of.d.ts +74 -0
  109. package/lib/models/DocReaderWebclient/models/fiber-result.d.ts +18 -0
  110. package/lib/models/DocReaderWebclient/models/graphic-field-type.d.ts +118 -0
  111. package/lib/models/DocReaderWebclient/models/graphic-field.d.ts +63 -0
  112. package/lib/models/DocReaderWebclient/models/graphic-fields-list.d.ts +25 -0
  113. package/lib/models/DocReaderWebclient/models/graphics-result-all-of.d.ts +25 -0
  114. package/lib/models/DocReaderWebclient/models/graphics-result.d.ts +19 -0
  115. package/lib/models/DocReaderWebclient/models/ident-result-all-of.d.ts +65 -0
  116. package/lib/models/DocReaderWebclient/models/ident-result.d.ts +18 -0
  117. package/lib/models/DocReaderWebclient/models/image-data.d.ts +24 -0
  118. package/lib/models/DocReaderWebclient/models/image-qa.d.ts +54 -0
  119. package/lib/models/DocReaderWebclient/models/image-quality-check-list.d.ts +32 -0
  120. package/lib/models/DocReaderWebclient/models/image-quality-check-type.d.ts +50 -0
  121. package/lib/models/DocReaderWebclient/models/image-quality-check.d.ts +64 -0
  122. package/lib/models/DocReaderWebclient/models/image-quality-result-all-of.d.ts +25 -0
  123. package/lib/models/DocReaderWebclient/models/image-quality-result.d.ts +18 -0
  124. package/lib/models/DocReaderWebclient/models/images-available-source.d.ts +31 -0
  125. package/lib/models/DocReaderWebclient/models/images-field-value.d.ts +70 -0
  126. package/lib/models/DocReaderWebclient/models/images-field.d.ts +38 -0
  127. package/lib/models/DocReaderWebclient/models/images-result-all-of.d.ts +25 -0
  128. package/lib/models/DocReaderWebclient/models/images-result.d.ts +18 -0
  129. package/lib/models/DocReaderWebclient/models/images.d.ts +32 -0
  130. package/lib/models/DocReaderWebclient/models/index.d.ts +123 -0
  131. package/lib/models/DocReaderWebclient/models/lcid.d.ts +582 -0
  132. package/lib/models/DocReaderWebclient/models/lexical-analysis-result-all-of.d.ts +25 -0
  133. package/lib/models/DocReaderWebclient/models/lexical-analysis-result.d.ts +19 -0
  134. package/lib/models/DocReaderWebclient/models/license-result-all-of.d.ts +24 -0
  135. package/lib/models/DocReaderWebclient/models/license-result.d.ts +18 -0
  136. package/lib/models/DocReaderWebclient/models/light.d.ts +34 -0
  137. package/lib/models/DocReaderWebclient/models/list-verified-fields.d.ts +25 -0
  138. package/lib/models/DocReaderWebclient/models/log-level.d.ts +23 -0
  139. package/lib/models/DocReaderWebclient/models/measure-system.d.ts +26 -0
  140. package/lib/models/DocReaderWebclient/models/mrzformat.d.ts +24 -0
  141. package/lib/models/DocReaderWebclient/models/ocrsecurity-text-result-all-of.d.ts +81 -0
  142. package/lib/models/DocReaderWebclient/models/ocrsecurity-text-result.d.ts +18 -0
  143. package/lib/models/DocReaderWebclient/models/one-candidate.d.ts +74 -0
  144. package/lib/models/DocReaderWebclient/models/original-symbol.d.ts +37 -0
  145. package/lib/models/DocReaderWebclient/models/parray-field.d.ts +81 -0
  146. package/lib/models/DocReaderWebclient/models/per-document-config.d.ts +30 -0
  147. package/lib/models/DocReaderWebclient/models/photo-ident-result-all-of.d.ts +76 -0
  148. package/lib/models/DocReaderWebclient/models/photo-ident-result.d.ts +18 -0
  149. package/lib/models/DocReaderWebclient/models/point-array.d.ts +25 -0
  150. package/lib/models/DocReaderWebclient/models/point.d.ts +30 -0
  151. package/lib/models/DocReaderWebclient/models/points-container.d.ts +31 -0
  152. package/lib/models/DocReaderWebclient/models/process-params.d.ts +254 -0
  153. package/lib/models/DocReaderWebclient/models/process-request-image.d.ts +38 -0
  154. package/lib/models/DocReaderWebclient/models/process-request.d.ts +60 -0
  155. package/lib/models/DocReaderWebclient/models/process-response.d.ts +66 -0
  156. package/lib/models/DocReaderWebclient/models/process-system-info.d.ts +30 -0
  157. package/lib/models/DocReaderWebclient/models/processing-status.d.ts +30 -0
  158. package/lib/models/DocReaderWebclient/models/raw-image-container-list.d.ts +31 -0
  159. package/lib/models/DocReaderWebclient/models/rectangle-coordinates.d.ts +42 -0
  160. package/lib/models/DocReaderWebclient/models/result-item.d.ts +48 -0
  161. package/lib/models/DocReaderWebclient/models/result.d.ts +98 -0
  162. package/lib/models/DocReaderWebclient/models/rfid-location.d.ts +30 -0
  163. package/lib/models/DocReaderWebclient/models/rfid-origin.d.ts +42 -0
  164. package/lib/models/DocReaderWebclient/models/scenario.d.ts +36 -0
  165. package/lib/models/DocReaderWebclient/models/security-feature-result-all-of.d.ts +59 -0
  166. package/lib/models/DocReaderWebclient/models/security-feature-result.d.ts +18 -0
  167. package/lib/models/DocReaderWebclient/models/security-feature-type.d.ts +49 -0
  168. package/lib/models/DocReaderWebclient/models/source-validity.d.ts +32 -0
  169. package/lib/models/DocReaderWebclient/models/source.d.ts +23 -0
  170. package/lib/models/DocReaderWebclient/models/status-result-all-of.d.ts +25 -0
  171. package/lib/models/DocReaderWebclient/models/status-result.d.ts +18 -0
  172. package/lib/models/DocReaderWebclient/models/status.d.ts +63 -0
  173. package/lib/models/DocReaderWebclient/models/string-recognition-result.d.ts +25 -0
  174. package/lib/models/DocReaderWebclient/models/symbol-candidate.d.ts +30 -0
  175. package/lib/models/DocReaderWebclient/models/symbol-recognition-result.d.ts +32 -0
  176. package/lib/models/DocReaderWebclient/models/text-available-source.d.ts +38 -0
  177. package/lib/models/DocReaderWebclient/models/text-data-result-all-of.d.ts +25 -0
  178. package/lib/models/DocReaderWebclient/models/text-data-result.d.ts +19 -0
  179. package/lib/models/DocReaderWebclient/models/text-field-type.d.ts +2386 -0
  180. package/lib/models/DocReaderWebclient/models/text-field-value.d.ts +70 -0
  181. package/lib/models/DocReaderWebclient/models/text-field.d.ts +84 -0
  182. package/lib/models/DocReaderWebclient/models/text-post-processing.d.ts +22 -0
  183. package/lib/models/DocReaderWebclient/models/text-result-all-of.d.ts +25 -0
  184. package/lib/models/DocReaderWebclient/models/text-result.d.ts +18 -0
  185. package/lib/models/DocReaderWebclient/models/text.d.ts +51 -0
  186. package/lib/models/DocReaderWebclient/models/transaction-info.d.ts +42 -0
  187. package/lib/models/DocReaderWebclient/models/verification-result.d.ts +38 -0
  188. package/lib/models/DocReaderWebclient/models/verified-field-map.d.ts +63 -0
  189. package/lib/models/DocReaderWebclient/models/visibility.d.ts +23 -0
  190. package/lib/services/DebugService.d.ts +4 -0
  191. package/lib/services/DeviceOrientationService.d.ts +18 -0
  192. package/lib/services/DocumentReaderProcessor.d.ts +43 -0
  193. package/lib/services/DocumentReaderService.d.ts +30 -32
  194. package/lib/services/FaceLivenessService.d.ts +43 -19
  195. package/lib/services/FaceService.d.ts +36 -8
  196. package/lib/services/StreamRecorderService.d.ts +24 -0
  197. package/lib/types.d.ts +261 -119
  198. package/lib/utils.d.ts +17 -52
  199. package/lib/web-components/CameraSnapshot.d.ts +14 -0
  200. package/lib/web-components/DocumentReader.d.ts +14 -0
  201. package/lib/web-components/FaceDetection.d.ts +3 -3
  202. package/lib/web-components/FaceLiveness.d.ts +7 -4
  203. package/lib/web-components/FullScreenContainer.d.ts +1 -1
  204. package/package.json +59 -62
  205. package/lib/common/InstructionIconFaceDetection.d.ts +0 -5
  206. package/lib/common/InstructionIconFaceLiveness.d.ts +0 -5
  207. package/lib/common/NoGlareIcon.d.ts +0 -5
  208. package/lib/common/NoSmilingIcon.d.ts +0 -5
  209. package/lib/components/InstructionScreen.d.ts +0 -9
  210. package/lib/components/RetryScreen.d.ts +0 -7
  211. package/lib/hooks/useDebounce.d.ts +0 -2
  212. package/lib/hooks/useInterval.d.ts +0 -3
  213. package/lib/services/WasmFeatureDetectService.d.ts +0 -4
  214. package/lib/web-components.d.ts +0 -47
@@ -1,38 +1,30 @@
1
- export declare enum eFL_Message {
2
- eFL_Message_Empty = 0,
3
- eFL_Message_FitFaceIntoOval = 1,
4
- eFL_Message_LookStraight = 2,
5
- eFL_Message_MoveCloser = 3,
6
- eFL_Message_MoveAway = 4,
7
- eFL_Message_HoldStill = 5,
8
- eFL_Message_ShowOnlyOneFace = 6
1
+ export declare enum FaceMessage {
2
+ Empty = 0,
3
+ FitFaceIntoOval = 1,
4
+ LookStraight = 2,
5
+ MoveCloser = 3,
6
+ MoveAway = 4,
7
+ HoldStill = 5,
8
+ ShowOnlyOneFace = 6,
9
+ TurnHead = 7
9
10
  }
10
- export declare enum eFL_ProcessingStage {
11
- eFL_ProcessingStage_Far = 0,
12
- eFL_ProcessingStage_Near = 1
11
+ export declare enum FaceProcessingStage {
12
+ Far = 0,
13
+ Near = 1
13
14
  }
14
- export declare enum eFL_MessageStyle {
15
- eFL_MessageStyle_Normal = 0,
16
- eFL_MessageStyle_Alarm = 1
15
+ export declare enum FaceStatus {
16
+ Finished = 0,
17
+ InProcess = 1,
18
+ Timeout = 2,
19
+ Failed = 3,
20
+ Stop_Session = 4
17
21
  }
18
- export declare enum eFL_Status {
19
- eFL_Status_Finished = 0,
20
- eFL_Status_InProcess = 1,
21
- eFL_Status_Timeout = 2,
22
- eFL_Status_Failed = 3
22
+ export declare enum ImageOutputType {
23
+ UINT = "UINT",
24
+ BASE64 = "BASE64",
25
+ UINT_AND_BASE64 = "UINT_AND_BASE64"
23
26
  }
24
- export declare enum eFL_Commands {
25
- eFL_Command_Init = 0,
26
- eFL_Command_StartNewSession = 1,
27
- eFL_Command_Process = 2,
28
- eFL_Command_Free = 3
29
- }
30
- export declare enum webCameraComponentMode {
31
- ONLY_UINT = 0,
32
- ONLY_RAW = 1,
33
- UINT_AND_RAW = 2
34
- }
35
- export declare enum faceEventActions {
27
+ export declare enum FaceEventActions {
36
28
  ELEMENT_VISIBLE = "ELEMENT_VISIBLE",
37
29
  PRESS_START_BUTTON = "PRESS_START_BUTTON",
38
30
  PRESS_RETRY_BUTTON = "PRESS_RETRY_BUTTON",
@@ -40,38 +32,34 @@ export declare enum faceEventActions {
40
32
  PROCESS_FINISHED = "PROCESS_FINISHED",
41
33
  SERVICE_INITIALIZED = "SERVICE_INITIALIZED"
42
34
  }
43
- export declare enum documentEventActions {
35
+ export declare enum DocumentEventActions {
44
36
  ELEMENT_VISIBLE = "ELEMENT_VISIBLE",
45
37
  PRESS_CAMERA_BUTTON = "PRESS_CAMERA_BUTTON",
46
38
  PRESS_FILE_BUTTON = "PRESS_FILE_BUTTON",
47
39
  PRESS_RETRY_BUTTON = "PRESS_RETRY_BUTTON",
48
40
  PRESS_SKIP_BUTTON = "PRESS_SKIP_BUTTON",
49
41
  CLOSE = "CLOSE",
42
+ CAMERA_PROCESS_CLOSED = "CAMERA_PROCESS_CLOSED",
43
+ CAMERA_PROCESS_STARTED = "CAMERA_PROCESS_STARTED",
44
+ FILE_PROCESS_STARTED = "FILE_PROCESS_STARTED",
50
45
  PROCESS_FINISHED = "PROCESS_FINISHED",
51
46
  SERVICE_INITIALIZED = "SERVICE_INITIALIZED"
52
47
  }
53
- export declare enum faceCaptureStatus {
54
- ACCURATE = "faceCaptureStatus.ACCURATE",
55
- NOFACE = "faceCaptureStatus.NOFACE",
56
- SMALL = "faceCaptureStatus.SMALL",
57
- HUGE = "faceCaptureStatus.HUGE",
58
- PROCESSING = "faceCaptureStatus.PROCESSING",
59
- NOT_CENTERED = "faceCaptureStatus.NOT_CENTERED"
60
- }
61
- export declare enum documentReaderCaptureStatus {
62
- FINDING = "documentReaderStatus.FINDING",
63
- PROCESSING = "documentReaderStatus.PROCESSING",
64
- SUCCESS = "documentReaderStatus.SUCCESS",
65
- FAILED = "documentReaderStatus.FAILED",
66
- RESOLUTION = "documentReaderStatus.RESOLUTION",
67
- GLARE = "documentReaderStatus.GLARE",
68
- HOLD = "documentReaderStatus.HOLD",
69
- START_DETECTION = "documentReaderStatus.START_DETECTION",
70
- START_NEXT_PAGE = "documentReaderStatus.START_NEXT_PAGE",
71
- SNAPSHOT = "documentReaderStatus.SNAPSHOT",
72
- TIMEOUT = "documentReaderStatus.TIMEOUT"
48
+ export declare enum DocumentCaptureStatus {
49
+ FINDING = "DocumentCaptureStatus.FINDING",
50
+ PROCESSING = "DocumentCaptureStatus.PROCESSING",
51
+ SUCCESS = "DocumentCaptureStatus.SUCCESS",
52
+ FAILED = "DocumentCaptureStatus.FAILED",
53
+ RESOLUTION = "DocumentCaptureStatus.RESOLUTION",
54
+ GLARE = "DocumentCaptureStatus.GLARE",
55
+ FOCUS = "DocumentCaptureStatus.FOCUS",
56
+ HOLD = "DocumentCaptureStatus.HOLD",
57
+ START_DETECTION = "DocumentCaptureStatus.START_DETECTION",
58
+ START_NEXT_PAGE = "DocumentCaptureStatus.START_NEXT_PAGE",
59
+ SNAPSHOT = "DocumentCaptureStatus.SNAPSHOT",
60
+ TIMEOUT = "DocumentCaptureStatus.TIMEOUT"
73
61
  }
74
- export declare enum eImageQualityCheckType {
62
+ export declare enum ImageQualityCheckType {
75
63
  IMAGE_GLARES = 0,
76
64
  IMAGE_FOCUS = 1,
77
65
  IMAGE_RESOLUTION = 2,
@@ -82,88 +70,156 @@ export declare enum eImageQualityCheckType {
82
70
  PORTRAIT = 7,
83
71
  HANDWRITTEN = 8
84
72
  }
85
- export declare enum responseCode {
73
+ export declare enum ResponseCode {
86
74
  EMPTY = -1,
87
75
  ERROR = 0,
88
76
  OK = 1
89
77
  }
90
- export declare enum eCheckResult {
78
+ export declare enum CheckResult {
91
79
  ERROR = 0,
92
80
  OK = 1,
93
81
  WAS_NOT_DONE = 2
94
82
  }
95
- export declare enum streamStatus {
96
- PREPARING = "streamStatus.PREPARING",
97
- REQUESTING = "streamStatus.REQUESTING",
98
- READY = "streamStatus.READY",
99
- PLAY = "streamStatus.PLAY",
100
- UNKNOWN_ERROR = "streamStatus.UNKNOWN_ERROR",
101
- PERMISSION_DENIED = "streamStatus.PERMISSION_DENIED",
102
- NO_CAMERA = "streamStatus.NO_CAMERA",
103
- INCORRECT_CAMERA_ID = "streamStatus.INCORRECT_CAMERA_ID"
83
+ export declare enum StreamStatus {
84
+ PREPARING = "StreamStatus.PREPARING",
85
+ REQUESTING = "StreamStatus.REQUESTING",
86
+ READY = "StreamStatus.READY",
87
+ PLAY = "StreamStatus.PLAY",
88
+ UNKNOWN_ERROR = "StreamStatus.UNKNOWN_ERROR",
89
+ PERMISSION_DENIED = "StreamStatus.PERMISSION_DENIED",
90
+ NO_CAMERA = "StreamStatus.NO_CAMERA",
91
+ INCORRECT_CAMERA_ID = "StreamStatus.INCORRECT_CAMERA_ID"
104
92
  }
105
- export declare enum faceCaptureComplitionStatus {
106
- INSTRUCTION = "faceCaptureReducerStatus.INSTRUCTION",
107
- SUCCESS = "faceCaptureReducerStatus.SUCCESS",
108
- FAILED = "faceCaptureReducerStatus.FAILED",
109
- CAPTURING = "faceCaptureReducerStatus.CAPTURING",
110
- PROCESSING_REQUEST = "faceCaptureReducerStatus.PROCESSING_REQUEST",
111
- WASM_DEFAULT_ERROR = "faceCaptureReducerStatus.WASM_DEFAULT_ERROR",
112
- NOT_SUPPORTED_ERROR = "faceCaptureReducerStatus.NOT_SUPPORTED_ERROR",
113
- WASM_LICENSE_ERROR = "faceCaptureReducerStatus.WASM_LICENSE_ERROR",
114
- UNKNOWN_ERROR = "faceCaptureReducerStatus.UNKNOWN_ERROR"
93
+ export declare enum FaceAbortSessionStatus {
94
+ CHANGE_CAMERA = "FaceAbortSessionStatus.CHANGE_CAMERA",
95
+ DEVICE_ROTATE = "FaceAbortSessionStatus.DEVICE_ROTATE",
96
+ SESSION_TIMEOUT = "FaceAbortSessionStatus.TIMEOUT",
97
+ CLOSE_BUTTON = "FaceAbortSessionStatus.CLOSE_BUTTON",
98
+ UNKNOWN = "FaceAbortSessionStatus.UNKNOWN"
115
99
  }
116
- export declare enum documentReaderComplitionStatus {
117
- CHOOSE_INPUT_SOURCE = "documentReaderReducerStatus.CHOOSE_INPUT_SOURCE",
118
- CAMERA_PROCESSING = "documentReaderReducerStatus.CAMERA_PROCESSING",
119
- FILE_PROCESSING = "documentReaderReducerStatus.FILE_PROCESSING",
120
- API_PROCESSING = "documentReaderReducerStatus.API_PROCESSING",
121
- SUCCESS = "documentReaderReducerStatus.SUCCESS",
122
- FAILED = "documentReaderReducerStatus.FAILED",
123
- FILE_SIZE_ERROR = "documentReaderReducerStatus.FILE_SIZE_ERROR",
124
- WASM_DEFAULT_ERROR = "documentReaderReducerStatus.WASM_DEFAULT_ERROR",
125
- NOT_SUPPORTED_ERROR = "documentReaderReducerStatus.NOT_SUPPORTED_ERROR",
126
- WASM_LICENSE_ERROR = "documentReaderReducerStatus.WASM_LICENSE_ERROR",
127
- INCORRECT_FILE_ERROR = "documentReaderReducerStatus.INCORRECT_FILE_ERROR",
128
- UNKNOWN_ERROR = "documentReaderReducerStatus.UNKNOWN_ERROR"
100
+ export declare enum FaceCompletionStatus {
101
+ RESTART = "FaceCompletionStatus.RESTART",
102
+ ABORT_PROCESSING = "FaceCompletionStatus.ABORT_PROCESSING",
103
+ INSTRUCTION = "FaceCompletionStatus.INSTRUCTION",
104
+ SUCCESS = "FaceCompletionStatus.SUCCESS",
105
+ FAILED = "FaceCompletionStatus.FAILED",
106
+ CAPTURING = "FaceCompletionStatus.CAPTURING",
107
+ PROCESSING_REQUEST = "FaceCompletionStatus.PROCESSING_REQUEST",
108
+ WASM_DEFAULT_ERROR = "FaceCompletionStatus.WASM_DEFAULT_ERROR",
109
+ NOT_SUPPORTED_ERROR = "FaceCompletionStatus.NOT_SUPPORTED_ERROR",
110
+ WASM_LICENSE_ERROR = "FaceCompletionStatus.WASM_LICENSE_ERROR",
111
+ UNKNOWN_ERROR = "FaceCompletionStatus.UNKNOWN_ERROR",
112
+ NO_CAMERA_ERROR = "FaceCompletionStatus.NO_CAMERA_ERROR",
113
+ PERMISSION_DENIED_ERROR = "FaceCompletionStatus.PERMISSION_DENIED_ERROR",
114
+ INCORRECT_CAMERA_ID_ERROR = "FaceCompletionStatus.INCORRECT_CAMERA_ID_ERROR"
129
115
  }
130
- export declare enum cameraFacingMode {
131
- USER = "user",
132
- ENVIRONMENT = "environment"
116
+ export declare enum DocumentCompletionStatus {
117
+ CHOOSE_INPUT_SOURCE = "DocumentCompletionStatus.CHOOSE_INPUT_SOURCE",
118
+ CAMERA_PROCESSING = "DocumentCompletionStatus.CAMERA_PROCESSING",
119
+ FILE_PROCESSING = "DocumentCompletionStatus.FILE_PROCESSING",
120
+ API_PROCESSING = "DocumentCompletionStatus.API_PROCESSING",
121
+ SUCCESS = "DocumentCompletionStatus.SUCCESS",
122
+ FAILED = "DocumentCompletionStatus.FAILED",
123
+ FILE_SIZE_ERROR = "DocumentCompletionStatus.FILE_SIZE_ERROR",
124
+ WASM_DEFAULT_ERROR = "DocumentCompletionStatus.WASM_DEFAULT_ERROR",
125
+ NOT_SUPPORTED_ERROR = "DocumentCompletionStatus.NOT_SUPPORTED_ERROR",
126
+ WASM_LICENSE_ERROR = "DocumentCompletionStatus.WASM_LICENSE_ERROR",
127
+ INCORRECT_FILE_ERROR = "DocumentCompletionStatus.INCORRECT_FILE_ERROR",
128
+ UNKNOWN_ERROR = "DocumentCompletionStatus.UNKNOWN_ERROR",
129
+ TIMEOUT = "DocumentCompletionStatus.TIMEOUT"
130
+ }
131
+ export declare enum CameraFacingMode {
132
+ user = "user",
133
+ environment = "environment"
133
134
  }
134
135
  export declare enum ProcessingStatus {
135
136
  NOT_FINISHED = 0,
136
137
  FINISHED = 1,
137
138
  TIMEOUT = 2
138
139
  }
140
+ export declare enum ObjectFit {
141
+ contain = "contain",
142
+ cover = "cover"
143
+ }
144
+ export declare enum InternalScenarios {
145
+ MrzAndLocate = "MrzAndLocate",
146
+ MrzOrLocate = "MrzOrLocate",
147
+ Mrz = "Mrz",
148
+ Locate = "Locate"
149
+ }
150
+ export declare enum ErrorTypes {
151
+ WASM_ERROR = "WASM_ERROR",
152
+ WASM_LICENSE = "WASM_LICENSE",
153
+ FILE_SIZE = "FILE_SIZE",
154
+ INCORRECT_FILE = "INCORRECT_FILE",
155
+ UNKNOWN_ERROR = "UNKNOWN_ERROR",
156
+ NOT_SUPPORTED = "NOT_SUPPORTED",
157
+ CAMERA_UNKNOWN_ERROR = "CAMERA_UNKNOWN_ERROR",
158
+ CAMERA_PERMISSION_DENIED = "CAMERA_PERMISSION_DENIED",
159
+ NO_CAMERA = "NO_CAMERA",
160
+ INCORRECT_CAMERA_ID = "INCORRECT_CAMERA_ID",
161
+ CONNECTION_ERROR = "CONNECTION_ERROR",
162
+ LANDSCAPE_MODE_RESTRICTED = "LANDSCAPE_MODE_RESTRICTED",
163
+ NOT_PREPARED = "NOT_PREPARED",
164
+ NOT_INITIALIZED = "NOT_INITIALIZED",
165
+ IN_PROCESS = "IN_PROCESS",
166
+ ALREADY_PREPARED = "ALREADY_PREPARED",
167
+ ALREADY_INITIALIZED = "ALREADY_INITIALIZED"
168
+ }
169
+ export declare enum Method {
170
+ prepare = 12000,
171
+ initialize = 12100,
172
+ process = 12101,
173
+ processImage = 12104,
174
+ startNewPage = 12106,
175
+ startNewDocument = 12105
176
+ }
177
+ export declare enum MediaElementReadyState {
178
+ HAVE_NOTHING = 0,
179
+ HAVE_METADATA = 1,
180
+ HAVE_CURRENT_DATA = 2,
181
+ HAVE_FUTURE_DATA = 3,
182
+ HAVE_ENOUGH_DATA = 4
183
+ }
184
+ export declare enum Target {
185
+ stdout = "stdout",
186
+ stderr = "stderr",
187
+ custom = "custom",
188
+ gl = "gl",
189
+ init = "worker-init"
190
+ }
191
+ export declare enum logLevels {
192
+ OFF = 0,
193
+ LOG = 1,
194
+ INFO = 2,
195
+ WARN = 3,
196
+ ERROR = 4
197
+ }
198
+ export declare enum DirectionType {
199
+ Rtl = "rtl",
200
+ Ltr = "ltr"
201
+ }
139
202
  export declare const FACE_LIVENESS_EVENT = "face-liveness";
140
203
  export declare const FACE_CAPTURE_EVENT = "face-capture";
141
204
  export declare const DOCUMENT_READER_EVENT = "document-reader";
142
205
  export declare const CAMERA_SNAPSHOT_EVENT = "camera-snapshot";
143
- export declare const MINIMUM_DOCUMENT_AREA_PERCENT = 20;
144
206
  export declare const PERCENT_FRAME_OFFSET = 10;
145
- export declare const HEIGHT_ACCURACY_COEF = 0.45;
146
- export declare const WIDTH_ACCURACY_COEF = 0.93;
147
- export declare const FRAME_RATIO = 1.4;
148
- export declare const FACE_POSITION_ACCURACY = 0.1;
149
- export declare const SQUARE_RATIO_SMALL_X1 = 0.75;
150
- export declare const SQUARE_RATIO_HUGE_X1 = 0.9;
151
- export declare const SQUARE_RATIO_SMALL_X2 = 0.68;
152
- export declare const SQUARE_RATIO_HUGE_X2 = 0.8;
153
- export declare const CAPTURE_RATE_MS = 30;
154
- export declare const SUCCESS_CAPTURE_COUNT = 15;
155
- export declare const FRAME_SCALE_X1 = 0.8;
156
- export declare const FRAME_SCALE_X2 = 1.35;
207
+ export declare const FLIP_TIMEOUT = 3000;
208
+ export declare const FRAME_STROKE_WIDTH_LIVENESS_DETECTION = 3;
157
209
  export declare const RESULT_TIMEOUT_MS = 2000;
158
- export declare const documentReaderCommandCode: {
159
- PROCESS: number;
160
- PROCESS_IMAGE: number;
161
- START_NEW_DOCUMENT: number;
162
- START_NEW_PAGE: number;
163
- };
210
+ export declare const NEW_INDEX = 1;
211
+ export declare const MAX_FILES_SIZE = 25000000;
212
+ export declare const RESIZE_VALUE = 1920;
213
+ export declare const MAX_BROWSER_SUPPORTED_RESOLUTION = 536870912;
164
214
  export declare const PERMISSION_DENIED_ERROR_NAME = "NotAllowedError";
165
215
  export declare const FACE_BACKEND_URL = "https://faceapi.regulaforensics.com";
166
- export declare const cameraResolution: {
216
+ export declare const DEFAULT_COMPONENT_LANGUAGE = "en";
217
+ export declare const RTL_LANGUAGES: string[];
218
+ export declare const DEFAULT_CAMERA_ID = 0;
219
+ export declare const OVAL_TRANSITION_TIME = 200;
220
+ export declare const CAMERAS_COUNT = 1;
221
+ export declare const FIREFOX_SWITCH_CAMERA_DELAY = 500;
222
+ export declare const CameraResolution: {
167
223
  VGA: {
168
224
  width: number;
169
225
  height: number;
@@ -176,18 +232,42 @@ export declare const cameraResolution: {
176
232
  width: number;
177
233
  height: number;
178
234
  };
235
+ SQUARE: {
236
+ width: number;
237
+ height: number;
238
+ };
179
239
  };
180
- export declare const backCameraKeywords: string[];
181
- export declare const faceErrorCodes: {
182
- 231: {
240
+ export declare const BackCameraKeywords: string[];
241
+ export declare const FaceErrorCodes: {
242
+ 199: {
183
243
  name: string;
184
244
  type: number;
185
245
  };
186
- 232: {
246
+ 201: {
187
247
  name: string;
188
248
  type: number;
189
249
  };
190
- 245: {
250
+ 202: {
251
+ name: string;
252
+ type: number;
253
+ };
254
+ 203: {
255
+ name: string;
256
+ type: number;
257
+ };
258
+ 224: {
259
+ name: string;
260
+ type: number;
261
+ };
262
+ 227: {
263
+ name: string;
264
+ type: number;
265
+ };
266
+ 228: {
267
+ name: string;
268
+ type: number;
269
+ };
270
+ 229: {
191
271
  name: string;
192
272
  type: number;
193
273
  };
@@ -195,6 +275,14 @@ export declare const faceErrorCodes: {
195
275
  name: string;
196
276
  type: number;
197
277
  };
278
+ 231: {
279
+ name: string;
280
+ type: number;
281
+ };
282
+ 232: {
283
+ name: string;
284
+ type: number;
285
+ };
198
286
  233: {
199
287
  name: string;
200
288
  type: number;
@@ -211,6 +299,14 @@ export declare const faceErrorCodes: {
211
299
  name: string;
212
300
  type: number;
213
301
  };
302
+ 237: {
303
+ name: string;
304
+ type: number;
305
+ };
306
+ 238: {
307
+ name: string;
308
+ type: number;
309
+ };
214
310
  239: {
215
311
  name: string;
216
312
  type: number;
@@ -231,48 +327,52 @@ export declare const faceErrorCodes: {
231
327
  name: string;
232
328
  type: number;
233
329
  };
330
+ 245: {
331
+ name: string;
332
+ type: number;
333
+ };
334
+ 246: {
335
+ name: string;
336
+ type: number;
337
+ };
338
+ 247: {
339
+ name: string;
340
+ type: number;
341
+ };
342
+ 248: {
343
+ name: string;
344
+ type: number;
345
+ };
346
+ 249: {
347
+ name: string;
348
+ type: number;
349
+ };
234
350
  };
235
- export declare enum WebComponentsError {
236
- WASM_ERROR = "WASM_ERROR",
237
- WASM_LICENSE = "WASM_LICENSE",
238
- FILE_SIZE = "FILE_SIZE",
239
- INCORRECT_FILE = "INCORRECT_FILE",
240
- UNKNOWN_ERROR = "UNKNOWN_ERROR",
241
- NOT_SUPPORTED = "NOT_SUPPORTED",
242
- CAMERA_UNKNOWN_ERROR = "CAMERA_UNKNOWN_ERROR",
243
- CAMERA_PERMISSION_DENIED = "CAMERA_PERMISSION_DENIED",
244
- NO_CAMERA = "NO_CAMERA",
245
- CONNECTION_ERROR = "CONNECTION_ERROR",
246
- LANDSCAPE_MODE_RESTRICTED = "LANDSCAPE_MODE_RESTRICTED"
247
- }
248
- export declare const webComponentErrorByStreamStatus: {
249
- "streamStatus.UNKNOWN_ERROR": WebComponentsError;
250
- "streamStatus.PERMISSION_DENIED": WebComponentsError;
251
- "streamStatus.NO_CAMERA": WebComponentsError;
351
+ export declare const FACER_NO_LICENSE = 200;
352
+ export declare const WebComponentErrorByStreamStatus: {
353
+ "StreamStatus.UNKNOWN_ERROR": ErrorTypes;
354
+ "StreamStatus.PERMISSION_DENIED": ErrorTypes;
355
+ "StreamStatus.NO_CAMERA": ErrorTypes;
356
+ "StreamStatus.INCORRECT_CAMERA_ID": ErrorTypes;
252
357
  };
253
- export declare const documentReaderStatusByError: {
254
- FILE_SIZE: documentReaderComplitionStatus;
255
- WASM_ERROR: documentReaderComplitionStatus;
256
- NOT_SUPPORTED: documentReaderComplitionStatus;
257
- WASM_LICENSE: documentReaderComplitionStatus;
258
- INCORRECT_FILE: documentReaderComplitionStatus;
358
+ export declare const DocumentReaderStatusByError: {
359
+ FILE_SIZE: DocumentCompletionStatus;
360
+ WASM_ERROR: DocumentCompletionStatus;
361
+ NOT_SUPPORTED: DocumentCompletionStatus;
362
+ WASM_LICENSE: DocumentCompletionStatus;
363
+ INCORRECT_FILE: DocumentCompletionStatus;
259
364
  };
260
- export declare const faceLivenessStatusByError: {
261
- WASM_ERROR: faceCaptureComplitionStatus;
262
- NOT_SUPPORTED: faceCaptureComplitionStatus;
263
- WASM_LICENSE: faceCaptureComplitionStatus;
365
+ export declare const DocumentReaderFinishStatusByCaptureStatus: {
366
+ "DocumentCaptureStatus.SUCCESS": DocumentCompletionStatus;
367
+ "DocumentCaptureStatus.TIMEOUT": DocumentCompletionStatus;
368
+ "DocumentCaptureStatus.FAILED": DocumentCompletionStatus;
264
369
  };
265
- export declare enum Method {
266
- onRuntimeInitialized = "onRuntimeInitialized",
267
- processImage = "processImage",
268
- process = "process",
269
- startNewPage = "startNewPage",
270
- startNewDocument = "startNewDocument",
271
- initializeService = "initializeService",
272
- close = "close",
273
- stderr = "strerr"
274
- }
275
- export declare const documentSupportedBrowsers: {
370
+ export declare const FaceLivenessStatusByError: {
371
+ WASM_ERROR: FaceCompletionStatus;
372
+ NOT_SUPPORTED: FaceCompletionStatus;
373
+ WASM_LICENSE: FaceCompletionStatus;
374
+ };
375
+ export declare const DocumentSupportedBrowsers: {
276
376
  iOS: {
277
377
  Chrome: number;
278
378
  Firefox: number;
@@ -310,7 +410,7 @@ export declare const documentSupportedBrowsers: {
310
410
  'Samsung Browser': number;
311
411
  };
312
412
  };
313
- export declare const faceSupportedBrowsers: {
413
+ export declare const FaceSupportedBrowsers: {
314
414
  iOS: {
315
415
  Chrome: number;
316
416
  Firefox: number;
@@ -348,19 +448,221 @@ export declare const faceSupportedBrowsers: {
348
448
  'Samsung Browser': number;
349
449
  };
350
450
  };
351
- export declare enum logLevels {
352
- OFF = 0,
353
- LOG = 1,
354
- INFO = 2,
355
- WARN = 3,
356
- ERROR = 4
357
- }
358
- export declare type DirectionType = 'rtl' | 'ltr';
359
- export declare const DEFAULT_CAMERA_ID = 0;
360
- export declare enum MediaElementReadyState {
361
- HAVE_NOTHING = 0,
362
- HAVE_METADATA = 1,
363
- HAVE_CURRENT_DATA = 2,
364
- HAVE_FUTURE_DATA = 3,
365
- HAVE_ENOUGH_DATA = 4
451
+ export declare const DocumentScenarioFrameParams: {
452
+ scenario: ({
453
+ caption: string;
454
+ desc: string;
455
+ frameKWHDoublePageSpreadLandscape: string;
456
+ frameKWHDoublePageSpreadPortrait: string;
457
+ frameKWHLandscape: string;
458
+ frameKWHPortrait: string;
459
+ frameOrientation: number;
460
+ multiPageOff: number;
461
+ name: string;
462
+ seriesProcessMode: number;
463
+ barcodeExt?: undefined;
464
+ faceExt?: undefined;
465
+ manualCrop?: undefined;
466
+ UVTorch?: undefined;
467
+ } | {
468
+ barcodeExt: number;
469
+ caption: string;
470
+ desc: string;
471
+ frameKWHDoublePageSpreadLandscape: number;
472
+ frameKWHDoublePageSpreadPortrait: number;
473
+ frameKWHLandscape: number;
474
+ frameKWHPortrait: number;
475
+ frameOrientation: number;
476
+ multiPageOff: number;
477
+ name: string;
478
+ seriesProcessMode: number;
479
+ faceExt?: undefined;
480
+ manualCrop?: undefined;
481
+ UVTorch?: undefined;
482
+ } | {
483
+ caption: string;
484
+ desc: string;
485
+ faceExt: number;
486
+ frameKWHDoublePageSpreadLandscape: string;
487
+ frameKWHDoublePageSpreadPortrait: string;
488
+ frameKWHLandscape: string;
489
+ frameKWHPortrait: string;
490
+ frameOrientation: number;
491
+ manualCrop: number;
492
+ name: string;
493
+ seriesProcessMode: number;
494
+ multiPageOff?: undefined;
495
+ barcodeExt?: undefined;
496
+ UVTorch?: undefined;
497
+ } | {
498
+ barcodeExt: number;
499
+ caption: string;
500
+ desc: string;
501
+ frameKWHDoublePageSpreadLandscape: string;
502
+ frameKWHDoublePageSpreadPortrait: string;
503
+ frameKWHLandscape: string;
504
+ frameKWHPortrait: string;
505
+ frameOrientation: number;
506
+ multiPageOff: number;
507
+ name: string;
508
+ seriesProcessMode: number;
509
+ faceExt?: undefined;
510
+ manualCrop?: undefined;
511
+ UVTorch?: undefined;
512
+ } | {
513
+ caption: string;
514
+ desc: string;
515
+ faceExt: number;
516
+ frameKWHDoublePageSpreadLandscape: string;
517
+ frameKWHDoublePageSpreadPortrait: string;
518
+ frameKWHLandscape: string;
519
+ frameKWHPortrait: string;
520
+ frameOrientation: number;
521
+ manualCrop: number;
522
+ multiPageOff: number;
523
+ name: string;
524
+ seriesProcessMode: number;
525
+ barcodeExt?: undefined;
526
+ UVTorch?: undefined;
527
+ } | {
528
+ barcodeExt: number;
529
+ caption: string;
530
+ desc: string;
531
+ faceExt: number;
532
+ frameKWHDoublePageSpreadLandscape: string;
533
+ frameKWHDoublePageSpreadPortrait: string;
534
+ frameKWHLandscape: string;
535
+ frameKWHPortrait: string;
536
+ frameOrientation: number;
537
+ manualCrop: number;
538
+ multiPageOff: number;
539
+ name: string;
540
+ seriesProcessMode: number;
541
+ UVTorch?: undefined;
542
+ } | {
543
+ caption: string;
544
+ desc: string;
545
+ frameKWHDoublePageSpreadLandscape: string;
546
+ frameKWHDoublePageSpreadPortrait: string;
547
+ frameKWHLandscape: string;
548
+ frameKWHPortrait: string;
549
+ frameOrientation: number;
550
+ manualCrop: number;
551
+ name: string;
552
+ seriesProcessMode: number;
553
+ multiPageOff?: undefined;
554
+ barcodeExt?: undefined;
555
+ faceExt?: undefined;
556
+ UVTorch?: undefined;
557
+ } | {
558
+ barcodeExt: number;
559
+ caption: string;
560
+ desc: string;
561
+ faceExt: number;
562
+ frameKWHDoublePageSpreadLandscape: string;
563
+ frameKWHDoublePageSpreadPortrait: string;
564
+ frameKWHLandscape: string;
565
+ frameKWHPortrait: string;
566
+ frameOrientation: number;
567
+ manualCrop: number;
568
+ name: string;
569
+ seriesProcessMode: number;
570
+ multiPageOff?: undefined;
571
+ UVTorch?: undefined;
572
+ } | {
573
+ caption: string;
574
+ desc: string;
575
+ frameKWHDoublePageSpreadLandscape: string;
576
+ frameKWHDoublePageSpreadPortrait: string;
577
+ frameKWHLandscape: string;
578
+ frameKWHPortrait: string;
579
+ frameOrientation: number;
580
+ manualCrop: number;
581
+ multiPageOff: number;
582
+ name: string;
583
+ seriesProcessMode: number;
584
+ barcodeExt?: undefined;
585
+ faceExt?: undefined;
586
+ UVTorch?: undefined;
587
+ } | {
588
+ caption: string;
589
+ desc: string;
590
+ frameKWHDoublePageSpreadLandscape: number;
591
+ frameKWHDoublePageSpreadPortrait: number;
592
+ frameKWHLandscape: number;
593
+ frameKWHPortrait: number;
594
+ frameOrientation: number;
595
+ multiPageOff: number;
596
+ name: string;
597
+ seriesProcessMode: number;
598
+ barcodeExt?: undefined;
599
+ faceExt?: undefined;
600
+ manualCrop?: undefined;
601
+ UVTorch?: undefined;
602
+ } | {
603
+ UVTorch: number;
604
+ caption: string;
605
+ desc: string;
606
+ frameKWHDoublePageSpreadLandscape: number;
607
+ frameKWHDoublePageSpreadPortrait: number;
608
+ frameKWHLandscape: number;
609
+ frameKWHPortrait: number;
610
+ frameOrientation: number;
611
+ name: string;
612
+ multiPageOff?: undefined;
613
+ seriesProcessMode?: undefined;
614
+ barcodeExt?: undefined;
615
+ faceExt?: undefined;
616
+ manualCrop?: undefined;
617
+ })[];
618
+ };
619
+ export declare const CIRCLE_ROTATE_SHIFT = 22.5;
620
+ export declare const MIRROR_ANIMATION_TARGETS: number[];
621
+ export declare const ANIMATION_TIMEOUT = 1000;
622
+ export declare const ANIMATION_MESSAGE: FaceMessage[];
623
+ export declare const STATIC_ANIMATION_MESSAGE: FaceMessage[];
624
+ export declare const DocumentReaderRecognizerDefaultRequest: {
625
+ processParam: {
626
+ scenario: InternalScenarios;
627
+ returnUncroppedImage: boolean;
628
+ multipageProcessing: boolean;
629
+ timeoutFromFirstDetect: number;
630
+ timeoutFromFirstDocType: number;
631
+ imageQa: {
632
+ expectedPass: string[];
633
+ dpiThreshold: number;
634
+ glaresCheck: boolean;
635
+ glaresCheckParams: {
636
+ imgMarginPart: number;
637
+ maxGlaringPart: number;
638
+ };
639
+ };
640
+ };
641
+ };
642
+ export declare const DocumentReaderImageDefaultRequest: {
643
+ processParam: {
644
+ scenario: InternalScenarios;
645
+ returnUncroppedImage: boolean;
646
+ };
647
+ };
648
+ export declare const SDKDocumentReaderRecognizerDefaultRequest: {
649
+ processParam: {
650
+ scenario: InternalScenarios;
651
+ returnUncroppedImage: boolean;
652
+ timeoutFromFirstDetect: number;
653
+ timeoutFromFirstDocType: number;
654
+ };
655
+ };
656
+ export declare const SDKDocumentReaderImageDefaultRequest: {
657
+ processParam: {
658
+ scenario: InternalScenarios;
659
+ returnUncroppedImage: boolean;
660
+ };
661
+ };
662
+ export declare const AcceptedFiles: string[];
663
+ export declare enum VideoFinishStatus {
664
+ aborted = "liveness_aborted",
665
+ timeout = "liveness_timeout",
666
+ default = "liveness_default",
667
+ inactive = "liveness_inactive"
366
668
  }