import { GeneratedSchema } from './../foundations/index.js'; /** * The enterprise SSO connectors that will automatically assign users into an organization when they are authenticated via the SSO connector for the first time. * * @remarks This is a type for database creation. * @see {@link OrganizationJitSsoConnector} for the original type. */ export type CreateOrganizationJitSsoConnector = { tenantId?: string; /** The ID of the organization. */ organizationId: string; ssoConnectorId: string; }; /** The enterprise SSO connectors that will automatically assign users into an organization when they are authenticated via the SSO connector for the first time. */ export type OrganizationJitSsoConnector = { tenantId: string; /** The ID of the organization. */ organizationId: string; ssoConnectorId: string; }; export type OrganizationJitSsoConnectorKeys = 'tenantId' | 'organizationId' | 'ssoConnectorId'; export declare const OrganizationJitSsoConnectors: GeneratedSchema;