Skip to content

Commit

Permalink
feat(products_v1): add stock_mode and stock_configuration_location
Browse files Browse the repository at this point in the history
  • Loading branch information
qtotuan committed Apr 11, 2019
1 parent ec6093d commit 4a85dec
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/v1/products.ts
Expand Up @@ -62,6 +62,18 @@ export interface Product {
insert_id?: number
product_group?: string | null
delegated_to?: string[] | null
stock_mode?: string | null
stock_configuration_location?: StockConfigurationLocation | null
reorder_point?: number | null
reorder_qty?: number | null
}

export interface StockConfigurationLocation {
location?: string | null
stockable?: boolean | null
stock_minimum?: number | null
reorder_qty?: number | null
reorder_point?: number | null
}

export interface ProductsOptions {
Expand Down

0 comments on commit 4a85dec

Please sign in to comment.