@indigina/myseko-api 0.0.43 → 0.0.45
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
|
@@ -1629,6 +1629,8 @@ interface IntlShipmentSummary {
|
|
|
1629
1629
|
containerCount?: number | null;
|
|
1630
1630
|
masterBill?: string | null;
|
|
1631
1631
|
releaseType?: string | null;
|
|
1632
|
+
shipmentNumber?: string | null;
|
|
1633
|
+
shipmentType?: string | null;
|
|
1632
1634
|
}
|
|
1633
1635
|
|
|
1634
1636
|
/**
|
|
@@ -1800,9 +1802,13 @@ interface Shipment {
|
|
|
1800
1802
|
submittedDate?: string | null;
|
|
1801
1803
|
eta?: string | null;
|
|
1802
1804
|
etd?: string | null;
|
|
1805
|
+
ata?: string | null;
|
|
1806
|
+
atd?: string | null;
|
|
1807
|
+
packageType?: string | null;
|
|
1803
1808
|
deliveryRequiredBy?: string | null;
|
|
1804
1809
|
isActive?: boolean | null;
|
|
1805
1810
|
isException?: boolean | null;
|
|
1811
|
+
subShipmentsCount?: number | null;
|
|
1806
1812
|
}
|
|
1807
1813
|
|
|
1808
1814
|
/**
|
|
@@ -2105,6 +2111,33 @@ declare class ShipmentService extends BaseService {
|
|
|
2105
2111
|
context?: HttpContext;
|
|
2106
2112
|
transferCache?: boolean;
|
|
2107
2113
|
}): Observable<HttpEvent<Shipments>>;
|
|
2114
|
+
/**
|
|
2115
|
+
* Get sub-shipments for a shipment
|
|
2116
|
+
* @endpoint get /myseko/shipments/{ordOrderID}/sub-shipments
|
|
2117
|
+
* @param ordOrderID
|
|
2118
|
+
* @param $skip
|
|
2119
|
+
* @param $top
|
|
2120
|
+
* @param $orderby
|
|
2121
|
+
* @param $filter
|
|
2122
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2123
|
+
* @param reportProgress flag to report request and response progress.
|
|
2124
|
+
* @param options additional options
|
|
2125
|
+
*/
|
|
2126
|
+
getSubShipments(ordOrderID: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2127
|
+
httpHeaderAccept?: 'application/json';
|
|
2128
|
+
context?: HttpContext;
|
|
2129
|
+
transferCache?: boolean;
|
|
2130
|
+
}): Observable<Shipments>;
|
|
2131
|
+
getSubShipments(ordOrderID: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2132
|
+
httpHeaderAccept?: 'application/json';
|
|
2133
|
+
context?: HttpContext;
|
|
2134
|
+
transferCache?: boolean;
|
|
2135
|
+
}): Observable<HttpResponse<Shipments>>;
|
|
2136
|
+
getSubShipments(ordOrderID: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2137
|
+
httpHeaderAccept?: 'application/json';
|
|
2138
|
+
context?: HttpContext;
|
|
2139
|
+
transferCache?: boolean;
|
|
2140
|
+
}): Observable<HttpEvent<Shipments>>;
|
|
2108
2141
|
/**
|
|
2109
2142
|
* Update an existing issue
|
|
2110
2143
|
* @endpoint put /myseko/shipments/{ordOrderID}/issues/{issueID}
|