From e9879850344a63156515ff287eacd9e65c3a06a3 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 17 Jul 2025 13:43:21 +0000 Subject: [PATCH] Commit: fb016147 --- src/models/rfid-access-control-info.ts | 9 +++------ src/models/rfid-certificate-ex.ts | 9 +++------ src/models/rfid-data-file.ts | 9 +++------ src/models/rfid-security-object.ts | 9 +++------ src/models/rfid-signer-info-ex.ts | 9 +++------ 5 files changed, 15 insertions(+), 30 deletions(-) diff --git a/src/models/rfid-access-control-info.ts b/src/models/rfid-access-control-info.ts index c1479df..10cf91f 100644 --- a/src/models/rfid-access-control-info.ts +++ b/src/models/rfid-access-control-info.ts @@ -6,9 +6,6 @@ */ -// May contain unused imports in some cases -// @ts-ignore -import type { ParsingErrorCodes } from './parsing-error-codes'; // May contain unused imports in some cases // @ts-ignore import type { RFIDErrorCodes } from './rfiderror-codes'; @@ -41,11 +38,11 @@ export interface RfidAccessControlInfo { */ 'ActiveOptionIdx'?: number; /** - * List of remarks arisen during the procedure. - * @type {Array} + * List of remarks arisen during the procedure. Can be ParsingErrorCodes or ParsingNotificationCodes enum. + * @type {Array} * @memberof RfidAccessControlInfo */ - 'Notifications': Array; + 'Notifications': Array; /** * 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 * @type {Array} diff --git a/src/models/rfid-certificate-ex.ts b/src/models/rfid-certificate-ex.ts index 82bf31c..d3d2a27 100644 --- a/src/models/rfid-certificate-ex.ts +++ b/src/models/rfid-certificate-ex.ts @@ -6,9 +6,6 @@ */ -// May contain unused imports in some cases -// @ts-ignore -import type { ParsingErrorCodes } from './parsing-error-codes'; // May contain unused imports in some cases // @ts-ignore import type { RFIDErrorCodes } from './rfiderror-codes'; @@ -86,11 +83,11 @@ export interface RfidCertificateEx { */ 'Extensions': Array; /** - * List of remarks arisen during the analysis of the certificate data structure and its validity verification. - * @type {Array} + * List of remarks arisen during the analysis of the certificate data structure and its validity verification. Can be ParsingErrorCodes or ParsingNotificationCodes enum. + * @type {Array} * @memberof RfidCertificateEx */ - 'Notifications': Array; + 'Notifications': Array; /** * * @type {RfidCertificateOrigin} diff --git a/src/models/rfid-data-file.ts b/src/models/rfid-data-file.ts index f627d86..7aee0fa 100644 --- a/src/models/rfid-data-file.ts +++ b/src/models/rfid-data-file.ts @@ -14,9 +14,6 @@ import type { GraphicFieldType } from './graphic-field-type'; import type { ParsedData } from './parsed-data'; // May contain unused imports in some cases // @ts-ignore -import type { ParsingErrorCodes } from './parsing-error-codes'; -// May contain unused imports in some cases -// @ts-ignore import type { RFIDErrorCodes } from './rfiderror-codes'; // May contain unused imports in some cases // @ts-ignore @@ -74,11 +71,11 @@ export interface RfidDataFile { */ 'PA_Status'?: RFIDErrorCodes; /** - * List of remarks arisen when reading data from the memory of the chip and analysing their ASN.1-structure. - * @type {Array} + * 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. + * @type {Array} * @memberof RfidDataFile */ - 'Notifications'?: Array; + 'Notifications'?: Array; /** * List of document text fields formed on the basis of the file contents * @type {Array} diff --git a/src/models/rfid-security-object.ts b/src/models/rfid-security-object.ts index 04beb23..fd3fa78 100644 --- a/src/models/rfid-security-object.ts +++ b/src/models/rfid-security-object.ts @@ -6,9 +6,6 @@ */ -// May contain unused imports in some cases -// @ts-ignore -import type { ParsingErrorCodes } from './parsing-error-codes'; // May contain unused imports in some cases // @ts-ignore import type { RfidSignerInfoEx } from './rfid-signer-info-ex'; @@ -38,11 +35,11 @@ export interface RfidSecurityObject { */ 'FileReference': number; /** - * List of remarks arisen during the analysis of SO data structure. - * @type {Array} + * List of remarks arisen during the analysis of SO data structure. Can be ParsingErrorCodes or ParsingNotificationCodes enum. + * @type {Array} * @memberof RfidSecurityObject */ - 'Notifications': Array; + 'Notifications': Array; /** * List of containers to store information about digital signature objects contained in the SO * @type {Array} diff --git a/src/models/rfid-signer-info-ex.ts b/src/models/rfid-signer-info-ex.ts index 41b40fe..ced6f52 100644 --- a/src/models/rfid-signer-info-ex.ts +++ b/src/models/rfid-signer-info-ex.ts @@ -6,9 +6,6 @@ */ -// May contain unused imports in some cases -// @ts-ignore -import type { ParsingErrorCodes } from './parsing-error-codes'; // May contain unused imports in some cases // @ts-ignore import type { RFIDErrorCodes } from './rfiderror-codes'; @@ -98,11 +95,11 @@ export interface RfidSignerInfoEx { */ 'DataToHash': string; /** - * - * @type {Array} + * Can be ParsingErrorCodes or ParsingNotificationCodes enum. + * @type {Array} * @memberof RfidSignerInfoEx */ - 'Notifications': Array; + 'Notifications': Array; }