import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; export declare const UpdateDomainRouteDtoType: { readonly Agent: "agent"; readonly Webhook: "webhook"; }; export type UpdateDomainRouteDtoType = ClosedEnum; export type UpdateDomainRouteDto = { /** * Agent identifier; required when type is agent, ignored when type is webhook. */ agentId?: string | undefined; type?: UpdateDomainRouteDtoType | undefined; /** * Replaces route metadata when provided (max 10 keys, 500 characters total for keys+values). */ data?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const UpdateDomainRouteDtoType$outboundSchema: z.ZodNativeEnum; /** @internal */ export type UpdateDomainRouteDto$Outbound = { agentId?: string | undefined; type?: string | undefined; data?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const UpdateDomainRouteDto$outboundSchema: z.ZodType; export declare function updateDomainRouteDtoToJSON(updateDomainRouteDto: UpdateDomainRouteDto): string; //# sourceMappingURL=updatedomainroutedto.d.ts.map