@regulaforensics/vp-frontend-document-components 7.2.1693-nightly → 7.2.1697-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/lib/index.d.ts CHANGED
@@ -239,16 +239,20 @@ interface NewTransaction {
239
239
  sessionLogFolder: string;
240
240
  }
241
241
 
242
- interface ProcessingRequest {
243
- metadata?: Record<string, any>;
242
+ interface BaseRequest {
244
243
  tag?: string;
244
+ tenant?: string;
245
+ env?: string;
246
+ }
247
+
248
+ interface ProcessingRequest extends BaseRequest {
249
+ metadata?: Record<string, any>;
245
250
  processParam: DocumentReaderProcessParam;
246
251
  imagesList?: Array<DocumentReaderImage>;
247
252
  imageInputParam?: ImageInputParamType;
248
253
  }
249
254
 
250
- interface ImageProcessingRequest {
251
- tag?: string;
255
+ interface ImageProcessingRequest extends BaseRequest {
252
256
  imageInputParam?: ImageInputParamType;
253
257
  processParam: Pick<
254
258
  DocumentReaderProcessParam,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@regulaforensics/vp-frontend-document-components",
3
- "version": "7.2.1693-nightly",
3
+ "version": "7.2.1697-nightly",
4
4
  "description": "Regula framework agnostic web components to work with webcamera",
5
5
  "types": "lib/index.d.ts",
6
6
  "main": "dist/main.js",