@regulaforensics/ui-components 9.2.775-nightly → 9.2.777-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/core/index.cjs +15 -48
- package/dist/core/index.css +1 -9
- package/dist/core/index.d.ts +70 -1
- package/dist/core/index.js +14623 -14627
- package/dist/main/index.cjs +15 -48
- package/dist/main/index.css +1 -9
- package/dist/main/index.d.ts +70 -1
- package/dist/main/index.js +14623 -14627
- package/dist/typings/index.cjs +3 -16
- package/dist/typings/index.d.ts +70 -1
- package/dist/typings/index.js +1000 -1034
- package/package.json +29 -29
package/dist/typings/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ import { AuthParams } from '@regulaforensics/document-reader-webclient';
|
|
|
8
8
|
import { BarcodePositionItem } from '@regulaforensics/document-reader-webclient';
|
|
9
9
|
import { BcPDF417INFO } from '@regulaforensics/document-reader-webclient';
|
|
10
10
|
import { BinaryData as BinaryData_2 } from '@regulaforensics/document-reader-webclient';
|
|
11
|
+
import { BSIV2Item } from '@regulaforensics/document-reader-webclient';
|
|
11
12
|
import { ByteArrayItem } from '@regulaforensics/document-reader-webclient';
|
|
12
13
|
import { CandidatesListItem } from '@regulaforensics/document-reader-webclient';
|
|
13
14
|
import { CertificateData as CertificateData_2 } from '@regulaforensics/document-reader-webclient';
|
|
@@ -1079,6 +1080,50 @@ export declare class BoundsResultContainer extends aContainer implements iBounds
|
|
|
1079
1080
|
*/
|
|
1080
1081
|
export declare const BoundsResultContainerResultTypes: tBoundsResultContainerResultType[];
|
|
1081
1082
|
|
|
1083
|
+
/**
|
|
1084
|
+
* Container for BSI v2
|
|
1085
|
+
*/
|
|
1086
|
+
export declare class BSIv2Container extends aContainer implements iBSIv2Container {
|
|
1087
|
+
/**
|
|
1088
|
+
* @type {string}
|
|
1089
|
+
*/
|
|
1090
|
+
XML_buffer: string;
|
|
1091
|
+
/**
|
|
1092
|
+
* Result type stored in this container
|
|
1093
|
+
* @type {tBSIv2ContainerResultType}
|
|
1094
|
+
*/
|
|
1095
|
+
result_type: tBSIv2ContainerResultType;
|
|
1096
|
+
/**
|
|
1097
|
+
* Creates an instance of BSIv2Container from plain object
|
|
1098
|
+
*
|
|
1099
|
+
* @param {unknown} input - plain object
|
|
1100
|
+
* @returns {BSIv2Container}
|
|
1101
|
+
*/
|
|
1102
|
+
static fromPlain: (input: unknown) => BSIv2Container;
|
|
1103
|
+
/**
|
|
1104
|
+
* Get BSIv2Container from ProcessResponse
|
|
1105
|
+
* @param {ProcessResponse} input - ProcessResponse object
|
|
1106
|
+
* @param {boolean} asPlain - return as plain object
|
|
1107
|
+
* @returns {(BSIv2Container|iBSIv2Container)[]}
|
|
1108
|
+
*/
|
|
1109
|
+
static fromProcessResponse(input: ProcessResponse, asPlain: true): iBSIv2Container[];
|
|
1110
|
+
static fromProcessResponse(input: ProcessResponse, asPlain?: false): BSIv2Container[];
|
|
1111
|
+
/**
|
|
1112
|
+
* Check if the given instance of BSIv2Container is valid
|
|
1113
|
+
*
|
|
1114
|
+
* @param {BSIv2Container} instance - instance of BSIv2Container to be checked
|
|
1115
|
+
* @throws {DocReaderTypeError} - if the given instance of BSIv2Container is not valid
|
|
1116
|
+
* @returns {true | never} - true if the given instance of BSIv2Container is valid
|
|
1117
|
+
*/
|
|
1118
|
+
static validate: (instance: BSIv2Container) => true | never;
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
/**
|
|
1122
|
+
* Result type of BSIv2Container
|
|
1123
|
+
* @type {tBSIv2ContainerResultType[]}
|
|
1124
|
+
*/
|
|
1125
|
+
export declare const BSIv2ContainerResultTypes: tBSIv2ContainerResultType[];
|
|
1126
|
+
|
|
1082
1127
|
/**
|
|
1083
1128
|
* Container for byte array
|
|
1084
1129
|
*/
|
|
@@ -3074,6 +3119,21 @@ export declare interface iBoundsResultContainer extends aContainer, DocumentPosi
|
|
|
3074
3119
|
result_type: tBoundsResultContainerResultType;
|
|
3075
3120
|
}
|
|
3076
3121
|
|
|
3122
|
+
/**
|
|
3123
|
+
* Container for BSI v2
|
|
3124
|
+
*/
|
|
3125
|
+
export declare interface iBSIv2Container extends aContainer, BSIV2Item {
|
|
3126
|
+
/**
|
|
3127
|
+
* @type {string}
|
|
3128
|
+
*/
|
|
3129
|
+
XML_buffer: string;
|
|
3130
|
+
/**
|
|
3131
|
+
* Result type stored in this container
|
|
3132
|
+
* @type {tBSIv2ContainerResultType}
|
|
3133
|
+
*/
|
|
3134
|
+
result_type: tBSIv2ContainerResultType;
|
|
3135
|
+
}
|
|
3136
|
+
|
|
3077
3137
|
/**
|
|
3078
3138
|
* Container for byte array
|
|
3079
3139
|
*/
|
|
@@ -8736,6 +8796,11 @@ export declare type tBarcodeBoundsResultContainerResultType = Result.BARCODE_POS
|
|
|
8736
8796
|
*/
|
|
8737
8797
|
export declare type tBoundsResultContainerResultType = Result.DOCUMENT_POSITION;
|
|
8738
8798
|
|
|
8799
|
+
/**
|
|
8800
|
+
* Result type of BSIv2Container
|
|
8801
|
+
*/
|
|
8802
|
+
export declare type tBSIv2ContainerResultType = Result.BSI_XML_V2;
|
|
8803
|
+
|
|
8739
8804
|
/**
|
|
8740
8805
|
* Result type of ByteArrayContainer
|
|
8741
8806
|
*/
|
|
@@ -9448,7 +9513,11 @@ AuthenticityCheckListContainer
|
|
|
9448
9513
|
/**
|
|
9449
9514
|
* VDSNC result
|
|
9450
9515
|
*/
|
|
9451
|
-
| VDSNCContainer
|
|
9516
|
+
| VDSNCContainer
|
|
9517
|
+
/**
|
|
9518
|
+
* BSI v2 result
|
|
9519
|
+
*/
|
|
9520
|
+
| BSIv2Container;
|
|
9452
9521
|
|
|
9453
9522
|
/**
|
|
9454
9523
|
* Structure serves for storing the results of a single type
|