remote-codex 0.11.23 → 0.11.25
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 +825 -23
- package/apps/supervisor-api/dist/index.js +68 -31
- package/apps/supervisor-web/dist/assets/index-Ch_S2n2I.css +1 -0
- package/apps/supervisor-web/dist/assets/index-JrzRGVx3.js +5 -0
- package/apps/supervisor-web/dist/assets/{thread-ui-jJyFqIuV.js → thread-ui-Ck4oSYRQ.js} +20 -20
- package/apps/supervisor-web/dist/index.html +3 -3
- package/package.json +1 -1
- package/packages/shared/src/index.ts +73 -4
- package/apps/supervisor-web/dist/assets/index-CtcCwgIc.js +0 -5
- package/apps/supervisor-web/dist/assets/index-PMKHoC-h.css +0 -1
|
@@ -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-JrzRGVx3.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-Ch_S2n2I.css">
|
|
17
17
|
</head>
|
|
18
18
|
<body class="bg-stone-950">
|
|
19
19
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -112,6 +112,48 @@ export interface RelayDeviceDto {
|
|
|
112
112
|
createdAt: string;
|
|
113
113
|
}
|
|
114
114
|
|
|
115
|
+
export interface RelayAdminUserDto extends RelayUserDto {
|
|
116
|
+
lastSeenAt: string | null;
|
|
117
|
+
deviceCount: number;
|
|
118
|
+
conversationCount: number;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
export interface RelayAdminWorkspaceDto {
|
|
122
|
+
id: string;
|
|
123
|
+
label: string;
|
|
124
|
+
absPath?: string | null;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
export interface RelayAdminThreadDto {
|
|
128
|
+
id: string;
|
|
129
|
+
title: string;
|
|
130
|
+
workspaceId: string | null;
|
|
131
|
+
workspaceLabel: string | null;
|
|
132
|
+
status: string | null;
|
|
133
|
+
updatedAt: string | null;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
export interface RelayAdminDeviceDto extends RelayDeviceDto {
|
|
137
|
+
ownerUsername: string;
|
|
138
|
+
ownerEmail: string;
|
|
139
|
+
ipAddress: string | null;
|
|
140
|
+
workspaces: RelayAdminWorkspaceDto[];
|
|
141
|
+
threads: RelayAdminThreadDto[];
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
export interface RelayRegistrationSettingsDto {
|
|
145
|
+
enabled: boolean;
|
|
146
|
+
registrationPassword: string | null;
|
|
147
|
+
approvalRequired: boolean;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
export interface RelayPendingRegistrationDto {
|
|
151
|
+
id: string;
|
|
152
|
+
email: string;
|
|
153
|
+
username: string;
|
|
154
|
+
createdAt: string;
|
|
155
|
+
}
|
|
156
|
+
|
|
115
157
|
export type RelayThreadAccessDto = 'read' | 'control';
|
|
116
158
|
export type RelayWorkspaceAccessDto = 'none' | 'read' | 'write';
|
|
117
159
|
|
|
@@ -126,6 +168,14 @@ export interface CreateRelaySessionShareInput {
|
|
|
126
168
|
expiresAt?: string | null;
|
|
127
169
|
}
|
|
128
170
|
|
|
171
|
+
export interface UpdateRelaySessionShareInput {
|
|
172
|
+
workspaceId?: string | null | undefined;
|
|
173
|
+
label?: string | null | undefined;
|
|
174
|
+
threadAccess?: RelayThreadAccessDto | undefined;
|
|
175
|
+
workspaceAccess?: RelayWorkspaceAccessDto | undefined;
|
|
176
|
+
expiresAt?: string | null | undefined;
|
|
177
|
+
}
|
|
178
|
+
|
|
129
179
|
export interface RelaySessionShareDto {
|
|
130
180
|
id: string;
|
|
131
181
|
ownerUserId: string;
|
|
@@ -135,13 +185,26 @@ export interface RelaySessionShareDto {
|
|
|
135
185
|
deviceId: string;
|
|
136
186
|
deviceName: string;
|
|
137
187
|
threadId: string;
|
|
188
|
+
threadTitle: string | null;
|
|
138
189
|
workspaceId: string | null;
|
|
190
|
+
workspaceLabel: string | null;
|
|
139
191
|
label: string | null;
|
|
140
192
|
threadAccess: RelayThreadAccessDto;
|
|
141
193
|
workspaceAccess: RelayWorkspaceAccessDto;
|
|
142
194
|
createdAt: string;
|
|
143
195
|
revokedAt: string | null;
|
|
144
196
|
expiresAt: string | null;
|
|
197
|
+
lastAccessedAt: string | null;
|
|
198
|
+
lastAccessedByUsername: string | null;
|
|
199
|
+
accessEvents: RelaySessionShareAccessDto[];
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
export interface RelaySessionShareAccessDto {
|
|
203
|
+
id: string;
|
|
204
|
+
shareId: string;
|
|
205
|
+
userId: string;
|
|
206
|
+
username: string;
|
|
207
|
+
accessedAt: string;
|
|
145
208
|
}
|
|
146
209
|
|
|
147
210
|
export interface RelayEffectiveAccessDto {
|
|
@@ -164,8 +227,10 @@ export interface RelayLoginResultDto {
|
|
|
164
227
|
}
|
|
165
228
|
|
|
166
229
|
export interface RelayRegisterResultDto {
|
|
167
|
-
token
|
|
168
|
-
session
|
|
230
|
+
token?: string;
|
|
231
|
+
session?: RelaySessionDto;
|
|
232
|
+
pendingApproval?: boolean;
|
|
233
|
+
request?: RelayPendingRegistrationDto;
|
|
169
234
|
}
|
|
170
235
|
|
|
171
236
|
export interface RelayCreateDeviceResultDto {
|
|
@@ -181,8 +246,12 @@ export interface RelayPortalSummaryDto {
|
|
|
181
246
|
}
|
|
182
247
|
|
|
183
248
|
export interface RelayAdminSummaryDto {
|
|
184
|
-
users:
|
|
185
|
-
devices:
|
|
249
|
+
users: RelayAdminUserDto[];
|
|
250
|
+
devices: RelayAdminDeviceDto[];
|
|
251
|
+
shares: RelaySessionShareDto[];
|
|
252
|
+
pendingRegistrations: RelayPendingRegistrationDto[];
|
|
253
|
+
settings: RelayRegistrationSettingsDto;
|
|
254
|
+
conversationWindowDays: number;
|
|
186
255
|
registrationEnabled: boolean;
|
|
187
256
|
}
|
|
188
257
|
|