yellowgrid-api-ts 3.2.201 → 3.2.202

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/api.ts CHANGED
@@ -4874,6 +4874,10 @@ export interface ProductSummaryDTO {
4874
4874
  * Due Date
4875
4875
  */
4876
4876
  'dueDate'?: string | null;
4877
+ /**
4878
+ * On Order
4879
+ */
4880
+ 'onOrder'?: number | null;
4877
4881
  /**
4878
4882
  * Price
4879
4883
  */
package/dist/api.d.ts CHANGED
@@ -4820,6 +4820,10 @@ export interface ProductSummaryDTO {
4820
4820
  * Due Date
4821
4821
  */
4822
4822
  'dueDate'?: string | null;
4823
+ /**
4824
+ * On Order
4825
+ */
4826
+ 'onOrder'?: number | null;
4823
4827
  /**
4824
4828
  * Price
4825
4829
  */
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
11
11
  **quantity** | **number** | Stock Quantity | [optional] [default to undefined]
12
12
  **stockProduct** | **boolean** | Stock Product | [optional] [default to undefined]
13
13
  **dueDate** | **string** | Due Date | [optional] [default to undefined]
14
+ **onOrder** | **number** | On Order | [optional] [default to undefined]
14
15
  **price** | **number** | Price | [optional] [default to undefined]
15
16
  **cartonSize** | **number** | Carton Size | [optional] [default to undefined]
16
17
  **rrp** | **number** | RRP Price | [optional] [default to undefined]
@@ -28,6 +29,7 @@ const instance: ProductSummaryDTO = {
28
29
  quantity,
29
30
  stockProduct,
30
31
  dueDate,
32
+ onOrder,
31
33
  price,
32
34
  cartonSize,
33
35
  rrp,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.201",
3
+ "version": "3.2.202",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {