@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/type.d.ts +7 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mivis/petmart-api",
3
- "version": "1.2.156",
3
+ "version": "1.2.157",
4
4
  "main": "index.js",
5
5
  "types": "type.d.ts",
6
6
  "license": "ISC",
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