@soigo-dev/types-soigo-app 3.0.3 → 3.0.4
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/lib/venue.d.ts +3 -1
- package/package.json +1 -1
package/lib/venue.d.ts
CHANGED
|
@@ -121,9 +121,11 @@ export interface IGetVenueResponse extends IVenue {
|
|
|
121
121
|
readonly flags: VenueFlags;
|
|
122
122
|
readonly isOpen?: boolean;
|
|
123
123
|
}
|
|
124
|
-
export interface
|
|
124
|
+
export interface IUserLocationQuery {
|
|
125
125
|
readonly lat: number;
|
|
126
126
|
readonly lng: number;
|
|
127
|
+
}
|
|
128
|
+
export interface IGetNearbyVenuesQuery extends IUserLocationQuery {
|
|
127
129
|
readonly radius: number;
|
|
128
130
|
readonly page: number;
|
|
129
131
|
readonly limit: number;
|