@attesso/sdk 1.1.0 → 1.1.1

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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +10 -10
package/README.md CHANGED
@@ -103,6 +103,8 @@ const result = await generateText({
103
103
  | `attesso_cancel` | `{ paymentId }` | CancelResponse |
104
104
  | `attesso_check_balance` | `{ mandateId? }` | `{ available, currency, status }` |
105
105
 
106
+ > **Note**: The Vercel AI SDK uses `attesso_pay` for payments. If using the MCP server (`@attesso/mcp`) directly with Claude Desktop or other MCP clients, the equivalent tool is named `attesso_execute_payment`.
107
+
106
108
  ## Origin Restrictions
107
109
 
108
110
  ```typescript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@attesso/sdk",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Isomorphic client for the Attesso Settlement Protocol. FIDO2-signed execution bindings.",
5
5
  "author": "Attesso",
6
6
  "license": "MIT",
@@ -32,6 +32,12 @@
32
32
  "require": "./dist/vercel/index.js"
33
33
  }
34
34
  },
35
+ "scripts": {
36
+ "build": "tsc",
37
+ "dev": "tsc --watch",
38
+ "clean": "rm -rf dist",
39
+ "test": "vitest run"
40
+ },
35
41
  "keywords": [
36
42
  "attesso",
37
43
  "settlement",
@@ -42,8 +48,8 @@
42
48
  "vercel-ai-sdk"
43
49
  ],
44
50
  "dependencies": {
45
- "@attesso/types": "1.0.7",
46
- "@attesso/gatekeeper": "1.0.4"
51
+ "@attesso/gatekeeper": "workspace:*",
52
+ "@attesso/types": "workspace:*"
47
53
  },
48
54
  "peerDependencies": {
49
55
  "ai": ">=3.0.0",
@@ -62,11 +68,5 @@
62
68
  "typescript": "^5.7.0",
63
69
  "vitest": "^2.1.0",
64
70
  "zod": "^3.23.0"
65
- },
66
- "scripts": {
67
- "build": "tsc",
68
- "dev": "tsc --watch",
69
- "clean": "rm -rf dist",
70
- "test": "vitest run"
71
71
  }
72
- }
72
+ }