@mivis/petmart-api 1.2.195 → 1.2.196
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 +8 -4
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -1674,7 +1674,7 @@ declare namespace Components {
|
|
|
1674
1674
|
category: string;
|
|
1675
1675
|
birthDate: Date;
|
|
1676
1676
|
withersHeight: number;
|
|
1677
|
-
price:
|
|
1677
|
+
price: number;
|
|
1678
1678
|
location: IHorseLocation;
|
|
1679
1679
|
images: File | File[];
|
|
1680
1680
|
video_cover?: File;
|
|
@@ -1704,7 +1704,7 @@ declare namespace Components {
|
|
|
1704
1704
|
age: string;
|
|
1705
1705
|
category: string;
|
|
1706
1706
|
withersHeight: number;
|
|
1707
|
-
price:
|
|
1707
|
+
price: number;
|
|
1708
1708
|
location: IHorseLocation;
|
|
1709
1709
|
images: string[];
|
|
1710
1710
|
video_cover: string | null;
|
|
@@ -1779,9 +1779,13 @@ declare namespace Components {
|
|
|
1779
1779
|
sex?: 'male' | 'female';
|
|
1780
1780
|
breed?: string; // objectid
|
|
1781
1781
|
suit?: string; // objectid
|
|
1782
|
-
|
|
1782
|
+
ageMin?: string;
|
|
1783
|
+
ageMax?: string;
|
|
1784
|
+
withersHeightMin?: string;
|
|
1785
|
+
withersHeightMax?: string;
|
|
1786
|
+
priceMin?: string;
|
|
1787
|
+
priceMax?: string;
|
|
1783
1788
|
category?: string; // objectid
|
|
1784
|
-
price?: string; // objectid
|
|
1785
1789
|
}
|
|
1786
1790
|
|
|
1787
1791
|
export interface IReverseGeocodingRequest {
|