@cello-protocol/client 0.0.9 → 0.0.10
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/dist/mcp-server.d.ts +1 -1
- package/dist/mcp-server.js +1 -1
- package/package.json +3 -3
package/dist/mcp-server.d.ts
CHANGED
|
@@ -268,7 +268,7 @@ import type { ClientBackup } from "./client-backup.js";
|
|
|
268
268
|
* Overridable via CELLO_DEMO_AGENT_ID env var without a code change.
|
|
269
269
|
* Must NOT be hardcoded as a string literal in tool implementations.
|
|
270
270
|
*/
|
|
271
|
-
export declare const DEFAULT_DEMO_AGENT_ID = "
|
|
271
|
+
export declare const DEFAULT_DEMO_AGENT_ID = "ba493e6eca98924f02378ac1a5de81d3";
|
|
272
272
|
export declare function createMcpSessionServer(node: CelloNode, client: CelloClient, keyProvider: KeyProvider, opts?: {
|
|
273
273
|
checkpointStatusProvider?: CheckpointStatusProvider;
|
|
274
274
|
clientBackup?: ClientBackup;
|
package/dist/mcp-server.js
CHANGED
|
@@ -286,7 +286,7 @@ const NOT_REGISTERED_ERROR = jsonText({
|
|
|
286
286
|
* Overridable via CELLO_DEMO_AGENT_ID env var without a code change.
|
|
287
287
|
* Must NOT be hardcoded as a string literal in tool implementations.
|
|
288
288
|
*/
|
|
289
|
-
export const DEFAULT_DEMO_AGENT_ID = "
|
|
289
|
+
export const DEFAULT_DEMO_AGENT_ID = "ba493e6eca98924f02378ac1a5de81d3";
|
|
290
290
|
function toHex(bytes) {
|
|
291
291
|
return Buffer.from(bytes).toString("hex");
|
|
292
292
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cello-protocol/client",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"it-pipe": "^3.0.1",
|
|
35
35
|
"zod": "^4.4.2",
|
|
36
36
|
"@cello-protocol/protocol-types": "0.0.3",
|
|
37
|
-
"@cello-protocol/
|
|
38
|
-
"@cello-protocol/
|
|
37
|
+
"@cello-protocol/crypto": "0.0.4",
|
|
38
|
+
"@cello-protocol/transport": "0.0.3"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@claude-flow/testing": "3.0.0-alpha.6",
|