Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
0304f19
update(deps): update module github.com/vektra/mockery/v3 to v3.7.1 (#…
CodesphereBot Jun 12, 2026
d7f594b
update(deps): update kubernetes monorepo to v0.36.2 (#278)
CodesphereBot Jun 12, 2026
eaecbc9
update(deps): update module github.com/onsi/gomega to v1.42.0 (#279)
CodesphereBot Jun 14, 2026
955739d
Codesphere MCP server (#272)
siherrmann Jun 16, 2026
4531e2b
add list organizations command
DerBurri May 6, 2026
1c0ddde
feat(test): removed old code
DerBurri May 6, 2026
d11e102
add missing err checks for stdout closing
DerBurri May 6, 2026
d4038f2
chore(docs): Auto-update docs and licenses
DerBurri May 13, 2026
d6acd0f
feat(api): Add organization filtering to ListTeams
DerBurri May 13, 2026
976ea32
chore(docs): Auto-update docs and licenses
DerBurri May 13, 2026
4ac9847
feat(cli):
DerBurri May 13, 2026
087cf36
chore(docs): Auto-update docs and licenses
DerBurri May 13, 2026
4e86400
chore(lint): removed unused orgId field in createTeamOpts
DerBurri May 13, 2026
1f62637
add logic seperation for teams and org teams
DerBurri May 20, 2026
6963d8d
add unit tests for team creation
DerBurri May 20, 2026
fd684c0
updated openapi client
DerBurri May 20, 2026
bbc8b33
add team management features
DerBurri Jun 3, 2026
3b037e6
refactor: update organization ID handling in team commands
DerBurri Jun 3, 2026
aa58636
chore(docs): Auto-update docs and licenses
DerBurri Jun 3, 2026
9ba32f4
feat: implement organization management API and update team-related f…
DerBurri Jun 17, 2026
326abbf
added examples
DerBurri Jun 17, 2026
51646af
chore(docs): Auto-update docs and licenses
DerBurri Jun 17, 2026
ba97136
test: Add unit test for email validation
DerBurri Jun 17, 2026
6cc6ae8
add examples
DerBurri Jun 17, 2026
b96be2d
add email validation
DerBurri Jun 17, 2026
2a6375c
chore(docs): Auto-update docs and licenses
DerBurri Jun 17, 2026
df17d9a
removed reduntant code
DerBurri Jun 17, 2026
6ecf7fc
chore(docs): Auto-update docs and licenses
DerBurri Jun 17, 2026
c71e2e4
remove: unnecessary team name flag in team_remove.go
DerBurri Jun 17, 2026
ad2ed98
feat: minor refactorings
DerBurri Jun 17, 2026
55028ab
fixed test
DerBurri Jun 17, 2026
0a3709a
fix: correct error message for unset team ID in RemoveTeam command
DerBurri Jun 17, 2026
6ebb971
changed validation for userId to <= 0
DerBurri Jun 17, 2026
c96c14d
chore(docs): Auto-update docs and licenses
DerBurri Jun 17, 2026
3baf63f
Merge branch 'add-organization-api' of https://github.com/codesphere-…
DerBurri Jun 17, 2026
66f578e
fixed linter errors
DerBurri Jun 17, 2026
14043b3
Merge branch 'main' into add-organization-api
DerBurri Jun 17, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,12 @@ Version: v0.4.3
License: MIT
License URL: https://github.com/google/jsonschema-go/blob/v0.4.3/LICENSE

----------
Module: github.com/google/uuid
Version: v1.6.0
License: BSD-3-Clause
License URL: https://github.com/google/uuid/blob/v1.6.0/LICENSE

----------
Module: github.com/hashicorp/go-cleanhttp
Version: v0.5.2
Expand Down
5 changes: 0 additions & 5 deletions api/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,3 @@ func (c *Client) ListBaseimages() ([]Baseimage, error) {
baseimages, r, err := c.api.MetadataAPI.MetadataGetWorkspaceBaseImages(c.ctx).Execute()
return baseimages, errors.FormatAPIError(r, err)
}

func (c *Client) ListOrganizations() ([]Organization, error) {
organizations, r, err := c.api.OrganizationsAPI.OrganizationsListOrganizations(c.ctx).Execute()
return organizations, errors.FormatAPIError(r, err)
}
50 changes: 25 additions & 25 deletions api/openapi_client/api_managed_services.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions api/openapi_client/api_organizations.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

153 changes: 153 additions & 0 deletions api/openapi_client/api_vault.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading