import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type OperationsBundleUploadUrlResponse = { /** * Presigned S3 PUT URL to upload the bundle ZIP to. */ uploadUrl: string; /** * One-time id for this upload. Pass it back verbatim to POST /plugins so the API can validate and snapshot exactly the bytes this call uploaded. */ uploadId: string; /** * Content-Type header the PUT must send (must match the signature). */ contentType: string; }; /** @internal */ export declare const OperationsBundleUploadUrlResponse$inboundSchema: z.ZodType; export declare function operationsBundleUploadUrlResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=operationsbundleuploadurlresponse.d.ts.map