@regulaforensics/document-reader-webclient 9.5.890-rc → 9.5.898-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 +1 -1
- package/dist/index.d.ts +37 -1
- package/dist/index.js +59 -59
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7202,6 +7202,14 @@ export declare enum ParsingErrorCodes {
|
|
|
7202
7202
|
* CV Certificate: Private key invalid params
|
|
7203
7203
|
*/
|
|
7204
7204
|
errLDS_CV_Certificate_PrivateKey_InvalidParams = 2164260965,
|
|
7205
|
+
/**
|
|
7206
|
+
* PACE: CAM usage data incorrect
|
|
7207
|
+
*/
|
|
7208
|
+
errLDS_PACE_CAM_Data_Usage_Incorrect = 2164261163,
|
|
7209
|
+
/**
|
|
7210
|
+
* PACE: IM mapping data incorrect
|
|
7211
|
+
*/
|
|
7212
|
+
errLDS_PACE_IM_MappingData_Incorrect = 2164261167,
|
|
7205
7213
|
/**
|
|
7206
7214
|
* CV Certificate: Incorrect data
|
|
7207
7215
|
*/
|
|
@@ -7366,6 +7374,10 @@ export declare enum ParsingNotificationCodes {
|
|
|
7366
7374
|
* ASN certificate: Incorrect issuer subject DS
|
|
7367
7375
|
*/
|
|
7368
7376
|
ntfLDS_ASN_Certificate_IncorrectIssuerSubjectDS = 2415919120,
|
|
7377
|
+
/**
|
|
7378
|
+
* ASN certificate: non-matching DS role
|
|
7379
|
+
*/
|
|
7380
|
+
ntfLDS_ASN_Certificate_NonMatchingDSRole = 2415919121,
|
|
7369
7381
|
/**
|
|
7370
7382
|
* ASN certificate: Duplicating extensions
|
|
7371
7383
|
*/
|
|
@@ -7902,6 +7914,22 @@ export declare enum ParsingNotificationCodes {
|
|
|
7902
7914
|
* Notification: Unsupported image format
|
|
7903
7915
|
*/
|
|
7904
7916
|
ntfLDS_UnsupportedImageFormat = 2415919386,
|
|
7917
|
+
/**
|
|
7918
|
+
* mDL certificate: Chain SoP non-matching
|
|
7919
|
+
*/
|
|
7920
|
+
ntfLDS_MDL_Certificate_Chain_SoP_NonMatching = 2415920128,
|
|
7921
|
+
/**
|
|
7922
|
+
* mDL certificate: Unsupported public key algorithm
|
|
7923
|
+
*/
|
|
7924
|
+
ntfLDS_MDL_Certificate_UnsupportedPublicKeyAlgorithm = 2415920129,
|
|
7925
|
+
/**
|
|
7926
|
+
* mDL certificate: Unsupported signature algorithm
|
|
7927
|
+
*/
|
|
7928
|
+
ntfLDS_MDL_Certificate_UnsupportedSignatureAlgorithm = 2415920130,
|
|
7929
|
+
/**
|
|
7930
|
+
* mDL certificate: Unsupported public key params
|
|
7931
|
+
*/
|
|
7932
|
+
ntfLDS_MDL_Certificate_UnsupportedPublicKeyParams = 2415920131,
|
|
7905
7933
|
/**
|
|
7906
7934
|
* MRZ: Document type unknown
|
|
7907
7935
|
*/
|
|
@@ -10512,7 +10540,15 @@ export declare enum RfidCertificateType {
|
|
|
10512
10540
|
/**
|
|
10513
10541
|
* DTC signer
|
|
10514
10542
|
*/
|
|
10515
|
-
DTCS = 11
|
|
10543
|
+
DTCS = 11,
|
|
10544
|
+
/**
|
|
10545
|
+
* Separate CA for Barcode signer (VDS-NC)
|
|
10546
|
+
*/
|
|
10547
|
+
CA = 12,
|
|
10548
|
+
/**
|
|
10549
|
+
* mDL signer
|
|
10550
|
+
*/
|
|
10551
|
+
MDLS = 13
|
|
10516
10552
|
}
|
|
10517
10553
|
|
|
10518
10554
|
/**
|