@regulaforensics/idv-capture-web 3.6.339-nightly → 3.6.340-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/dist/index.d.ts +4 -4
- package/dist/main.iife.js +27 -27
- package/dist/main.js +5312 -5246
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -735,11 +735,11 @@ declare enum TokenInitializeError {
|
|
|
735
735
|
|
|
736
736
|
declare type Workflow = {
|
|
737
737
|
id: string;
|
|
738
|
-
logging
|
|
738
|
+
logging?: WorkflowLogging | null;
|
|
739
739
|
steps: Array<WorkflowStep>;
|
|
740
740
|
client: WorkflowClient;
|
|
741
741
|
trackLocation?: boolean;
|
|
742
|
-
error
|
|
742
|
+
error?: string | null;
|
|
743
743
|
name: string;
|
|
744
744
|
} & Record<string, any>;
|
|
745
745
|
|
|
@@ -791,8 +791,8 @@ declare class WorkflowModel implements Workflow {
|
|
|
791
791
|
name: string;
|
|
792
792
|
steps: WorkflowStepModel[];
|
|
793
793
|
client: WorkflowClientModel;
|
|
794
|
-
logging
|
|
795
|
-
error
|
|
794
|
+
logging?: WorkflowLoggingModel | null;
|
|
795
|
+
error?: string | null;
|
|
796
796
|
defaultLocale?: string;
|
|
797
797
|
config?: Record<any, any>;
|
|
798
798
|
metadata?: Record<any, any>;
|