import { gracely } from "gracely" import { http } from "cloudly-http" import { Organization } from "../../Organization" export class Groups { constructor(private readonly client: http.Client) {} async replace(organization: string, groups: string[]): Promise { return this.client.put(`/organization/group`, groups, { organization, }) } }