@soigo-dev/types-soigo-app 3.0.11 → 3.0.13
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 +7 -7
- package/lib/venue.js +5 -5
- package/package.json +1 -1
package/lib/venue.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { IProvince } from './province';
|
|
2
2
|
export declare enum PriceLevel {
|
|
3
|
-
None =
|
|
4
|
-
Low =
|
|
5
|
-
Medium =
|
|
6
|
-
High =
|
|
7
|
-
Luxurious =
|
|
3
|
+
None = 0,
|
|
4
|
+
Low = 1,
|
|
5
|
+
Medium = 2,
|
|
6
|
+
High = 3,
|
|
7
|
+
Luxurious = 4
|
|
8
8
|
}
|
|
9
9
|
export declare enum Offerings {
|
|
10
10
|
Undefined = "undefined",
|
|
@@ -93,8 +93,8 @@ export interface IVenue {
|
|
|
93
93
|
readonly latitude: number;
|
|
94
94
|
readonly longitude: number;
|
|
95
95
|
readonly distance?: number;
|
|
96
|
-
readonly googleMapsUrl
|
|
97
|
-
readonly venueType
|
|
96
|
+
readonly googleMapsUrl: string;
|
|
97
|
+
readonly venueType: VenueType;
|
|
98
98
|
readonly priceLevel: PriceLevel;
|
|
99
99
|
readonly offerings: Offerings[];
|
|
100
100
|
readonly amenities: Amenities[];
|
package/lib/venue.js
CHANGED
|
@@ -3,11 +3,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.VenueImageTypes = exports.DaysOfWeek = exports.VenueType = exports.CommunityTags = exports.EntryTypes = exports.Crowds = exports.Accessibilities = exports.ParkingLots = exports.TypeSongs = exports.Atmospheres = exports.Amenities = exports.Offerings = exports.PriceLevel = void 0;
|
|
4
4
|
var PriceLevel;
|
|
5
5
|
(function (PriceLevel) {
|
|
6
|
-
PriceLevel["None"] = "
|
|
7
|
-
PriceLevel["Low"] = "
|
|
8
|
-
PriceLevel["Medium"] = "
|
|
9
|
-
PriceLevel["High"] = "
|
|
10
|
-
PriceLevel["Luxurious"] = "
|
|
6
|
+
PriceLevel[PriceLevel["None"] = 0] = "None";
|
|
7
|
+
PriceLevel[PriceLevel["Low"] = 1] = "Low";
|
|
8
|
+
PriceLevel[PriceLevel["Medium"] = 2] = "Medium";
|
|
9
|
+
PriceLevel[PriceLevel["High"] = 3] = "High";
|
|
10
|
+
PriceLevel[PriceLevel["Luxurious"] = 4] = "Luxurious";
|
|
11
11
|
})(PriceLevel || (exports.PriceLevel = PriceLevel = {}));
|
|
12
12
|
var Offerings;
|
|
13
13
|
(function (Offerings) {
|