tersign 0.1.9 → 0.1.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.
@@ -8,6 +8,6 @@ export declare function envDeps(env?: Record<string, string | undefined>): McpDe
8
8
  * every client; mcp.test.ts pins it against package.json so a release bump can't drift it. */
9
9
  export declare const MCP_SERVER_IDENTITY: {
10
10
  readonly name: "tersign";
11
- readonly version: "0.1.9";
11
+ readonly version: "0.1.10";
12
12
  };
13
13
  export declare function buildServer(deps: McpDeps): McpServer;
@@ -45,7 +45,7 @@ function json(value) {
45
45
  }
46
46
  /** MUST match package.json name/version — the MCP handshake self-reports this identity to
47
47
  * every client; mcp.test.ts pins it against package.json so a release bump can't drift it. */
48
- export const MCP_SERVER_IDENTITY = { name: 'tersign', version: '0.1.9' };
48
+ export const MCP_SERVER_IDENTITY = { name: 'tersign', version: '0.1.10' };
49
49
  export function buildServer(deps) {
50
50
  const server = new McpServer(MCP_SERVER_IDENTITY);
51
51
  server.registerTool('issue_receipt', {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tersign",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Tersign \u2014 the evidence layer for the agent economy. Counter-signed receipts, agent action records, idempotency enforcement, refunds, disputes, and jury-ready evidence envelopes for x402/agent-commerce sellers.",
5
5
  "license": "MIT",
6
6
  "type": "module",