ima2-gen 3.18.0 → 3.19.0

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 (49) hide show
  1. package/bin/commands/doctor.js +13 -8
  2. package/bin/commands/gpt.js +216 -0
  3. package/bin/ima2.js +89 -53
  4. package/bin/lib/doctor-providers.js +19 -4
  5. package/docs/API.md +6 -3
  6. package/docs/migration/runtime-test-inventory.md +4 -1
  7. package/lib/authStatus.js +93 -0
  8. package/lib/chatgptAuth.js +236 -0
  9. package/lib/chatgptLogin.js +257 -0
  10. package/lib/codexDetect.js +16 -10
  11. package/lib/oauthLauncher.js +32 -0
  12. package/lib/oauthProxy/runtime.js +3 -0
  13. package/node_modules/openai-oauth/dist/chunk-2AENSHRT.js +84 -14
  14. package/node_modules/openai-oauth/package.json +2 -2
  15. package/package.json +3 -3
  16. package/routes/auth.js +111 -204
  17. package/routes/health.js +23 -9
  18. package/routes/quota.js +4 -9
  19. package/server.js +56 -11
  20. package/ui/dist/.vite/manifest.json +64 -64
  21. package/ui/dist/assets/{AgentWorkspace-CxbtxZYs.js → AgentWorkspace-C6ke6Eo4.js} +1 -1
  22. package/ui/dist/assets/{App-x_fzCXKb.js → App-pMN1OjNW.js} +8 -8
  23. package/ui/dist/assets/{AssetGenWorkspace-BIYh26wL.js → AssetGenWorkspace-DzEfpUy_.js} +2 -2
  24. package/ui/dist/assets/{AssetMediaLightbox-ordAqhjX.js → AssetMediaLightbox-Bx0azN0S.js} +1 -1
  25. package/ui/dist/assets/AssetsWorkspace-CHw1u9VC.js +1 -0
  26. package/ui/dist/assets/{CardNewsWorkspace-BfR-FMwo.js → CardNewsWorkspace-DsjqhaYO.js} +2 -2
  27. package/ui/dist/assets/{GenerationRequestLogPanel-CaVBCWhI.js → GenerationRequestLogPanel-EYEiHIr9.js} +1 -1
  28. package/ui/dist/assets/{HomeWorkspace-x-oJypd7.js → HomeWorkspace-DbnY1YF2.js} +1 -1
  29. package/ui/dist/assets/{KeyingPanel-SsAIeDy3.js → KeyingPanel-8J_RMrxg.js} +1 -1
  30. package/ui/dist/assets/{NodeCanvas-B1R-fOYq.js → NodeCanvas-DmjbNcTa.js} +1 -1
  31. package/ui/dist/assets/{PromptBuilderPanel-gGHOSb6l.js → PromptBuilderPanel-CL34Jpso.js} +1 -1
  32. package/ui/dist/assets/{PromptImportDialog-B5Wv2cie.js → PromptImportDialog-B24cvEkK.js} +2 -2
  33. package/ui/dist/assets/{PromptImportDiscoverySection-B5AdpMnV.js → PromptImportDiscoverySection-Bbw1_J_3.js} +1 -1
  34. package/ui/dist/assets/{PromptImportFolderSection-DgIWI0j2.js → PromptImportFolderSection-CMpxuE8e.js} +1 -1
  35. package/ui/dist/assets/PromptLibraryPanel-Ct98TJ61.js +2 -0
  36. package/ui/dist/assets/SettingsWorkspace-DL9Tm90P.js +1 -0
  37. package/ui/dist/assets/{SpriteRecipeWorkspace-ghZGUlM8.js → SpriteRecipeWorkspace-BJUH1ddP.js} +1 -1
  38. package/ui/dist/assets/{index-B-iNVdeL.js → index-CHeVGnoy.js} +6 -6
  39. package/ui/dist/assets/{index-Co3ZHk9P.js → index-D_LpLGWV.js} +3 -3
  40. package/ui/dist/assets/{pptxgen.es-D6s2Ip8Q.js → pptxgen.es-s4xfPXLT.js} +1 -1
  41. package/ui/dist/assets/{promptBuilderStore-CQxHJQz4.js → promptBuilderStore-DQR29LwN.js} +1 -1
  42. package/ui/dist/assets/useAgentDialogFocus-DAeS9IWG.js +1 -0
  43. package/ui/dist/index.html +1 -1
  44. package/vendor/openai-oauth-1.0.2-ima2.2.tgz +0 -0
  45. package/ui/dist/assets/AssetsWorkspace-BuiwpbQQ.js +0 -1
  46. package/ui/dist/assets/PromptLibraryPanel-CGcqRRsJ.js +0 -2
  47. package/ui/dist/assets/SettingsWorkspace-BhbAnrYw.js +0 -1
  48. package/ui/dist/assets/useAgentDialogFocus-ALfcs_Em.js +0 -1
  49. package/vendor/openai-oauth-1.0.2-ima2.1.tgz +0 -0
package/routes/health.js CHANGED
@@ -1,6 +1,8 @@
1
1
  import { abortJob, listJobs, listTerminalJobs } from "../lib/inflight.js";
2
2
  import { errInfo } from "../lib/errInfo.js";
3
3
  import { loadGrokCredentials } from "../lib/xaiAuth.js";
4
+ import { gptAuthStatus, grokAuthStatus } from "../lib/authStatus.js";
5
+ import { resolveChatgptSession } from "../lib/chatgptAuth.js";
4
6
  import { requireRuntimeContext } from "../lib/runtimeContext.js";
5
7
  export function registerHealthRoutes(app, ctxRaw) {
6
8
  const ctx = requireRuntimeContext(ctxRaw);
@@ -44,27 +46,39 @@ export function registerHealthRoutes(app, ctxRaw) {
44
46
  runtime: runtimePorts(),
45
47
  });
46
48
  });
49
+ // `auth` is the session verdict (lib/authStatus.ts): account, health, and the action that
50
+ // fixes it. `status` stays the proxy's live verdict the UI already switches on.
47
51
  app.get("/api/oauth/status", async (_req, res) => {
48
- if (ctx.oauthReadyState === "starting") {
49
- return res.json({ status: "starting", runtime: runtimePorts() });
50
- }
51
- if (ctx.oauthReadyState === "failed") {
52
- return res.json({ status: "offline", runtime: runtimePorts() });
53
- }
52
+ ctx.syncOAuthProxySession?.();
53
+ const session = resolveChatgptSession();
54
+ const reply = (status, extra = {}) => res.json({
55
+ status,
56
+ ...extra,
57
+ auth: gptAuthStatus(session, { proxyStatus: status }),
58
+ grokAuth: grokAuthStatus(loadGrokCredentials(ctx.grokAuthHomeDir)),
59
+ runtime: runtimePorts(),
60
+ });
61
+ // With IMA2_NO_OAUTH_PROXY an external proxy owns its own session; local files say nothing.
62
+ const missingSession = ctx.config.oauth.autoStart && !session;
63
+ if (ctx.oauthReadyState === "starting")
64
+ return reply("starting");
65
+ // The proxy exits at boot when there is no session file; that is a login problem, not an outage.
66
+ if (ctx.oauthReadyState === "failed")
67
+ return reply(missingSession ? "auth_required" : "offline");
54
68
  try {
55
69
  const r = await fetch(`${ctx.oauthUrl}/v1/models`, {
56
70
  signal: AbortSignal.timeout(ctx.config.oauth.statusTimeoutMs),
57
71
  });
58
72
  if (r.ok) {
59
73
  const data = (await r.json());
60
- res.json({ status: "ready", models: data.data?.map((m) => m.id) || [], runtime: runtimePorts() });
74
+ reply("ready", { models: data.data?.map((m) => m.id) || [] });
61
75
  }
62
76
  else {
63
- res.json({ status: "auth_required", runtime: runtimePorts() });
77
+ reply("auth_required");
64
78
  }
65
79
  }
66
80
  catch {
67
- res.json({ status: "offline", runtime: runtimePorts() });
81
+ reply(missingSession ? "auth_required" : "offline");
68
82
  }
69
83
  });
70
84
  app.get("/api/inflight", (req, res) => {
package/routes/quota.js CHANGED
@@ -3,16 +3,11 @@ import { readFileSync } from "node:fs";
3
3
  import { homedir } from "node:os";
4
4
  import { join } from "node:path";
5
5
  import { fetchNaiSubscription } from "../lib/naiSubscription.js";
6
+ import { readChatgptAccess } from "../lib/chatgptAuth.js";
7
+ /** Same file the GPT OAuth proxy reads (ima2 store first, then Codex CLI files). */
6
8
  function readCodexTokens() {
7
- const codexHome = process.env.CODEX_HOME || join(homedir(), ".codex");
8
- try {
9
- const j = JSON.parse(readFileSync(join(codexHome, "auth.json"), "utf8"));
10
- if (j?.tokens?.access_token) {
11
- return { access_token: j.tokens.access_token, account_id: j.tokens.account_id ?? "" };
12
- }
13
- }
14
- catch { }
15
- return null;
9
+ const access = readChatgptAccess();
10
+ return access ? { access_token: access.accessToken, account_id: access.accountId } : null;
16
11
  }
17
12
  async function fetchCodexUsage(tokens) {
18
13
  try {
package/server.js CHANGED
@@ -8,6 +8,7 @@ import { fileURLToPath, pathToFileURL } from "url";
8
8
  import { onShutdown } from "./bin/lib/platform.js";
9
9
  import { ensureDefaultSession } from "./lib/sessionStore.js";
10
10
  import { startOAuthProxy } from "./lib/oauthLauncher.js";
11
+ import { detectCodexAuth } from "./lib/codexDetect.js";
11
12
  import { migrateGeneratedStorage } from "./lib/storageMigration.js";
12
13
  import { purgeStaleJobs } from "./lib/inflight.js";
13
14
  import { configureLogger, logError } from "./lib/logger.js";
@@ -366,9 +367,10 @@ export async function createRuntimeContext(overrides = {}) {
366
367
  const openai = overrides.openai ?? await createOpenAI(apiKey);
367
368
  const oauthPort = config.oauth.proxyPort;
368
369
  let resolveOAuthReady = () => { };
369
- const oauthReadyPromise = new Promise((resolve) => {
370
+ const newOAuthReadyPromise = () => new Promise((resolve) => {
370
371
  resolveOAuthReady = resolve;
371
372
  });
373
+ const oauthReadyPromise = newOAuthReadyPromise();
372
374
  const ctx = {
373
375
  rootDir,
374
376
  config,
@@ -418,6 +420,11 @@ export async function createRuntimeContext(overrides = {}) {
418
420
  ctx.oauthReadyState = "failed";
419
421
  resolveOAuthReady(null);
420
422
  },
423
+ markOAuthStarting: () => {
424
+ resolveOAuthReady(null);
425
+ ctx.oauthReadyPromise = newOAuthReadyPromise();
426
+ ctx.oauthReadyState = "starting";
427
+ },
421
428
  };
422
429
  if (!config.oauth.autoStart)
423
430
  ctx.markOAuthReady({ url: ctx.oauthUrl, port: ctx.oauthPort });
@@ -444,19 +451,57 @@ export async function startServer(overrides = {}) {
444
451
  }
445
452
  purgeStaleJobs();
446
453
  const app = buildApp(ctx);
447
- const oauthChild = overrides.oauthChild !== undefined
454
+ const launchOAuthProxy = () => startOAuthProxy({
455
+ oauthPort: ctx.oauthPort,
456
+ restartDelayMs: ctx.config.oauth.restartDelayMs,
457
+ onReady: ({ url, port }) => {
458
+ ctx.markOAuthReady({ url, port });
459
+ advertise(ctx);
460
+ },
461
+ onExit: () => ctx.markOAuthFailed(),
462
+ });
463
+ let oauthChild = overrides.oauthChild !== undefined
448
464
  ? overrides.oauthChild
449
465
  : !ctx.config.oauth.autoStart
450
466
  ? null
451
- : startOAuthProxy({
452
- oauthPort: ctx.oauthPort,
453
- restartDelayMs: ctx.config.oauth.restartDelayMs,
454
- onReady: ({ url, port }) => {
455
- ctx.markOAuthReady({ url, port });
456
- advertise(ctx);
457
- },
458
- onExit: () => ctx.markOAuthFailed(),
459
- });
467
+ : launchOAuthProxy();
468
+ if (overrides.oauthChild === undefined && ctx.config.oauth.autoStart) {
469
+ // A login (web or CLI) writes a new session file; the running proxy only read the old one
470
+ // (or none, and exited), so the new session was invisible until a server restart.
471
+ let restarting = null;
472
+ ctx.restartOAuthProxy = () => {
473
+ ctx.markOAuthStarting();
474
+ if (!restarting) {
475
+ const previous = oauthChild;
476
+ restarting = (async () => {
477
+ try {
478
+ await previous?.stopAndWait?.();
479
+ }
480
+ catch (error) {
481
+ console.error(`[gpt-oauth] restart aborted: ${error.message}`);
482
+ ctx.markOAuthFailed();
483
+ return;
484
+ }
485
+ oauthChild = launchOAuthProxy();
486
+ })().finally(() => { restarting = null; });
487
+ }
488
+ return { restarted: true };
489
+ };
490
+ // A CLI login (or logout) can change which session file the proxy should read without
491
+ // being able to reach this server (e.g. a LAN-bound server the CLI cannot authenticate to).
492
+ // Status polls and generation admission call this to catch up on their own.
493
+ ctx.syncOAuthProxySession = () => {
494
+ if (restarting)
495
+ return false;
496
+ const wanted = detectCodexAuth({ probe: false }).proxyAuthFile;
497
+ const launched = oauthChild?.authFile ?? null;
498
+ if (wanted === launched)
499
+ return false;
500
+ console.log(`[gpt-oauth] session file changed (${launched ?? "none"} -> ${wanted ?? "none"}); restarting proxy`);
501
+ ctx.restartOAuthProxy?.();
502
+ return true;
503
+ };
504
+ }
460
505
  if (overrides.oauthChild !== undefined || !ctx.config.oauth.autoStart) {
461
506
  ctx.markOAuthReady({ url: ctx.oauthUrl, port: ctx.oauthPort });
462
507
  }
@@ -1,6 +1,6 @@
1
1
  {
2
- "_App-x_fzCXKb.js": {
3
- "file": "assets/App-x_fzCXKb.js",
2
+ "_App-pMN1OjNW.js": {
3
+ "file": "assets/App-pMN1OjNW.js",
4
4
  "name": "App",
5
5
  "isDynamicEntry": true,
6
6
  "imports": [
@@ -17,7 +17,7 @@
17
17
  "src/components/card-news/CardNewsWorkspace.tsx",
18
18
  "src/components/agent/AgentWorkspace.tsx",
19
19
  "src/components/assets/AssetsWorkspace.tsx",
20
- "_AssetGenWorkspace-BIYh26wL.js",
20
+ "_AssetGenWorkspace-DzEfpUy_.js",
21
21
  "src/components/home/HomeWorkspace.tsx",
22
22
  "src/components/PromptLibraryPanel.tsx"
23
23
  ]
@@ -26,15 +26,15 @@
26
26
  "file": "assets/AssetGenWorkspace-B7tTK0Sx.css",
27
27
  "src": "_AssetGenWorkspace-B7tTK0Sx.css"
28
28
  },
29
- "_AssetGenWorkspace-BIYh26wL.js": {
30
- "file": "assets/AssetGenWorkspace-BIYh26wL.js",
29
+ "_AssetGenWorkspace-DzEfpUy_.js": {
30
+ "file": "assets/AssetGenWorkspace-DzEfpUy_.js",
31
31
  "name": "AssetGenWorkspace",
32
32
  "isDynamicEntry": true,
33
33
  "imports": [
34
34
  "index.html",
35
- "_App-x_fzCXKb.js",
36
- "_AssetMediaLightbox-ordAqhjX.js",
37
- "_KeyingPanel-SsAIeDy3.js"
35
+ "_App-pMN1OjNW.js",
36
+ "_AssetMediaLightbox-Bx0azN0S.js",
37
+ "_KeyingPanel-8J_RMrxg.js"
38
38
  ],
39
39
  "dynamicImports": [
40
40
  "src/components/assetgen/SpriteRecipeWorkspace.tsx"
@@ -43,21 +43,21 @@
43
43
  "assets/AssetGenWorkspace-B7tTK0Sx.css"
44
44
  ]
45
45
  },
46
- "_AssetMediaLightbox-ordAqhjX.js": {
47
- "file": "assets/AssetMediaLightbox-ordAqhjX.js",
46
+ "_AssetMediaLightbox-Bx0azN0S.js": {
47
+ "file": "assets/AssetMediaLightbox-Bx0azN0S.js",
48
48
  "name": "AssetMediaLightbox",
49
49
  "imports": [
50
50
  "index.html",
51
- "_App-x_fzCXKb.js",
52
- "_useAgentDialogFocus-ALfcs_Em.js"
51
+ "_App-pMN1OjNW.js",
52
+ "_useAgentDialogFocus-DAeS9IWG.js"
53
53
  ]
54
54
  },
55
- "_KeyingPanel-SsAIeDy3.js": {
56
- "file": "assets/KeyingPanel-SsAIeDy3.js",
55
+ "_KeyingPanel-8J_RMrxg.js": {
56
+ "file": "assets/KeyingPanel-8J_RMrxg.js",
57
57
  "name": "KeyingPanel",
58
58
  "imports": [
59
59
  "index.html",
60
- "_App-x_fzCXKb.js"
60
+ "_App-pMN1OjNW.js"
61
61
  ]
62
62
  },
63
63
  "__vite-browser-external": {
@@ -70,34 +70,34 @@
70
70
  "file": "assets/clipboard-DirTPLEi.js",
71
71
  "name": "clipboard"
72
72
  },
73
- "_promptBuilderStore-CQxHJQz4.js": {
74
- "file": "assets/promptBuilderStore-CQxHJQz4.js",
73
+ "_promptBuilderStore-DQR29LwN.js": {
74
+ "file": "assets/promptBuilderStore-DQR29LwN.js",
75
75
  "name": "promptBuilderStore",
76
76
  "imports": [
77
- "_App-x_fzCXKb.js"
77
+ "_App-pMN1OjNW.js"
78
78
  ]
79
79
  },
80
- "_useAgentDialogFocus-ALfcs_Em.js": {
81
- "file": "assets/useAgentDialogFocus-ALfcs_Em.js",
80
+ "_useAgentDialogFocus-DAeS9IWG.js": {
81
+ "file": "assets/useAgentDialogFocus-DAeS9IWG.js",
82
82
  "name": "useAgentDialogFocus",
83
83
  "imports": [
84
- "_App-x_fzCXKb.js"
84
+ "_App-pMN1OjNW.js"
85
85
  ]
86
86
  },
87
87
  "index.html": {
88
- "file": "assets/index-B-iNVdeL.js",
88
+ "file": "assets/index-CHeVGnoy.js",
89
89
  "name": "index",
90
90
  "src": "index.html",
91
91
  "isEntry": true,
92
92
  "dynamicImports": [
93
- "_App-x_fzCXKb.js"
93
+ "_App-pMN1OjNW.js"
94
94
  ],
95
95
  "css": [
96
96
  "assets/index-CxX85A3B.css"
97
97
  ]
98
98
  },
99
99
  "node_modules/pptxgenjs/dist/pptxgen.es.js": {
100
- "file": "assets/pptxgen.es-D6s2Ip8Q.js",
100
+ "file": "assets/pptxgen.es-s4xfPXLT.js",
101
101
  "name": "pptxgen.es",
102
102
  "src": "node_modules/pptxgenjs/dist/pptxgen.es.js",
103
103
  "isDynamicEntry": true,
@@ -111,40 +111,40 @@
111
111
  ]
112
112
  },
113
113
  "src/components/GenerationRequestLogPanel.tsx": {
114
- "file": "assets/GenerationRequestLogPanel-CaVBCWhI.js",
114
+ "file": "assets/GenerationRequestLogPanel-EYEiHIr9.js",
115
115
  "name": "GenerationRequestLogPanel",
116
116
  "src": "src/components/GenerationRequestLogPanel.tsx",
117
117
  "isDynamicEntry": true,
118
118
  "imports": [
119
119
  "index.html",
120
- "_App-x_fzCXKb.js",
120
+ "_App-pMN1OjNW.js",
121
121
  "_clipboard-DirTPLEi.js"
122
122
  ]
123
123
  },
124
124
  "src/components/NodeCanvas.tsx": {
125
- "file": "assets/NodeCanvas-B1R-fOYq.js",
125
+ "file": "assets/NodeCanvas-DmjbNcTa.js",
126
126
  "name": "NodeCanvas",
127
127
  "src": "src/components/NodeCanvas.tsx",
128
128
  "isDynamicEntry": true,
129
129
  "imports": [
130
130
  "index.html",
131
- "_App-x_fzCXKb.js",
131
+ "_App-pMN1OjNW.js",
132
132
  "_clipboard-DirTPLEi.js",
133
- "_AssetMediaLightbox-ordAqhjX.js",
134
- "_useAgentDialogFocus-ALfcs_Em.js"
133
+ "_AssetMediaLightbox-Bx0azN0S.js",
134
+ "_useAgentDialogFocus-DAeS9IWG.js"
135
135
  ],
136
136
  "css": [
137
137
  "assets/NodeCanvas-BnuhLJ6X.css"
138
138
  ]
139
139
  },
140
140
  "src/components/PromptImportDialog.tsx": {
141
- "file": "assets/PromptImportDialog-B5Wv2cie.js",
141
+ "file": "assets/PromptImportDialog-B24cvEkK.js",
142
142
  "name": "PromptImportDialog",
143
143
  "src": "src/components/PromptImportDialog.tsx",
144
144
  "isDynamicEntry": true,
145
145
  "imports": [
146
146
  "index.html",
147
- "_App-x_fzCXKb.js"
147
+ "_App-pMN1OjNW.js"
148
148
  ],
149
149
  "dynamicImports": [
150
150
  "src/components/PromptImportDiscoverySection.tsx",
@@ -152,132 +152,132 @@
152
152
  ]
153
153
  },
154
154
  "src/components/PromptImportDiscoverySection.tsx": {
155
- "file": "assets/PromptImportDiscoverySection-B5AdpMnV.js",
155
+ "file": "assets/PromptImportDiscoverySection-Bbw1_J_3.js",
156
156
  "name": "PromptImportDiscoverySection",
157
157
  "src": "src/components/PromptImportDiscoverySection.tsx",
158
158
  "isDynamicEntry": true,
159
159
  "imports": [
160
160
  "index.html",
161
- "_App-x_fzCXKb.js"
161
+ "_App-pMN1OjNW.js"
162
162
  ]
163
163
  },
164
164
  "src/components/PromptImportFolderSection.tsx": {
165
- "file": "assets/PromptImportFolderSection-DgIWI0j2.js",
165
+ "file": "assets/PromptImportFolderSection-CMpxuE8e.js",
166
166
  "name": "PromptImportFolderSection",
167
167
  "src": "src/components/PromptImportFolderSection.tsx",
168
168
  "isDynamicEntry": true,
169
169
  "imports": [
170
170
  "index.html",
171
- "_App-x_fzCXKb.js"
171
+ "_App-pMN1OjNW.js"
172
172
  ]
173
173
  },
174
174
  "src/components/PromptLibraryPanel.tsx": {
175
- "file": "assets/PromptLibraryPanel-CGcqRRsJ.js",
175
+ "file": "assets/PromptLibraryPanel-Ct98TJ61.js",
176
176
  "name": "PromptLibraryPanel",
177
177
  "src": "src/components/PromptLibraryPanel.tsx",
178
178
  "isDynamicEntry": true,
179
179
  "imports": [
180
180
  "index.html",
181
- "_App-x_fzCXKb.js"
181
+ "_App-pMN1OjNW.js"
182
182
  ],
183
183
  "dynamicImports": [
184
184
  "src/components/PromptImportDialog.tsx"
185
185
  ]
186
186
  },
187
187
  "src/components/SettingsWorkspace.tsx": {
188
- "file": "assets/SettingsWorkspace-BhbAnrYw.js",
188
+ "file": "assets/SettingsWorkspace-DL9Tm90P.js",
189
189
  "name": "SettingsWorkspace",
190
190
  "src": "src/components/SettingsWorkspace.tsx",
191
191
  "isDynamicEntry": true,
192
192
  "imports": [
193
193
  "index.html",
194
- "_App-x_fzCXKb.js",
195
- "_promptBuilderStore-CQxHJQz4.js"
194
+ "_App-pMN1OjNW.js",
195
+ "_promptBuilderStore-DQR29LwN.js"
196
196
  ]
197
197
  },
198
198
  "src/components/agent/AgentWorkspace.tsx": {
199
- "file": "assets/AgentWorkspace-CxbtxZYs.js",
199
+ "file": "assets/AgentWorkspace-C6ke6Eo4.js",
200
200
  "name": "AgentWorkspace",
201
201
  "src": "src/components/agent/AgentWorkspace.tsx",
202
202
  "isDynamicEntry": true,
203
203
  "imports": [
204
204
  "index.html",
205
- "_App-x_fzCXKb.js",
206
- "_useAgentDialogFocus-ALfcs_Em.js"
205
+ "_App-pMN1OjNW.js",
206
+ "_useAgentDialogFocus-DAeS9IWG.js"
207
207
  ]
208
208
  },
209
209
  "src/components/assetgen/SpriteRecipeWorkspace.tsx": {
210
- "file": "assets/SpriteRecipeWorkspace-ghZGUlM8.js",
210
+ "file": "assets/SpriteRecipeWorkspace-BJUH1ddP.js",
211
211
  "name": "SpriteRecipeWorkspace",
212
212
  "src": "src/components/assetgen/SpriteRecipeWorkspace.tsx",
213
213
  "isDynamicEntry": true,
214
214
  "imports": [
215
215
  "index.html",
216
- "_App-x_fzCXKb.js",
217
- "_AssetGenWorkspace-BIYh26wL.js",
218
- "_AssetMediaLightbox-ordAqhjX.js",
219
- "_useAgentDialogFocus-ALfcs_Em.js",
220
- "_KeyingPanel-SsAIeDy3.js"
216
+ "_App-pMN1OjNW.js",
217
+ "_AssetGenWorkspace-DzEfpUy_.js",
218
+ "_AssetMediaLightbox-Bx0azN0S.js",
219
+ "_useAgentDialogFocus-DAeS9IWG.js",
220
+ "_KeyingPanel-8J_RMrxg.js"
221
221
  ]
222
222
  },
223
223
  "src/components/assets/AssetsWorkspace.tsx": {
224
- "file": "assets/AssetsWorkspace-BuiwpbQQ.js",
224
+ "file": "assets/AssetsWorkspace-CHw1u9VC.js",
225
225
  "name": "AssetsWorkspace",
226
226
  "src": "src/components/assets/AssetsWorkspace.tsx",
227
227
  "isDynamicEntry": true,
228
228
  "imports": [
229
229
  "index.html",
230
- "_App-x_fzCXKb.js",
231
- "_AssetMediaLightbox-ordAqhjX.js",
232
- "_KeyingPanel-SsAIeDy3.js",
233
- "_useAgentDialogFocus-ALfcs_Em.js"
230
+ "_App-pMN1OjNW.js",
231
+ "_AssetMediaLightbox-Bx0azN0S.js",
232
+ "_KeyingPanel-8J_RMrxg.js",
233
+ "_useAgentDialogFocus-DAeS9IWG.js"
234
234
  ],
235
235
  "css": [
236
236
  "assets/AssetsWorkspace-BdptASFf.css"
237
237
  ]
238
238
  },
239
239
  "src/components/canvas-mode/index.ts": {
240
- "file": "assets/index-Co3ZHk9P.js",
240
+ "file": "assets/index-D_LpLGWV.js",
241
241
  "name": "index",
242
242
  "src": "src/components/canvas-mode/index.ts",
243
243
  "isDynamicEntry": true,
244
244
  "imports": [
245
245
  "index.html",
246
- "_App-x_fzCXKb.js"
246
+ "_App-pMN1OjNW.js"
247
247
  ],
248
248
  "dynamicImports": [
249
249
  "node_modules/pptxgenjs/dist/pptxgen.es.js"
250
250
  ]
251
251
  },
252
252
  "src/components/card-news/CardNewsWorkspace.tsx": {
253
- "file": "assets/CardNewsWorkspace-BfR-FMwo.js",
253
+ "file": "assets/CardNewsWorkspace-DsjqhaYO.js",
254
254
  "name": "CardNewsWorkspace",
255
255
  "src": "src/components/card-news/CardNewsWorkspace.tsx",
256
256
  "isDynamicEntry": true,
257
257
  "imports": [
258
258
  "index.html",
259
- "_App-x_fzCXKb.js"
259
+ "_App-pMN1OjNW.js"
260
260
  ]
261
261
  },
262
262
  "src/components/home/HomeWorkspace.tsx": {
263
- "file": "assets/HomeWorkspace-x-oJypd7.js",
263
+ "file": "assets/HomeWorkspace-DbnY1YF2.js",
264
264
  "name": "HomeWorkspace",
265
265
  "src": "src/components/home/HomeWorkspace.tsx",
266
266
  "isDynamicEntry": true,
267
267
  "imports": [
268
268
  "index.html",
269
- "_App-x_fzCXKb.js"
269
+ "_App-pMN1OjNW.js"
270
270
  ]
271
271
  },
272
272
  "src/components/prompt-builder/PromptBuilderPanel.tsx": {
273
- "file": "assets/PromptBuilderPanel-gGHOSb6l.js",
273
+ "file": "assets/PromptBuilderPanel-CL34Jpso.js",
274
274
  "name": "PromptBuilderPanel",
275
275
  "src": "src/components/prompt-builder/PromptBuilderPanel.tsx",
276
276
  "isDynamicEntry": true,
277
277
  "imports": [
278
278
  "index.html",
279
- "_App-x_fzCXKb.js",
280
- "_promptBuilderStore-CQxHJQz4.js"
279
+ "_App-pMN1OjNW.js",
280
+ "_promptBuilderStore-DQR29LwN.js"
281
281
  ]
282
282
  }
283
283
  }