@regulaforensics/document-reader-webclient 8.2.443-rc → 8.2.445-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 +12 -16
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6340,10 +6340,6 @@ export declare interface PArrayField {
|
|
|
6340
6340
|
'bcType_DETECT': number;
|
|
6341
6341
|
}
|
|
6342
6342
|
|
|
6343
|
-
/**
|
|
6344
|
-
* NOTE: This file is auto generated by OpenAPI Generator.
|
|
6345
|
-
* Do not edit the file manually.
|
|
6346
|
-
*/
|
|
6347
6343
|
/**
|
|
6348
6344
|
*
|
|
6349
6345
|
* @export
|
|
@@ -6352,10 +6348,10 @@ export declare interface PArrayField {
|
|
|
6352
6348
|
export declare interface ParsedData {
|
|
6353
6349
|
/**
|
|
6354
6350
|
*
|
|
6355
|
-
* @type {Array<
|
|
6351
|
+
* @type {Array<ParsingNotificationCodes>}
|
|
6356
6352
|
* @memberof ParsedData
|
|
6357
6353
|
*/
|
|
6358
|
-
'ParsingNotifications'?: Array<
|
|
6354
|
+
'ParsingNotifications'?: Array<ParsingNotificationCodes>;
|
|
6359
6355
|
}
|
|
6360
6356
|
|
|
6361
6357
|
/**
|
|
@@ -9369,10 +9365,10 @@ export declare interface RfidAccessControlInfo {
|
|
|
9369
9365
|
'ActiveOptionIdx'?: number;
|
|
9370
9366
|
/**
|
|
9371
9367
|
* List of remarks arisen during the procedure.
|
|
9372
|
-
* @type {Array<
|
|
9368
|
+
* @type {Array<ParsingErrorCodes>}
|
|
9373
9369
|
* @memberof RfidAccessControlInfo
|
|
9374
9370
|
*/
|
|
9375
|
-
'Notifications': Array<
|
|
9371
|
+
'Notifications': Array<ParsingErrorCodes>;
|
|
9376
9372
|
/**
|
|
9377
9373
|
* List of structures with are used to describe the variants of the authentication or secure data access procedure performance within the context of the communication session with electronic document
|
|
9378
9374
|
* @type {Array<any>}
|
|
@@ -9863,10 +9859,10 @@ export declare interface RfidCertificateEx {
|
|
|
9863
9859
|
'Extensions': Array<RfidPkiExtension>;
|
|
9864
9860
|
/**
|
|
9865
9861
|
* List of remarks arisen during the analysis of the certificate data structure and its validity verification.
|
|
9866
|
-
* @type {Array<
|
|
9862
|
+
* @type {Array<ParsingErrorCodes>}
|
|
9867
9863
|
* @memberof RfidCertificateEx
|
|
9868
9864
|
*/
|
|
9869
|
-
'Notifications': Array<
|
|
9865
|
+
'Notifications': Array<ParsingErrorCodes>;
|
|
9870
9866
|
/**
|
|
9871
9867
|
*
|
|
9872
9868
|
* @type {RfidCertificateOrigin}
|
|
@@ -10045,10 +10041,10 @@ export declare interface RfidDataFile {
|
|
|
10045
10041
|
'PA_Status'?: RFIDErrorCodes;
|
|
10046
10042
|
/**
|
|
10047
10043
|
* List of remarks arisen when reading data from the memory of the chip and analysing their ASN.1-structure.
|
|
10048
|
-
* @type {Array<
|
|
10044
|
+
* @type {Array<ParsingErrorCodes>}
|
|
10049
10045
|
* @memberof RfidDataFile
|
|
10050
10046
|
*/
|
|
10051
|
-
'Notifications'?: Array<
|
|
10047
|
+
'Notifications'?: Array<ParsingErrorCodes>;
|
|
10052
10048
|
/**
|
|
10053
10049
|
* List of document text fields formed on the basis of the file contents
|
|
10054
10050
|
* @type {Array<TextFieldType>}
|
|
@@ -11355,10 +11351,10 @@ export declare interface RfidSecurityObject {
|
|
|
11355
11351
|
'FileReference': number;
|
|
11356
11352
|
/**
|
|
11357
11353
|
* List of remarks arisen during the analysis of SO data structure.
|
|
11358
|
-
* @type {Array<
|
|
11354
|
+
* @type {Array<ParsingErrorCodes>}
|
|
11359
11355
|
* @memberof RfidSecurityObject
|
|
11360
11356
|
*/
|
|
11361
|
-
'Notifications': Array<
|
|
11357
|
+
'Notifications': Array<ParsingErrorCodes>;
|
|
11362
11358
|
/**
|
|
11363
11359
|
* List of containers to store information about digital signature objects contained in the SO
|
|
11364
11360
|
* @type {Array<RfidSignerInfoEx>}
|
|
@@ -11551,10 +11547,10 @@ export declare interface RfidSignerInfoEx {
|
|
|
11551
11547
|
'DataToHash': string;
|
|
11552
11548
|
/**
|
|
11553
11549
|
*
|
|
11554
|
-
* @type {Array<
|
|
11550
|
+
* @type {Array<ParsingErrorCodes>}
|
|
11555
11551
|
* @memberof RfidSignerInfoEx
|
|
11556
11552
|
*/
|
|
11557
|
-
'Notifications': Array<
|
|
11553
|
+
'Notifications': Array<ParsingErrorCodes>;
|
|
11558
11554
|
}
|
|
11559
11555
|
|
|
11560
11556
|
/**
|
package/package.json
CHANGED