@regulaforensics/vp-frontend-document-components 7.2.1698-nightly → 7.3.1696-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/main.js +1 -1
- package/esm/main.js +1 -1
- package/lib/index.d.ts +4 -8
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -239,20 +239,16 @@ interface NewTransaction {
|
|
|
239
239
|
sessionLogFolder: string;
|
|
240
240
|
}
|
|
241
241
|
|
|
242
|
-
interface
|
|
243
|
-
tag?: string;
|
|
244
|
-
tenant?: string;
|
|
245
|
-
env?: string;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
interface ProcessingRequest extends BaseRequest {
|
|
242
|
+
interface ProcessingRequest {
|
|
249
243
|
metadata?: Record<string, any>;
|
|
244
|
+
tag?: string;
|
|
250
245
|
processParam: DocumentReaderProcessParam;
|
|
251
246
|
imagesList?: Array<DocumentReaderImage>;
|
|
252
247
|
imageInputParam?: ImageInputParamType;
|
|
253
248
|
}
|
|
254
249
|
|
|
255
|
-
interface ImageProcessingRequest
|
|
250
|
+
interface ImageProcessingRequest {
|
|
251
|
+
tag?: string;
|
|
256
252
|
imageInputParam?: ImageInputParamType;
|
|
257
253
|
processParam: Pick<
|
|
258
254
|
DocumentReaderProcessParam,
|
package/package.json
CHANGED