remote-codex 0.11.24 → 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 +674 -16
- package/apps/supervisor-api/dist/index.js +0 -4
- 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/index.html +2 -2
- package/package.json +1 -1
- package/packages/shared/src/index.ts +54 -4
- package/apps/supervisor-web/dist/assets/index-DeQ67jTv.js +0 -5
- package/apps/supervisor-web/dist/assets/index-DgSdRu7a.css +0 -1
|
@@ -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-
|
|
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">
|
|
@@ -13,7 +13,7 @@
|
|
|
13
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
|
|
|
@@ -143,7 +185,9 @@ export interface RelaySessionShareDto {
|
|
|
143
185
|
deviceId: string;
|
|
144
186
|
deviceName: string;
|
|
145
187
|
threadId: string;
|
|
188
|
+
threadTitle: string | null;
|
|
146
189
|
workspaceId: string | null;
|
|
190
|
+
workspaceLabel: string | null;
|
|
147
191
|
label: string | null;
|
|
148
192
|
threadAccess: RelayThreadAccessDto;
|
|
149
193
|
workspaceAccess: RelayWorkspaceAccessDto;
|
|
@@ -183,8 +227,10 @@ export interface RelayLoginResultDto {
|
|
|
183
227
|
}
|
|
184
228
|
|
|
185
229
|
export interface RelayRegisterResultDto {
|
|
186
|
-
token
|
|
187
|
-
session
|
|
230
|
+
token?: string;
|
|
231
|
+
session?: RelaySessionDto;
|
|
232
|
+
pendingApproval?: boolean;
|
|
233
|
+
request?: RelayPendingRegistrationDto;
|
|
188
234
|
}
|
|
189
235
|
|
|
190
236
|
export interface RelayCreateDeviceResultDto {
|
|
@@ -200,8 +246,12 @@ export interface RelayPortalSummaryDto {
|
|
|
200
246
|
}
|
|
201
247
|
|
|
202
248
|
export interface RelayAdminSummaryDto {
|
|
203
|
-
users:
|
|
204
|
-
devices:
|
|
249
|
+
users: RelayAdminUserDto[];
|
|
250
|
+
devices: RelayAdminDeviceDto[];
|
|
251
|
+
shares: RelaySessionShareDto[];
|
|
252
|
+
pendingRegistrations: RelayPendingRegistrationDto[];
|
|
253
|
+
settings: RelayRegistrationSettingsDto;
|
|
254
|
+
conversationWindowDays: number;
|
|
205
255
|
registrationEnabled: boolean;
|
|
206
256
|
}
|
|
207
257
|
|