@stablebaseline/sdk 0.3.1 → 0.4.1

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stablebaseline/sdk",
3
- "version": "0.3.1",
4
- "description": "TypeScript SDK for the Stable Baseline REST API. End-to-end agent-managed company brain — docs, diagrams, plans, and a self-learning Knowledge Graph. 180 tools across 18 categories.",
3
+ "version": "0.4.1",
4
+ "description": "TypeScript SDK for the Stable Baseline REST API. End-to-end agent-managed company brain — docs, diagrams, plans, and a self-learning Knowledge Graph. 184 tools across 19 categories.",
5
5
  "homepage": "https://stablebaseline.io",
6
6
  "repository": {
7
7
  "type": "git",
package/src/client.ts CHANGED
@@ -93,7 +93,7 @@ export class StableBaseline {
93
93
  private signal?: AbortSignal;
94
94
 
95
95
  /**
96
- * Strongly-typed dispatch surface. Every entry is one of the 163 MCP tools.
96
+ * Strongly-typed dispatch surface. Every entry is one of the 184 MCP tools.
97
97
  *
98
98
  * const orgs = await sb.tools.listOrganisations({});
99
99
  * const doc = await sb.tools.createDocument({ folderId, title, cdmd });
package/src/index.ts CHANGED
@@ -10,7 +10,7 @@
10
10
  // cdmd: "# ...",
11
11
  // });
12
12
  //
13
- // All 163 MCP tools are reachable from `sb.tools.<toolName>(input)`. Types
13
+ // All 184 MCP tools are reachable from `sb.tools.<toolName>(input)`. Types
14
14
  // are generated from the live OpenAPI spec (`openapi.json` in this package).
15
15
 
16
16
  export { StableBaseline } from "./client.js";