@toon-protocol/client-mcp 0.13.1 → 0.13.2
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/app/index.html +8 -8
- package/dist/{chunk-YVLSWU46.js → chunk-BINI3PEC.js} +882 -876
- package/dist/chunk-BINI3PEC.js.map +1 -0
- package/dist/daemon.js +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.js +1 -1
- package/package.json +3 -3
- package/dist/chunk-YVLSWU46.js.map +0 -1
package/dist/daemon.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -659,6 +659,11 @@ interface GitPatchRequest {
|
|
|
659
659
|
repoAddr: GitRepoAddr;
|
|
660
660
|
/** Patch/PR title (`subject` tag). */
|
|
661
661
|
title: string;
|
|
662
|
+
/**
|
|
663
|
+
* PR body/cover text (`description` tag). Kept OUT of the event content so
|
|
664
|
+
* `git am` still consumes the patch text verbatim (#280).
|
|
665
|
+
*/
|
|
666
|
+
description?: string;
|
|
662
667
|
/** Literal patch text. Mutually exclusive with `repoPath`+`range`. */
|
|
663
668
|
patchText?: string;
|
|
664
669
|
/** Local repository to run format-patch in. Requires `range`. */
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toon-protocol/client-mcp",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.2",
|
|
4
4
|
"description": "Always-on local daemon + MCP server letting a Claude agent (Desktop or Code) act as a TOON Protocol client: pay-to-write publishing, free reads, channel/balance management, and swaps.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Jonathan Green",
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
"vitest": "^1.0.0",
|
|
51
51
|
"@toon-protocol/arweave": "0.2.0",
|
|
52
52
|
"@toon-protocol/client": "0.15.0",
|
|
53
|
-
"@toon-protocol/rig": "
|
|
54
|
-
"@toon-protocol/views": "0.13.
|
|
53
|
+
"@toon-protocol/rig": "2.2.0",
|
|
54
|
+
"@toon-protocol/views": "0.13.2"
|
|
55
55
|
},
|
|
56
56
|
"engines": {
|
|
57
57
|
"node": ">=20"
|