yellowgrid-api-ts 3.2.89 → 3.2.90

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
@@ -4231,6 +4231,10 @@ export interface ProductSummaryDTO {
4231
4231
  * Stock Product
4232
4232
  */
4233
4233
  'stockProduct'?: boolean;
4234
+ /**
4235
+ * Date Time
4236
+ */
4237
+ 'dueDate'?: string | null;
4234
4238
  /**
4235
4239
  * Price
4236
4240
  */
package/dist/api.d.ts CHANGED
@@ -4189,6 +4189,10 @@ export interface ProductSummaryDTO {
4189
4189
  * Stock Product
4190
4190
  */
4191
4191
  'stockProduct'?: boolean;
4192
+ /**
4193
+ * Date Time
4194
+ */
4195
+ 'dueDate'?: string | null;
4192
4196
  /**
4193
4197
  * Price
4194
4198
  */
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
10
10
  **title** | **string** | Title | [optional] [default to undefined]
11
11
  **quantity** | **number** | Stock Quantity | [optional] [default to undefined]
12
12
  **stockProduct** | **boolean** | Stock Product | [optional] [default to undefined]
13
+ **dueDate** | **string** | Date Time | [optional] [default to undefined]
13
14
  **price** | **number** | Price | [optional] [default to undefined]
14
15
  **cartonSize** | **number** | Carton Size | [optional] [default to undefined]
15
16
  **rrp** | **number** | RRP Price | [optional] [default to undefined]
@@ -26,6 +27,7 @@ const instance: ProductSummaryDTO = {
26
27
  title,
27
28
  quantity,
28
29
  stockProduct,
30
+ dueDate,
29
31
  price,
30
32
  cartonSize,
31
33
  rrp,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.89",
3
+ "version": "3.2.90",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {