@brimveyn/aimux-config 0.5.10 → 0.5.13

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 +5 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimveyn/aimux-config",
3
- "version": "0.5.10",
3
+ "version": "0.5.13",
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
@@ -204,7 +204,7 @@ export interface GitPanelState {
204
204
  error: GitPanelError | null
205
205
  }
206
206
 
207
- export type DiffFileStatus = 'modified' | 'new' | 'deleted' | 'binary' | 'renamed'
207
+ export type DiffFileStatus = 'modified' | 'new' | 'deleted' | 'binary' | 'renamed' | 'image'
208
208
 
209
209
  export interface DiffData {
210
210
  path: string
@@ -214,6 +214,10 @@ export interface DiffData {
214
214
  binarySizeBefore?: number
215
215
  binarySizeAfter?: number
216
216
  errorMessage?: string
217
+ imageBytesBefore?: Uint8Array
218
+ imageBytesAfter?: Uint8Array
219
+ imageMime?: string
220
+ imageFormatLabel?: string
217
221
  }
218
222
 
219
223
  export type GitDiffView = 'split' | 'stacked'