Skip to content
Closed
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
2 changes: 0 additions & 2 deletions src/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ models/rfid-access-control-info.ts
models/rfid-access-control-procedure-type.ts
models/rfid-access-key.ts
models/rfid-achip.ts
models/rfid-application-type.ts
models/rfid-application.ts
models/rfid-attribute-data.ts
models/rfid-attribute-name.ts
Expand All @@ -168,7 +167,6 @@ models/rfid-certificate-origin.ts
models/rfid-certificate-type.ts
models/rfid-data-file-type.ts
models/rfid-data-file.ts
models/rfid-data-group-type-tag.ts
models/rfid-dg1.ts
models/rfid-distinguished-name.ts
models/rfid-location.ts
Expand Down
2 changes: 0 additions & 2 deletions src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ export * from './rfid-access-control-info';
export * from './rfid-access-control-procedure-type';
export * from './rfid-access-key';
export * from './rfid-application';
export * from './rfid-application-type';
export * from './rfid-attribute-data';
export * from './rfid-attribute-name';
export * from './rfid-authentication-procedure-type';
Expand All @@ -170,7 +169,6 @@ export * from './rfid-certificate-type';
export * from './rfid-dg1';
export * from './rfid-data-file';
export * from './rfid-data-file-type';
export * from './rfid-data-group-type-tag';
export * from './rfid-distinguished-name';
export * from './rfid-location';
export * from './rfid-origin';
Expand Down
7 changes: 2 additions & 5 deletions src/models/rfid-application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
import type { RFIDErrorCodes } from './rfiderror-codes';
// May contain unused imports in some cases
// @ts-ignore
import type { RfidApplicationType } from './rfid-application-type';
// May contain unused imports in some cases
// @ts-ignore
import type { RfidDataFile } from './rfid-data-file';

/**
Expand All @@ -24,10 +21,10 @@ import type { RfidDataFile } from './rfid-data-file';
export interface RfidApplication {
/**
*
* @type {RfidApplicationType}
* @type {number}
* @memberof RfidApplication
*/
'Type': RfidApplicationType;
'Type': number;
/**
*
* @type {RFIDErrorCodes}
Expand Down
7 changes: 2 additions & 5 deletions src/models/rfid-dg1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
// May contain unused imports in some cases
// @ts-ignore
import type { DocumentFormat } from './document-format';
// May contain unused imports in some cases
// @ts-ignore
import type { RfidDataGroupTypeTag } from './rfid-data-group-type-tag';

/**
* Structure used to store the contents of EF.DG1 informational data group of ePassport application – document MRZ data
Expand All @@ -21,10 +18,10 @@ import type { RfidDataGroupTypeTag } from './rfid-data-group-type-tag';
export interface RfidDG1 {
/**
*
* @type {RfidDataGroupTypeTag}
* @type {number}
* @memberof RfidDG1
*/
'Type': RfidDataGroupTypeTag;
'Type': number;
/**
*
* @type {DocumentFormat}
Expand Down