@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.
- package/package.json +1 -1
- package/src/types.ts +6 -0
package/package.json
CHANGED
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'
|