import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetSalesChartRequest = { /** * Collection ID */ id: string; /** * Time period from */ from?: Date | undefined; /** * Time period to */ to?: Date | undefined; /** * Number of data points to return */ size?: number | undefined; /** * Cursor from previous response */ cursor?: string | undefined; }; /** @internal */ export declare const GetSalesChartRequest$inboundSchema: z.ZodType; /** @internal */ export type GetSalesChartRequest$Outbound = { id: string; from?: string | undefined; to?: string | undefined; size?: number | undefined; cursor?: string | undefined; }; /** @internal */ export declare const GetSalesChartRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetSalesChartRequest$ { /** @deprecated use `GetSalesChartRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetSalesChartRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetSalesChartRequest$Outbound` instead. */ type Outbound = GetSalesChartRequest$Outbound; } export declare function getSalesChartRequestToJSON(getSalesChartRequest: GetSalesChartRequest): string; export declare function getSalesChartRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getsaleschart.d.ts.map