@arke-institute/sdk 2.0.0 → 2.2.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.
@@ -0,0 +1,7 @@
1
+ {
2
+ "specVersion": "1.0.0",
3
+ "apiVersion": "1.0.0",
4
+ "fetchedAt": "2026-01-01T03:48:16.038Z",
5
+ "sourceUrl": "https://arke-v1.arke.institute/openapi.json",
6
+ "openApiVersion": "3.1.0"
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arke-institute/sdk",
3
- "version": "2.0.0",
3
+ "version": "2.2.0",
4
4
  "description": "TypeScript SDK for the Arke API - auto-generated from OpenAPI spec",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -21,10 +21,15 @@
21
21
  "types": "./dist/operations/index.d.ts",
22
22
  "import": "./dist/operations/index.js",
23
23
  "require": "./dist/operations/index.cjs"
24
+ },
25
+ "./spec": {
26
+ "import": "./openapi/spec.json",
27
+ "require": "./openapi/spec.json"
24
28
  }
25
29
  },
26
30
  "files": [
27
31
  "dist",
32
+ "openapi",
28
33
  "README.md"
29
34
  ],
30
35
  "scripts": {
@@ -37,6 +42,7 @@
37
42
  "dev": "tsup --watch",
38
43
  "test": "vitest run",
39
44
  "test:watch": "vitest",
45
+ "test:e2e": "vitest run --config vitest.e2e.config.ts",
40
46
  "typecheck": "tsc --noEmit",
41
47
  "clean": "rm -rf dist",
42
48
  "prepublishOnly": "npm run build",
@@ -46,15 +52,17 @@
46
52
  "publish-all:dry": "npm run generate && npm run test && npm run build && npm run publish:dry"
47
53
  },
48
54
  "dependencies": {
55
+ "multiformats": "^13.4.2",
49
56
  "openapi-fetch": "^0.13.0"
50
57
  },
51
58
  "devDependencies": {
59
+ "@types/node": "^22.0.0",
60
+ "jose": "^6.1.3",
52
61
  "openapi-typescript": "^7.4.0",
53
62
  "tsup": "^8.3.0",
54
- "typescript": "^5.7.0",
55
- "vitest": "^2.1.0",
56
63
  "tsx": "^4.19.0",
57
- "@types/node": "^22.0.0"
64
+ "typescript": "^5.7.0",
65
+ "vitest": "^2.1.0"
58
66
  },
59
67
  "publishConfig": {
60
68
  "access": "public"