@soigo-dev/types-soigo-app 3.0.14 → 3.0.15

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.
@@ -1,3 +1,4 @@
1
+ import type { IProvince } from './province';
1
2
  export interface IVenuePosition {
2
3
  readonly type: string;
3
4
  readonly coordinates: [number, number];
@@ -8,6 +9,7 @@ export interface IVenueSubdistrict {
8
9
  readonly nameTh: string;
9
10
  readonly slug: string;
10
11
  readonly provinceId: number;
12
+ readonly province?: IProvince;
11
13
  readonly createdAt: Date;
12
14
  readonly updatedAt: Date;
13
15
  }
package/lib/venue.d.ts CHANGED
@@ -137,6 +137,8 @@ export interface IUserLocationQuery {
137
137
  }
138
138
  export interface IGetVenuesQuery {
139
139
  readonly provinceId?: number;
140
+ readonly lat?: number;
141
+ readonly lng?: number;
140
142
  readonly page: number;
141
143
  readonly limit: number;
142
144
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soigo-dev/types-soigo-app",
3
- "version": "3.0.14",
3
+ "version": "3.0.15",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",