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