@regulaforensics/idv-document 3.4.310-nightly → 3.4.312-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
@@ -27,6 +27,7 @@ declare type DocumentGalleryProps = {
27
27
  serviceToken?: string;
28
28
  locale?: string;
29
29
  stepType?: string;
30
+ failedAssets?: FailedAssets;
30
31
  };
31
32
 
32
33
  export declare class DocumentIdv extends LitElement implements BaseModule<DocumentModuleProps, DocumentModulesConfig> {
@@ -140,6 +141,13 @@ declare type DocumentReaderProps = {
140
141
  locale?: string;
141
142
  backgroundColor?: string;
142
143
  stepType?: string;
144
+ failedAssets?: FailedAssets;
145
+ };
146
+
147
+ declare type FailedAssets = {
148
+ imageURL: Set<string>;
149
+ base64: Set<string>;
150
+ blockingAssets: Set<string>;
143
151
  };
144
152
 
145
153
  declare type IdvModuleProps<TModuleProps, TModulesConfig> = {