@mivis/petmart-api 1.2.156 → 1.2.157
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/package.json +1 -1
- package/type.d.ts +7 -0
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -1407,6 +1407,11 @@ declare namespace Components {
|
|
|
1407
1407
|
sum: number;
|
|
1408
1408
|
}
|
|
1409
1409
|
|
|
1410
|
+
export interface IAddressSuggestionRequest {
|
|
1411
|
+
address: string;
|
|
1412
|
+
isCityOnly?: 'true' | 'false';
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1410
1415
|
export interface IAddressSuggestion {
|
|
1411
1416
|
value: string;
|
|
1412
1417
|
unrestricted_value: string;
|
|
@@ -1420,6 +1425,8 @@ declare namespace Components {
|
|
|
1420
1425
|
fias_code: null;
|
|
1421
1426
|
fias_level: string;
|
|
1422
1427
|
kladr_id: string;
|
|
1428
|
+
geo_lat: string | null;
|
|
1429
|
+
geo_lon: string | null;
|
|
1423
1430
|
};
|
|
1424
1431
|
}
|
|
1425
1432
|
|