import { GeneratedSchema } from './../foundations/index.js'; /** * The relations between organization roles and organization scopes. It indicates which organization scopes are available to which organization roles. * * @remarks This is a type for database creation. * @see {@link OrganizationRoleScopeRelation} for the original type. */ export type CreateOrganizationRoleScopeRelation = { tenantId?: string; organizationRoleId: string; organizationScopeId: string; }; /** The relations between organization roles and organization scopes. It indicates which organization scopes are available to which organization roles. */ export type OrganizationRoleScopeRelation = { tenantId: string; organizationRoleId: string; organizationScopeId: string; }; export type OrganizationRoleScopeRelationKeys = 'tenantId' | 'organizationRoleId' | 'organizationScopeId'; export declare const OrganizationRoleScopeRelations: GeneratedSchema;