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 TopicsControllerUpdateTopicRequest = { /** * The key identifier of the topic */ topicKey: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; updateTopicRequestDto: components.UpdateTopicRequestDto; }; export type TopicsControllerUpdateTopicResponse = { headers: { [k: string]: Array; }; result: components.TopicResponseDto; }; /** @internal */ export type TopicsControllerUpdateTopicRequest$Outbound = { topicKey: string; "idempotency-key"?: string | undefined; UpdateTopicRequestDto: components.UpdateTopicRequestDto$Outbound; }; /** @internal */ export declare const TopicsControllerUpdateTopicRequest$outboundSchema: z.ZodType; export declare function topicsControllerUpdateTopicRequestToJSON(topicsControllerUpdateTopicRequest: TopicsControllerUpdateTopicRequest): string; /** @internal */ export declare const TopicsControllerUpdateTopicResponse$inboundSchema: z.ZodType; export declare function topicsControllerUpdateTopicResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=topicscontrollerupdatetopic.d.ts.map