@apowerb/apowerb-sdk 0.1.18 → 0.1.20

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/api.js +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apowerb/apowerb-sdk",
3
- "version": "0.1.18",
3
+ "version": "0.1.20",
4
4
  "description": "JavaScript SDK for the apowerb backend: agents, tools, RAG, BI, webhooks and billing. Dependency-free, runs in the browser and in Node.",
5
5
  "license": "MIT",
6
6
  "repository": {
package/src/api.js CHANGED
@@ -209,6 +209,11 @@ export const getModels = () => request("/api/models");
209
209
  // il ne plafonne pas.
210
210
  export const getDefaultLlmUsage = () => request("/api/config/default-llm/usage");
211
211
 
212
+ // Ce que cette installation a configure, capacite par capacite. Jamais une
213
+ // valeur : le coeur sert des drapeaux, et les NOMS des variables manquantes
214
+ // aux seuls administrateurs.
215
+ export const getSetupStatus = () => request("/api/config/setup");
216
+
212
217
  // --- MCP Configs ---
213
218
  export const listMcpConfigs = () => request("/api/mcp_configs");
214
219