mirror of
https://github.com/turnstonelabs/turnstone.git
synced 2026-08-12 23:12:23 -06:00
4a72b2ce19
Stage 2 Priority 0 Step 0.5 follow-on. The handwritten Python
OpenAPI spec already moved to ``/v1/api/workstreams/`` in the URL
sweep commit; this just regenerates ``sdk/typescript/openapi-{server,console}.json``
from those specs so generated TS callers see the new paths.
Bumps the TS SDK to 0.4.0 to flag the URL-shape break for any
1.5.0aN-era consumer of the experimental coord client. Python SDK
needs no change — it never exposed the coord HTTP surface.
TS typecheck + 32 vitest tests pass.
39 lines
749 B
JSON
39 lines
749 B
JSON
{
|
|
"name": "@turnstone/sdk",
|
|
"version": "0.4.0",
|
|
"description": "TypeScript client SDK for the turnstone AI orchestration platform",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"typecheck": "tsc --noEmit",
|
|
"generate-types": "python scripts/generate-types.py"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"keywords": [
|
|
"turnstone",
|
|
"ai",
|
|
"llm",
|
|
"agent",
|
|
"sdk",
|
|
"client"
|
|
],
|
|
"license": "BUSL-1.1",
|
|
"devDependencies": {
|
|
"typescript": "^6.0.0",
|
|
"vitest": "^4.1"
|
|
}
|
|
}
|