@soigo-dev/types-soigo-app 2.0.0 → 3.0.1
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 +2 -1
- package/package.json +1 -1
package/lib/venue.d.ts
CHANGED
|
@@ -77,6 +77,7 @@ export interface IVenue {
|
|
|
77
77
|
readonly location: IVenueLocation;
|
|
78
78
|
readonly latitude: number;
|
|
79
79
|
readonly longitude: number;
|
|
80
|
+
readonly distance?: number;
|
|
80
81
|
readonly priceLevel: PriceLevel;
|
|
81
82
|
readonly offerings: Offerings[];
|
|
82
83
|
readonly amenities: Amenities[];
|
|
@@ -107,7 +108,7 @@ type VenueFlags = {
|
|
|
107
108
|
export interface IGetVenueResponse extends IVenue {
|
|
108
109
|
readonly flags: VenueFlags;
|
|
109
110
|
}
|
|
110
|
-
export interface
|
|
111
|
+
export interface IGetNearbyVenuesQuery {
|
|
111
112
|
readonly lat: number;
|
|
112
113
|
readonly lng: number;
|
|
113
114
|
readonly radius: number;
|