@fugood/buttress-server 2.25.8 → 2.25.9

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.
@@ -19,10 +19,18 @@ export interface BankBinding {
19
19
  keyName?: string;
20
20
  issuedAt?: string;
21
21
  }
22
+ export interface DevtoolsBinding {
23
+ token: string;
24
+ workspaceId: string;
25
+ expiresAt: string;
26
+ jti?: string;
27
+ }
22
28
  export interface WorkspaceState {
23
29
  workspace: WorkspaceBinding | null;
24
30
  serverKeyPair: ServerKeyPair | null;
25
31
  bank: BankBinding | null;
32
+ /** Optional for state files written before device credential provisioning. */
33
+ devtools?: DevtoolsBinding | null;
26
34
  }
27
35
  export declare const resolveStateDir: () => string;
28
36
  export declare const resolveStatePath: () => string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fugood/buttress-server",
3
- "version": "2.25.8",
3
+ "version": "2.25.9",
4
4
  "main": "lib/index.mjs",
5
5
  "types": "lib/index.d.ts",
6
6
  "type": "module",
@@ -42,8 +42,8 @@
42
42
  "@earendil-works/pi-tui": "^0.85.0",
43
43
  "@elysiajs/cors": "^1.1.1",
44
44
  "@elysiajs/node": "^1.4.2",
45
- "@fugood/llama.node": "^1.8.0-rc.5",
46
- "@fugood/whisper.node": "^1.1.3",
45
+ "@fugood/llama.node": "^1.8.0-rc.6",
46
+ "@fugood/whisper.node": "^1.2.0-rc.0",
47
47
  "@huggingface/gguf": "^0.3.2",
48
48
  "@iarna/toml": "^3.0.0",
49
49
  "@modelcontextprotocol/sdk": "^1.30.0",
@@ -69,7 +69,7 @@
69
69
  "zod": "^3.25.76"
70
70
  },
71
71
  "devDependencies": {
72
- "@fugood/bricks-cli": "^2.25.8",
72
+ "@fugood/bricks-cli": "^2.25.9",
73
73
  "@fugood/bricks-devtools-core": "^2.25.5",
74
74
  "tsdown": "^0.22.4",
75
75
  "typescript": "^7.0.2"