From 7168165f15dd1335cb6240f2b99b0f784bc0469c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 18 Jul 2025 14:24:21 +0000 Subject: [PATCH] Commit: f3c3252a --- src/models/rfid-session-data.ts | 4 ++-- src/models/rfidpkdresource-type.ts | 10 +++++++++- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/src/models/rfid-session-data.ts b/src/models/rfid-session-data.ts index 128f22c..0f58744 100644 --- a/src/models/rfid-session-data.ts +++ b/src/models/rfid-session-data.ts @@ -42,10 +42,10 @@ import type { RfidTerminal } from './rfid-terminal'; export interface RfidSessionData { /** * Sign of virtual session when working with loaded data from a previous communication session with the electronic document - * @type {string} + * @type {boolean} * @memberof RfidSessionData */ - 'VirtualMode'?: string; + 'VirtualMode'?: boolean; /** * Text SDKVersion value in format A.B (e.g. 3.1) * @type {string} diff --git a/src/models/rfidpkdresource-type.ts b/src/models/rfidpkdresource-type.ts index 5e9f93c..1147707 100644 --- a/src/models/rfidpkdresource-type.ts +++ b/src/models/rfidpkdresource-type.ts @@ -45,7 +45,15 @@ export enum RFIDPKDResourceType { /** * Black List (.bl, .bls) */ - BL = 7 + BL = 7, + /** + * LDIF file contents for TA + */ + LDIF_TA = 8, + /** + * Master List with CV certificates for TA + */ + ML_TA = 9 }