import { GeneratedSchema } from './../foundations/index.js'; /** * The email domains that will automatically assign users into an organization when they sign up or are added through the Management API. * * @remarks This is a type for database creation. * @see {@link OrganizationJitEmailDomain} for the original type. */ export type CreateOrganizationJitEmailDomain = { tenantId?: string; /** The ID of the organization. */ organizationId: string; /** The email domain that will be automatically provisioned. */ emailDomain: string; }; /** The email domains that will automatically assign users into an organization when they sign up or are added through the Management API. */ export type OrganizationJitEmailDomain = { tenantId: string; /** The ID of the organization. */ organizationId: string; /** The email domain that will be automatically provisioned. */ emailDomain: string; }; export type OrganizationJitEmailDomainKeys = 'tenantId' | 'organizationId' | 'emailDomain'; export declare const OrganizationJitEmailDomains: GeneratedSchema;