@@ -91,7 +91,7 @@ export interface CreateWorkspaceBuildRequest {
91
91
// This is likely an enum in an external package ("github.com/coder/coder/coderd/database.WorkspaceTransition")
92
92
readonly transition : string
93
93
readonly dry_run : boolean
94
- readonly state : string
94
+ readonly state ? : string
95
95
}
96
96
97
97
// From codersdk/organizations.go:52:6
@@ -149,9 +149,9 @@ export interface OrganizationMember {
149
149
150
150
// From codersdk/pagination.go:11:6
151
151
export interface Pagination {
152
- readonly after_id : string
153
- readonly limit : number
154
- readonly offset : number
152
+ readonly after_id ? : string
153
+ readonly limit ? : number
154
+ readonly offset ? : number
155
155
}
156
156
157
157
// From codersdk/parameters.go:26:6
@@ -185,7 +185,7 @@ export interface ProvisionerJob {
185
185
readonly created_at : string
186
186
readonly started_at ?: string
187
187
readonly completed_at ?: string
188
- readonly error : string
188
+ readonly error ? : string
189
189
readonly status : ProvisionerJobStatus
190
190
readonly worker_id ?: string
191
191
}
@@ -355,12 +355,12 @@ export interface WorkspaceAgent {
355
355
readonly status : WorkspaceAgentStatus
356
356
readonly name : string
357
357
readonly resource_id : string
358
- readonly instance_id : string
358
+ readonly instance_id ? : string
359
359
readonly architecture : string
360
360
readonly environment_variables : Record < string , string >
361
361
readonly operating_system : string
362
- readonly startup_script : string
363
- readonly directory : string
362
+ readonly startup_script ? : string
363
+ readonly directory ? : string
364
364
}
365
365
366
366
// From codersdk/workspaceagents.go:47:6
@@ -415,7 +415,7 @@ export interface WorkspaceResource {
415
415
readonly workspace_transition : string
416
416
readonly type : string
417
417
readonly name : string
418
- readonly agents : WorkspaceAgent [ ]
418
+ readonly agents ? : WorkspaceAgent [ ]
419
419
}
420
420
421
421
// From codersdk/parameters.go:16:6
0 commit comments