@indigina/myseko-api 0.0.44 → 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
|
@@ -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,13 @@ 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;
|
|
1807
1812
|
}
|
|
1808
1813
|
|
|
1809
1814
|
/**
|
|
@@ -2106,6 +2111,33 @@ declare class ShipmentService extends BaseService {
|
|
|
2106
2111
|
context?: HttpContext;
|
|
2107
2112
|
transferCache?: boolean;
|
|
2108
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>>;
|
|
2109
2141
|
/**
|
|
2110
2142
|
* Update an existing issue
|
|
2111
2143
|
* @endpoint put /myseko/shipments/{ordOrderID}/issues/{issueID}
|