@brimveyn/aimux-config 0.8.2 → 0.8.3

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 +8 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimveyn/aimux-config",
3
- "version": "0.8.2",
3
+ "version": "0.8.3",
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
@@ -250,7 +250,14 @@ export interface GitPanelState {
250
250
  error: GitPanelError | null
251
251
  }
252
252
 
253
- export type DiffFileStatus = 'modified' | 'new' | 'deleted' | 'binary' | 'renamed' | 'image'
253
+ export type DiffFileStatus =
254
+ | 'modified'
255
+ | 'new'
256
+ | 'deleted'
257
+ | 'binary'
258
+ | 'renamed'
259
+ | 'image'
260
+ | 'too-large'
254
261
 
255
262
  export interface DiffData {
256
263
  path: string