yellowgrid-api-ts 3.2.68-dev.0 → 3.2.69-dev.0

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.
@@ -1,6 +1,5 @@
1
1
  .gitignore
2
2
  .npmignore
3
- .openapi-generator-ignore
4
3
  README.md
5
4
  api.ts
6
5
  base.ts
package/api.ts CHANGED
@@ -6447,6 +6447,12 @@ export interface ShipmentDTO {
6447
6447
  * @memberof ShipmentDTO
6448
6448
  */
6449
6449
  'id'?: number | null;
6450
+ /**
6451
+ * Batch ID
6452
+ * @type {number}
6453
+ * @memberof ShipmentDTO
6454
+ */
6455
+ 'batchId'?: number | null;
6450
6456
  /**
6451
6457
  * Courier
6452
6458
  * @type {string}
package/dist/api.d.ts CHANGED
@@ -6399,6 +6399,12 @@ export interface ShipmentDTO {
6399
6399
  * @memberof ShipmentDTO
6400
6400
  */
6401
6401
  'id'?: number | null;
6402
+ /**
6403
+ * Batch ID
6404
+ * @type {number}
6405
+ * @memberof ShipmentDTO
6406
+ */
6407
+ 'batchId'?: number | null;
6402
6408
  /**
6403
6409
  * Courier
6404
6410
  * @type {string}
@@ -7,6 +7,7 @@ Shipment
7
7
  Name | Type | Description | Notes
8
8
  ------------ | ------------- | ------------- | -------------
9
9
  **id** | **number** | ID | [optional] [default to undefined]
10
+ **batchId** | **number** | Batch ID | [optional] [default to undefined]
10
11
  **courier** | **string** | Courier | [optional] [default to undefined]
11
12
  **reference** | **string** | Courier Reference | [optional] [default to undefined]
12
13
  **requestedDate** | **string** | Date Time | [optional] [default to undefined]
@@ -21,6 +22,7 @@ import { ShipmentDTO } from 'yellowgrid-api-ts';
21
22
 
22
23
  const instance: ShipmentDTO = {
23
24
  id,
25
+ batchId,
24
26
  courier,
25
27
  reference,
26
28
  requestedDate,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.68-dev.0",
3
+ "version": "3.2.69-dev.0",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {