@regulaforensics/idv-face 3.2.290 → 3.2.292-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 CHANGED
@@ -95,6 +95,7 @@ declare type FaceModuleProps = {
95
95
  templateId: string;
96
96
  sessionId?: string;
97
97
  serviceToken?: string;
98
+ stepType?: string;
98
99
  };
99
100
 
100
101
  declare type IdvModuleProps<TModuleProps, TModulesConfig> = {
@@ -106,9 +107,9 @@ declare type IdvModuleProps<TModuleProps, TModulesConfig> = {
106
107
  nonce?: string;
107
108
  };
108
109
 
109
- declare type PerformType = (typeof performType)[keyof typeof performType] | undefined;
110
+ declare type PerformType = (typeof PerformTypes)[keyof typeof PerformTypes] | undefined;
110
111
 
111
- declare const performType: {
112
+ declare const PerformTypes: {
112
113
  readonly FORM: "form";
113
114
  readonly DATA: "data";
114
115
  };