remote-codex 0.11.22 → 0.11.24
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/README.md +211 -110
- package/apps/relay-server/dist/index.js +442 -54
- package/apps/supervisor-api/dist/index.js +68 -27
- package/apps/supervisor-web/dist/assets/index-DeQ67jTv.js +5 -0
- package/apps/supervisor-web/dist/assets/index-DgSdRu7a.css +1 -0
- package/apps/supervisor-web/dist/assets/thread-ui-Ck4oSYRQ.js +3665 -0
- package/apps/supervisor-web/dist/index.html +3 -3
- package/package.json +2 -1
- package/packages/shared/src/index.ts +45 -0
- package/apps/supervisor-web/dist/assets/index-BfspE5mQ.js +0 -5
- package/apps/supervisor-web/dist/assets/index-BmBS1Wzk.css +0 -1
- package/apps/supervisor-web/dist/assets/thread-ui-CDgAOcDh.js +0 -3631
|
@@ -4,16 +4,16 @@
|
|
|
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-DeQ67jTv.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-Ck4oSYRQ.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
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
16
|
+
<link rel="stylesheet" crossorigin href="/assets/index-DgSdRu7a.css">
|
|
17
17
|
</head>
|
|
18
18
|
<body class="bg-stone-950">
|
|
19
19
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "remote-codex",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.24",
|
|
4
4
|
"description": "Local web supervisor for Codex workspaces and threads.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"test": "NODE_ENV=test pnpm -r --if-present test",
|
|
55
55
|
"test:e2e": "playwright test",
|
|
56
56
|
"db:migrate": "pnpm --filter @remote-codex/db db:migrate",
|
|
57
|
+
"release:mobile": "node scripts/publish-mobile-release-assets.mjs",
|
|
57
58
|
"impeccable": "impeccable",
|
|
58
59
|
"impeccable:detect": "impeccable detect apps/supervisor-web/src",
|
|
59
60
|
"impeccable:detect:fast": "impeccable detect --fast apps/supervisor-web/src",
|
|
@@ -112,6 +112,28 @@ export interface RelayDeviceDto {
|
|
|
112
112
|
createdAt: string;
|
|
113
113
|
}
|
|
114
114
|
|
|
115
|
+
export type RelayThreadAccessDto = 'read' | 'control';
|
|
116
|
+
export type RelayWorkspaceAccessDto = 'none' | 'read' | 'write';
|
|
117
|
+
|
|
118
|
+
export interface CreateRelaySessionShareInput {
|
|
119
|
+
targetIdentifier: string;
|
|
120
|
+
deviceId: string;
|
|
121
|
+
threadId: string;
|
|
122
|
+
workspaceId?: string | null;
|
|
123
|
+
label?: string | null;
|
|
124
|
+
threadAccess: RelayThreadAccessDto;
|
|
125
|
+
workspaceAccess: RelayWorkspaceAccessDto;
|
|
126
|
+
expiresAt?: string | null;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
export interface UpdateRelaySessionShareInput {
|
|
130
|
+
workspaceId?: string | null | undefined;
|
|
131
|
+
label?: string | null | undefined;
|
|
132
|
+
threadAccess?: RelayThreadAccessDto | undefined;
|
|
133
|
+
workspaceAccess?: RelayWorkspaceAccessDto | undefined;
|
|
134
|
+
expiresAt?: string | null | undefined;
|
|
135
|
+
}
|
|
136
|
+
|
|
115
137
|
export interface RelaySessionShareDto {
|
|
116
138
|
id: string;
|
|
117
139
|
ownerUserId: string;
|
|
@@ -121,9 +143,32 @@ export interface RelaySessionShareDto {
|
|
|
121
143
|
deviceId: string;
|
|
122
144
|
deviceName: string;
|
|
123
145
|
threadId: string;
|
|
146
|
+
workspaceId: string | null;
|
|
124
147
|
label: string | null;
|
|
148
|
+
threadAccess: RelayThreadAccessDto;
|
|
149
|
+
workspaceAccess: RelayWorkspaceAccessDto;
|
|
125
150
|
createdAt: string;
|
|
126
151
|
revokedAt: string | null;
|
|
152
|
+
expiresAt: string | null;
|
|
153
|
+
lastAccessedAt: string | null;
|
|
154
|
+
lastAccessedByUsername: string | null;
|
|
155
|
+
accessEvents: RelaySessionShareAccessDto[];
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
export interface RelaySessionShareAccessDto {
|
|
159
|
+
id: string;
|
|
160
|
+
shareId: string;
|
|
161
|
+
userId: string;
|
|
162
|
+
username: string;
|
|
163
|
+
accessedAt: string;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
export interface RelayEffectiveAccessDto {
|
|
167
|
+
kind: 'owner' | 'shared';
|
|
168
|
+
shareId: string | null;
|
|
169
|
+
threadAccess: RelayThreadAccessDto;
|
|
170
|
+
workspaceAccess: RelayWorkspaceAccessDto;
|
|
171
|
+
workspaceId: string | null;
|
|
127
172
|
}
|
|
128
173
|
|
|
129
174
|
export interface RelaySessionDto {
|