@indigina/myseko-api 0.0.38 → 0.0.40
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;
|
|
@@ -1568,6 +1572,10 @@ interface SekonaShipmentSummary {
|
|
|
1568
1572
|
shipperApptEndTime?: string | null;
|
|
1569
1573
|
appointmentRequired?: boolean | null;
|
|
1570
1574
|
purchaseOrder?: string | null;
|
|
1575
|
+
shipperAssembly?: string | null;
|
|
1576
|
+
consigneeAssembly?: string | null;
|
|
1577
|
+
pickupTimeIn?: string | null;
|
|
1578
|
+
pickupTimeOut?: string | null;
|
|
1571
1579
|
}
|
|
1572
1580
|
|
|
1573
1581
|
/**
|
|
@@ -1590,6 +1598,7 @@ interface IntlShipmentSummary {
|
|
|
1590
1598
|
shipper?: ShipmentParty;
|
|
1591
1599
|
consignee?: ShipmentParty;
|
|
1592
1600
|
pieces?: number | null;
|
|
1601
|
+
packageType?: string | null;
|
|
1593
1602
|
pod?: string | null;
|
|
1594
1603
|
podTime?: string | null;
|
|
1595
1604
|
pickupDate?: string | null;
|
|
@@ -1651,6 +1660,7 @@ interface TimelineEvent {
|
|
|
1651
1660
|
code?: string | null;
|
|
1652
1661
|
shipmentStage?: ShipmentStage | null;
|
|
1653
1662
|
date?: string | null;
|
|
1663
|
+
isLocalTime?: boolean | null;
|
|
1654
1664
|
containerNum?: string | null;
|
|
1655
1665
|
}
|
|
1656
1666
|
declare namespace TimelineEvent {
|
|
@@ -2267,6 +2277,7 @@ interface BaseShipmentSummary {
|
|
|
2267
2277
|
shipper?: ShipmentParty;
|
|
2268
2278
|
consignee?: ShipmentParty;
|
|
2269
2279
|
pieces?: number | null;
|
|
2280
|
+
packageType?: string | null;
|
|
2270
2281
|
pod?: string | null;
|
|
2271
2282
|
podTime?: string | null;
|
|
2272
2283
|
pickupDate?: string | null;
|