@regulaforensics/vp-frontend-face-components 8.4.2343-nightly → 8.4.2345-rc
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 +1 -164
- package/dist/main.iife.js +20 -20
- package/dist/main.js +2378 -2874
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -49,37 +49,6 @@ export declare interface DetailEvent<A, R> {
|
|
|
49
49
|
data: CustomEventDataType<R> | null;
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
-
declare type EnrollConfig = {
|
|
53
|
-
person: EnrollPersonConfig;
|
|
54
|
-
search?: EnrollSearchConfig;
|
|
55
|
-
};
|
|
56
|
-
|
|
57
|
-
declare type EnrollPersonConfig = {
|
|
58
|
-
name?: string;
|
|
59
|
-
externalId?: string;
|
|
60
|
-
metadata?: Record<string, any>;
|
|
61
|
-
groups?: string[];
|
|
62
|
-
ttl?: number;
|
|
63
|
-
expireAt?: number;
|
|
64
|
-
};
|
|
65
|
-
|
|
66
|
-
declare type EnrollResult = {
|
|
67
|
-
enrolled: boolean;
|
|
68
|
-
person: PersonResult | null;
|
|
69
|
-
search: SearchResult | null;
|
|
70
|
-
};
|
|
71
|
-
|
|
72
|
-
declare type EnrollSearchConfig = {
|
|
73
|
-
groupIds?: string[];
|
|
74
|
-
filter?: {
|
|
75
|
-
op: string;
|
|
76
|
-
field: string;
|
|
77
|
-
value: string[];
|
|
78
|
-
};
|
|
79
|
-
threshold: number;
|
|
80
|
-
limit: number;
|
|
81
|
-
};
|
|
82
|
-
|
|
83
52
|
export declare const ErrorTypes: {
|
|
84
53
|
readonly WASM_ERROR: "WASM_ERROR";
|
|
85
54
|
readonly UNKNOWN_ERROR: "UNKNOWN_ERROR";
|
|
@@ -150,33 +119,6 @@ export declare class FaceDetectionWebComponent extends HTMLElement {
|
|
|
150
119
|
|
|
151
120
|
export declare type FaceDictionaries = Partial<Record<Locales, FaceTranslations>>;
|
|
152
121
|
|
|
153
|
-
/** web component enroll response */
|
|
154
|
-
export declare type FaceEnrollResponseType = FaceLivenessResponseType & {
|
|
155
|
-
enrollResult: EnrollResult;
|
|
156
|
-
};
|
|
157
|
-
|
|
158
|
-
export declare interface FaceEnrollSettings extends FaceLivenessSettings {
|
|
159
|
-
enroll?: EnrollConfig;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
export declare class FaceEnrollWebComponent extends HTMLElement {
|
|
163
|
-
private _root;
|
|
164
|
-
private _mounted;
|
|
165
|
-
private _translations;
|
|
166
|
-
constructor();
|
|
167
|
-
static get observedAttributes(): Array<string>;
|
|
168
|
-
private onEvent;
|
|
169
|
-
attributeChangedCallback(name: string): void;
|
|
170
|
-
connectedCallback(): void;
|
|
171
|
-
get version(): string;
|
|
172
|
-
set translations(dictionary: FaceDictionaries | null);
|
|
173
|
-
get translations(): FaceDictionaries | null;
|
|
174
|
-
set settings(params: FaceEnrollSettings);
|
|
175
|
-
get settings(): FaceEnrollSettings;
|
|
176
|
-
private render;
|
|
177
|
-
disconnectedCallback(): void;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
122
|
export declare const FaceEventActions: {
|
|
181
123
|
readonly ELEMENT_VISIBLE: "ELEMENT_VISIBLE";
|
|
182
124
|
readonly PRESS_START_BUTTON: "PRESS_START_BUTTON";
|
|
@@ -192,7 +134,7 @@ export declare type FaceEventActions = (typeof FaceEventActions)[keyof typeof Fa
|
|
|
192
134
|
|
|
193
135
|
export declare type FaceLivenessDetailType = DetailEvent<FaceEventActions, FaceLivenessResponseType>;
|
|
194
136
|
|
|
195
|
-
/** web component
|
|
137
|
+
/** web component response */
|
|
196
138
|
export declare type FaceLivenessResponseType = {
|
|
197
139
|
images: Array<string>;
|
|
198
140
|
code: number;
|
|
@@ -254,33 +196,6 @@ export declare class FaceLivenessWebComponent extends HTMLElement {
|
|
|
254
196
|
|
|
255
197
|
export declare type FaceTranslations = Partial<Record<Labels, string>>;
|
|
256
198
|
|
|
257
|
-
/** web component verify response */
|
|
258
|
-
export declare type FaceVerifyResponseType = FaceLivenessResponseType & {
|
|
259
|
-
verifyResult: VerifyResult;
|
|
260
|
-
};
|
|
261
|
-
|
|
262
|
-
export declare interface FaceVerifySettings extends FaceLivenessSettings {
|
|
263
|
-
verify?: VerifyConfig;
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
export declare class FaceVerifyWebComponent extends HTMLElement {
|
|
267
|
-
private _root;
|
|
268
|
-
private _mounted;
|
|
269
|
-
private _translations;
|
|
270
|
-
constructor();
|
|
271
|
-
static get observedAttributes(): Array<string>;
|
|
272
|
-
private onEvent;
|
|
273
|
-
attributeChangedCallback(name: string): void;
|
|
274
|
-
connectedCallback(): void;
|
|
275
|
-
get version(): string;
|
|
276
|
-
set translations(dictionary: FaceDictionaries | null);
|
|
277
|
-
get translations(): FaceDictionaries | null;
|
|
278
|
-
set settings(params: FaceVerifySettings);
|
|
279
|
-
get settings(): FaceVerifySettings;
|
|
280
|
-
private render;
|
|
281
|
-
disconnectedCallback(): void;
|
|
282
|
-
}
|
|
283
|
-
|
|
284
199
|
export declare class FullScreenContainer extends HTMLElement {
|
|
285
200
|
private _root;
|
|
286
201
|
constructor();
|
|
@@ -296,19 +211,11 @@ export declare interface IFaceDetection {
|
|
|
296
211
|
'finish-screen'?: boolean;
|
|
297
212
|
}
|
|
298
213
|
|
|
299
|
-
export declare interface IFaceEnroll extends IFaceLiveness {
|
|
300
|
-
enroll?: EnrollConfig;
|
|
301
|
-
}
|
|
302
|
-
|
|
303
214
|
export declare interface IFaceLiveness extends IFaceDetection {
|
|
304
215
|
url?: string;
|
|
305
216
|
'device-orientation'?: boolean;
|
|
306
217
|
}
|
|
307
218
|
|
|
308
|
-
export declare interface IFaceVerify extends IFaceLiveness {
|
|
309
|
-
verify?: VerifyConfig;
|
|
310
|
-
}
|
|
311
|
-
|
|
312
219
|
declare type Labels = 'showOnlyOneFace' | 'preparingCamera' | 'allowAccessCamera' | 'somethingWentWrong' | 'incorrectCameraId' | 'checkCameraId' | 'preparingService' | 'allowAccessToCamera' | 'error' | 'versionNotSupported' | 'updateBrowser' | 'licenseError' | 'licenseExpired' | 'onlyPortraitOrientation' | 'turnDeviceIntoPortrait' | 'tryAgain' | 'noCameraAvailable' | 'checkCameraConnection' | 'noMaskSunglassesHeaddress' | 'ambientLighting' | 'lookStraight' | 'fitYourFace' | 'moveCloser' | 'moveAway' | 'holdSteady' | 'takeAPhoto' | 'turnHead' | 'removeOcclusion' | 'turnHeadUp' | 'turnHeadDown' | 'turnHeadLeft' | 'turnHeadRight' | 'blinkYourEyes' | 'processing' | 'retryButtonText' | 'followGuidelinesText' | 'letsTryAgainTitle' | 'noCameraPermission' | 'goButton' | 'centerFaceTurnHead' | 'centerFace' | 'selfieTime' | 'errorCode' | 'illumination' | 'cameraLevel' | 'noAccessories' | 'getReady' | 'httpNotSupported' | 'webServerNotCompatible' | 'processCompleted' | 'notSufficientQuality' | 'cleanCameraLens' | 'addMoreLight' | 'wipeOutOcclusions' | 'changeBackground' | 'tooMuchTurn' | 'makeFaceFullyVisible' | 'done' | 'close';
|
|
313
220
|
|
|
314
221
|
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' | 'ku' | 'tg' | 'ky' | 'hy';
|
|
@@ -319,17 +226,6 @@ declare type LocalCodes = 'ru-RU' | 'en-US' | 'de-DE' | 'pl-PL' | 'it-IT' | 'hu-
|
|
|
319
226
|
|
|
320
227
|
export declare type Locales = Languages | string;
|
|
321
228
|
|
|
322
|
-
declare type PersonResult = {
|
|
323
|
-
id: string;
|
|
324
|
-
createdAt: string;
|
|
325
|
-
updatedAt: string;
|
|
326
|
-
name: string | null;
|
|
327
|
-
externalId: string | null;
|
|
328
|
-
metadata: Record<string, any>;
|
|
329
|
-
groups: string[];
|
|
330
|
-
expireAt: string | null;
|
|
331
|
-
};
|
|
332
|
-
|
|
333
229
|
export declare const RecordingProcess: {
|
|
334
230
|
readonly ASYNCHRONOUS_UPLOAD: 0;
|
|
335
231
|
readonly SYNCHRONOUS_UPLOAD: 1;
|
|
@@ -346,63 +242,6 @@ export declare const ResponseCode: {
|
|
|
346
242
|
|
|
347
243
|
export declare type ResponseCode = (typeof ResponseCode)[keyof typeof ResponseCode];
|
|
348
244
|
|
|
349
|
-
declare type SearchPerson = {
|
|
350
|
-
name: string;
|
|
351
|
-
externalId: string;
|
|
352
|
-
metadata: Record<string, any>;
|
|
353
|
-
groups: string[];
|
|
354
|
-
expireAt: string;
|
|
355
|
-
id: string;
|
|
356
|
-
createdAt: string;
|
|
357
|
-
updatedAt: string;
|
|
358
|
-
detection: {
|
|
359
|
-
code: number;
|
|
360
|
-
crop: string;
|
|
361
|
-
detectorType: number;
|
|
362
|
-
hash: string;
|
|
363
|
-
idx: number;
|
|
364
|
-
image: string;
|
|
365
|
-
landmarks: number[];
|
|
366
|
-
landmarksType: number;
|
|
367
|
-
msg: string;
|
|
368
|
-
roi: number[];
|
|
369
|
-
versionSDK: string;
|
|
370
|
-
};
|
|
371
|
-
images: Array<{
|
|
372
|
-
id: string;
|
|
373
|
-
content: string;
|
|
374
|
-
contentType: string;
|
|
375
|
-
createdAt: string;
|
|
376
|
-
updatedAt: string;
|
|
377
|
-
path: string;
|
|
378
|
-
url: string;
|
|
379
|
-
metadata: Record<string, any>;
|
|
380
|
-
similarity: number;
|
|
381
|
-
distance: number;
|
|
382
|
-
}>;
|
|
383
|
-
};
|
|
384
|
-
|
|
385
|
-
declare type SearchResult = {
|
|
386
|
-
persons: SearchPerson[];
|
|
387
|
-
};
|
|
388
|
-
|
|
389
|
-
declare type VerifyConfig = {
|
|
390
|
-
personId: string;
|
|
391
|
-
threshold?: number;
|
|
392
|
-
} | {
|
|
393
|
-
externalId: string;
|
|
394
|
-
threshold?: number;
|
|
395
|
-
};
|
|
396
|
-
|
|
397
|
-
declare type VerifyResult = {
|
|
398
|
-
verified: boolean;
|
|
399
|
-
person: PersonResult | null;
|
|
400
|
-
match: {
|
|
401
|
-
verified: boolean;
|
|
402
|
-
similarity: number;
|
|
403
|
-
} | null;
|
|
404
|
-
};
|
|
405
|
-
|
|
406
245
|
export { }
|
|
407
246
|
|
|
408
247
|
|
|
@@ -411,7 +250,5 @@ declare global {
|
|
|
411
250
|
interface HTMLElementEventMap {
|
|
412
251
|
'face-liveness': CustomEvent<FaceLivenessDetailType>;
|
|
413
252
|
'face-capture': CustomEvent<FaceCaptureDetailType>;
|
|
414
|
-
'face-enroll': CustomEvent<FaceEnrollDetailType>;
|
|
415
|
-
'face-verify': CustomEvent<FaceVerifyDetailType>;
|
|
416
253
|
}
|
|
417
254
|
}
|