@regulaforensics/idv-face 3.2.289-nightly → 3.2.290
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 +2 -3
- package/dist/main.iife.js +99 -15
- package/dist/main.js +4591 -4502
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -95,7 +95,6 @@ declare type FaceModuleProps = {
|
|
|
95
95
|
templateId: string;
|
|
96
96
|
sessionId?: string;
|
|
97
97
|
serviceToken?: string;
|
|
98
|
-
stepType?: string;
|
|
99
98
|
};
|
|
100
99
|
|
|
101
100
|
declare type IdvModuleProps<TModuleProps, TModulesConfig> = {
|
|
@@ -107,9 +106,9 @@ declare type IdvModuleProps<TModuleProps, TModulesConfig> = {
|
|
|
107
106
|
nonce?: string;
|
|
108
107
|
};
|
|
109
108
|
|
|
110
|
-
declare type PerformType = (typeof
|
|
109
|
+
declare type PerformType = (typeof performType)[keyof typeof performType] | undefined;
|
|
111
110
|
|
|
112
|
-
declare const
|
|
111
|
+
declare const performType: {
|
|
113
112
|
readonly FORM: "form";
|
|
114
113
|
readonly DATA: "data";
|
|
115
114
|
};
|