@@ -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
}
@@ -343,12 +343,12 @@ export interface WorkspaceAgent {
343
343
readonly status : WorkspaceAgentStatus
344
344
readonly name : string
345
345
readonly resource_id : string
346
- readonly instance_id : string
346
+ readonly instance_id ? : string
347
347
readonly architecture : string
348
348
readonly environment_variables : Record < string , string >
349
349
readonly operating_system : string
350
- readonly startup_script : string
351
- readonly directory : string
350
+ readonly startup_script ? : string
351
+ readonly directory ? : string
352
352
}
353
353
354
354
// From codersdk/workspaceagents.go:47:6
@@ -403,7 +403,7 @@ export interface WorkspaceResource {
403
403
readonly workspace_transition : string
404
404
readonly type : string
405
405
readonly name : string
406
- readonly agents : WorkspaceAgent [ ]
406
+ readonly agents ? : WorkspaceAgent [ ]
407
407
}
408
408
409
409
// From codersdk/parameters.go:16:6
0 commit comments