add missing update params
This commit is contained in:
parent
ff79153dd5
commit
9e55856875
|
@ -10,10 +10,12 @@ export type StockStatus = 'instock' | 'outofstock' | 'onbackorder' | string
|
|||
* Properties common to all product types.
|
||||
*/
|
||||
export type ProductCommonUpdateParams = 'name' | 'slug' | 'created' | 'postStatus' | 'shortDescription'
|
||||
| 'id' | 'permalink' | 'price' | 'priceHtml' | 'type'
|
||||
| 'description' | 'sku' | 'categories' | 'tags' | 'isFeatured'
|
||||
| 'attributes' | 'images' | 'catalogVisibility' | 'allowReviews'
|
||||
| 'regularPrice' | 'salePrice' | 'saleStart' | 'saleEnd'
|
||||
| 'metaData' | 'menuOrder' | 'parentId' | 'relatedIds' | 'upsellIds';
|
||||
| 'metaData' | 'menuOrder' | 'parentId' | 'relatedIds' | 'upsellIds'
|
||||
| 'links' | 'relatedIds' | 'menuOrder' | 'parentId';
|
||||
|
||||
/**
|
||||
* Cross sells property.
|
||||
|
|
Loading…
Reference in New Issue