@experteam-mx/ngx-services 20.3.4 → 20.3.5-dev3.0
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 -7
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2024,20 +2024,20 @@ interface Installation extends LaravelModel {
|
|
|
2024
2024
|
promotional_content: boolean;
|
|
2025
2025
|
}
|
|
2026
2026
|
interface Location extends LaravelModel {
|
|
2027
|
-
accounts
|
|
2027
|
+
accounts?: Account[];
|
|
2028
2028
|
address1: string;
|
|
2029
2029
|
address2: string;
|
|
2030
2030
|
address3: string;
|
|
2031
2031
|
billing_code: string | null;
|
|
2032
2032
|
city_name: string;
|
|
2033
2033
|
commission_account: string | null;
|
|
2034
|
-
company_country: CompanyCountry;
|
|
2035
2034
|
company_country_id: number;
|
|
2035
|
+
company_country?: CompanyCountry;
|
|
2036
2036
|
contact_name: string | null;
|
|
2037
|
-
country_region: null;
|
|
2038
2037
|
country_region_id: number | null;
|
|
2039
|
-
|
|
2038
|
+
country_region?: Region | null;
|
|
2040
2039
|
country_zone_id: number | null;
|
|
2040
|
+
country_zone?: Zone | null;
|
|
2041
2041
|
county_name: string;
|
|
2042
2042
|
default_account_id: number | null;
|
|
2043
2043
|
email: string | null;
|
|
@@ -2053,8 +2053,8 @@ interface Location extends LaravelModel {
|
|
|
2053
2053
|
is_occurs: boolean;
|
|
2054
2054
|
location_code: string | null;
|
|
2055
2055
|
locker_enabled: boolean;
|
|
2056
|
-
management_area: null;
|
|
2057
2056
|
management_area_id: number | null;
|
|
2057
|
+
management_area?: ManagementArea | null;
|
|
2058
2058
|
name: string;
|
|
2059
2059
|
phone_code: string;
|
|
2060
2060
|
phone_number: string;
|
|
@@ -2062,11 +2062,11 @@ interface Location extends LaravelModel {
|
|
|
2062
2062
|
route_number: string;
|
|
2063
2063
|
service_area_code: string;
|
|
2064
2064
|
service_point_id: string;
|
|
2065
|
-
state: State;
|
|
2066
2065
|
state_code: string | null;
|
|
2067
2066
|
state_id: number;
|
|
2068
2067
|
state_name: string;
|
|
2069
|
-
|
|
2068
|
+
state?: State;
|
|
2069
|
+
supervisor?: Employee;
|
|
2070
2070
|
type: string;
|
|
2071
2071
|
zip_code: string;
|
|
2072
2072
|
}
|