@eng-ai/sdk 2.8.9 → 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 +9 -0
- package/package.json +1 -1
- package/src/client.js +18 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
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
|
+
|
|
5
14
|
## 2.8.9 - 2026-06-26
|
|
6
15
|
|
|
7
16
|
### Added
|
package/package.json
CHANGED
package/src/client.js
CHANGED
|
@@ -670,6 +670,24 @@ export class EngAIClient {
|
|
|
670
670
|
});
|
|
671
671
|
}
|
|
672
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
|
+
|
|
673
691
|
async setVoiceLiveEnabled(enabled) {
|
|
674
692
|
return await this._request("/settings/voice-live", {
|
|
675
693
|
method: "PUT",
|