remote-codex 0.11.17 → 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.
- package/apps/supervisor-api/dist/{chunk-ZYCD54EZ.js → chunk-IZBNFCMP.js} +460 -560
- 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-CUnlRID-.js +6 -0
- package/apps/supervisor-web/dist/assets/thread-ui-TBhog-RK.js +3614 -0
- package/apps/supervisor-web/dist/index.html +2 -2
- package/package.json +1 -1
- package/packages/db/migrations/0028_thread_turn_display_prompt.sql +1 -0
- package/packages/db/src/repositories.ts +6 -0
- package/packages/db/src/schema.ts +1 -0
- package/packages/shared/src/index.ts +3 -0
- package/apps/supervisor-web/dist/assets/index-DKyefuy8.js +0 -6
- package/apps/supervisor-web/dist/assets/thread-ui-q6mjcjXn.js +0 -3614
|
@@ -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-
|
|
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-
|
|
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
|
@@ -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
|
},
|
|
@@ -482,6 +482,9 @@ export interface ThreadWorkspaceTreeNodeDto {
|
|
|
482
482
|
path: string;
|
|
483
483
|
kind: 'file' | 'directory';
|
|
484
484
|
size?: number;
|
|
485
|
+
hasChildren?: boolean;
|
|
486
|
+
childrenLoaded?: boolean;
|
|
487
|
+
truncated?: boolean;
|
|
485
488
|
children?: ThreadWorkspaceTreeNodeDto[];
|
|
486
489
|
}
|
|
487
490
|
|