@@ -251,6 +251,14 @@ export interface CreateWorkspaceBuildRequest {
251
251
readonly log_level ?:ProvisionerLogLevel
252
252
}
253
253
254
+ // From codersdk/workspaceproxy.go
255
+ export interface CreateWorkspaceProxyRequest {
256
+ readonly name :string
257
+ readonly icon :string
258
+ readonly url :string
259
+ readonly wildcard_url :string
260
+ }
261
+
254
262
// From codersdk/organizations.go
255
263
export interface CreateWorkspaceRequest {
256
264
readonly template_id :string
@@ -1172,6 +1180,19 @@ export interface WorkspaceOptions {
1172
1180
readonly include_deleted ?:boolean
1173
1181
}
1174
1182
1183
+ // From codersdk/workspaceproxy.go
1184
+ export interface WorkspaceProxy {
1185
+ readonly id :string
1186
+ readonly organization_id :string
1187
+ readonly name :string
1188
+ readonly icon :string
1189
+ readonly url :string
1190
+ readonly wildcard_url :string
1191
+ readonly created_at :string
1192
+ readonly updated_at :string
1193
+ readonly deleted :boolean
1194
+ }
1195
+
1175
1196
// From codersdk/workspaces.go
1176
1197
export interface WorkspaceQuota {
1177
1198
readonly credits_consumed :number
@@ -1251,8 +1272,8 @@ export const Entitlements: Entitlement[] = [
1251
1272
]
1252
1273
1253
1274
// From codersdk/deployment.go
1254
- export type Experiment = "template_editor"
1255
- export const Experiments :Experiment [ ] = [ "template_editor" ]
1275
+ export type Experiment = "moons" | " template_editor"
1276
+ export const Experiments :Experiment [ ] = [ "moons" , " template_editor"]
1256
1277
1257
1278
// From codersdk/deployment.go
1258
1279
export type FeatureName =