@regulaforensics/idv-face 3.2.283 → 3.2.285-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 +3 -2
- package/dist/main.iife.js +30 -30
- package/dist/main.js +4793 -4768
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -82,6 +82,7 @@ declare type FaceModuleProps = {
|
|
|
82
82
|
templateId: string;
|
|
83
83
|
sessionId?: string;
|
|
84
84
|
serviceToken?: string;
|
|
85
|
+
stepType?: string;
|
|
85
86
|
};
|
|
86
87
|
|
|
87
88
|
declare type IdvModuleProps<TModuleProps, TModulesConfig> = {
|
|
@@ -93,9 +94,9 @@ declare type IdvModuleProps<TModuleProps, TModulesConfig> = {
|
|
|
93
94
|
nonce?: string;
|
|
94
95
|
};
|
|
95
96
|
|
|
96
|
-
declare type PerformType = (typeof
|
|
97
|
+
declare type PerformType = (typeof PerformTypes)[keyof typeof PerformTypes] | undefined;
|
|
97
98
|
|
|
98
|
-
declare const
|
|
99
|
+
declare const PerformTypes: {
|
|
99
100
|
readonly FORM: "form";
|
|
100
101
|
readonly DATA: "data";
|
|
101
102
|
};
|