|
1 | 1 | { |
2 | 2 | "name": "openclaw-taas-affinity", |
3 | | - "version": "0.5.0", |
4 | | - "description": "OpenClaw provider plugin \u2014 CloudSigma TaaS session affinity. Injects a stable X-Session-Id header per conversation so TaaS can pin the session to the same OAuth token / Bedrock region / Claude Code node, maximising prompt-cache hit rates.", |
| 3 | + "version": "0.5.1", |
| 4 | + "description": "OpenClaw provider plugin — CloudSigma TaaS session affinity. Injects a stable X-Session-Id header per conversation so TaaS can pin the session to the same OAuth token / Bedrock region / Claude Code node, maximising prompt-cache hit rates.", |
5 | 5 | "type": "module", |
6 | | - "main": "index.ts", |
| 6 | + "main": "dist/index.js", |
7 | 7 | "openclaw": { |
8 | 8 | "extensions": [ |
9 | | - "./index.ts" |
| 9 | + "./dist/index.js" |
10 | 10 | ], |
11 | 11 | "providers": [ |
12 | 12 | "cloudsigma", |
13 | 13 | "cloudsigma-staging" |
14 | 14 | ], |
15 | 15 | "compat": { |
16 | | - "pluginApi": ">=2026.5.24", |
17 | | - "minGatewayVersion": "2026.5.24" |
| 16 | + "pluginApi": ">=2026.4.27", |
| 17 | + "minGatewayVersion": "2026.4.27" |
18 | 18 | }, |
19 | 19 | "build": { |
20 | | - "openclawVersion": "2026.5.24", |
21 | | - "pluginSdkVersion": "2026.5.24" |
| 20 | + "openclawVersion": "2026.4.27", |
| 21 | + "pluginSdkVersion": "2026.4.27" |
22 | 22 | } |
23 | 23 | }, |
24 | 24 | "scripts": { |
| 25 | + "build": "tsc -p tsconfig.build.json", |
| 26 | + "prepare": "npm run build", |
| 27 | + "prepublishOnly": "npm run build && npm test", |
25 | 28 | "typecheck": "tsc --noEmit", |
26 | 29 | "smoke": "node test/smoke.mjs", |
27 | 30 | "unit": "node --import tsx --test test/*.test.ts", |
|
38 | 41 | "author": "CloudSigma", |
39 | 42 | "license": "MIT", |
40 | 43 | "peerDependencies": { |
41 | | - "openclaw": ">=2026.5.24" |
| 44 | + "openclaw": ">=2026.4.27" |
42 | 45 | }, |
43 | 46 | "devDependencies": { |
44 | 47 | "@types/node": "^22.0.0", |
45 | 48 | "openclaw": "^2026.5.18", |
46 | 49 | "tsx": "^4.20.0", |
47 | 50 | "typescript": "^5.0.0" |
48 | | - } |
| 51 | + }, |
| 52 | + "types": "dist/index.d.ts", |
| 53 | + "files": [ |
| 54 | + "dist/", |
| 55 | + "openclaw.plugin.json", |
| 56 | + "README.md", |
| 57 | + "LICENSE" |
| 58 | + ] |
49 | 59 | } |
0 commit comments