@regulaforensics/idv-document 3.3.308 → 3.4.70-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 +8 -0
- package/dist/main.iife.js +17 -17
- package/dist/main.js +360 -350
- package/package.json +1 -1
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> = {
|