@mivis/petmart-api 1.2.207 → 1.2.208
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 +6 -0
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -1724,6 +1724,7 @@ declare namespace Components {
|
|
|
1724
1724
|
documents: IDocument[];
|
|
1725
1725
|
competition_history: ICompetitionHistory[] | null;
|
|
1726
1726
|
communication: ICommunication;
|
|
1727
|
+
distance?: number; // Расстояние пользователя до лошади (если передано гео)
|
|
1727
1728
|
telegram_message_id: string | null;
|
|
1728
1729
|
slug: string;
|
|
1729
1730
|
number: number;
|
|
@@ -1830,5 +1831,10 @@ declare namespace Components {
|
|
|
1830
1831
|
export interface ExternalPushMessageData {
|
|
1831
1832
|
url: string;
|
|
1832
1833
|
}
|
|
1834
|
+
|
|
1835
|
+
export interface IGetHorseViewHistory extends FilterBaseQuery {
|
|
1836
|
+
lat?: string; // user lat
|
|
1837
|
+
lng?: string; // user lng
|
|
1838
|
+
}
|
|
1833
1839
|
}
|
|
1834
1840
|
}
|