@mivis/petmart-api 1.2.152 → 1.2.153

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 +18 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mivis/petmart-api",
3
- "version": "1.2.152",
3
+ "version": "1.2.153",
4
4
  "main": "index.js",
5
5
  "types": "type.d.ts",
6
6
  "license": "ISC",
package/type.d.ts CHANGED
@@ -1405,5 +1405,23 @@ declare namespace Components {
1405
1405
  export interface IAdminCreateWithdrawalRequest {
1406
1406
  sum: number;
1407
1407
  }
1408
+
1409
+ export interface IAddressSuggestion {
1410
+ value: string;
1411
+ unrestricted_value: string;
1412
+ data: {
1413
+ region_fias_id: string;
1414
+ city_fias_id: string;
1415
+ city_kladr_id: string;
1416
+ fias_id: string;
1417
+ fias_code: null;
1418
+ fias_level: string;
1419
+ kladr_id: string;
1420
+ };
1421
+ }
1422
+
1423
+ export interface IAddressSuggestionResponse {
1424
+ suggestions: IAddressSuggestion[];
1425
+ }
1408
1426
  }
1409
1427
  }