UNPKG

inventora-shopify-admin-api

Version:

Shopify Admin API is a NodeJS library built to help developers easily authenticate and make calls against the Shopify API. It was inspired by and borrows heavily from ShopifySharp.

13 lines (11 loc) 308 B
import { BasicListOptions } from "./base"; export interface InventoryLevelListOptions extends BasicListOptions { /** * A comma-separated list of inventory item IDs. */ inventory_item_ids?: string; /** * A comma-separated list of location IDs. */ location_ids?: string; }