@indigina/myseko-api 0.0.37 → 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;
|
|
@@ -1402,8 +1403,13 @@ interface ShipmentContainer {
|
|
|
1402
1403
|
size?: string | null;
|
|
1403
1404
|
containerMode?: string | null;
|
|
1404
1405
|
shippedQuantity?: number | null;
|
|
1405
|
-
|
|
1406
|
-
|
|
1406
|
+
packageType?: string | null;
|
|
1407
|
+
totalVolume?: number | null;
|
|
1408
|
+
unitOfVolume?: string | null;
|
|
1409
|
+
totalWeight?: number | null;
|
|
1410
|
+
unitOfMeasure?: string | null;
|
|
1411
|
+
estimatedDelivery?: string | null;
|
|
1412
|
+
actualDelivery?: string | null;
|
|
1407
1413
|
}
|
|
1408
1414
|
|
|
1409
1415
|
/**
|
|
@@ -1540,6 +1546,7 @@ interface SekonaShipmentSummary {
|
|
|
1540
1546
|
shipper?: ShipmentParty;
|
|
1541
1547
|
consignee?: ShipmentParty;
|
|
1542
1548
|
pieces?: number | null;
|
|
1549
|
+
packageType?: string | null;
|
|
1543
1550
|
pod?: string | null;
|
|
1544
1551
|
podTime?: string | null;
|
|
1545
1552
|
pickupDate?: string | null;
|
|
@@ -1587,6 +1594,7 @@ interface IntlShipmentSummary {
|
|
|
1587
1594
|
shipper?: ShipmentParty;
|
|
1588
1595
|
consignee?: ShipmentParty;
|
|
1589
1596
|
pieces?: number | null;
|
|
1597
|
+
packageType?: string | null;
|
|
1590
1598
|
pod?: string | null;
|
|
1591
1599
|
podTime?: string | null;
|
|
1592
1600
|
pickupDate?: string | null;
|
|
@@ -1648,6 +1656,7 @@ interface TimelineEvent {
|
|
|
1648
1656
|
code?: string | null;
|
|
1649
1657
|
shipmentStage?: ShipmentStage | null;
|
|
1650
1658
|
date?: string | null;
|
|
1659
|
+
containerNum?: string | null;
|
|
1651
1660
|
}
|
|
1652
1661
|
declare namespace TimelineEvent {
|
|
1653
1662
|
}
|
|
@@ -2263,6 +2272,7 @@ interface BaseShipmentSummary {
|
|
|
2263
2272
|
shipper?: ShipmentParty;
|
|
2264
2273
|
consignee?: ShipmentParty;
|
|
2265
2274
|
pieces?: number | null;
|
|
2275
|
+
packageType?: string | null;
|
|
2266
2276
|
pod?: string | null;
|
|
2267
2277
|
podTime?: string | null;
|
|
2268
2278
|
pickupDate?: string | null;
|