remote-codex 0.11.6 → 0.11.8
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/apps/relay-server/dist/index.js +1 -1
- package/apps/supervisor-api/dist/chunk-ELPP22TZ.js +27928 -0
- package/apps/supervisor-api/dist/index.js +1 -1
- package/apps/supervisor-api/dist/worker-index.js +1 -1
- package/apps/supervisor-web/dist/assets/index-CXq73NcP.js +5 -0
- package/apps/supervisor-web/dist/index.html +1 -1
- package/package.json +1 -1
- package/packages/codex/src/local-session-store.ts +4 -1
- package/packages/shared/src/index.ts +1 -0
- package/apps/supervisor-web/dist/assets/index-CbdWtyx0.js +0 -5
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>Remote Codex Supervisor</title>
|
|
7
|
-
<script type="module" crossorigin src="/assets/index-
|
|
7
|
+
<script type="module" crossorigin src="/assets/index-CXq73NcP.js"></script>
|
|
8
8
|
<link rel="modulepreload" crossorigin href="/assets/react-vendor-o1Xrx7m4.js">
|
|
9
9
|
<link rel="modulepreload" crossorigin href="/assets/ui-vendor-D1uxdi-d.js">
|
|
10
10
|
<link rel="modulepreload" crossorigin href="/assets/graph-vendor-CGzY-MFv.js">
|
package/package.json
CHANGED
|
@@ -252,8 +252,11 @@ export class LocalCodexSessionStore {
|
|
|
252
252
|
|
|
253
253
|
async findImportSession(
|
|
254
254
|
sessionId: string,
|
|
255
|
-
input: { fastMode: boolean },
|
|
255
|
+
input: { fastMode: boolean; provider?: string | null },
|
|
256
256
|
): Promise<LocalCodexImportSession | null> {
|
|
257
|
+
if (input.provider && input.provider !== 'codex') {
|
|
258
|
+
return null;
|
|
259
|
+
}
|
|
257
260
|
const localSession = await this.findSession(sessionId);
|
|
258
261
|
if (!localSession) {
|
|
259
262
|
return null;
|