import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The order to export feedback entries in by creation date of the underlying request. 'asc' exports oldest first, 'desc' exports newest first. Defaults to 'desc' (newest first). */ export declare const ExportResponseFeedbackQueryParamOrder: { readonly Asc: "asc"; readonly Desc: "desc"; }; /** * The order to export feedback entries in by creation date of the underlying request. 'asc' exports oldest first, 'desc' exports newest first. Defaults to 'desc' (newest first). */ export type ExportResponseFeedbackQueryParamOrder = ClosedEnum; /** * Only export feedback entries with this rating. Omit to export entries with any rating. */ export declare const ExportResponseFeedbackQueryParamRating: { readonly ThumbsUp: "thumbs_up"; readonly ThumbsDown: "thumbs_down"; }; /** * Only export feedback entries with this rating. Omit to export entries with any rating. */ export type ExportResponseFeedbackQueryParamRating = ClosedEnum; export type ExportResponseFeedbackRequest = { /** * The order to export feedback entries in by creation date of the underlying request. 'asc' exports oldest first, 'desc' exports newest first. Defaults to 'desc' (newest first). */ order?: ExportResponseFeedbackQueryParamOrder | undefined; /** * Only export feedback entries with this rating. Omit to export entries with any rating. */ rating?: ExportResponseFeedbackQueryParamRating | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; export type ExportResponseFeedbackResponse = { headers: { [k: string]: Array; }; result: ReadableStream; }; /** @internal */ export declare const ExportResponseFeedbackQueryParamOrder$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ExportResponseFeedbackQueryParamOrder$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ExportResponseFeedbackQueryParamRating$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ExportResponseFeedbackQueryParamRating$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ExportResponseFeedbackRequest$inboundSchema: z.ZodType; /** @internal */ export type ExportResponseFeedbackRequest$Outbound = { order: string; rating?: string | undefined; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ExportResponseFeedbackRequest$outboundSchema: z.ZodType; export declare function exportResponseFeedbackRequestToJSON(exportResponseFeedbackRequest: ExportResponseFeedbackRequest): string; export declare function exportResponseFeedbackRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ExportResponseFeedbackResponse$inboundSchema: z.ZodType; /** @internal */ export type ExportResponseFeedbackResponse$Outbound = { Headers: { [k: string]: Array; }; Result: ReadableStream; }; /** @internal */ export declare const ExportResponseFeedbackResponse$outboundSchema: z.ZodType; export declare function exportResponseFeedbackResponseToJSON(exportResponseFeedbackResponse: ExportResponseFeedbackResponse): string; export declare function exportResponseFeedbackResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=exportresponsefeedback.d.ts.map