import { GeneratedSchema } from './../foundations/index.js'; /** * The relations between organizations and users. It indicates membership of users in organizations. * * @remarks This is a type for database creation. * @see {@link OrganizationUserRelation} for the original type. */ export type CreateOrganizationUserRelation = { tenantId?: string; organizationId: string; userId: string; }; /** The relations between organizations and users. It indicates membership of users in organizations. */ export type OrganizationUserRelation = { tenantId: string; organizationId: string; userId: string; }; export type OrganizationUserRelationKeys = 'tenantId' | 'organizationId' | 'userId'; export declare const OrganizationUserRelations: GeneratedSchema;