@experteam-mx/ngx-services 18.9.2 → 18.9.4
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/esm2022/lib/apis/api-companies.service.mjs +2 -2
- package/esm2022/lib/apis/models/api-invoices.interfaces.mjs +1 -1
- package/fesm2022/experteam-mx-ngx-services.mjs +1 -1
- package/fesm2022/experteam-mx-ngx-services.mjs.map +1 -1
- package/lib/apis/models/api-invoices.interfaces.d.ts +10 -12
- package/package.json +1 -1
|
@@ -150,21 +150,19 @@ export interface Customer extends LaravelModel {
|
|
|
150
150
|
company_name: string;
|
|
151
151
|
full_name: string;
|
|
152
152
|
email: string;
|
|
153
|
-
phone_code: string;
|
|
154
|
-
phone_number: number;
|
|
155
|
-
birth_date: string;
|
|
156
|
-
postal_code: number;
|
|
157
|
-
state: string;
|
|
158
|
-
county_name: string;
|
|
159
|
-
city_name: string;
|
|
153
|
+
phone_code: string | null;
|
|
154
|
+
phone_number: number | null;
|
|
155
|
+
birth_date: string | null;
|
|
156
|
+
postal_code: number | null;
|
|
157
|
+
state: string | null;
|
|
158
|
+
county_name: string | null;
|
|
159
|
+
city_name: string | null;
|
|
160
160
|
address_line1: string;
|
|
161
|
-
address_line2: string;
|
|
162
|
-
address_line3: string;
|
|
161
|
+
address_line2: string | null;
|
|
162
|
+
address_line3: string | null;
|
|
163
163
|
company_id: number;
|
|
164
164
|
identification_type_id: number;
|
|
165
|
-
extra_fields:
|
|
166
|
-
[key: string]: string | number | boolean | null;
|
|
167
|
-
};
|
|
165
|
+
extra_fields: Record<string, string | number | boolean | null>;
|
|
168
166
|
country_id: number;
|
|
169
167
|
customer_type_id: number;
|
|
170
168
|
}
|