@indigina/myseko-api 0.0.28 → 0.0.29
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 +7 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/myseko-api@0.0.
|
|
1
|
+
# @indigina/myseko-api@0.0.29
|
|
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.29 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
package/package.json
CHANGED
|
@@ -1287,6 +1287,8 @@ interface SekonaShipmentSummary {
|
|
|
1287
1287
|
podTime?: string | null;
|
|
1288
1288
|
pickupDate?: string | null;
|
|
1289
1289
|
dueDate?: string | null;
|
|
1290
|
+
pickupAppointment?: string | null;
|
|
1291
|
+
deliveryAppointment?: string | null;
|
|
1290
1292
|
origin?: string | null;
|
|
1291
1293
|
destination?: string | null;
|
|
1292
1294
|
originName?: string | null;
|
|
@@ -1297,16 +1299,15 @@ interface SekonaShipmentSummary {
|
|
|
1297
1299
|
dueTime?: string | null;
|
|
1298
1300
|
dueDateReady?: string | null;
|
|
1299
1301
|
dueDateClose?: string | null;
|
|
1300
|
-
apptDate?: string | null;
|
|
1301
1302
|
apptStartTime?: string | null;
|
|
1302
1303
|
apptEndTime?: string | null;
|
|
1303
1304
|
shipDate?: string | null;
|
|
1304
1305
|
readyTime?: string | null;
|
|
1305
1306
|
closeTime?: string | null;
|
|
1306
|
-
shipperApptDate?: string | null;
|
|
1307
1307
|
shipperApptStartTime?: string | null;
|
|
1308
1308
|
shipperApptEndTime?: string | null;
|
|
1309
1309
|
appointmentRequired?: boolean | null;
|
|
1310
|
+
purchaseOrder?: string | null;
|
|
1310
1311
|
}
|
|
1311
1312
|
|
|
1312
1313
|
/**
|
|
@@ -1334,6 +1335,8 @@ interface IntlShipmentSummary {
|
|
|
1334
1335
|
podTime?: string | null;
|
|
1335
1336
|
pickupDate?: string | null;
|
|
1336
1337
|
dueDate?: string | null;
|
|
1338
|
+
pickupAppointment?: string | null;
|
|
1339
|
+
deliveryAppointment?: string | null;
|
|
1337
1340
|
originPort?: string | null;
|
|
1338
1341
|
destPort?: string | null;
|
|
1339
1342
|
originPortName?: string | null;
|
|
@@ -2008,6 +2011,8 @@ interface BaseShipmentSummary {
|
|
|
2008
2011
|
podTime?: string | null;
|
|
2009
2012
|
pickupDate?: string | null;
|
|
2010
2013
|
dueDate?: string | null;
|
|
2014
|
+
pickupAppointment?: string | null;
|
|
2015
|
+
deliveryAppointment?: string | null;
|
|
2011
2016
|
}
|
|
2012
2017
|
|
|
2013
2018
|
/**
|