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 ChannelConnectionsControllerUpdateChannelConnectionRequest = { /** * The unique identifier of the channel connection */ identifier: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; updateChannelConnectionRequestDto: components.UpdateChannelConnectionRequestDto; }; export type ChannelConnectionsControllerUpdateChannelConnectionResponse = { headers: { [k: string]: Array; }; result: components.GetChannelConnectionResponseDto; }; /** @internal */ export type ChannelConnectionsControllerUpdateChannelConnectionRequest$Outbound = { identifier: string; "idempotency-key"?: string | undefined; UpdateChannelConnectionRequestDto: components.UpdateChannelConnectionRequestDto$Outbound; }; /** @internal */ export declare const ChannelConnectionsControllerUpdateChannelConnectionRequest$outboundSchema: z.ZodType; export declare function channelConnectionsControllerUpdateChannelConnectionRequestToJSON(channelConnectionsControllerUpdateChannelConnectionRequest: ChannelConnectionsControllerUpdateChannelConnectionRequest): string; /** @internal */ export declare const ChannelConnectionsControllerUpdateChannelConnectionResponse$inboundSchema: z.ZodType; export declare function channelConnectionsControllerUpdateChannelConnectionResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=channelconnectionscontrollerupdatechannelconnection.d.ts.map