@regulaforensics/document-reader-webclient 8.1.410-rc → 8.1.411-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/index.cjs +1 -1
- package/dist/module/index.js +1 -1
- package/lib/index.d.ts +1 -27
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -16199,39 +16199,13 @@ export interface ProcessRequestImageWrapper extends Omit<ProcessRequestImage, 'I
|
|
|
16199
16199
|
ImageData: ArrayBuffer | Base64String;
|
|
16200
16200
|
}
|
|
16201
16201
|
export type Base64String = string;
|
|
16202
|
-
export interface ProcessRequestExt {
|
|
16203
|
-
/**
|
|
16204
|
-
*
|
|
16205
|
-
* @type {ProcessParams}
|
|
16206
|
-
* @memberof ProcessRequestExt
|
|
16207
|
-
*/
|
|
16208
|
-
processParam: ProcessParams;
|
|
16202
|
+
export interface ProcessRequestExt extends ProcessRequest {
|
|
16209
16203
|
/**
|
|
16210
16204
|
*
|
|
16211
16205
|
* @type {Array<ProcessRequestImage>}
|
|
16212
16206
|
* @memberof ProcessRequestExt
|
|
16213
16207
|
*/
|
|
16214
16208
|
images: Array<ProcessRequestImageWrapper | ArrayBuffer | Base64String>;
|
|
16215
|
-
/**
|
|
16216
|
-
* @type {ContainerList}
|
|
16217
|
-
* @memberOf ProcessRequestExt
|
|
16218
|
-
*/
|
|
16219
|
-
ContainerList: ContainerList;
|
|
16220
|
-
/**
|
|
16221
|
-
*
|
|
16222
|
-
* @type {ProcessParams}
|
|
16223
|
-
* @memberof ProcessRequestExt
|
|
16224
|
-
*/
|
|
16225
|
-
systemInfo?: ProcessSystemInfo;
|
|
16226
|
-
/**
|
|
16227
|
-
* Free-form object to be included in response. Must be object, not list or simple value.
|
|
16228
|
-
* Do not affect document processing. Use it freely to pass your app params. Stored in process logs.
|
|
16229
|
-
* @type {{ [key: string]: object; }}
|
|
16230
|
-
* @memberof ProcessRequestExt
|
|
16231
|
-
*/
|
|
16232
|
-
passBackObject?: {
|
|
16233
|
-
[key: string]: any;
|
|
16234
|
-
};
|
|
16235
16209
|
}
|
|
16236
16210
|
export const instanceOfProcessRequest: (data: any) => data is ProcessRequestExt;
|
|
16237
16211
|
export class DocumentReaderApi {
|