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