@regulaforensics/document-reader-webclient 8.2.454-rc → 8.2.455-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.cjs +3 -3
- package/dist/index.d.ts +26 -18
- package/dist/index.js +1 -1
- package/package.json +7 -7
package/dist/index.d.ts
CHANGED
|
@@ -9364,11 +9364,11 @@ export declare interface RfidAccessControlInfo {
|
|
|
9364
9364
|
*/
|
|
9365
9365
|
'ActiveOptionIdx'?: number;
|
|
9366
9366
|
/**
|
|
9367
|
-
* List of remarks arisen during the procedure.
|
|
9368
|
-
* @type {Array<
|
|
9367
|
+
* List of remarks arisen during the procedure. Can be ParsingErrorCodes or ParsingNotificationCodes enum.
|
|
9368
|
+
* @type {Array<number>}
|
|
9369
9369
|
* @memberof RfidAccessControlInfo
|
|
9370
9370
|
*/
|
|
9371
|
-
'Notifications': Array<
|
|
9371
|
+
'Notifications': Array<number>;
|
|
9372
9372
|
/**
|
|
9373
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
|
|
9374
9374
|
* @type {Array<any>}
|
|
@@ -9858,11 +9858,11 @@ export declare interface RfidCertificateEx {
|
|
|
9858
9858
|
*/
|
|
9859
9859
|
'Extensions': Array<RfidPkiExtension>;
|
|
9860
9860
|
/**
|
|
9861
|
-
* List of remarks arisen during the analysis of the certificate data structure and its validity verification.
|
|
9862
|
-
* @type {Array<
|
|
9861
|
+
* List of remarks arisen during the analysis of the certificate data structure and its validity verification. Can be ParsingErrorCodes or ParsingNotificationCodes enum.
|
|
9862
|
+
* @type {Array<number>}
|
|
9863
9863
|
* @memberof RfidCertificateEx
|
|
9864
9864
|
*/
|
|
9865
|
-
'Notifications': Array<
|
|
9865
|
+
'Notifications': Array<number>;
|
|
9866
9866
|
/**
|
|
9867
9867
|
*
|
|
9868
9868
|
* @type {RfidCertificateOrigin}
|
|
@@ -10040,11 +10040,11 @@ export declare interface RfidDataFile {
|
|
|
10040
10040
|
*/
|
|
10041
10041
|
'PA_Status'?: RFIDErrorCodes;
|
|
10042
10042
|
/**
|
|
10043
|
-
* List of remarks arisen when reading data from the memory of the chip and analysing their ASN.1-structure.
|
|
10044
|
-
* @type {Array<
|
|
10043
|
+
* List of remarks arisen when reading data from the memory of the chip and analysing their ASN.1-structure. Can be ParsingErrorCodes or ParsingNotificationCodes enum.
|
|
10044
|
+
* @type {Array<number>}
|
|
10045
10045
|
* @memberof RfidDataFile
|
|
10046
10046
|
*/
|
|
10047
|
-
'Notifications'?: Array<
|
|
10047
|
+
'Notifications'?: Array<number>;
|
|
10048
10048
|
/**
|
|
10049
10049
|
* List of document text fields formed on the basis of the file contents
|
|
10050
10050
|
* @type {Array<TextFieldType>}
|
|
@@ -11274,7 +11274,15 @@ export declare enum RFIDPKDResourceType {
|
|
|
11274
11274
|
/**
|
|
11275
11275
|
* Black List (.bl, .bls)
|
|
11276
11276
|
*/
|
|
11277
|
-
BL = 7
|
|
11277
|
+
BL = 7,
|
|
11278
|
+
/**
|
|
11279
|
+
* LDIF file contents for TA
|
|
11280
|
+
*/
|
|
11281
|
+
LDIF_TA = 8,
|
|
11282
|
+
/**
|
|
11283
|
+
* Master List with CV certificates for TA
|
|
11284
|
+
*/
|
|
11285
|
+
ML_TA = 9
|
|
11278
11286
|
}
|
|
11279
11287
|
|
|
11280
11288
|
/**
|
|
@@ -11350,11 +11358,11 @@ export declare interface RfidSecurityObject {
|
|
|
11350
11358
|
*/
|
|
11351
11359
|
'FileReference': number;
|
|
11352
11360
|
/**
|
|
11353
|
-
* List of remarks arisen during the analysis of SO data structure.
|
|
11354
|
-
* @type {Array<
|
|
11361
|
+
* List of remarks arisen during the analysis of SO data structure. Can be ParsingErrorCodes or ParsingNotificationCodes enum.
|
|
11362
|
+
* @type {Array<number>}
|
|
11355
11363
|
* @memberof RfidSecurityObject
|
|
11356
11364
|
*/
|
|
11357
|
-
'Notifications': Array<
|
|
11365
|
+
'Notifications': Array<number>;
|
|
11358
11366
|
/**
|
|
11359
11367
|
* List of containers to store information about digital signature objects contained in the SO
|
|
11360
11368
|
* @type {Array<RfidSignerInfoEx>}
|
|
@@ -11371,10 +11379,10 @@ export declare interface RfidSecurityObject {
|
|
|
11371
11379
|
export declare interface RfidSessionData {
|
|
11372
11380
|
/**
|
|
11373
11381
|
* Sign of virtual session when working with loaded data from a previous communication session with the electronic document
|
|
11374
|
-
* @type {
|
|
11382
|
+
* @type {boolean}
|
|
11375
11383
|
* @memberof RfidSessionData
|
|
11376
11384
|
*/
|
|
11377
|
-
'VirtualMode'?:
|
|
11385
|
+
'VirtualMode'?: boolean;
|
|
11378
11386
|
/**
|
|
11379
11387
|
* Text SDKVersion value in format A.B (e.g. 3.1)
|
|
11380
11388
|
* @type {string}
|
|
@@ -11546,11 +11554,11 @@ export declare interface RfidSignerInfoEx {
|
|
|
11546
11554
|
*/
|
|
11547
11555
|
'DataToHash': string;
|
|
11548
11556
|
/**
|
|
11549
|
-
*
|
|
11550
|
-
* @type {Array<
|
|
11557
|
+
* Can be ParsingErrorCodes or ParsingNotificationCodes enum.
|
|
11558
|
+
* @type {Array<number>}
|
|
11551
11559
|
* @memberof RfidSignerInfoEx
|
|
11552
11560
|
*/
|
|
11553
|
-
'Notifications': Array<
|
|
11561
|
+
'Notifications': Array<number>;
|
|
11554
11562
|
}
|
|
11555
11563
|
|
|
11556
11564
|
/**
|