import type { Availability } from './Availability'; /** * @type AvailabilityResult: Result document containing an array of product availability. * * @property limit: The number of returned product entries in the data array. * * @property data: The array of product availability entries. Each entry represents one product (SKU) with available inventory across the requested inventory lists. * * @property total: The total number of distinct product entries in the data array, not individual inventory records. * */ export type AvailabilityResult = { limit: number; data: Array; total: number; } & { [key: string]: any; };