@experteam-mx/ngx-services 20.0.20 → 20.0.22
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 +8 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1586,6 +1586,7 @@ interface CountryReference extends LaravelModel {
|
|
|
1586
1586
|
receipt_printer_name: string;
|
|
1587
1587
|
others_printer_name: string;
|
|
1588
1588
|
country: Country;
|
|
1589
|
+
sanctioned_countries: number[] | null;
|
|
1589
1590
|
}
|
|
1590
1591
|
interface CountryReferenceCurrency extends LaravelModel {
|
|
1591
1592
|
country_id: number;
|
|
@@ -4034,6 +4035,8 @@ interface ExternalShipmentAddress extends ActiveLessSymfonyModel {
|
|
|
4034
4035
|
postalCode: string;
|
|
4035
4036
|
roleType: string;
|
|
4036
4037
|
serviceAreaCode: string;
|
|
4038
|
+
countyName: string | null;
|
|
4039
|
+
businessActivity: string | null;
|
|
4037
4040
|
}
|
|
4038
4041
|
interface ExternalShipmentStatus extends ActiveLessSymfonyModel {
|
|
4039
4042
|
name: string;
|
|
@@ -4075,6 +4078,7 @@ interface ExternalShipmentAddressCancellation {
|
|
|
4075
4078
|
email: string;
|
|
4076
4079
|
phoneCode: string | null;
|
|
4077
4080
|
phoneNumber: string | null;
|
|
4081
|
+
businessActivity?: string | null;
|
|
4078
4082
|
}
|
|
4079
4083
|
|
|
4080
4084
|
type ExternalShipmentAddressesIn = {
|
|
@@ -4091,6 +4095,8 @@ type ExternalShipmentAddressesIn = {
|
|
|
4091
4095
|
phoneCode: string | null;
|
|
4092
4096
|
phoneNumber: string | null;
|
|
4093
4097
|
postalCode: string;
|
|
4098
|
+
countyName?: string | null;
|
|
4099
|
+
businessActivity?: string | null;
|
|
4094
4100
|
};
|
|
4095
4101
|
type ExternalShipmentAddressesOut = {
|
|
4096
4102
|
externalShipmentAddress: ExternalShipmentAddress;
|
|
@@ -6041,6 +6047,8 @@ interface ReportExternalShipmentAddress extends ApiModel {
|
|
|
6041
6047
|
postal_code: string;
|
|
6042
6048
|
role_type: string;
|
|
6043
6049
|
service_area_code: string;
|
|
6050
|
+
county_name: string | null;
|
|
6051
|
+
business_activity: string | null;
|
|
6044
6052
|
}
|
|
6045
6053
|
interface PromotionCodeDiscount extends ApiModel {
|
|
6046
6054
|
country_id: number;
|