(org *configstore.Org)
| 168 | // no billing semantics) in one transaction; the handler validates |
| 169 | // teamID/schemaName before calling. |
| 170 | CreateOrg(org *configstore.Org, teamID int64, schemaName string) error |
| 171 | GetOrg(name string) (*configstore.Org, error) |
| 172 | // UpdateOrg persists the merged org row. |
| 173 | UpdateOrg(name string, updates configstore.Org) (*configstore.Org, bool, error) |
| 174 | DeleteOrg(name string) (bool, error) |
| 175 | |
| 176 | // Org teams. CreateOrgTeam is create-only (the admin surface never |