remote-codex 0.11.18 → 0.11.19

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,13 +4,13 @@
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-C6wykq95.js"></script>
7
+ <script type="module" crossorigin src="/assets/index-CUnlRID-.js"></script>
8
8
  <link rel="modulepreload" crossorigin href="/assets/react-vendor-CgLzZcV4.js">
9
9
  <link rel="modulepreload" crossorigin href="/assets/ui-vendor-CeKGesq3.js">
10
10
  <link rel="modulepreload" crossorigin href="/assets/graph-vendor-DVPtkh3h.js">
11
11
  <link rel="modulepreload" crossorigin href="/assets/terminal-vendor-B365Go3Z.js">
12
12
  <link rel="modulepreload" crossorigin href="/assets/markdown-vendor-BQJfKm05.js">
13
- <link rel="modulepreload" crossorigin href="/assets/thread-ui-DnSeQdfq.js">
13
+ <link rel="modulepreload" crossorigin href="/assets/thread-ui-TBhog-RK.js">
14
14
  <link rel="stylesheet" crossorigin href="/assets/graph-vendor-C5ap-Sga.css">
15
15
  <link rel="stylesheet" crossorigin href="/assets/terminal-vendor-Beg8tuEN.css">
16
16
  <link rel="stylesheet" crossorigin href="/assets/index-D3I41SIH.css">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "remote-codex",
3
- "version": "0.11.18",
3
+ "version": "0.11.19",
4
4
  "description": "Local web supervisor for Codex workspaces and threads.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -0,0 +1 @@
1
+ ALTER TABLE thread_turn_metadata ADD COLUMN display_prompt TEXT;
@@ -76,6 +76,7 @@ export interface UpsertThreadTurnMetadataInput {
76
76
  pricingModelKey?: string | null;
77
77
  pricingTierKey?: string | null;
78
78
  tokenUsageJson?: string | null;
79
+ displayPrompt?: string | null;
79
80
  }
80
81
 
81
82
  export interface CreateThreadPendingSteerRecordInput {
@@ -392,6 +393,10 @@ export function upsertThreadTurnMetadata(
392
393
  input.tokenUsageJson !== undefined
393
394
  ? input.tokenUsageJson
394
395
  : existing.tokenUsageJson,
396
+ displayPrompt:
397
+ input.displayPrompt !== undefined
398
+ ? input.displayPrompt
399
+ : existing.displayPrompt,
395
400
  updatedAt: now,
396
401
  })
397
402
  .where(eq(threadTurnMetadata.id, existing.id))
@@ -410,6 +415,7 @@ export function upsertThreadTurnMetadata(
410
415
  pricingModelKey: input.pricingModelKey ?? null,
411
416
  pricingTierKey: input.pricingTierKey ?? null,
412
417
  tokenUsageJson: input.tokenUsageJson ?? null,
418
+ displayPrompt: input.displayPrompt ?? null,
413
419
  createdAt: now,
414
420
  updatedAt: now,
415
421
  })
@@ -94,6 +94,7 @@ export const threadTurnMetadata = sqliteTable(
94
94
  pricingModelKey: text('pricing_model_key'),
95
95
  pricingTierKey: text('pricing_tier_key'),
96
96
  tokenUsageJson: text('token_usage_json'),
97
+ displayPrompt: text('display_prompt'),
97
98
  createdAt: text('created_at').notNull(),
98
99
  updatedAt: text('updated_at').notNull(),
99
100
  },