import { GeneratedSchema } from './../foundations/index.js'; /** * The relations between organization roles and resource scopes (normal scopes). It indicates which resource scopes are available to which organization roles. * * @remarks This is a type for database creation. * @see {@link OrganizationRoleResourceScopeRelation} for the original type. */ export type CreateOrganizationRoleResourceScopeRelation = { tenantId?: string; organizationRoleId: string; scopeId: string; }; /** The relations between organization roles and resource scopes (normal scopes). It indicates which resource scopes are available to which organization roles. */ export type OrganizationRoleResourceScopeRelation = { tenantId: string; organizationRoleId: string; scopeId: string; }; export type OrganizationRoleResourceScopeRelationKeys = 'tenantId' | 'organizationRoleId' | 'scopeId'; export declare const OrganizationRoleResourceScopeRelations: GeneratedSchema;