Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 12cbe67

Browse files
Merge pull request #246 from regulaforensics/853935f7
Commit: 853935f7
2 parents 6095e22 + 1dd2cd1 commit 12cbe67

File tree

6 files changed

+20
-17
lines changed

6 files changed

+20
-17
lines changed

‎src/models/parsed-data.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
*/
77

88

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

1013
/**
1114
*
@@ -15,9 +18,9 @@
1518
export interface ParsedData {
1619
/**
1720
*
18-
* @type {Array<number>}
21+
* @type {Array<ParsingNotificationCodes>}
1922
* @memberof ParsedData
2023
*/
21-
'ParsingNotifications'?: Array<number>;
24+
'ParsingNotifications'?: Array<ParsingNotificationCodes>;
2225
}
2326

‎src/models/rfid-access-control-info.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
// May contain unused imports in some cases
1010
// @ts-ignore
11-
import type { ParsingNotificationCodes } from './parsing-notification-codes';
11+
import type { ParsingErrorCodes } from './parsing-error-codes';
1212
// May contain unused imports in some cases
1313
// @ts-ignore
1414
import type { RFIDErrorCodes } from './rfiderror-codes';
@@ -42,10 +42,10 @@ export interface RfidAccessControlInfo {
4242
'ActiveOptionIdx'?: number;
4343
/**
4444
* List of remarks arisen during the procedure.
45-
* @type {Array<ParsingNotificationCodes>}
45+
* @type {Array<ParsingErrorCodes>}
4646
* @memberof RfidAccessControlInfo
4747
*/
48-
'Notifications': Array<ParsingNotificationCodes>;
48+
'Notifications': Array<ParsingErrorCodes>;
4949
/**
5050
* 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
5151
* @type {Array<any>}

‎src/models/rfid-certificate-ex.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
// May contain unused imports in some cases
1010
// @ts-ignore
11-
import type { ParsingNotificationCodes } from './parsing-notification-codes';
11+
import type { ParsingErrorCodes } from './parsing-error-codes';
1212
// May contain unused imports in some cases
1313
// @ts-ignore
1414
import type { RFIDErrorCodes } from './rfiderror-codes';
@@ -87,10 +87,10 @@ export interface RfidCertificateEx {
8787
'Extensions': Array<RfidPkiExtension>;
8888
/**
8989
* List of remarks arisen during the analysis of the certificate data structure and its validity verification.
90-
* @type {Array<ParsingNotificationCodes>}
90+
* @type {Array<ParsingErrorCodes>}
9191
* @memberof RfidCertificateEx
9292
*/
93-
'Notifications': Array<ParsingNotificationCodes>;
93+
'Notifications': Array<ParsingErrorCodes>;
9494
/**
9595
*
9696
* @type {RfidCertificateOrigin}

‎src/models/rfid-data-file.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import type { GraphicFieldType } from './graphic-field-type';
1414
import type { ParsedData } from './parsed-data';
1515
// May contain unused imports in some cases
1616
// @ts-ignore
17-
import type { ParsingNotificationCodes } from './parsing-notification-codes';
17+
import type { ParsingErrorCodes } from './parsing-error-codes';
1818
// May contain unused imports in some cases
1919
// @ts-ignore
2020
import type { RFIDErrorCodes } from './rfiderror-codes';
@@ -75,10 +75,10 @@ export interface RfidDataFile {
7575
'PA_Status'?: RFIDErrorCodes;
7676
/**
7777
* List of remarks arisen when reading data from the memory of the chip and analysing their ASN.1-structure.
78-
* @type {Array<ParsingNotificationCodes>}
78+
* @type {Array<ParsingErrorCodes>}
7979
* @memberof RfidDataFile
8080
*/
81-
'Notifications'?: Array<ParsingNotificationCodes>;
81+
'Notifications'?: Array<ParsingErrorCodes>;
8282
/**
8383
* List of document text fields formed on the basis of the file contents
8484
* @type {Array<TextFieldType>}

‎src/models/rfid-security-object.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
// May contain unused imports in some cases
1010
// @ts-ignore
11-
import type { ParsingNotificationCodes } from './parsing-notification-codes';
11+
import type { ParsingErrorCodes } from './parsing-error-codes';
1212
// May contain unused imports in some cases
1313
// @ts-ignore
1414
import type { RfidSignerInfoEx } from './rfid-signer-info-ex';
@@ -39,10 +39,10 @@ export interface RfidSecurityObject {
3939
'FileReference': number;
4040
/**
4141
* List of remarks arisen during the analysis of SO data structure.
42-
* @type {Array<ParsingNotificationCodes>}
42+
* @type {Array<ParsingErrorCodes>}
4343
* @memberof RfidSecurityObject
4444
*/
45-
'Notifications': Array<ParsingNotificationCodes>;
45+
'Notifications': Array<ParsingErrorCodes>;
4646
/**
4747
* List of containers to store information about digital signature objects contained in the SO
4848
* @type {Array<RfidSignerInfoEx>}

‎src/models/rfid-signer-info-ex.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
// May contain unused imports in some cases
1010
// @ts-ignore
11-
import type { ParsingNotificationCodes } from './parsing-notification-codes';
11+
import type { ParsingErrorCodes } from './parsing-error-codes';
1212
// May contain unused imports in some cases
1313
// @ts-ignore
1414
import type { RFIDErrorCodes } from './rfiderror-codes';
@@ -99,10 +99,10 @@ export interface RfidSignerInfoEx {
9999
'DataToHash': string;
100100
/**
101101
*
102-
* @type {Array<ParsingNotificationCodes>}
102+
* @type {Array<ParsingErrorCodes>}
103103
* @memberof RfidSignerInfoEx
104104
*/
105-
'Notifications': Array<ParsingNotificationCodes>;
105+
'Notifications': Array<ParsingErrorCodes>;
106106
}
107107

108108

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /