@regulaforensics/vp-frontend-document-components 7.5.1860-nightly → 7.5.1861-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 +2 -11
- package/dist/main.iife.js +25 -25
- package/dist/main.js +3433 -3439
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ContainerList } from '@regulaforensics/document-reader-webclient';
|
|
2
2
|
import { DocumentFormat } from '@regulaforensics/document-reader-webclient';
|
|
3
|
+
import { GetTransactionsByTagResponse } from '@regulaforensics/document-reader-webclient';
|
|
3
4
|
import { MeasureSystem } from '@regulaforensics/document-reader-webclient';
|
|
4
5
|
import { MRZFormat } from '@regulaforensics/document-reader-webclient';
|
|
5
6
|
import { Response as Response_2 } from '@regulaforensics/document-reader-webclient';
|
|
@@ -551,7 +552,7 @@ declare type TProcessingListener = ({ isProcessing }: {
|
|
|
551
552
|
|
|
552
553
|
export declare interface TransactionEvent {
|
|
553
554
|
action: EventActions.REMOTE_TRANSACTION_UPLOADED;
|
|
554
|
-
data:
|
|
555
|
+
data: GetTransactionsByTagResponse;
|
|
555
556
|
}
|
|
556
557
|
|
|
557
558
|
export declare interface TransactionInfo {
|
|
@@ -559,22 +560,12 @@ export declare interface TransactionInfo {
|
|
|
559
560
|
transactionId: string;
|
|
560
561
|
}
|
|
561
562
|
|
|
562
|
-
export declare type TransactionsListResponse = {
|
|
563
|
-
items: TransactionStatusInfo[];
|
|
564
|
-
};
|
|
565
|
-
|
|
566
563
|
export declare enum TransactionStateStatus {
|
|
567
564
|
STARTED = 0,
|
|
568
565
|
UPLOADED = 1,
|
|
569
566
|
PROCESSED = 2
|
|
570
567
|
}
|
|
571
568
|
|
|
572
|
-
export declare type TransactionStatusInfo = {
|
|
573
|
-
id: number;
|
|
574
|
-
state: TransactionStateStatus;
|
|
575
|
-
updatedAt: string;
|
|
576
|
-
};
|
|
577
|
-
|
|
578
569
|
export declare type TScenarioParams = {
|
|
579
570
|
name: string;
|
|
580
571
|
desc: string;
|