@indigina/myseko-api 0.0.39 → 0.0.40
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 +5 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/myseko-api@0.0.
|
|
1
|
+
# @indigina/myseko-api@0.0.40
|
|
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.40 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
package/package.json
CHANGED
|
@@ -1572,6 +1572,10 @@ interface SekonaShipmentSummary {
|
|
|
1572
1572
|
shipperApptEndTime?: string | null;
|
|
1573
1573
|
appointmentRequired?: boolean | null;
|
|
1574
1574
|
purchaseOrder?: string | null;
|
|
1575
|
+
shipperAssembly?: string | null;
|
|
1576
|
+
consigneeAssembly?: string | null;
|
|
1577
|
+
pickupTimeIn?: string | null;
|
|
1578
|
+
pickupTimeOut?: string | null;
|
|
1575
1579
|
}
|
|
1576
1580
|
|
|
1577
1581
|
/**
|
|
@@ -1656,6 +1660,7 @@ interface TimelineEvent {
|
|
|
1656
1660
|
code?: string | null;
|
|
1657
1661
|
shipmentStage?: ShipmentStage | null;
|
|
1658
1662
|
date?: string | null;
|
|
1663
|
+
isLocalTime?: boolean | null;
|
|
1659
1664
|
containerNum?: string | null;
|
|
1660
1665
|
}
|
|
1661
1666
|
declare namespace TimelineEvent {
|