@regulaforensics/idv-capture-web 3.6.338-rc → 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 CHANGED
@@ -735,11 +735,11 @@ declare enum TokenInitializeError {
735
735
 
736
736
  declare type Workflow = {
737
737
  id: string;
738
- logging: WorkflowLogging;
738
+ logging?: WorkflowLogging | null;
739
739
  steps: Array<WorkflowStep>;
740
740
  client: WorkflowClient;
741
741
  trackLocation?: boolean;
742
- error: string | null;
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: WorkflowLoggingModel;
795
- error: string | null;
794
+ logging?: WorkflowLoggingModel | null;
795
+ error?: string | null;
796
796
  defaultLocale?: string;
797
797
  config?: Record<any, any>;
798
798
  metadata?: Record<any, any>;