@regulaforensics/vp-frontend-document-components 9.6.2924-rc → 9.6.2925-nightly
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/dist/index.d.ts +6 -1
- package/dist/main.iife.js +6 -6
- package/dist/main.js +164 -93
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -255,6 +255,7 @@ export declare class DocumentReaderService {
|
|
|
255
255
|
imageProcessParam: ImageProcessingRequest;
|
|
256
256
|
recognizeListener: RecognizeListener | null;
|
|
257
257
|
workerPath: string;
|
|
258
|
+
pageIdx: number | null;
|
|
258
259
|
get processingListener(): TProcessingListener | null;
|
|
259
260
|
set processingListener(listener: TProcessingListener | null);
|
|
260
261
|
get initializeListener(): TInitializeListener | null;
|
|
@@ -456,7 +457,9 @@ declare interface IOptions {
|
|
|
456
457
|
|
|
457
458
|
declare type Labels = 'preparingCamera' | 'timeout' | 'noFocus' | 'somethingWentWrong' | 'incorrectCameraId' | 'done' | 'cameraUnavailable' | 'versionNotSupported' | 'httpNotSupported' | 'insecurePageContext' | 'badLicense' | 'fileCorrupt' | 'largeFile' | 'placeDocumentIntoFrame' | 'holdDocumentStraight' | 'glaresOnDocument' | 'tryAgain' | 'noCameraAvailable' | 'positionDocumentCenter' | 'uploadPhoto' | 'moveCloser' | 'keepDeviceStill' | 'camera' | 'switchToMobile' | 'openPhoneCamera' | 'pleaseWait' | 'mobileDevice' | 'verifyYourIdentity' | 'fromCameraFilesMobileDesktop' | 'fromCameraFilesDesktop' | 'fromCameraMobileDesktop' | 'fromFilesMobileDesktop' | 'fromCameraDesktop' | 'fromFilesDesktop' | 'fromMobileDesktop' | 'fromCameraGalleryMobile' | 'fromGalleryMobile' | 'gallery' | 'files' | 'returnToComputer' | 'documentCaptured' | 'or' | 'continueInBrowser' | 'skip' | 'flipTheDocument' | 'tiltTheDocument';
|
|
458
459
|
|
|
459
|
-
declare type
|
|
460
|
+
declare type LanguageCodes = 'ru' | 'en' | 'de' | 'pl' | 'it' | 'hu' | 'zh' | 'sk' | 'uk' | 'fr' | 'es' | 'pt' | 'ar' | 'nl' | 'id' | 'vi' | 'ko' | 'ms' | 'ro' | 'el' | 'tr' | 'ja' | 'cs' | 'th' | 'hi' | 'bn' | 'he' | 'fi' | 'sv' | 'da' | 'hr' | 'no' | 'uz' | 'hy' | 'ky' | 'ku' | 'tg';
|
|
461
|
+
|
|
462
|
+
declare type Languages = LocalCodes | LanguageCodes;
|
|
460
463
|
|
|
461
464
|
export declare type License = {
|
|
462
465
|
license: {
|
|
@@ -476,6 +479,8 @@ export declare interface LivenessData {
|
|
|
476
479
|
lightType: Array<Light>;
|
|
477
480
|
}
|
|
478
481
|
|
|
482
|
+
declare type LocalCodes = 'ru-RU' | 'en-US' | 'de-DE' | 'pl-PL' | 'it-IT' | 'hu-HU' | 'zh-Hans' | 'zh-Hant' | 'sk-SK' | 'uk-UA' | 'fr-FR' | 'es-ES' | 'pt-PT' | 'ar-AE' | 'nl-NL' | 'id-ID' | 'vi-VN' | 'ko-KR' | 'ms-MY' | 'ro-RO' | 'el-GR' | 'tr-TR' | 'ja-JP' | 'cs-CZ' | 'th-TH' | 'hi-IN' | 'bn-BD' | 'he-IL' | 'fi-FI' | 'sv-SE' | 'da-DK' | 'hr-HR' | 'no-NO' | 'uz-Latn' | 'hy-AM' | 'ky-KG' | 'ku-Arab' | 'tg-TJ';
|
|
483
|
+
|
|
479
484
|
export declare type Locales = Languages | string;
|
|
480
485
|
|
|
481
486
|
export declare const Logger: Logger_2;
|