yellowgrid-api-ts 3.2.78-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 +6 -0
- package/dist/api.d.ts +6 -0
- package/docs/ShipmentDTO.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -6888,6 +6888,12 @@ export interface ShipmentDTO {
|
|
|
6888
6888
|
* @memberof ShipmentDTO
|
|
6889
6889
|
*/
|
|
6890
6890
|
'address'?: AddressModel;
|
|
6891
|
+
/**
|
|
6892
|
+
* Boxes Shipped
|
|
6893
|
+
* @type {number}
|
|
6894
|
+
* @memberof ShipmentDTO
|
|
6895
|
+
*/
|
|
6896
|
+
'boxes'?: number | null;
|
|
6891
6897
|
}
|
|
6892
6898
|
|
|
6893
6899
|
export const ShipmentDTOCourierEnum = {
|
package/dist/api.d.ts
CHANGED
|
@@ -6840,6 +6840,12 @@ export interface ShipmentDTO {
|
|
|
6840
6840
|
* @memberof ShipmentDTO
|
|
6841
6841
|
*/
|
|
6842
6842
|
'address'?: AddressModel;
|
|
6843
|
+
/**
|
|
6844
|
+
* Boxes Shipped
|
|
6845
|
+
* @type {number}
|
|
6846
|
+
* @memberof ShipmentDTO
|
|
6847
|
+
*/
|
|
6848
|
+
'boxes'?: number | null;
|
|
6843
6849
|
}
|
|
6844
6850
|
export declare const ShipmentDTOCourierEnum: {
|
|
6845
6851
|
readonly Dpd: "DPD";
|
package/docs/ShipmentDTO.md
CHANGED
|
@@ -16,6 +16,7 @@ Name | Type | Description | Notes
|
|
|
16
16
|
**scannedItems** | [**Array<ScannedItemModel>**](ScannedItemModel.md) | Scanned Items | [optional] [default to undefined]
|
|
17
17
|
**items** | [**Array<ShipmentItemModel>**](ShipmentItemModel.md) | Items | [optional] [default to undefined]
|
|
18
18
|
**address** | [**AddressModel**](AddressModel.md) | | [optional] [default to undefined]
|
|
19
|
+
**boxes** | **number** | Boxes Shipped | [optional] [default to undefined]
|
|
19
20
|
|
|
20
21
|
## Example
|
|
21
22
|
|
|
@@ -33,6 +34,7 @@ const instance: ShipmentDTO = {
|
|
|
33
34
|
scannedItems,
|
|
34
35
|
items,
|
|
35
36
|
address,
|
|
37
|
+
boxes,
|
|
36
38
|
};
|
|
37
39
|
```
|
|
38
40
|
|