@mivis/petmart-api 1.2.153 → 1.2.155
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 +10 -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 {
|
|
@@ -1423,5 +1424,14 @@ declare namespace Components {
|
|
|
1423
1424
|
export interface IAddressSuggestionResponse {
|
|
1424
1425
|
suggestions: IAddressSuggestion[];
|
|
1425
1426
|
}
|
|
1427
|
+
|
|
1428
|
+
export interface IBanner {
|
|
1429
|
+
_id: string;
|
|
1430
|
+
photo: string;
|
|
1431
|
+
position: number;
|
|
1432
|
+
seller_id: string;
|
|
1433
|
+
createdAt: Date;
|
|
1434
|
+
updatedAt: Date;
|
|
1435
|
+
}
|
|
1426
1436
|
}
|
|
1427
1437
|
}
|