import * as plugins from '../plugins.js'; import { type IBillingPlan } from './billingplan.js'; import { type IOrgRoleDefinition, type IRole } from './role.js'; export interface IOrganization { id: string; data: { name: string; slug: string; status: 'active' | 'suspended' | 'deleting'; billingPlanId: string | null; roleIds: string[]; roleDefinitions?: IOrgRoleDefinition[] | null; }; }