@almadar/workspace 0.11.13 → 0.11.14

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/dist/types.d.ts CHANGED
@@ -415,6 +415,15 @@ export interface AccountConfig {
415
415
  };
416
416
  /** Where the active config came from. */
417
417
  source: 'local' | 'studio';
418
+ /** The Studio app's per-user preferences on this machine (desktop has no profile store). */
419
+ studio?: AccountStudioPreferences;
420
+ }
421
+ /** Studio preferences kept in `config.json`; `setConfig` merges them key by key. */
422
+ export interface AccountStudioPreferences {
423
+ /** The studio persona the user picked (the app validates the value). */
424
+ persona?: string;
425
+ /** Names of the studio plugins the user turned on. */
426
+ enabledPlugins?: string[];
418
427
  }
419
428
  /** A single provider's secret, persisted to `~/.almadar/credentials.json` (chmod 600). */
420
429
  export interface ProviderCredential {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@almadar/workspace",
3
- "version": "0.11.13",
3
+ "version": "0.11.14",
4
4
  "description": "Storage-agnostic workspace primitives shared by Almadar consumers. One service, six exports, hidden paths, single observer. See docs/Almadar_Workspace.md.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -25,13 +25,13 @@
25
25
  },
26
26
  "license": "BUSL-1.1",
27
27
  "dependencies": {
28
- "@almadar/core": "^10.83.0",
29
- "@almadar/llm": "^2.48.0",
28
+ "@almadar/core": "^10.103.0",
29
+ "@almadar/llm": "^2.54.0",
30
30
  "dugite": "^3.2.2",
31
31
  "typescript": "npm:@typescript/typescript6@^6.0.2"
32
32
  },
33
33
  "devDependencies": {
34
- "@almadar/eslint-plugin": "^2.17.0",
34
+ "@almadar/eslint-plugin": "^2.18.0",
35
35
  "@types/node": "^22.0.0",
36
36
  "@typescript-eslint/parser": "8.65.0",
37
37
  "eslint": "^10.0.0",