Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/models/parsed-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
*/


// May contain unused imports in some cases
// @ts-ignore
import type { ParsingNotificationCodes } from './parsing-notification-codes';

/**
*
Expand All @@ -15,9 +18,9 @@
export interface ParsedData {
/**
*
* @type {Array<number>}
* @type {Array<ParsingNotificationCodes>}
* @memberof ParsedData
*/
'ParsingNotifications'?: Array<number>;
'ParsingNotifications'?: Array<ParsingNotificationCodes>;
}

6 changes: 3 additions & 3 deletions src/models/rfid-access-control-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

// May contain unused imports in some cases
// @ts-ignore
import type { ParsingNotificationCodes } from './parsing-notification-codes';
import type { ParsingErrorCodes } from './parsing-error-codes';
// May contain unused imports in some cases
// @ts-ignore
import type { RFIDErrorCodes } from './rfiderror-codes';
Expand Down Expand Up @@ -42,10 +42,10 @@ export interface RfidAccessControlInfo {
'ActiveOptionIdx'?: number;
/**
* List of remarks arisen during the procedure.
* @type {Array<ParsingNotificationCodes>}
* @type {Array<ParsingErrorCodes>}
* @memberof RfidAccessControlInfo
*/
'Notifications': Array<ParsingNotificationCodes>;
'Notifications': Array<ParsingErrorCodes>;
/**
* 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<any>}
Expand Down
6 changes: 3 additions & 3 deletions src/models/rfid-certificate-ex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

// May contain unused imports in some cases
// @ts-ignore
import type { ParsingNotificationCodes } from './parsing-notification-codes';
import type { ParsingErrorCodes } from './parsing-error-codes';
// May contain unused imports in some cases
// @ts-ignore
import type { RFIDErrorCodes } from './rfiderror-codes';
Expand Down Expand Up @@ -87,10 +87,10 @@ export interface RfidCertificateEx {
'Extensions': Array<RfidPkiExtension>;
/**
* List of remarks arisen during the analysis of the certificate data structure and its validity verification.
* @type {Array<ParsingNotificationCodes>}
* @type {Array<ParsingErrorCodes>}
* @memberof RfidCertificateEx
*/
'Notifications': Array<ParsingNotificationCodes>;
'Notifications': Array<ParsingErrorCodes>;
/**
*
* @type {RfidCertificateOrigin}
Expand Down
6 changes: 3 additions & 3 deletions src/models/rfid-data-file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import type { GraphicFieldType } from './graphic-field-type';
import type { ParsedData } from './parsed-data';
// May contain unused imports in some cases
// @ts-ignore
import type { ParsingNotificationCodes } from './parsing-notification-codes';
import type { ParsingErrorCodes } from './parsing-error-codes';
// May contain unused imports in some cases
// @ts-ignore
import type { RFIDErrorCodes } from './rfiderror-codes';
Expand Down Expand Up @@ -75,10 +75,10 @@ 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<ParsingNotificationCodes>}
* @type {Array<ParsingErrorCodes>}
* @memberof RfidDataFile
*/
'Notifications'?: Array<ParsingNotificationCodes>;
'Notifications'?: Array<ParsingErrorCodes>;
/**
* List of document text fields formed on the basis of the file contents
* @type {Array<TextFieldType>}
Expand Down
6 changes: 3 additions & 3 deletions src/models/rfid-security-object.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

// May contain unused imports in some cases
// @ts-ignore
import type { ParsingNotificationCodes } from './parsing-notification-codes';
import type { ParsingErrorCodes } from './parsing-error-codes';
// May contain unused imports in some cases
// @ts-ignore
import type { RfidSignerInfoEx } from './rfid-signer-info-ex';
Expand Down Expand Up @@ -39,10 +39,10 @@ export interface RfidSecurityObject {
'FileReference': number;
/**
* List of remarks arisen during the analysis of SO data structure.
* @type {Array<ParsingNotificationCodes>}
* @type {Array<ParsingErrorCodes>}
* @memberof RfidSecurityObject
*/
'Notifications': Array<ParsingNotificationCodes>;
'Notifications': Array<ParsingErrorCodes>;
/**
* List of containers to store information about digital signature objects contained in the SO
* @type {Array<RfidSignerInfoEx>}
Expand Down
6 changes: 3 additions & 3 deletions src/models/rfid-signer-info-ex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

// May contain unused imports in some cases
// @ts-ignore
import type { ParsingNotificationCodes } from './parsing-notification-codes';
import type { ParsingErrorCodes } from './parsing-error-codes';
// May contain unused imports in some cases
// @ts-ignore
import type { RFIDErrorCodes } from './rfiderror-codes';
Expand Down Expand Up @@ -99,10 +99,10 @@ export interface RfidSignerInfoEx {
'DataToHash': string;
/**
*
* @type {Array<ParsingNotificationCodes>}
* @type {Array<ParsingErrorCodes>}
* @memberof RfidSignerInfoEx
*/
'Notifications': Array<ParsingNotificationCodes>;
'Notifications': Array<ParsingErrorCodes>;
}


Expand Down