import { GeneratedSchema } from './../foundations/index.js'; /** * The scopes (permissions) defined by the organization template. * * @remarks This is a type for database creation. * @see {@link OrganizationScope} for the original type. */ export type CreateOrganizationScope = { tenantId?: string; /** The globally unique identifier of the organization scope. */ id: string; /** The organization scope's name, unique within the organization template. */ name: string; /** A brief description of the organization scope. */ description?: string | null; }; /** The scopes (permissions) defined by the organization template. */ export type OrganizationScope = { tenantId: string; /** The globally unique identifier of the organization scope. */ id: string; /** The organization scope's name, unique within the organization template. */ name: string; /** A brief description of the organization scope. */ description: string | null; }; export type OrganizationScopeKeys = 'tenantId' | 'id' | 'name' | 'description'; export declare const OrganizationScopes: GeneratedSchema;