import { GeneratedSchema } from './../foundations/index.js'; /** * The relations between organizations, organization roles, and users. A relation means that a user has a role in an organization. * * @remarks This is a type for database creation. * @see {@link OrganizationRoleUserRelation} for the original type. */ export type CreateOrganizationRoleUserRelation = { tenantId?: string; organizationId: string; organizationRoleId: string; userId: string; }; /** The relations between organizations, organization roles, and users. A relation means that a user has a role in an organization. */ export type OrganizationRoleUserRelation = { tenantId: string; organizationId: string; organizationRoleId: string; userId: string; }; export type OrganizationRoleUserRelationKeys = 'tenantId' | 'organizationId' | 'organizationRoleId' | 'userId'; export declare const OrganizationRoleUserRelations: GeneratedSchema;