@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.
- package/lib/venue-location.d.ts +2 -0
- package/lib/venue.d.ts +2 -0
- package/package.json +1 -1
package/lib/venue-location.d.ts
CHANGED
|
@@ -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