@experteam-mx/ngx-services 20.7.0-dev1.7 → 20.7.0-dev1.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 +5 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5237,6 +5237,9 @@ interface ShipmentCustoms {
|
|
|
5237
5237
|
}
|
|
5238
5238
|
interface ShipmentDataToSignaturePage {
|
|
5239
5239
|
currency_code: string;
|
|
5240
|
+
decimal_point: number;
|
|
5241
|
+
decimal_separator: string;
|
|
5242
|
+
thousands_separator: string;
|
|
5240
5243
|
tracking_number: string;
|
|
5241
5244
|
content_description: string;
|
|
5242
5245
|
pieces_number: number;
|
|
@@ -5289,6 +5292,7 @@ interface SignaturePageConfirmation extends ActiveLessLaravelModel {
|
|
|
5289
5292
|
status: string;
|
|
5290
5293
|
shipment_data: ShipmentDataToSignaturePage;
|
|
5291
5294
|
signature_page: SignaturePage;
|
|
5295
|
+
expiry: number;
|
|
5292
5296
|
}
|
|
5293
5297
|
|
|
5294
5298
|
type DeliveryConfirmationGenerateOut = {
|
|
@@ -5345,7 +5349,7 @@ type ShipmentSignaturePageIn = {
|
|
|
5345
5349
|
type ShipmentSignaturePageConfirmationIn = {
|
|
5346
5350
|
shipment_id: number;
|
|
5347
5351
|
status: string;
|
|
5348
|
-
signature_page_answers: SignaturePageAnswers;
|
|
5352
|
+
signature_page_answers: SignaturePageAnswers | null;
|
|
5349
5353
|
otp: string;
|
|
5350
5354
|
};
|
|
5351
5355
|
|