bingocode 1.1.189 → 1.1.190

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bingocode",
3
- "version": "1.1.189",
3
+ "version": "1.1.190",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "claude": "bin/claude-win.cjs",
@@ -421,6 +421,8 @@ export type AppState = DeepImmutable<{
421
421
  activeOverlays: ReadonlySet<string>
422
422
  // Fast mode
423
423
  fastMode?: boolean
424
+ // Executor mode
425
+ execMode?: boolean
424
426
  // Advisor model for server-side advisor tool (undefined = disabled).
425
427
  advisorModel?: string
426
428
  // Effort value
@@ -565,5 +567,6 @@ export function getDefaultAppState(): AppState {
565
567
  effortValue: undefined,
566
568
  activeOverlays: new Set<string>(),
567
569
  fastMode: false,
570
+ execMode: false,
568
571
  }
569
572
  }