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
2 changes: 1 addition & 1 deletion src/models/rfid-session-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export interface RfidSessionData {
* @type {RfidAccessKey}
* @memberof RfidSessionData
*/
'Session_key': RfidAccessKey;
'Session_key'?: RfidAccessKey;
/**
*
* @type {RfidTerminal}
Expand Down
10 changes: 9 additions & 1 deletion src/models/source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,15 @@ export enum Source {
/**
* External
*/
EXTERNAL = 'EXTERNAL'
EXTERNAL = 'EXTERNAL',
/**
* Live
*/
LIVE = 'LIVE',
/**
* Fingerprint
*/
FINGERPRINT = 'FINGERPRINT'
}


Expand Down
2 changes: 1 addition & 1 deletion src/models/visual-extended-field-item.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export interface VisualExtendedFieldItem {
* @type {string}
* @memberof VisualExtendedFieldItem
*/
'Buf_Text': string;
'Buf_Text'?: string;
/**
*
* @type {string}
Expand Down