@indigina/myseko-api 0.0.27 → 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/package.json
CHANGED
|
@@ -544,9 +544,8 @@ declare namespace AddDocumentRequest {
|
|
|
544
544
|
* Do not edit the class manually.
|
|
545
545
|
*/
|
|
546
546
|
interface Document {
|
|
547
|
-
|
|
547
|
+
documentID: string;
|
|
548
548
|
createdBy?: string | null;
|
|
549
|
-
dateCreated?: string | null;
|
|
550
549
|
fileName?: string | null;
|
|
551
550
|
fileExt?: string | null;
|
|
552
551
|
fileMIMEType?: string | null;
|
|
@@ -581,7 +580,7 @@ interface DocumentCategory {
|
|
|
581
580
|
* Do not edit the class manually.
|
|
582
581
|
*/
|
|
583
582
|
interface DocumentInfo {
|
|
584
|
-
|
|
583
|
+
documentID: string;
|
|
585
584
|
documentName?: string | null;
|
|
586
585
|
fileName?: string | null;
|
|
587
586
|
contentType?: string | null;
|
|
@@ -1288,6 +1287,8 @@ interface SekonaShipmentSummary {
|
|
|
1288
1287
|
podTime?: string | null;
|
|
1289
1288
|
pickupDate?: string | null;
|
|
1290
1289
|
dueDate?: string | null;
|
|
1290
|
+
pickupAppointment?: string | null;
|
|
1291
|
+
deliveryAppointment?: string | null;
|
|
1291
1292
|
origin?: string | null;
|
|
1292
1293
|
destination?: string | null;
|
|
1293
1294
|
originName?: string | null;
|
|
@@ -1298,16 +1299,15 @@ interface SekonaShipmentSummary {
|
|
|
1298
1299
|
dueTime?: string | null;
|
|
1299
1300
|
dueDateReady?: string | null;
|
|
1300
1301
|
dueDateClose?: string | null;
|
|
1301
|
-
apptDate?: string | null;
|
|
1302
1302
|
apptStartTime?: string | null;
|
|
1303
1303
|
apptEndTime?: string | null;
|
|
1304
1304
|
shipDate?: string | null;
|
|
1305
1305
|
readyTime?: string | null;
|
|
1306
1306
|
closeTime?: string | null;
|
|
1307
|
-
shipperApptDate?: string | null;
|
|
1308
1307
|
shipperApptStartTime?: string | null;
|
|
1309
1308
|
shipperApptEndTime?: string | null;
|
|
1310
1309
|
appointmentRequired?: boolean | null;
|
|
1310
|
+
purchaseOrder?: string | null;
|
|
1311
1311
|
}
|
|
1312
1312
|
|
|
1313
1313
|
/**
|
|
@@ -1335,6 +1335,8 @@ interface IntlShipmentSummary {
|
|
|
1335
1335
|
podTime?: string | null;
|
|
1336
1336
|
pickupDate?: string | null;
|
|
1337
1337
|
dueDate?: string | null;
|
|
1338
|
+
pickupAppointment?: string | null;
|
|
1339
|
+
deliveryAppointment?: string | null;
|
|
1338
1340
|
originPort?: string | null;
|
|
1339
1341
|
destPort?: string | null;
|
|
1340
1342
|
originPortName?: string | null;
|
|
@@ -2009,6 +2011,8 @@ interface BaseShipmentSummary {
|
|
|
2009
2011
|
podTime?: string | null;
|
|
2010
2012
|
pickupDate?: string | null;
|
|
2011
2013
|
dueDate?: string | null;
|
|
2014
|
+
pickupAppointment?: string | null;
|
|
2015
|
+
deliveryAppointment?: string | null;
|
|
2012
2016
|
}
|
|
2013
2017
|
|
|
2014
2018
|
/**
|