@eng-ai/sdk 2.8.8 → 2.8.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,25 @@
2
2
 
3
3
  All notable changes to `@eng-ai/sdk` will be documented in this file.
4
4
 
5
+ ## 2.8.10 - 2026-06-29
6
+
7
+ ### Added
8
+
9
+ - Desktop account management endpoints:
10
+ - `getDesktopPolicy()` — retrieves the active desktop usage policy for the account (`GET /desktop/policy`).
11
+ - `getDesktopAccountScope()` — retrieves the account-level desktop scope and feature flags (`GET /desktop/account-scope`).
12
+ - `getDesktopKeyStatus()` — retrieves the current API key status for desktop clients (`GET /desktop/key-status`).
13
+
14
+ ## 2.8.9 - 2026-06-26
15
+
16
+ ### Added
17
+
18
+ - Azure OpenAI settings serialization support:
19
+ - `azure_openai_endpoint`
20
+ - `azure_openai_region`
21
+ - `azure_openai_api_version`
22
+ - `getDesktopOrchestrationManifest()` for authenticated desktop orchestration discovery.
23
+
5
24
  ## 2.8.8 - 2026-06-25
6
25
 
7
26
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eng-ai/sdk",
3
- "version": "2.8.8",
3
+ "version": "2.8.10",
4
4
  "description": "Official JavaScript SDK for ENG-AI External API v2",
5
5
  "type": "module",
6
6
  "main": "./src/client.js",
package/src/client.js CHANGED
@@ -645,6 +645,10 @@ export class EngAIClient {
645
645
  vertex_location: payload?.vertexLocation ?? payload?.vertex_location,
646
646
  vertex_service_account_json:
647
647
  payload?.vertexServiceAccountJson ?? payload?.vertex_service_account_json,
648
+ azure_openai_endpoint: payload?.azureOpenaiEndpoint ?? payload?.azure_openai_endpoint,
649
+ azure_openai_region: payload?.azureOpenaiRegion ?? payload?.azure_openai_region,
650
+ azure_openai_api_version:
651
+ payload?.azureOpenaiApiVersion ?? payload?.azure_openai_api_version,
648
652
  preferred_timezone: payload?.preferredTimezone ?? payload?.preferred_timezone,
649
653
  };
650
654
 
@@ -660,6 +664,30 @@ export class EngAIClient {
660
664
  });
661
665
  }
662
666
 
667
+ async getDesktopOrchestrationManifest() {
668
+ return await this._request("/desktop/orchestration-manifest", {
669
+ method: "GET",
670
+ });
671
+ }
672
+
673
+ async getDesktopPolicy() {
674
+ return await this._request("/desktop/policy", {
675
+ method: "GET",
676
+ });
677
+ }
678
+
679
+ async getDesktopAccountScope() {
680
+ return await this._request("/desktop/account-scope", {
681
+ method: "GET",
682
+ });
683
+ }
684
+
685
+ async getDesktopKeyStatus() {
686
+ return await this._request("/desktop/key-status", {
687
+ method: "GET",
688
+ });
689
+ }
690
+
663
691
  async setVoiceLiveEnabled(enabled) {
664
692
  return await this._request("/settings/voice-live", {
665
693
  method: "PUT",