@indigina/myseko-api 0.0.42 → 0.0.44
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/README.md +2 -2
- package/package.json +1 -1
- package/types/indigina-myseko-api.d.ts +8 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/myseko-api@0.0.
|
|
1
|
+
# @indigina/myseko-api@0.0.44
|
|
2
2
|
|
|
3
3
|
MySeko API Client for Angular applications
|
|
4
4
|
|
|
@@ -24,7 +24,7 @@ Navigate to the folder of your consuming project and run one of next commands.
|
|
|
24
24
|
_published:_
|
|
25
25
|
|
|
26
26
|
```console
|
|
27
|
-
npm install @indigina/myseko-api@0.0.
|
|
27
|
+
npm install @indigina/myseko-api@0.0.44 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
package/package.json
CHANGED
|
@@ -1622,6 +1622,14 @@ interface IntlShipmentSummary {
|
|
|
1622
1622
|
etaDueDate?: string | null;
|
|
1623
1623
|
delivery?: Address;
|
|
1624
1624
|
finalDelivery?: Address;
|
|
1625
|
+
houseBill?: string | null;
|
|
1626
|
+
incoTerm?: string | null;
|
|
1627
|
+
weight?: number | null;
|
|
1628
|
+
weightUOM?: string | null;
|
|
1629
|
+
containerCount?: number | null;
|
|
1630
|
+
masterBill?: string | null;
|
|
1631
|
+
releaseType?: string | null;
|
|
1632
|
+
shipmentNumber?: string | null;
|
|
1625
1633
|
}
|
|
1626
1634
|
|
|
1627
1635
|
/**
|