Skip to content

Commit f58044b

Browse files
committed
make gen
1 parent 0da501d commit f58044b

File tree

9 files changed

+21
-3
lines changed

9 files changed

+21
-3
lines changed

cli/testdata/coder_list_--help.golden

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ OPTIONS:
1313

1414
-c, --column string-array (default: workspace,template,status,healthy,last built,current version,outdated,starts at,stops after)
1515
Columns to display in table output. Available columns: favorite,
16-
workspace, template, status, healthy, last built, current version,
17-
outdated, starts at, starts next, stops after, stops next, daily cost.
16+
workspace, organization id, organization name, template, status,
17+
healthy, last built, current version, outdated, starts at, starts
18+
next, stops after, stops next, daily cost.
1819

1920
-o, --output string (default: table)
2021
Output format. Available formats: table, json.

cli/testdata/coder_list_--output_json.golden

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"owner_name": "testuser",
88
"owner_avatar_url": "",
99
"organization_id": "[first org ID]",
10+
"organization_name": "first-organization",
1011
"template_id": "[template ID]",
1112
"template_name": "test-template",
1213
"template_display_name": "",

coderd/apidoc/docs.go

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/apidoc/swagger.json

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/api/schemas.md

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/api/workspaces.md

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/cli/list.md

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

site/src/api/typesGenerated.ts

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

site/src/testHelpers/entities.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1057,6 +1057,7 @@ export const MockWorkspace: TypesGen.Workspace = {
10571057
outdated: false,
10581058
owner_id: MockUser.id,
10591059
organization_id: MockOrganization.id,
1060+
organization_name: "default",
10601061
owner_name: MockUser.username,
10611062
owner_avatar_url: "https://avatars.githubusercontent.com/u/7122116?v=4",
10621063
autostart_schedule: MockWorkspaceAutostartEnabled.schedule,

0 commit comments

Comments
 (0)