@soigo-dev/types-soigo-app 1.0.0
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/enums.d.ts +66 -0
- package/lib/enums.js +79 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +17 -0
- package/package.json +24 -0
package/lib/enums.d.ts
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
export declare enum PriceLevel {
|
|
2
|
+
None = 0,
|
|
3
|
+
Low = 1,
|
|
4
|
+
Medium = 2,
|
|
5
|
+
High = 3,
|
|
6
|
+
Luxurious = 4
|
|
7
|
+
}
|
|
8
|
+
export declare enum Offerings {
|
|
9
|
+
Undefined = 0,
|
|
10
|
+
Beer = 1,
|
|
11
|
+
Spirits = 2,
|
|
12
|
+
Wine = 4,
|
|
13
|
+
Food = 5,
|
|
14
|
+
Dancing = 6
|
|
15
|
+
}
|
|
16
|
+
export declare enum Amenities {
|
|
17
|
+
Undefined = 0,
|
|
18
|
+
Toilet = 1,
|
|
19
|
+
Wifi = 2,
|
|
20
|
+
FreeWifi = 4
|
|
21
|
+
}
|
|
22
|
+
export declare enum Atmospheres {
|
|
23
|
+
Undefined = 0,
|
|
24
|
+
Casual = 1,
|
|
25
|
+
Cozy = 2
|
|
26
|
+
}
|
|
27
|
+
export declare enum TypeSongs {
|
|
28
|
+
Undefined = 0,
|
|
29
|
+
Thai = 1,
|
|
30
|
+
Latino = 2,
|
|
31
|
+
HipHop = 3,
|
|
32
|
+
Jazz = 4,
|
|
33
|
+
Electronic = 5
|
|
34
|
+
}
|
|
35
|
+
export declare enum ParkingLots {
|
|
36
|
+
Undefined = 0,
|
|
37
|
+
Free = 1,
|
|
38
|
+
Paid = 2,
|
|
39
|
+
Difficult = 3,
|
|
40
|
+
Street = 4,
|
|
41
|
+
BigBike = 5
|
|
42
|
+
}
|
|
43
|
+
export declare enum Accessibilities {
|
|
44
|
+
Undefined = 0,
|
|
45
|
+
WheelchairEntrance = 1
|
|
46
|
+
}
|
|
47
|
+
export declare enum Crowds {
|
|
48
|
+
Undefined = 0,
|
|
49
|
+
Alone = 1,
|
|
50
|
+
Groups = 2,
|
|
51
|
+
Foreign = 3
|
|
52
|
+
}
|
|
53
|
+
export declare enum EntryTypes {
|
|
54
|
+
Undefined = 0,
|
|
55
|
+
Free = 1,
|
|
56
|
+
Paid = 2
|
|
57
|
+
}
|
|
58
|
+
export declare enum DaysOfWeek {
|
|
59
|
+
Sunday = 0,
|
|
60
|
+
Monday = 1,
|
|
61
|
+
Tuesday = 2,
|
|
62
|
+
Wednesday = 3,
|
|
63
|
+
Thursday = 4,
|
|
64
|
+
Friday = 5,
|
|
65
|
+
Saturday = 6
|
|
66
|
+
}
|
package/lib/enums.js
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DaysOfWeek = exports.EntryTypes = exports.Crowds = exports.Accessibilities = exports.ParkingLots = exports.TypeSongs = exports.Atmospheres = exports.Amenities = exports.Offerings = exports.PriceLevel = void 0;
|
|
4
|
+
var PriceLevel;
|
|
5
|
+
(function (PriceLevel) {
|
|
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
|
+
})(PriceLevel || (exports.PriceLevel = PriceLevel = {}));
|
|
12
|
+
var Offerings;
|
|
13
|
+
(function (Offerings) {
|
|
14
|
+
Offerings[Offerings["Undefined"] = 0] = "Undefined";
|
|
15
|
+
Offerings[Offerings["Beer"] = 1] = "Beer";
|
|
16
|
+
Offerings[Offerings["Spirits"] = 2] = "Spirits";
|
|
17
|
+
Offerings[Offerings["Wine"] = 4] = "Wine";
|
|
18
|
+
Offerings[Offerings["Food"] = 5] = "Food";
|
|
19
|
+
Offerings[Offerings["Dancing"] = 6] = "Dancing";
|
|
20
|
+
})(Offerings || (exports.Offerings = Offerings = {}));
|
|
21
|
+
var Amenities;
|
|
22
|
+
(function (Amenities) {
|
|
23
|
+
Amenities[Amenities["Undefined"] = 0] = "Undefined";
|
|
24
|
+
Amenities[Amenities["Toilet"] = 1] = "Toilet";
|
|
25
|
+
Amenities[Amenities["Wifi"] = 2] = "Wifi";
|
|
26
|
+
Amenities[Amenities["FreeWifi"] = 4] = "FreeWifi";
|
|
27
|
+
})(Amenities || (exports.Amenities = Amenities = {}));
|
|
28
|
+
var Atmospheres;
|
|
29
|
+
(function (Atmospheres) {
|
|
30
|
+
Atmospheres[Atmospheres["Undefined"] = 0] = "Undefined";
|
|
31
|
+
Atmospheres[Atmospheres["Casual"] = 1] = "Casual";
|
|
32
|
+
Atmospheres[Atmospheres["Cozy"] = 2] = "Cozy";
|
|
33
|
+
})(Atmospheres || (exports.Atmospheres = Atmospheres = {}));
|
|
34
|
+
var TypeSongs;
|
|
35
|
+
(function (TypeSongs) {
|
|
36
|
+
TypeSongs[TypeSongs["Undefined"] = 0] = "Undefined";
|
|
37
|
+
TypeSongs[TypeSongs["Thai"] = 1] = "Thai";
|
|
38
|
+
TypeSongs[TypeSongs["Latino"] = 2] = "Latino";
|
|
39
|
+
TypeSongs[TypeSongs["HipHop"] = 3] = "HipHop";
|
|
40
|
+
TypeSongs[TypeSongs["Jazz"] = 4] = "Jazz";
|
|
41
|
+
TypeSongs[TypeSongs["Electronic"] = 5] = "Electronic";
|
|
42
|
+
})(TypeSongs || (exports.TypeSongs = TypeSongs = {}));
|
|
43
|
+
var ParkingLots;
|
|
44
|
+
(function (ParkingLots) {
|
|
45
|
+
ParkingLots[ParkingLots["Undefined"] = 0] = "Undefined";
|
|
46
|
+
ParkingLots[ParkingLots["Free"] = 1] = "Free";
|
|
47
|
+
ParkingLots[ParkingLots["Paid"] = 2] = "Paid";
|
|
48
|
+
ParkingLots[ParkingLots["Difficult"] = 3] = "Difficult";
|
|
49
|
+
ParkingLots[ParkingLots["Street"] = 4] = "Street";
|
|
50
|
+
ParkingLots[ParkingLots["BigBike"] = 5] = "BigBike";
|
|
51
|
+
})(ParkingLots || (exports.ParkingLots = ParkingLots = {}));
|
|
52
|
+
var Accessibilities;
|
|
53
|
+
(function (Accessibilities) {
|
|
54
|
+
Accessibilities[Accessibilities["Undefined"] = 0] = "Undefined";
|
|
55
|
+
Accessibilities[Accessibilities["WheelchairEntrance"] = 1] = "WheelchairEntrance";
|
|
56
|
+
})(Accessibilities || (exports.Accessibilities = Accessibilities = {}));
|
|
57
|
+
var Crowds;
|
|
58
|
+
(function (Crowds) {
|
|
59
|
+
Crowds[Crowds["Undefined"] = 0] = "Undefined";
|
|
60
|
+
Crowds[Crowds["Alone"] = 1] = "Alone";
|
|
61
|
+
Crowds[Crowds["Groups"] = 2] = "Groups";
|
|
62
|
+
Crowds[Crowds["Foreign"] = 3] = "Foreign";
|
|
63
|
+
})(Crowds || (exports.Crowds = Crowds = {}));
|
|
64
|
+
var EntryTypes;
|
|
65
|
+
(function (EntryTypes) {
|
|
66
|
+
EntryTypes[EntryTypes["Undefined"] = 0] = "Undefined";
|
|
67
|
+
EntryTypes[EntryTypes["Free"] = 1] = "Free";
|
|
68
|
+
EntryTypes[EntryTypes["Paid"] = 2] = "Paid";
|
|
69
|
+
})(EntryTypes || (exports.EntryTypes = EntryTypes = {}));
|
|
70
|
+
var DaysOfWeek;
|
|
71
|
+
(function (DaysOfWeek) {
|
|
72
|
+
DaysOfWeek[DaysOfWeek["Sunday"] = 0] = "Sunday";
|
|
73
|
+
DaysOfWeek[DaysOfWeek["Monday"] = 1] = "Monday";
|
|
74
|
+
DaysOfWeek[DaysOfWeek["Tuesday"] = 2] = "Tuesday";
|
|
75
|
+
DaysOfWeek[DaysOfWeek["Wednesday"] = 3] = "Wednesday";
|
|
76
|
+
DaysOfWeek[DaysOfWeek["Thursday"] = 4] = "Thursday";
|
|
77
|
+
DaysOfWeek[DaysOfWeek["Friday"] = 5] = "Friday";
|
|
78
|
+
DaysOfWeek[DaysOfWeek["Saturday"] = 6] = "Saturday";
|
|
79
|
+
})(DaysOfWeek || (exports.DaysOfWeek = DaysOfWeek = {}));
|
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './enums';
|
package/lib/index.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./enums"), exports);
|
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@soigo-dev/types-soigo-app",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"types": "lib/index.d.ts",
|
|
7
|
+
"license": "UNLICENSED",
|
|
8
|
+
"files": [
|
|
9
|
+
"lib"
|
|
10
|
+
],
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/soigo-dev/soigo-world"
|
|
14
|
+
},
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"watch": "pnpm run build --watch",
|
|
20
|
+
"build": "pnpm tsc -p tsconfig.release.json",
|
|
21
|
+
"test": "echo @soigo-dev/types-soigo-app",
|
|
22
|
+
"clean": "rimraf lib && rimraf node_modules && rimraf tsconfig.release.tsbuildinfo"
|
|
23
|
+
}
|
|
24
|
+
}
|