import * as z from "zod/v4-mini"; import { OrderUpdate, OrderUpdate$Outbound } from "../components/orderupdate.js"; export type OrdersUpdateRequest = { /** * The order ID. */ id: string; orderUpdate: OrderUpdate; }; /** @internal */ export type OrdersUpdateRequest$Outbound = { id: string; OrderUpdate: OrderUpdate$Outbound; }; /** @internal */ export declare const OrdersUpdateRequest$outboundSchema: z.ZodMiniType; export declare function ordersUpdateRequestToJSON(ordersUpdateRequest: OrdersUpdateRequest): string; //# sourceMappingURL=ordersupdate.d.ts.map