feat: add node core/ui versions in bridge

This commit is contained in:
Peter Steinberger
2026-01-18 15:59:39 +00:00
parent 633e0d9382
commit 1721d04405
11 changed files with 123 additions and 2 deletions

View File

@@ -27,6 +27,8 @@ export type BridgeClientOptions = {
displayName?: string;
platform?: string;
version?: string;
coreVersion?: string;
uiVersion?: string;
deviceFamily?: string;
modelIdentifier?: string;
caps?: string[];
@@ -172,6 +174,8 @@ export class BridgeClient {
displayName: this.opts.displayName,
platform: this.opts.platform,
version: this.opts.version,
coreVersion: this.opts.coreVersion,
uiVersion: this.opts.uiVersion,
deviceFamily: this.opts.deviceFamily,
modelIdentifier: this.opts.modelIdentifier,
caps: this.opts.caps,
@@ -188,6 +192,8 @@ export class BridgeClient {
displayName: this.opts.displayName,
platform: this.opts.platform,
version: this.opts.version,
coreVersion: this.opts.coreVersion,
uiVersion: this.opts.uiVersion,
deviceFamily: this.opts.deviceFamily,
modelIdentifier: this.opts.modelIdentifier,
caps: this.opts.caps,