@regulaforensics/vp-frontend-document-components 7.5.1957-nightly → 7.5.1958-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 +3 -2
- package/dist/main.iife.js +26 -26
- package/dist/main.js +3487 -3490
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -263,9 +263,10 @@ export declare class DocumentReaderService {
|
|
|
263
263
|
doInitialize(initData?: {
|
|
264
264
|
license: string | undefined;
|
|
265
265
|
}): Promise<License>;
|
|
266
|
-
|
|
266
|
+
private processGeneric;
|
|
267
|
+
processImageBase64(base64ImagesArray: Array<string>, params: ProcessingRequest): Promise<Response_2 | ProcessRejectResponse>;
|
|
267
268
|
process(imageDataArray: Array<ImageData>, params?: ProcessingRequest): Promise<Response_2 | ProcessRejectResponse>;
|
|
268
|
-
processImage(imageDataArray: Array<ImageData>, params?: ProcessingRequest): Promise<Response_2>;
|
|
269
|
+
processImage(imageDataArray: Array<ImageData>, params?: ProcessingRequest): Promise<Response_2 | ProcessRejectResponse>;
|
|
269
270
|
startNewPage(): Promise<void>;
|
|
270
271
|
startNewDocument(metadata?: Record<string, any>): Promise<NewTransaction>;
|
|
271
272
|
createBackendTransaction(metadata?: Record<string, any>): Promise<NewTransaction>;
|