File tree Expand file tree Collapse file tree 2 files changed +23
-2
lines changed Expand file tree Collapse file tree 2 files changed +23
-2
lines changed Original file line number Diff line number Diff line change @@ -152,6 +152,11 @@ export interface CreateFirstUserResponse {
152
152
readonly organization_id : string
153
153
}
154
154
155
+ // From codersdk/groups.go
156
+ export interface CreateGroupRequest {
157
+ readonly name : string
158
+ }
159
+
155
160
// From codersdk/users.go
156
161
export interface CreateOrganizationRequest {
157
162
readonly name : string
@@ -273,6 +278,14 @@ export interface GitSSHKey {
273
278
readonly public_key : string
274
279
}
275
280
281
+ // From codersdk/groups.go
282
+ export interface Group {
283
+ readonly id : string
284
+ readonly name : string
285
+ readonly organization_id : string
286
+ readonly members : User [ ]
287
+ }
288
+
276
289
// From codersdk/workspaceapps.go
277
290
export interface Healthcheck {
278
291
readonly url : string
@@ -356,6 +369,13 @@ export interface ParameterSchema {
356
369
readonly validation_contains ?: string [ ]
357
370
}
358
371
372
+ // From codersdk/groups.go
373
+ export interface PatchGroupRequest {
374
+ readonly add_users : string [ ]
375
+ readonly remove_users : string [ ]
376
+ readonly name : string
377
+ }
378
+
359
379
// From codersdk/provisionerdaemons.go
360
380
export interface ProvisionerDaemon {
361
381
readonly id : string
You can’t perform that action at this time.
0 commit comments