@regulaforensics/idv-capture-web 3.6.346-nightly → 3.6.347-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
@@ -188,7 +188,6 @@ declare type CurrentScreenConfig = {
188
188
  locale: string;
189
189
  stepType?: string;
190
190
  failedAssets?: FailedAssets;
191
- preloadAssetsRequired?: boolean;
192
191
  } & Record<string, any>;
193
192
 
194
193
  declare type DataOrError<T extends object, E = BaseWorkflowError> = T | {
@@ -735,11 +734,11 @@ declare enum TokenInitializeError {
735
734
 
736
735
  declare type Workflow = {
737
736
  id: string;
738
- logging?: WorkflowLogging | null;
737
+ logging: WorkflowLogging;
739
738
  steps: Array<WorkflowStep>;
740
739
  client: WorkflowClient;
741
740
  trackLocation?: boolean;
742
- error?: string | null;
741
+ error: string | null;
743
742
  name: string;
744
743
  } & Record<string, any>;
745
744
 
@@ -791,8 +790,8 @@ declare class WorkflowModel implements Workflow {
791
790
  name: string;
792
791
  steps: WorkflowStepModel[];
793
792
  client: WorkflowClientModel;
794
- logging?: WorkflowLoggingModel | null;
795
- error?: string | null;
793
+ logging: WorkflowLoggingModel;
794
+ error: string | null;
796
795
  defaultLocale?: string;
797
796
  config?: Record<any, any>;
798
797
  metadata?: Record<any, any>;