import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type UpdateTenantDestinationRequest = { /** * The ID of the tenant. Required when using AdminApiKey authentication. */ tenantId: string; /** * The ID of the destination. */ destinationId: string; body: components.DestinationUpdate; }; /** * Destination updated successfully or OAuth redirect needed. */ export type UpdateTenantDestinationResponse = components.Destination; /** @internal */ export declare const UpdateTenantDestinationRequest$inboundSchema: z.ZodType; /** @internal */ export type UpdateTenantDestinationRequest$Outbound = { tenant_id: string; destination_id: string; body: components.DestinationUpdate$Outbound; }; /** @internal */ export declare const UpdateTenantDestinationRequest$outboundSchema: z.ZodType; export declare function updateTenantDestinationRequestToJSON(updateTenantDestinationRequest: UpdateTenantDestinationRequest): string; export declare function updateTenantDestinationRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UpdateTenantDestinationResponse$inboundSchema: z.ZodType; /** @internal */ export type UpdateTenantDestinationResponse$Outbound = components.Destination$Outbound; /** @internal */ export declare const UpdateTenantDestinationResponse$outboundSchema: z.ZodType; export declare function updateTenantDestinationResponseToJSON(updateTenantDestinationResponse: UpdateTenantDestinationResponse): string; export declare function updateTenantDestinationResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updatetenantdestination.d.ts.map