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
9 changes: 3 additions & 6 deletions src/models/rfid-access-control-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -41,11 +38,11 @@ export interface RfidAccessControlInfo {
*/
'ActiveOptionIdx'?: number;
/**
* List of remarks arisen during the procedure.
* @type {Array<ParsingErrorCodes>}
* List of remarks arisen during the procedure. Can be ParsingErrorCodes or ParsingNotificationCodes enum.
* @type {Array<number>}
* @memberof RfidAccessControlInfo
*/
'Notifications': Array<ParsingErrorCodes>;
'Notifications': Array<number>;
/**
* 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
9 changes: 3 additions & 6 deletions src/models/rfid-certificate-ex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -86,11 +83,11 @@ export interface RfidCertificateEx {
*/
'Extensions': Array<RfidPkiExtension>;
/**
* List of remarks arisen during the analysis of the certificate data structure and its validity verification.
* @type {Array<ParsingErrorCodes>}
* List of remarks arisen during the analysis of the certificate data structure and its validity verification. Can be ParsingErrorCodes or ParsingNotificationCodes enum.
* @type {Array<number>}
* @memberof RfidCertificateEx
*/
'Notifications': Array<ParsingErrorCodes>;
'Notifications': Array<number>;
/**
*
* @type {RfidCertificateOrigin}
Expand Down
9 changes: 3 additions & 6 deletions src/models/rfid-data-file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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<ParsingErrorCodes>}
* 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<number>}
* @memberof RfidDataFile
*/
'Notifications'?: Array<ParsingErrorCodes>;
'Notifications'?: Array<number>;
/**
* List of document text fields formed on the basis of the file contents
* @type {Array<TextFieldType>}
Expand Down
9 changes: 3 additions & 6 deletions src/models/rfid-security-object.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -38,11 +35,11 @@ export interface RfidSecurityObject {
*/
'FileReference': number;
/**
* List of remarks arisen during the analysis of SO data structure.
* @type {Array<ParsingErrorCodes>}
* List of remarks arisen during the analysis of SO data structure. Can be ParsingErrorCodes or ParsingNotificationCodes enum.
* @type {Array<number>}
* @memberof RfidSecurityObject
*/
'Notifications': Array<ParsingErrorCodes>;
'Notifications': Array<number>;
/**
* List of containers to store information about digital signature objects contained in the SO
* @type {Array<RfidSignerInfoEx>}
Expand Down
9 changes: 3 additions & 6 deletions src/models/rfid-signer-info-ex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -98,11 +95,11 @@ export interface RfidSignerInfoEx {
*/
'DataToHash': string;
/**
*
* @type {Array<ParsingErrorCodes>}
* Can be ParsingErrorCodes or ParsingNotificationCodes enum.
* @type {Array<number>}
* @memberof RfidSignerInfoEx
*/
'Notifications': Array<ParsingErrorCodes>;
'Notifications': Array<number>;
}


Expand Down