@attesso/sdk 1.0.7 → 1.1.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.
Files changed (2) hide show
  1. package/dist/client.d.ts +1 -1
  2. package/package.json +10 -10
package/dist/client.d.ts CHANGED
@@ -11,7 +11,7 @@ export interface AttessoClientConfig {
11
11
  * @example
12
12
  * ```typescript
13
13
  * const client = new AttessoClient({
14
- * apiKey: 'sk_bot_xyz',
14
+ * apiKey: 'rk_test_xyz',
15
15
  * allowedOrigins: ['https://shop.example.com', 'https://*.trusted-merchant.com']
16
16
  * });
17
17
  * ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@attesso/sdk",
3
- "version": "1.0.7",
3
+ "version": "1.1.0",
4
4
  "description": "Isomorphic client for the Attesso Settlement Protocol. FIDO2-signed execution bindings.",
5
5
  "author": "Attesso",
6
6
  "license": "MIT",
@@ -32,12 +32,6 @@
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
- },
41
35
  "keywords": [
42
36
  "attesso",
43
37
  "settlement",
@@ -48,8 +42,8 @@
48
42
  "vercel-ai-sdk"
49
43
  ],
50
44
  "dependencies": {
51
- "@attesso/gatekeeper": "workspace:*",
52
- "@attesso/types": "workspace:*"
45
+ "@attesso/types": "1.0.7",
46
+ "@attesso/gatekeeper": "1.0.4"
53
47
  },
54
48
  "peerDependencies": {
55
49
  "ai": ">=3.0.0",
@@ -68,5 +62,11 @@
68
62
  "typescript": "^5.7.0",
69
63
  "vitest": "^2.1.0",
70
64
  "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
+ }