@soigo-dev/types-soigo-app 3.0.4 → 3.0.5

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.
Files changed (2) hide show
  1. package/lib/venue.d.ts +4 -2
  2. package/package.json +1 -1
package/lib/venue.d.ts CHANGED
@@ -122,10 +122,12 @@ export interface IGetVenueResponse extends IVenue {
122
122
  readonly isOpen?: boolean;
123
123
  }
124
124
  export interface IUserLocationQuery {
125
- readonly lat: number;
126
- readonly lng: number;
125
+ readonly lat?: number;
126
+ readonly lng?: number;
127
127
  }
128
128
  export interface IGetNearbyVenuesQuery extends IUserLocationQuery {
129
+ readonly lat: number;
130
+ readonly lng: number;
129
131
  readonly radius: number;
130
132
  readonly page: number;
131
133
  readonly limit: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soigo-dev/types-soigo-app",
3
- "version": "3.0.4",
3
+ "version": "3.0.5",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",