@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/README.md +3 -3
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +487 -10
- package/dist/index.d.ts +487 -10
- package/dist/index.js +1 -1
- package/openapi.json +568 -11
- package/package.json +2 -2
- package/src/client.ts +1 -1
- package/src/index.ts +1 -1
- package/src/types.generated.ts +486 -9
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stablebaseline/sdk",
|
|
3
|
-
"version": "0.
|
|
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.
|
|
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
|
|
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
|
|
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";
|