@experteam-mx/ngx-services 20.0.24 → 20.0.26
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/index.d.ts
CHANGED
|
@@ -6011,6 +6011,8 @@ interface ShipmentLandingReport extends ActiveLessLaravelModel {
|
|
|
6011
6011
|
shipment_content_type_id: number;
|
|
6012
6012
|
shipment_scope_id: number;
|
|
6013
6013
|
} | null;
|
|
6014
|
+
manifest_date_time?: string | null;
|
|
6015
|
+
date_time?: string;
|
|
6014
6016
|
}
|
|
6015
6017
|
interface ShipmentTag extends ActiveLessSymfonyModel {
|
|
6016
6018
|
name: string;
|
|
@@ -6075,6 +6077,8 @@ interface PromotionCodeDiscount extends ApiModel {
|
|
|
6075
6077
|
promotion_code: string;
|
|
6076
6078
|
discount_percentage: number;
|
|
6077
6079
|
product_subtotals: ProductSubtotal[];
|
|
6080
|
+
manifest_date_time?: string | null;
|
|
6081
|
+
date_time?: string;
|
|
6078
6082
|
}
|
|
6079
6083
|
interface ProductSubtotal {
|
|
6080
6084
|
country_reference_currency_id: number;
|
|
@@ -7084,7 +7088,7 @@ declare class ApiShipmentsService {
|
|
|
7084
7088
|
* @return {Observable<ShipmentSignaturePageOut>} An observable containing base64 file generated
|
|
7085
7089
|
* @param id - the shipment id.
|
|
7086
7090
|
*/
|
|
7087
|
-
|
|
7091
|
+
getShipmentSignaturePage(id: number): Observable<ShipmentSignaturePageOut>;
|
|
7088
7092
|
/**
|
|
7089
7093
|
* Cancels a specific shipment by providing its ID and a reason for cancellation.
|
|
7090
7094
|
* Sends a PATCH request to update the shipment's cancellation status with the specified reason.
|