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
1 change: 0 additions & 1 deletion src/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,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
1 change: 0 additions & 1 deletion src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,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
10 changes: 3 additions & 7 deletions src/models/rfid-application-type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@

export enum RfidApplicationType {
/**
* Not defined
* Root files
*/
UNSPECIFIED = 0,
ROOT_FILES = 0,
/**
* ePassport application
*/
Expand Down Expand Up @@ -49,11 +49,7 @@ export enum RfidApplicationType {
/**
* Digital Travel Credentials
*/
eDTC_PC = 8,
/**
* Master File
*/
ROOT_FILES = 0
eDTC_PC = 8
}


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