@neta-art/cohub 8.1.0 → 8.3.0
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 +47 -35
- package/dist/chunks/http.d.ts +19 -32
- package/dist/chunks/http.js +22 -47
- package/dist/chunks/websocket.d.ts +40 -2
- package/dist/http.d.ts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +8 -4
- package/docs/work-runtime-guide.md +348 -272
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neta-art/cohub",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.3.0",
|
|
4
4
|
"description": "Cohub SDK for spaces, sessions, boards, and realtime agent collaboration.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"private": false,
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"build": "tsdown",
|
|
101
101
|
"lint": "biome lint .",
|
|
102
102
|
"lint:fix": "biome lint --write .",
|
|
103
|
-
"test": "node
|
|
103
|
+
"test": "node ./scripts/test.mjs",
|
|
104
104
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
105
105
|
}
|
|
106
106
|
}
|