@brimveyn/aimux-config 0.10.8 → 0.10.9

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 +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimveyn/aimux-config",
3
- "version": "0.10.8",
3
+ "version": "0.10.9",
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
@@ -485,7 +485,7 @@ export interface ModalWorkspaceDeleteConfirm extends ModalBase {
485
485
  projectId: string
486
486
  workspaceId: string
487
487
  workspaceLabel: string
488
- reason: string
488
+ reason?: string
489
489
  closeTabs: boolean
490
490
  /** Whether confirming force-deletes — true only after a recoverable failure. */
491
491
  force: boolean
@@ -688,7 +688,7 @@ export type ModalAction =
688
688
  projectId: string
689
689
  workspaceId: string
690
690
  workspaceLabel: string
691
- reason: string
691
+ reason?: string
692
692
  closeTabs: boolean
693
693
  force: boolean
694
694
  }