yellowgrid-api-ts 3.2.77-dev.0 → 3.2.78-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/api.ts CHANGED
@@ -6852,6 +6852,18 @@ export interface ShipmentDTO {
6852
6852
  * @memberof ShipmentDTO
6853
6853
  */
6854
6854
  'reference'?: string | null;
6855
+ /**
6856
+ * Courier Tracking
6857
+ * @type {string}
6858
+ * @memberof ShipmentDTO
6859
+ */
6860
+ 'tracking'?: string | null;
6861
+ /**
6862
+ * Courier Tracking URL
6863
+ * @type {string}
6864
+ * @memberof ShipmentDTO
6865
+ */
6866
+ 'trackingUrl'?: string | null;
6855
6867
  /**
6856
6868
  * Date Time
6857
6869
  * @type {string}
package/dist/api.d.ts CHANGED
@@ -6804,6 +6804,18 @@ export interface ShipmentDTO {
6804
6804
  * @memberof ShipmentDTO
6805
6805
  */
6806
6806
  'reference'?: string | null;
6807
+ /**
6808
+ * Courier Tracking
6809
+ * @type {string}
6810
+ * @memberof ShipmentDTO
6811
+ */
6812
+ 'tracking'?: string | null;
6813
+ /**
6814
+ * Courier Tracking URL
6815
+ * @type {string}
6816
+ * @memberof ShipmentDTO
6817
+ */
6818
+ 'trackingUrl'?: string | null;
6807
6819
  /**
6808
6820
  * Date Time
6809
6821
  * @type {string}
@@ -10,6 +10,8 @@ Name | Type | Description | Notes
10
10
  **batchId** | **number** | Batch ID | [optional] [default to undefined]
11
11
  **courier** | **string** | Courier | [optional] [default to undefined]
12
12
  **reference** | **string** | Courier Reference | [optional] [default to undefined]
13
+ **tracking** | **string** | Courier Tracking | [optional] [default to undefined]
14
+ **trackingUrl** | **string** | Courier Tracking URL | [optional] [default to undefined]
13
15
  **requestedDate** | **string** | Date Time | [optional] [default to undefined]
14
16
  **scannedItems** | [**Array<ScannedItemModel>**](ScannedItemModel.md) | Scanned Items | [optional] [default to undefined]
15
17
  **items** | [**Array<ShipmentItemModel>**](ShipmentItemModel.md) | Items | [optional] [default to undefined]
@@ -25,6 +27,8 @@ const instance: ShipmentDTO = {
25
27
  batchId,
26
28
  courier,
27
29
  reference,
30
+ tracking,
31
+ trackingUrl,
28
32
  requestedDate,
29
33
  scannedItems,
30
34
  items,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.77-dev.0",
3
+ "version": "3.2.78-dev.0",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {