@indigina/myseko-api 0.0.35 → 0.0.37
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
|
@@ -841,6 +841,9 @@ interface ExceptionManagementRow {
|
|
|
841
841
|
criticality?: Criticality | null;
|
|
842
842
|
plannedDate?: string | null;
|
|
843
843
|
latestProjectedDate?: string | null;
|
|
844
|
+
actualDate?: string | null;
|
|
845
|
+
daysOfDelay?: number | null;
|
|
846
|
+
reportedBy?: string | null;
|
|
844
847
|
description?: string | null;
|
|
845
848
|
createdDateUtc: string;
|
|
846
849
|
lastUpdatedUtc: string;
|
|
@@ -883,6 +886,11 @@ interface ShipmentException {
|
|
|
883
886
|
exceptionType?: ExceptionType | null;
|
|
884
887
|
exceptionStatus?: ExceptionStatus | null;
|
|
885
888
|
criticality?: Criticality | null;
|
|
889
|
+
plannedDate?: string | null;
|
|
890
|
+
latestProjectedDate?: string | null;
|
|
891
|
+
actualDate?: string | null;
|
|
892
|
+
daysOfDelay?: number | null;
|
|
893
|
+
reportedBy?: string | null;
|
|
886
894
|
/**
|
|
887
895
|
* Formerly Reason.
|
|
888
896
|
*/
|
|
@@ -1307,8 +1315,9 @@ interface IntlOuterPieceDetail {
|
|
|
1307
1315
|
pieces?: number | null;
|
|
1308
1316
|
type?: string | null;
|
|
1309
1317
|
weight?: number | null;
|
|
1310
|
-
chargeableWeight?: number | null;
|
|
1311
1318
|
uow?: string | null;
|
|
1319
|
+
chargeableWeight?: number | null;
|
|
1320
|
+
chargeableWeightUOW?: string | null;
|
|
1312
1321
|
length?: number | null;
|
|
1313
1322
|
width?: number | null;
|
|
1314
1323
|
height?: number | null;
|
|
@@ -1394,7 +1403,7 @@ interface ShipmentContainer {
|
|
|
1394
1403
|
containerMode?: string | null;
|
|
1395
1404
|
shippedQuantity?: number | null;
|
|
1396
1405
|
volumeM3?: number | null;
|
|
1397
|
-
|
|
1406
|
+
weightKG?: number | null;
|
|
1398
1407
|
}
|
|
1399
1408
|
|
|
1400
1409
|
/**
|
|
@@ -1453,9 +1462,6 @@ interface ShipmentRouting {
|
|
|
1453
1462
|
legOrder?: number | null;
|
|
1454
1463
|
atd?: string | null;
|
|
1455
1464
|
ata?: string | null;
|
|
1456
|
-
purchaseOrder?: string | null;
|
|
1457
|
-
mySEKOReference?: string | null;
|
|
1458
|
-
consigneeReference?: string | null;
|
|
1459
1465
|
}
|
|
1460
1466
|
|
|
1461
1467
|
/**
|
|
@@ -1534,7 +1540,6 @@ interface SekonaShipmentSummary {
|
|
|
1534
1540
|
shipper?: ShipmentParty;
|
|
1535
1541
|
consignee?: ShipmentParty;
|
|
1536
1542
|
pieces?: number | null;
|
|
1537
|
-
podName?: string | null;
|
|
1538
1543
|
pod?: string | null;
|
|
1539
1544
|
podTime?: string | null;
|
|
1540
1545
|
pickupDate?: string | null;
|
|
@@ -1582,7 +1587,6 @@ interface IntlShipmentSummary {
|
|
|
1582
1587
|
shipper?: ShipmentParty;
|
|
1583
1588
|
consignee?: ShipmentParty;
|
|
1584
1589
|
pieces?: number | null;
|
|
1585
|
-
podName?: string | null;
|
|
1586
1590
|
pod?: string | null;
|
|
1587
1591
|
podTime?: string | null;
|
|
1588
1592
|
pickupDate?: string | null;
|
|
@@ -1706,7 +1710,6 @@ interface Shipment {
|
|
|
1706
1710
|
consState?: string | null;
|
|
1707
1711
|
consZip?: string | null;
|
|
1708
1712
|
consCountry?: string | null;
|
|
1709
|
-
podName?: string | null;
|
|
1710
1713
|
/**
|
|
1711
1714
|
* POD
|
|
1712
1715
|
*/
|
|
@@ -1732,6 +1735,7 @@ interface Shipment {
|
|
|
1732
1735
|
shipDate?: string | null;
|
|
1733
1736
|
description?: string | null;
|
|
1734
1737
|
poNumber?: string | null;
|
|
1738
|
+
arrivalDate?: string | null;
|
|
1735
1739
|
houseBill?: string | null;
|
|
1736
1740
|
mode?: string | null;
|
|
1737
1741
|
containerType?: string | null;
|
|
@@ -2259,7 +2263,6 @@ interface BaseShipmentSummary {
|
|
|
2259
2263
|
shipper?: ShipmentParty;
|
|
2260
2264
|
consignee?: ShipmentParty;
|
|
2261
2265
|
pieces?: number | null;
|
|
2262
|
-
podName?: string | null;
|
|
2263
2266
|
pod?: string | null;
|
|
2264
2267
|
podTime?: string | null;
|
|
2265
2268
|
pickupDate?: string | null;
|