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.
@@ -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-CbdWtyx0.js"></script>
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "remote-codex",
3
- "version": "0.11.6",
3
+ "version": "0.11.8",
4
4
  "description": "Local web supervisor for Codex workspaces and threads.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -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;
@@ -1121,6 +1121,7 @@ export interface UpdateThreadInput {
1121
1121
 
1122
1122
  export interface ImportThreadInput {
1123
1123
  sessionId: string;
1124
+ provider?: AgentBackendIdDto;
1124
1125
  }
1125
1126
 
1126
1127
  export interface SendThreadPromptInput {