@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.
- package/package.json +1 -1
- package/type.d.ts +18 -0
package/package.json
CHANGED
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
|
}
|