@regulaforensics/vp-frontend-face-components 8.4.2392-nightly → 8.4.2394-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/README.md +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/main.iife.js +5 -5
- package/dist/main.js +11 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -942,10 +942,10 @@ The `face-enroll` response has the same structure as `face-liveness`, plus `enro
|
|
|
942
942
|
persons: Array<{
|
|
943
943
|
id: string
|
|
944
944
|
name: string
|
|
945
|
-
externalId: string
|
|
945
|
+
externalId: string | null
|
|
946
946
|
metadata: { [key: string]: any }
|
|
947
947
|
groups: string[]
|
|
948
|
-
expireAt: string
|
|
948
|
+
expireAt: string | null
|
|
949
949
|
createdAt: string
|
|
950
950
|
updatedAt: string
|
|
951
951
|
}>
|
package/dist/index.d.ts
CHANGED
|
@@ -352,10 +352,10 @@ export declare type ResponseCode = (typeof ResponseCode)[keyof typeof ResponseCo
|
|
|
352
352
|
|
|
353
353
|
declare type SearchPerson = {
|
|
354
354
|
name: string;
|
|
355
|
-
externalId: string;
|
|
355
|
+
externalId: string | null;
|
|
356
356
|
metadata: Record<string, any>;
|
|
357
357
|
groups: string[];
|
|
358
|
-
expireAt: string;
|
|
358
|
+
expireAt: string | null;
|
|
359
359
|
id: string;
|
|
360
360
|
createdAt: string;
|
|
361
361
|
updatedAt: string;
|