@experteam-mx/ngx-services 20.9.0-dev1.1 → 20.9.0-dev1.2
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 +6 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1155,6 +1155,7 @@ interface Country extends SymfonyModel {
|
|
|
1155
1155
|
hasImportService: boolean;
|
|
1156
1156
|
phoneDigits: number;
|
|
1157
1157
|
locationTypeFields: LocationTypeFields;
|
|
1158
|
+
postalCodeFormats: PostalCodeFormat[];
|
|
1158
1159
|
postalCodeSuffixRegex: string;
|
|
1159
1160
|
decimalPoint: number;
|
|
1160
1161
|
max_quantity_document_piece: number;
|
|
@@ -1172,6 +1173,11 @@ interface Country extends SymfonyModel {
|
|
|
1172
1173
|
use_billing?: boolean;
|
|
1173
1174
|
translations: Translations;
|
|
1174
1175
|
}
|
|
1176
|
+
interface PostalCodeFormat extends SymfonyModel {
|
|
1177
|
+
format: string;
|
|
1178
|
+
significantChars: number;
|
|
1179
|
+
regex: string;
|
|
1180
|
+
}
|
|
1175
1181
|
interface LocationType extends SymfonyModel {
|
|
1176
1182
|
code: string;
|
|
1177
1183
|
name: string;
|
|
@@ -2932,11 +2938,6 @@ interface AccountWithLocations extends Account {
|
|
|
2932
2938
|
account_company_countries: AccountCompanyCountryLocation[];
|
|
2933
2939
|
country: CountryAccount;
|
|
2934
2940
|
}
|
|
2935
|
-
interface PostalCodeFormat extends SymfonyModel {
|
|
2936
|
-
format: string;
|
|
2937
|
-
significantChars: number;
|
|
2938
|
-
regex: string;
|
|
2939
|
-
}
|
|
2940
2941
|
interface CountryAccount {
|
|
2941
2942
|
id: number;
|
|
2942
2943
|
code: string;
|