yellowgrid-api-ts 3.2.77-dev.0 → 3.2.79-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 +18 -0
- package/dist/api.d.ts +18 -0
- package/docs/ShipmentDTO.md +6 -0
- package/package.json +1 -1
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}
|
|
@@ -6876,6 +6888,12 @@ export interface ShipmentDTO {
|
|
|
6876
6888
|
* @memberof ShipmentDTO
|
|
6877
6889
|
*/
|
|
6878
6890
|
'address'?: AddressModel;
|
|
6891
|
+
/**
|
|
6892
|
+
* Boxes Shipped
|
|
6893
|
+
* @type {number}
|
|
6894
|
+
* @memberof ShipmentDTO
|
|
6895
|
+
*/
|
|
6896
|
+
'boxes'?: number | null;
|
|
6879
6897
|
}
|
|
6880
6898
|
|
|
6881
6899
|
export const ShipmentDTOCourierEnum = {
|
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}
|
|
@@ -6828,6 +6840,12 @@ export interface ShipmentDTO {
|
|
|
6828
6840
|
* @memberof ShipmentDTO
|
|
6829
6841
|
*/
|
|
6830
6842
|
'address'?: AddressModel;
|
|
6843
|
+
/**
|
|
6844
|
+
* Boxes Shipped
|
|
6845
|
+
* @type {number}
|
|
6846
|
+
* @memberof ShipmentDTO
|
|
6847
|
+
*/
|
|
6848
|
+
'boxes'?: number | null;
|
|
6831
6849
|
}
|
|
6832
6850
|
export declare const ShipmentDTOCourierEnum: {
|
|
6833
6851
|
readonly Dpd: "DPD";
|
package/docs/ShipmentDTO.md
CHANGED
|
@@ -10,10 +10,13 @@ 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]
|
|
16
18
|
**address** | [**AddressModel**](AddressModel.md) | | [optional] [default to undefined]
|
|
19
|
+
**boxes** | **number** | Boxes Shipped | [optional] [default to undefined]
|
|
17
20
|
|
|
18
21
|
## Example
|
|
19
22
|
|
|
@@ -25,10 +28,13 @@ const instance: ShipmentDTO = {
|
|
|
25
28
|
batchId,
|
|
26
29
|
courier,
|
|
27
30
|
reference,
|
|
31
|
+
tracking,
|
|
32
|
+
trackingUrl,
|
|
28
33
|
requestedDate,
|
|
29
34
|
scannedItems,
|
|
30
35
|
items,
|
|
31
36
|
address,
|
|
37
|
+
boxes,
|
|
32
38
|
};
|
|
33
39
|
```
|
|
34
40
|
|