@mivis/petmart-api 1.2.152 → 1.2.154
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 +19 -0
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -916,6 +916,7 @@ declare namespace Components {
|
|
|
916
916
|
|
|
917
917
|
export interface IGetCDEKOffices {
|
|
918
918
|
weight_max?: string;
|
|
919
|
+
city: string; // city or city_disctrict from dadata
|
|
919
920
|
}
|
|
920
921
|
|
|
921
922
|
export interface ICDEKOffice {
|
|
@@ -1405,5 +1406,23 @@ declare namespace Components {
|
|
|
1405
1406
|
export interface IAdminCreateWithdrawalRequest {
|
|
1406
1407
|
sum: number;
|
|
1407
1408
|
}
|
|
1409
|
+
|
|
1410
|
+
export interface IAddressSuggestion {
|
|
1411
|
+
value: string;
|
|
1412
|
+
unrestricted_value: string;
|
|
1413
|
+
data: {
|
|
1414
|
+
region_fias_id: string;
|
|
1415
|
+
city_fias_id: string;
|
|
1416
|
+
city_kladr_id: string;
|
|
1417
|
+
fias_id: string;
|
|
1418
|
+
fias_code: null;
|
|
1419
|
+
fias_level: string;
|
|
1420
|
+
kladr_id: string;
|
|
1421
|
+
};
|
|
1422
|
+
}
|
|
1423
|
+
|
|
1424
|
+
export interface IAddressSuggestionResponse {
|
|
1425
|
+
suggestions: IAddressSuggestion[];
|
|
1426
|
+
}
|
|
1408
1427
|
}
|
|
1409
1428
|
}
|