@regulaforensics/idv-face 3.2.282-rc → 3.2.284-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
@@ -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 performType)[keyof typeof performType] | undefined;
97
+ declare type PerformType = (typeof PerformTypes)[keyof typeof PerformTypes] | undefined;
97
98
 
98
- declare const performType: {
99
+ declare const PerformTypes: {
99
100
  readonly FORM: "form";
100
101
  readonly DATA: "data";
101
102
  };