@indigina/myseko-api 0.0.35 → 0.0.36
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;
|
|
@@ -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
|
/**
|
|
@@ -1706,7 +1712,6 @@ interface Shipment {
|
|
|
1706
1712
|
consState?: string | null;
|
|
1707
1713
|
consZip?: string | null;
|
|
1708
1714
|
consCountry?: string | null;
|
|
1709
|
-
podName?: string | null;
|
|
1710
1715
|
/**
|
|
1711
1716
|
* POD
|
|
1712
1717
|
*/
|
|
@@ -1732,6 +1737,7 @@ interface Shipment {
|
|
|
1732
1737
|
shipDate?: string | null;
|
|
1733
1738
|
description?: string | null;
|
|
1734
1739
|
poNumber?: string | null;
|
|
1740
|
+
arrivalDate?: string | null;
|
|
1735
1741
|
houseBill?: string | null;
|
|
1736
1742
|
mode?: string | null;
|
|
1737
1743
|
containerType?: string | null;
|