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.

23 lines (19 loc) 595 B
import { ShopifyObject } from "./base"; export interface InventoryItem extends ShopifyObject { /* * The date and time (ISO 8601 format) when the inventory item was created. */ created_at?: string; /* * The unique SKU (stock keeping unit) of the inventory item. */ sku?: string; /* * Whether the inventory item is tracked. If true, then inventory quantity changes are tracked by Shopify */ tracked?: boolean; /* * The date and time (ISO 8601 format) when the inventory item was last modified. */ updated_at?: number; }