@brimveyn/aimux-config 0.11.3 → 0.11.4

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/types.ts +6 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimveyn/aimux-config",
3
- "version": "0.11.3",
3
+ "version": "0.11.4",
4
4
  "description": "TypeScript configuration API for aimux — keymaps, themes, and backends with a fluent builder.",
5
5
  "keywords": [
6
6
  "aimux",
package/src/types.ts CHANGED
@@ -342,6 +342,12 @@ export interface AimuxThemeConfig {
342
342
  export type AIUsageTool = 'claude' | 'codex' | (string & {})
343
343
 
344
344
  export interface AIUsageToolConfig {
345
+ /**
346
+ * Whether the indicator runs. The same switch as
347
+ * `plugins: [{ id: 'aimux.ai-usage', enabled }]`, kept because it is the key
348
+ * the feature had before it was a plugin. Off by default: the service reads
349
+ * the Claude keychain entry and calls two OAuth endpoints.
350
+ */
345
351
  enabled?: boolean
346
352
  pollSeconds?: number
347
353
  claudePlan?: 'auto' | 'pro' | 'max5' | 'max20'