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.
- package/bin/commands/doctor.js +13 -8
- package/bin/commands/gpt.js +216 -0
- package/bin/ima2.js +89 -53
- package/bin/lib/doctor-providers.js +19 -4
- package/docs/API.md +6 -3
- package/docs/migration/runtime-test-inventory.md +4 -1
- package/lib/authStatus.js +93 -0
- package/lib/chatgptAuth.js +236 -0
- package/lib/chatgptLogin.js +257 -0
- package/lib/codexDetect.js +16 -10
- package/lib/oauthLauncher.js +32 -0
- package/lib/oauthProxy/runtime.js +3 -0
- package/node_modules/openai-oauth/dist/chunk-2AENSHRT.js +84 -14
- package/node_modules/openai-oauth/package.json +2 -2
- package/package.json +3 -3
- package/routes/auth.js +111 -204
- package/routes/health.js +23 -9
- package/routes/quota.js +4 -9
- package/server.js +56 -11
- package/ui/dist/.vite/manifest.json +64 -64
- package/ui/dist/assets/{AgentWorkspace-CxbtxZYs.js → AgentWorkspace-C6ke6Eo4.js} +1 -1
- package/ui/dist/assets/{App-x_fzCXKb.js → App-pMN1OjNW.js} +8 -8
- package/ui/dist/assets/{AssetGenWorkspace-BIYh26wL.js → AssetGenWorkspace-DzEfpUy_.js} +2 -2
- package/ui/dist/assets/{AssetMediaLightbox-ordAqhjX.js → AssetMediaLightbox-Bx0azN0S.js} +1 -1
- package/ui/dist/assets/AssetsWorkspace-CHw1u9VC.js +1 -0
- package/ui/dist/assets/{CardNewsWorkspace-BfR-FMwo.js → CardNewsWorkspace-DsjqhaYO.js} +2 -2
- package/ui/dist/assets/{GenerationRequestLogPanel-CaVBCWhI.js → GenerationRequestLogPanel-EYEiHIr9.js} +1 -1
- package/ui/dist/assets/{HomeWorkspace-x-oJypd7.js → HomeWorkspace-DbnY1YF2.js} +1 -1
- package/ui/dist/assets/{KeyingPanel-SsAIeDy3.js → KeyingPanel-8J_RMrxg.js} +1 -1
- package/ui/dist/assets/{NodeCanvas-B1R-fOYq.js → NodeCanvas-DmjbNcTa.js} +1 -1
- package/ui/dist/assets/{PromptBuilderPanel-gGHOSb6l.js → PromptBuilderPanel-CL34Jpso.js} +1 -1
- package/ui/dist/assets/{PromptImportDialog-B5Wv2cie.js → PromptImportDialog-B24cvEkK.js} +2 -2
- package/ui/dist/assets/{PromptImportDiscoverySection-B5AdpMnV.js → PromptImportDiscoverySection-Bbw1_J_3.js} +1 -1
- package/ui/dist/assets/{PromptImportFolderSection-DgIWI0j2.js → PromptImportFolderSection-CMpxuE8e.js} +1 -1
- package/ui/dist/assets/PromptLibraryPanel-Ct98TJ61.js +2 -0
- package/ui/dist/assets/SettingsWorkspace-DL9Tm90P.js +1 -0
- package/ui/dist/assets/{SpriteRecipeWorkspace-ghZGUlM8.js → SpriteRecipeWorkspace-BJUH1ddP.js} +1 -1
- package/ui/dist/assets/{index-B-iNVdeL.js → index-CHeVGnoy.js} +6 -6
- package/ui/dist/assets/{index-Co3ZHk9P.js → index-D_LpLGWV.js} +3 -3
- package/ui/dist/assets/{pptxgen.es-D6s2Ip8Q.js → pptxgen.es-s4xfPXLT.js} +1 -1
- package/ui/dist/assets/{promptBuilderStore-CQxHJQz4.js → promptBuilderStore-DQR29LwN.js} +1 -1
- package/ui/dist/assets/useAgentDialogFocus-DAeS9IWG.js +1 -0
- package/ui/dist/index.html +1 -1
- package/vendor/openai-oauth-1.0.2-ima2.2.tgz +0 -0
- package/ui/dist/assets/AssetsWorkspace-BuiwpbQQ.js +0 -1
- package/ui/dist/assets/PromptLibraryPanel-CGcqRRsJ.js +0 -2
- package/ui/dist/assets/SettingsWorkspace-BhbAnrYw.js +0 -1
- package/ui/dist/assets/useAgentDialogFocus-ALfcs_Em.js +0 -1
- 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
|
-
|
|
49
|
-
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
|
|
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
|
-
|
|
74
|
+
reply("ready", { models: data.data?.map((m) => m.id) || [] });
|
|
61
75
|
}
|
|
62
76
|
else {
|
|
63
|
-
|
|
77
|
+
reply("auth_required");
|
|
64
78
|
}
|
|
65
79
|
}
|
|
66
80
|
catch {
|
|
67
|
-
|
|
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
|
|
8
|
-
|
|
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
|
|
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
|
|
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
|
-
:
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
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-
|
|
3
|
-
"file": "assets/App-
|
|
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-
|
|
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-
|
|
30
|
-
"file": "assets/AssetGenWorkspace-
|
|
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-
|
|
36
|
-
"_AssetMediaLightbox-
|
|
37
|
-
"_KeyingPanel-
|
|
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-
|
|
47
|
-
"file": "assets/AssetMediaLightbox-
|
|
46
|
+
"_AssetMediaLightbox-Bx0azN0S.js": {
|
|
47
|
+
"file": "assets/AssetMediaLightbox-Bx0azN0S.js",
|
|
48
48
|
"name": "AssetMediaLightbox",
|
|
49
49
|
"imports": [
|
|
50
50
|
"index.html",
|
|
51
|
-
"_App-
|
|
52
|
-
"_useAgentDialogFocus-
|
|
51
|
+
"_App-pMN1OjNW.js",
|
|
52
|
+
"_useAgentDialogFocus-DAeS9IWG.js"
|
|
53
53
|
]
|
|
54
54
|
},
|
|
55
|
-
"_KeyingPanel-
|
|
56
|
-
"file": "assets/KeyingPanel-
|
|
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-
|
|
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-
|
|
74
|
-
"file": "assets/promptBuilderStore-
|
|
73
|
+
"_promptBuilderStore-DQR29LwN.js": {
|
|
74
|
+
"file": "assets/promptBuilderStore-DQR29LwN.js",
|
|
75
75
|
"name": "promptBuilderStore",
|
|
76
76
|
"imports": [
|
|
77
|
-
"_App-
|
|
77
|
+
"_App-pMN1OjNW.js"
|
|
78
78
|
]
|
|
79
79
|
},
|
|
80
|
-
"_useAgentDialogFocus-
|
|
81
|
-
"file": "assets/useAgentDialogFocus-
|
|
80
|
+
"_useAgentDialogFocus-DAeS9IWG.js": {
|
|
81
|
+
"file": "assets/useAgentDialogFocus-DAeS9IWG.js",
|
|
82
82
|
"name": "useAgentDialogFocus",
|
|
83
83
|
"imports": [
|
|
84
|
-
"_App-
|
|
84
|
+
"_App-pMN1OjNW.js"
|
|
85
85
|
]
|
|
86
86
|
},
|
|
87
87
|
"index.html": {
|
|
88
|
-
"file": "assets/index-
|
|
88
|
+
"file": "assets/index-CHeVGnoy.js",
|
|
89
89
|
"name": "index",
|
|
90
90
|
"src": "index.html",
|
|
91
91
|
"isEntry": true,
|
|
92
92
|
"dynamicImports": [
|
|
93
|
-
"_App-
|
|
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-
|
|
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-
|
|
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-
|
|
120
|
+
"_App-pMN1OjNW.js",
|
|
121
121
|
"_clipboard-DirTPLEi.js"
|
|
122
122
|
]
|
|
123
123
|
},
|
|
124
124
|
"src/components/NodeCanvas.tsx": {
|
|
125
|
-
"file": "assets/NodeCanvas-
|
|
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-
|
|
131
|
+
"_App-pMN1OjNW.js",
|
|
132
132
|
"_clipboard-DirTPLEi.js",
|
|
133
|
-
"_AssetMediaLightbox-
|
|
134
|
-
"_useAgentDialogFocus-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
161
|
+
"_App-pMN1OjNW.js"
|
|
162
162
|
]
|
|
163
163
|
},
|
|
164
164
|
"src/components/PromptImportFolderSection.tsx": {
|
|
165
|
-
"file": "assets/PromptImportFolderSection-
|
|
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-
|
|
171
|
+
"_App-pMN1OjNW.js"
|
|
172
172
|
]
|
|
173
173
|
},
|
|
174
174
|
"src/components/PromptLibraryPanel.tsx": {
|
|
175
|
-
"file": "assets/PromptLibraryPanel-
|
|
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-
|
|
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-
|
|
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-
|
|
195
|
-
"_promptBuilderStore-
|
|
194
|
+
"_App-pMN1OjNW.js",
|
|
195
|
+
"_promptBuilderStore-DQR29LwN.js"
|
|
196
196
|
]
|
|
197
197
|
},
|
|
198
198
|
"src/components/agent/AgentWorkspace.tsx": {
|
|
199
|
-
"file": "assets/AgentWorkspace-
|
|
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-
|
|
206
|
-
"_useAgentDialogFocus-
|
|
205
|
+
"_App-pMN1OjNW.js",
|
|
206
|
+
"_useAgentDialogFocus-DAeS9IWG.js"
|
|
207
207
|
]
|
|
208
208
|
},
|
|
209
209
|
"src/components/assetgen/SpriteRecipeWorkspace.tsx": {
|
|
210
|
-
"file": "assets/SpriteRecipeWorkspace-
|
|
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-
|
|
217
|
-
"_AssetGenWorkspace-
|
|
218
|
-
"_AssetMediaLightbox-
|
|
219
|
-
"_useAgentDialogFocus-
|
|
220
|
-
"_KeyingPanel-
|
|
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-
|
|
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-
|
|
231
|
-
"_AssetMediaLightbox-
|
|
232
|
-
"_KeyingPanel-
|
|
233
|
-
"_useAgentDialogFocus-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
259
|
+
"_App-pMN1OjNW.js"
|
|
260
260
|
]
|
|
261
261
|
},
|
|
262
262
|
"src/components/home/HomeWorkspace.tsx": {
|
|
263
|
-
"file": "assets/HomeWorkspace-
|
|
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-
|
|
269
|
+
"_App-pMN1OjNW.js"
|
|
270
270
|
]
|
|
271
271
|
},
|
|
272
272
|
"src/components/prompt-builder/PromptBuilderPanel.tsx": {
|
|
273
|
-
"file": "assets/PromptBuilderPanel-
|
|
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-
|
|
280
|
-
"_promptBuilderStore-
|
|
279
|
+
"_App-pMN1OjNW.js",
|
|
280
|
+
"_promptBuilderStore-DQR29LwN.js"
|
|
281
281
|
]
|
|
282
282
|
}
|
|
283
283
|
}
|