@eng-ai/sdk 2.8.8 → 2.8.9

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,16 @@
2
2
 
3
3
  All notable changes to `@eng-ai/sdk` will be documented in this file.
4
4
 
5
+ ## 2.8.9 - 2026-06-26
6
+
7
+ ### Added
8
+
9
+ - Azure OpenAI settings serialization support:
10
+ - `azure_openai_endpoint`
11
+ - `azure_openai_region`
12
+ - `azure_openai_api_version`
13
+ - `getDesktopOrchestrationManifest()` for authenticated desktop orchestration discovery.
14
+
5
15
  ## 2.8.8 - 2026-06-25
6
16
 
7
17
  ### 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.9",
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,12 @@ 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
+
663
673
  async setVoiceLiveEnabled(enabled) {
664
674
  return await this._request("/settings/voice-live", {
665
675
  method: "PUT",