import { APIResource } from "../../core/resource.mjs"; import * as ShipmentsAPI from "../shipments.mjs"; import { APIPromise } from "../../core/api-promise.mjs"; import { RequestOptions } from "../../internal/request-options.mjs"; export declare class Shipments extends APIResource { /** * Advance the simulated shipment for a checkout intent. To trigger delayed or * canceled shipping scenarios, create the checkout intent with a matching shipping * and delivery test product: * https://rye.com/docs/api-v2/testing/test-products#shipping-&-delivery */ advance(checkoutIntentID: string, options?: RequestOptions): APIPromise; } export interface ShipmentAdvanceResponse { shipment: ShipmentsAPI.Shipment; } export declare namespace Shipments { export { type ShipmentAdvanceResponse as ShipmentAdvanceResponse }; } //# sourceMappingURL=shipments.d.mts.map