@experteam-mx/ngx-services 20.1.7 → 20.1.9
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
|
@@ -5127,7 +5127,6 @@ type DocumentTypeRangeIn = {
|
|
|
5127
5127
|
sap_prefix: string;
|
|
5128
5128
|
sap_suffix?: string;
|
|
5129
5129
|
suffix?: string;
|
|
5130
|
-
used_numbers: number;
|
|
5131
5130
|
valid_since: string;
|
|
5132
5131
|
valid_until: string;
|
|
5133
5132
|
};
|
|
@@ -6003,6 +6002,8 @@ interface ShipmentLandingReport extends ActiveLessLaravelModel {
|
|
|
6003
6002
|
shipment_content_type_id: number;
|
|
6004
6003
|
shipment_scope_id: number;
|
|
6005
6004
|
} | null;
|
|
6005
|
+
manifest_date_time?: string | null;
|
|
6006
|
+
date_time?: string;
|
|
6006
6007
|
}
|
|
6007
6008
|
interface ShipmentTag extends ActiveLessSymfonyModel {
|
|
6008
6009
|
name: string;
|
|
@@ -6067,6 +6068,8 @@ interface PromotionCodeDiscount extends ApiModel {
|
|
|
6067
6068
|
promotion_code: string;
|
|
6068
6069
|
discount_percentage: number;
|
|
6069
6070
|
product_subtotals: ProductSubtotal[];
|
|
6071
|
+
manifest_date_time?: string | null;
|
|
6072
|
+
date_time?: string;
|
|
6070
6073
|
}
|
|
6071
6074
|
interface ProductSubtotal {
|
|
6072
6075
|
country_reference_currency_id: number;
|
|
@@ -7072,7 +7075,7 @@ declare class ApiShipmentsService {
|
|
|
7072
7075
|
* @return {Observable<ShipmentSignaturePageOut>} An observable containing base64 file generated
|
|
7073
7076
|
* @param id - the shipment id.
|
|
7074
7077
|
*/
|
|
7075
|
-
|
|
7078
|
+
postShipmentSignaturePage(id: number): Observable<ShipmentSignaturePageOut>;
|
|
7076
7079
|
/**
|
|
7077
7080
|
* Cancels a specific shipment by providing its ID and a reason for cancellation.
|
|
7078
7081
|
* Sends a PATCH request to update the shipment's cancellation status with the specified reason.
|