const deleteGroup = apiFactory({
  url: ({ namespace, groupId }: { namespace: string; groupId: string }) =>
    `/api/v2/namespaces/${namespace}/groups/${groupId}`,
  method: "DELETE",
  schema: GroupDeletedSchema,