import { GeneratedSchema } from './../foundations/index.js'; /** * The organization roles that will be automatically provisioned to users when they join an organization through JIT. * * @remarks This is a type for database creation. * @see {@link OrganizationJitRole} for the original type. */ export type CreateOrganizationJitRole = { tenantId?: string; /** The ID of the organization. */ organizationId: string; /** The organization role ID that will be automatically provisioned. */ organizationRoleId: string; }; /** The organization roles that will be automatically provisioned to users when they join an organization through JIT. */ export type OrganizationJitRole = { tenantId: string; /** The ID of the organization. */ organizationId: string; /** The organization role ID that will be automatically provisioned. */ organizationRoleId: string; }; export type OrganizationJitRoleKeys = 'tenantId' | 'organizationId' | 'organizationRoleId'; export declare const OrganizationJitRoles: GeneratedSchema;