import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; export type IdOrganizationIdEmail = { /** * Invitation ID */ id: string; /** * Organization ID */ organizationId: string; /** * Invited email address */ email: string | null; /** * Invitation token (for sharing) */ token: string; /** * Invitation URL (for sharing) */ inviteUrl: string; /** * Role to assign on accept */ role: string; /** * Invitation status */ status: string; /** * ISO timestamp of expiration */ expiresAt: string; /** * ISO timestamp when accepted */ acceptedAt: string | null; /** * User ID who accepted */ acceptedBy: string | null; /** * User ID who created */ createdBy: string | null; /** * User ID who sent invitation */ invitedByUserId: string | null; /** * ISO timestamp of creation */ createdAt: string; /** * ISO timestamp of last update */ updatedAt: string; }; /** @internal */ export declare const IdOrganizationIdEmail$inboundSchema: z.ZodMiniType; export declare function idOrganizationIdEmailFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=id-organization-id-email.d.ts.map