@indigina/myseko-api 0.0.38 → 0.0.39
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
|
@@ -1280,6 +1280,7 @@ interface SekonaPieceDetail {
|
|
|
1280
1280
|
pieces?: number | null;
|
|
1281
1281
|
innerPieces?: number | null;
|
|
1282
1282
|
weight?: number | null;
|
|
1283
|
+
uow?: string | null;
|
|
1283
1284
|
chargeableWeight?: number | null;
|
|
1284
1285
|
length?: number | null;
|
|
1285
1286
|
width?: number | null;
|
|
@@ -1403,10 +1404,12 @@ interface ShipmentContainer {
|
|
|
1403
1404
|
containerMode?: string | null;
|
|
1404
1405
|
shippedQuantity?: number | null;
|
|
1405
1406
|
packageType?: string | null;
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1407
|
+
totalVolume?: number | null;
|
|
1408
|
+
unitOfVolume?: string | null;
|
|
1409
|
+
totalWeight?: number | null;
|
|
1410
|
+
unitOfMeasure?: string | null;
|
|
1411
|
+
estimatedDelivery?: string | null;
|
|
1412
|
+
actualDelivery?: string | null;
|
|
1410
1413
|
}
|
|
1411
1414
|
|
|
1412
1415
|
/**
|
|
@@ -1543,6 +1546,7 @@ interface SekonaShipmentSummary {
|
|
|
1543
1546
|
shipper?: ShipmentParty;
|
|
1544
1547
|
consignee?: ShipmentParty;
|
|
1545
1548
|
pieces?: number | null;
|
|
1549
|
+
packageType?: string | null;
|
|
1546
1550
|
pod?: string | null;
|
|
1547
1551
|
podTime?: string | null;
|
|
1548
1552
|
pickupDate?: string | null;
|
|
@@ -1590,6 +1594,7 @@ interface IntlShipmentSummary {
|
|
|
1590
1594
|
shipper?: ShipmentParty;
|
|
1591
1595
|
consignee?: ShipmentParty;
|
|
1592
1596
|
pieces?: number | null;
|
|
1597
|
+
packageType?: string | null;
|
|
1593
1598
|
pod?: string | null;
|
|
1594
1599
|
podTime?: string | null;
|
|
1595
1600
|
pickupDate?: string | null;
|
|
@@ -2267,6 +2272,7 @@ interface BaseShipmentSummary {
|
|
|
2267
2272
|
shipper?: ShipmentParty;
|
|
2268
2273
|
consignee?: ShipmentParty;
|
|
2269
2274
|
pieces?: number | null;
|
|
2275
|
+
packageType?: string | null;
|
|
2270
2276
|
pod?: string | null;
|
|
2271
2277
|
podTime?: string | null;
|
|
2272
2278
|
pickupDate?: string | null;
|