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.
- package/.openapi-generator/FILES +0 -1
- package/api.ts +6 -0
- package/dist/api.d.ts +6 -0
- package/docs/ShipmentDTO.md +2 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
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}
|
package/docs/ShipmentDTO.md
CHANGED
|
@@ -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,
|