@regulaforensics/vp-frontend-document-components 8.2.2325-nightly → 8.2.2326-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/index.d.ts +2 -26
- package/dist/main.iife.js +3 -3
- package/dist/main.js +5 -5
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { GetTransactionsByTagResponse } from '@regulaforensics/document-reader-w
|
|
|
3
3
|
import { Light } from '@regulaforensics/document-reader-webclient';
|
|
4
4
|
import { ProcessParams } from '@regulaforensics/document-reader-webclient';
|
|
5
5
|
import { ProcessResponse } from '@regulaforensics/document-reader-webclient';
|
|
6
|
-
import {
|
|
6
|
+
import { ProcessResult } from '@regulaforensics/document-reader-webclient';
|
|
7
7
|
import { TransactionInfo } from '@regulaforensics/document-reader-webclient';
|
|
8
8
|
|
|
9
9
|
export declare interface BaseRequest {
|
|
@@ -218,7 +218,7 @@ export declare type DocumentReaderProcessParam = Pick<ProcessParams, 'generateNu
|
|
|
218
218
|
};
|
|
219
219
|
};
|
|
220
220
|
|
|
221
|
-
export declare type DocumentReaderResponseType =
|
|
221
|
+
export declare type DocumentReaderResponseType = ProcessResult;
|
|
222
222
|
|
|
223
223
|
export declare class DocumentReaderService {
|
|
224
224
|
private _worker;
|
|
@@ -598,11 +598,6 @@ export { }
|
|
|
598
598
|
|
|
599
599
|
|
|
600
600
|
declare global {
|
|
601
|
-
const UI_COMPONENTS_VERSION: string;
|
|
602
|
-
const DOC_WASM_S3_PATH: string;
|
|
603
|
-
const DOCUMENT_API: string;
|
|
604
|
-
const LICENSE: string | undefined;
|
|
605
|
-
|
|
606
601
|
namespace React.JSX {
|
|
607
602
|
interface IntrinsicElements {
|
|
608
603
|
'document-reader': React.DetailedHTMLProps<
|
|
@@ -613,10 +608,6 @@ declare global {
|
|
|
613
608
|
ICameraSnapshot & React.HTMLAttributes<DocumentReaderCaptureWebComponent>,
|
|
614
609
|
DocumentReaderCaptureWebComponent
|
|
615
610
|
>;
|
|
616
|
-
'fullscreen-container': React.DetailedHTMLProps<
|
|
617
|
-
React.HTMLAttributes<FullScreenContainer>,
|
|
618
|
-
FullScreenContainer
|
|
619
|
-
>;
|
|
620
611
|
}
|
|
621
612
|
}
|
|
622
613
|
|
|
@@ -629,18 +620,3 @@ declare global {
|
|
|
629
620
|
RegulaDocumentSDK: DocumentReaderService;
|
|
630
621
|
}
|
|
631
622
|
}
|
|
632
|
-
|
|
633
|
-
declare global {
|
|
634
|
-
const VERSION: string;
|
|
635
|
-
const ENV: string;
|
|
636
|
-
}
|
|
637
|
-
|
|
638
|
-
declare module 'react' {
|
|
639
|
-
interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
|
|
640
|
-
part?: string;
|
|
641
|
-
}
|
|
642
|
-
|
|
643
|
-
interface SVGAttributes<T> extends AriaAttributes, DOMAttributes<T> {
|
|
644
|
-
part?: string;
|
|
645
|
-
}
|
|
646
|
-
}
|