import { GeneratedSchema } from './../foundations/index.js'; /** * The organization roles that will be assigned to a user when they accept an invitation. * * @remarks This is a type for database creation. * @see {@link OrganizationInvitationRoleRelation} for the original type. */ export type CreateOrganizationInvitationRoleRelation = { tenantId?: string; /** The ID of the invitation. */ organizationInvitationId: string; /** The ID of the organization role. */ organizationRoleId: string; }; /** The organization roles that will be assigned to a user when they accept an invitation. */ export type OrganizationInvitationRoleRelation = { tenantId: string; /** The ID of the invitation. */ organizationInvitationId: string; /** The ID of the organization role. */ organizationRoleId: string; }; export type OrganizationInvitationRoleRelationKeys = 'tenantId' | 'organizationInvitationId' | 'organizationRoleId'; export declare const OrganizationInvitationRoleRelations: GeneratedSchema;