import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The type of website */ export declare const WebsiteType: { readonly Primary: "primary"; readonly Secondary: "secondary"; readonly Work: "work"; readonly Personal: "personal"; readonly Other: "other"; }; /** * The type of website */ export type WebsiteType = ClosedEnum; export type Website = { /** * Unique identifier for the website */ id?: string | null | undefined; /** * The website URL */ url: string; /** * The type of website */ type?: WebsiteType | null | undefined; }; /** @internal */ export declare const WebsiteType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const WebsiteType$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace WebsiteType$ { /** @deprecated use `WebsiteType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Primary: "primary"; readonly Secondary: "secondary"; readonly Work: "work"; readonly Personal: "personal"; readonly Other: "other"; }>; /** @deprecated use `WebsiteType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Primary: "primary"; readonly Secondary: "secondary"; readonly Work: "work"; readonly Personal: "personal"; readonly Other: "other"; }>; } /** @internal */ export declare const Website$inboundSchema: z.ZodType; /** @internal */ export type Website$Outbound = { id?: string | null | undefined; url: string; type?: string | null | undefined; }; /** @internal */ export declare const Website$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Website$ { /** @deprecated use `Website$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Website$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Website$Outbound` instead. */ type Outbound = Website$Outbound; } export declare function websiteToJSON(website: Website): string; export declare function websiteFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=website.d.ts.map