@1claw/sdk 0.26.0 → 0.28.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.
- package/README.md +2 -2
- package/dist/generated/api-types.d.ts +486 -0
- package/dist/generated/api-types.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/resources/agents.d.ts +20 -1
- package/dist/resources/agents.d.ts.map +1 -1
- package/dist/resources/agents.js +28 -0
- package/dist/resources/agents.js.map +1 -1
- package/dist/resources/platform.d.ts +5 -1
- package/dist/resources/platform.d.ts.map +1 -1
- package/dist/resources/platform.js +8 -0
- package/dist/resources/platform.js.map +1 -1
- package/dist/resources/treasury.d.ts +50 -0
- package/dist/resources/treasury.d.ts.map +1 -1
- package/dist/resources/treasury.js +17 -0
- package/dist/resources/treasury.js.map +1 -1
- package/dist/types.d.ts +66 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +54 -54
package/package.json
CHANGED
|
@@ -1,57 +1,57 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
},
|
|
13
|
-
"./mcp": {
|
|
14
|
-
"types": "./dist/mcp/index.d.ts",
|
|
15
|
-
"import": "./dist/mcp/index.js"
|
|
16
|
-
}
|
|
2
|
+
"name": "@1claw/sdk",
|
|
3
|
+
"version": "0.28.0",
|
|
4
|
+
"description": "TypeScript SDK for 1Claw Vault \u2014 secret management for AI agents",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
17
12
|
},
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
],
|
|
22
|
-
"scripts": {
|
|
23
|
-
"generate": "openapi-typescript ../openapi-spec/openapi.yaml -o src/generated/api-types.ts",
|
|
24
|
-
"build": "tsc",
|
|
25
|
-
"clean": "rm -rf dist",
|
|
26
|
-
"test": "vitest",
|
|
27
|
-
"prepublishOnly": "npm run generate && npm run clean && npm run build"
|
|
28
|
-
},
|
|
29
|
-
"keywords": [
|
|
30
|
-
"1claw",
|
|
31
|
-
"secrets",
|
|
32
|
-
"vault",
|
|
33
|
-
"ai-agents",
|
|
34
|
-
"x402",
|
|
35
|
-
"hsm",
|
|
36
|
-
"mcp",
|
|
37
|
-
"model-context-protocol",
|
|
38
|
-
"claude",
|
|
39
|
-
"cursor",
|
|
40
|
-
"typescript",
|
|
41
|
-
"api-keys",
|
|
42
|
-
"zero-trust"
|
|
43
|
-
],
|
|
44
|
-
"publishConfig": {
|
|
45
|
-
"access": "public"
|
|
46
|
-
},
|
|
47
|
-
"license": "MIT",
|
|
48
|
-
"repository": {
|
|
49
|
-
"type": "git",
|
|
50
|
-
"url": "https://github.com/1clawAI/1claw-sdk.git"
|
|
51
|
-
},
|
|
52
|
-
"devDependencies": {
|
|
53
|
-
"openapi-typescript": "^7.13.0",
|
|
54
|
-
"typescript": "^5.0.0",
|
|
55
|
-
"vitest": "^3.0.0"
|
|
13
|
+
"./mcp": {
|
|
14
|
+
"types": "./dist/mcp/index.d.ts",
|
|
15
|
+
"import": "./dist/mcp/index.js"
|
|
56
16
|
}
|
|
57
|
-
}
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"README.md"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"generate": "openapi-typescript ../openapi-spec/openapi.yaml -o src/generated/api-types.ts",
|
|
24
|
+
"build": "tsc",
|
|
25
|
+
"clean": "rm -rf dist",
|
|
26
|
+
"test": "vitest",
|
|
27
|
+
"prepublishOnly": "npm run generate && npm run clean && npm run build"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"1claw",
|
|
31
|
+
"secrets",
|
|
32
|
+
"vault",
|
|
33
|
+
"ai-agents",
|
|
34
|
+
"x402",
|
|
35
|
+
"hsm",
|
|
36
|
+
"mcp",
|
|
37
|
+
"model-context-protocol",
|
|
38
|
+
"claude",
|
|
39
|
+
"cursor",
|
|
40
|
+
"typescript",
|
|
41
|
+
"api-keys",
|
|
42
|
+
"zero-trust"
|
|
43
|
+
],
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"access": "public"
|
|
46
|
+
},
|
|
47
|
+
"license": "MIT",
|
|
48
|
+
"repository": {
|
|
49
|
+
"type": "git",
|
|
50
|
+
"url": "https://github.com/1clawAI/1claw-sdk.git"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"openapi-typescript": "^7.13.0",
|
|
54
|
+
"typescript": "^5.0.0",
|
|
55
|
+
"vitest": "^3.0.0"
|
|
56
|
+
}
|
|
57
|
+
}
|