@exclusive-website/types 1.6.9 → 1.7.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/dist/filterEnums.js +39 -36
- package/dist/index.js +18 -2
- package/dist/types.js +2 -1
- package/package.json +1 -1
- package/tsconfig.json +1 -1
package/dist/filterEnums.js
CHANGED
|
@@ -1,43 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.HairLength = exports.HairColor = exports.ShaveStatus = exports.OtherPractise = exports.Practise = exports.UserRole = exports.ServicesFor = exports.ContactMethod = exports.NationalityOption = exports.BreastSize = exports.AvailabilityStatus = exports.AgeRange = exports.Language = exports.Location = exports.ServiceType = exports.ExperienceLevel = exports.SexualOrientation = exports.DayStatus = void 0;
|
|
1
4
|
// DAY STATUS
|
|
2
|
-
|
|
5
|
+
var DayStatus;
|
|
3
6
|
(function (DayStatus) {
|
|
4
7
|
DayStatus["WORKING"] = "WORKING";
|
|
5
8
|
DayStatus["ON_DEMAND"] = "ON_DEMAND";
|
|
6
9
|
DayStatus["BUSY"] = "BUSY";
|
|
7
10
|
DayStatus["NOT_WORKING"] = "NOT_WORKING";
|
|
8
|
-
})(DayStatus || (DayStatus = {}));
|
|
11
|
+
})(DayStatus = exports.DayStatus || (exports.DayStatus = {}));
|
|
9
12
|
// SEXUAL ORIENTATION
|
|
10
|
-
|
|
13
|
+
var SexualOrientation;
|
|
11
14
|
(function (SexualOrientation) {
|
|
12
15
|
SexualOrientation["HETERO"] = "HETERO";
|
|
13
16
|
SexualOrientation["BI"] = "BI";
|
|
14
17
|
SexualOrientation["HOMO"] = "HOMO";
|
|
15
|
-
})(SexualOrientation || (SexualOrientation = {}));
|
|
18
|
+
})(SexualOrientation = exports.SexualOrientation || (exports.SexualOrientation = {}));
|
|
16
19
|
// EXPERIENCE LEVEL
|
|
17
|
-
|
|
20
|
+
var ExperienceLevel;
|
|
18
21
|
(function (ExperienceLevel) {
|
|
19
22
|
ExperienceLevel["PROFI"] = "PROFI";
|
|
20
23
|
ExperienceLevel["ADVANCED"] = "ADVANCED";
|
|
21
24
|
ExperienceLevel["AMATEUR"] = "AMATEUR";
|
|
22
|
-
})(ExperienceLevel || (ExperienceLevel = {}));
|
|
25
|
+
})(ExperienceLevel = exports.ExperienceLevel || (exports.ExperienceLevel = {}));
|
|
23
26
|
// SERVICE TYPE
|
|
24
|
-
|
|
27
|
+
var ServiceType;
|
|
25
28
|
(function (ServiceType) {
|
|
26
29
|
ServiceType["ESCORT"] = "ESCORT";
|
|
27
30
|
ServiceType["MASSAGE"] = "MASSAGE";
|
|
28
31
|
ServiceType["DOMINA"] = "DOMINA";
|
|
29
|
-
})(ServiceType || (ServiceType = {}));
|
|
32
|
+
})(ServiceType = exports.ServiceType || (exports.ServiceType = {}));
|
|
30
33
|
// LOCATION
|
|
31
|
-
|
|
34
|
+
var Location;
|
|
32
35
|
(function (Location) {
|
|
33
36
|
Location["UNDEFINED"] = "UNDEFINED";
|
|
34
37
|
Location["BRATISLAVA"] = "BRATISLAVA";
|
|
35
38
|
Location["KOSICE"] = "KOSICE";
|
|
36
39
|
Location["PRESOV"] = "PRESOV";
|
|
37
40
|
Location["NITRA"] = "NITRA";
|
|
38
|
-
})(Location || (Location = {}));
|
|
41
|
+
})(Location = exports.Location || (exports.Location = {}));
|
|
39
42
|
// LANGUAGE
|
|
40
|
-
|
|
43
|
+
var Language;
|
|
41
44
|
(function (Language) {
|
|
42
45
|
Language["ENGLISH"] = "ENGLISH";
|
|
43
46
|
Language["GERMAN"] = "GERMAN";
|
|
@@ -47,9 +50,9 @@ export var Language;
|
|
|
47
50
|
Language["POLISH"] = "POLISH";
|
|
48
51
|
Language["SPANISH"] = "SPANISH";
|
|
49
52
|
Language["FRENCH"] = "FRENCH";
|
|
50
|
-
})(Language || (Language = {}));
|
|
53
|
+
})(Language = exports.Language || (exports.Language = {}));
|
|
51
54
|
// AGE RANGE
|
|
52
|
-
|
|
55
|
+
var AgeRange;
|
|
53
56
|
(function (AgeRange) {
|
|
54
57
|
AgeRange["UNDEFINED"] = "UNDEFINED";
|
|
55
58
|
AgeRange["AGE_18_19"] = "AGE_18_19";
|
|
@@ -58,16 +61,16 @@ export var AgeRange;
|
|
|
58
61
|
AgeRange["AGE_30_34"] = "AGE_30_34";
|
|
59
62
|
AgeRange["AGE_35_39"] = "AGE_35_39";
|
|
60
63
|
AgeRange["AGE_40_PLUS"] = "AGE_40_PLUS";
|
|
61
|
-
})(AgeRange || (AgeRange = {}));
|
|
64
|
+
})(AgeRange = exports.AgeRange || (exports.AgeRange = {}));
|
|
62
65
|
// AVAILABILITY
|
|
63
|
-
|
|
66
|
+
var AvailabilityStatus;
|
|
64
67
|
(function (AvailabilityStatus) {
|
|
65
68
|
AvailabilityStatus["UNDEFINED"] = "UNDEFINED";
|
|
66
69
|
AvailabilityStatus["AVAILABLE"] = "AVAILABLE";
|
|
67
70
|
AvailabilityStatus["UNAVAILABLE"] = "UNAVAILABLE";
|
|
68
|
-
})(AvailabilityStatus || (AvailabilityStatus = {}));
|
|
71
|
+
})(AvailabilityStatus = exports.AvailabilityStatus || (exports.AvailabilityStatus = {}));
|
|
69
72
|
// BREAST SIZE
|
|
70
|
-
|
|
73
|
+
var BreastSize;
|
|
71
74
|
(function (BreastSize) {
|
|
72
75
|
BreastSize["UNDEFINED"] = "UNDEFINED";
|
|
73
76
|
BreastSize["SIZE_1"] = "SIZE_1";
|
|
@@ -77,9 +80,9 @@ export var BreastSize;
|
|
|
77
80
|
BreastSize["SIZE_5"] = "SIZE_5";
|
|
78
81
|
BreastSize["SIZE_6"] = "SIZE_6";
|
|
79
82
|
BreastSize["SIZE_7_PLUS"] = "SIZE_7_PLUS";
|
|
80
|
-
})(BreastSize || (BreastSize = {}));
|
|
83
|
+
})(BreastSize = exports.BreastSize || (exports.BreastSize = {}));
|
|
81
84
|
// NATIONALITY
|
|
82
|
-
|
|
85
|
+
var NationalityOption;
|
|
83
86
|
(function (NationalityOption) {
|
|
84
87
|
NationalityOption["UNDEFINED"] = "UNDEFINED";
|
|
85
88
|
NationalityOption["SLOVAK"] = "SLOVAK";
|
|
@@ -88,29 +91,29 @@ export var NationalityOption;
|
|
|
88
91
|
NationalityOption["AUSTRIAN"] = "AUSTRIAN";
|
|
89
92
|
NationalityOption["GERMAN"] = "GERMAN";
|
|
90
93
|
NationalityOption["OTHER"] = "OTHER";
|
|
91
|
-
})(NationalityOption || (NationalityOption = {}));
|
|
94
|
+
})(NationalityOption = exports.NationalityOption || (exports.NationalityOption = {}));
|
|
92
95
|
// CONTACT METHOD
|
|
93
|
-
|
|
96
|
+
var ContactMethod;
|
|
94
97
|
(function (ContactMethod) {
|
|
95
98
|
ContactMethod["WHATSAPP"] = "WHATSAPP";
|
|
96
99
|
ContactMethod["TELEGRAM"] = "TELEGRAM";
|
|
97
100
|
ContactMethod["VIBER"] = "VIBER";
|
|
98
|
-
})(ContactMethod || (ContactMethod = {}));
|
|
101
|
+
})(ContactMethod = exports.ContactMethod || (exports.ContactMethod = {}));
|
|
99
102
|
// SERVICES FOR
|
|
100
|
-
|
|
103
|
+
var ServicesFor;
|
|
101
104
|
(function (ServicesFor) {
|
|
102
105
|
ServicesFor["MEN"] = "MEN";
|
|
103
106
|
ServicesFor["WOMEN"] = "WOMEN";
|
|
104
107
|
ServicesFor["COUPLES"] = "COUPLES";
|
|
105
|
-
})(ServicesFor || (ServicesFor = {}));
|
|
108
|
+
})(ServicesFor = exports.ServicesFor || (exports.ServicesFor = {}));
|
|
106
109
|
// USER ROLE
|
|
107
|
-
|
|
110
|
+
var UserRole;
|
|
108
111
|
(function (UserRole) {
|
|
109
112
|
UserRole["MODEL"] = "MODEL";
|
|
110
113
|
UserRole["CLIENT"] = "CLIENT";
|
|
111
|
-
})(UserRole || (UserRole = {}));
|
|
114
|
+
})(UserRole = exports.UserRole || (exports.UserRole = {}));
|
|
112
115
|
// PRACTISE
|
|
113
|
-
|
|
116
|
+
var Practise;
|
|
114
117
|
(function (Practise) {
|
|
115
118
|
Practise["MASSAGE"] = "MASSAGE";
|
|
116
119
|
Practise["HANDJOB"] = "HANDJOB";
|
|
@@ -127,9 +130,9 @@ export var Practise;
|
|
|
127
130
|
Practise["COMPANY"] = "COMPANY";
|
|
128
131
|
Practise["ESCORT"] = "ESCORT";
|
|
129
132
|
Practise["OTHER"] = "OTHER";
|
|
130
|
-
})(Practise || (Practise = {}));
|
|
133
|
+
})(Practise = exports.Practise || (exports.Practise = {}));
|
|
131
134
|
// OTHER PRACTISE
|
|
132
|
-
|
|
135
|
+
var OtherPractise;
|
|
133
136
|
(function (OtherPractise) {
|
|
134
137
|
OtherPractise["ANAL"] = "ANAL";
|
|
135
138
|
OtherPractise["ORAL_WITHOUT"] = "ORAL_WITHOUT";
|
|
@@ -142,24 +145,24 @@ export var OtherPractise;
|
|
|
142
145
|
OtherPractise["PISSING"] = "PISSING";
|
|
143
146
|
OtherPractise["RIMMING"] = "RIMMING";
|
|
144
147
|
OtherPractise["TOYS"] = "TOYS";
|
|
145
|
-
})(OtherPractise || (OtherPractise = {}));
|
|
148
|
+
})(OtherPractise = exports.OtherPractise || (exports.OtherPractise = {}));
|
|
146
149
|
// SHAVE STATUS
|
|
147
|
-
|
|
150
|
+
var ShaveStatus;
|
|
148
151
|
(function (ShaveStatus) {
|
|
149
152
|
ShaveStatus["SHAVED"] = "SHAVED";
|
|
150
153
|
ShaveStatus["PARTIALLY_SHAVED"] = "PARTIALLY_SHAVED";
|
|
151
154
|
ShaveStatus["NOT_SHAVED"] = "NOT_SHAVED";
|
|
152
|
-
})(ShaveStatus || (ShaveStatus = {}));
|
|
155
|
+
})(ShaveStatus = exports.ShaveStatus || (exports.ShaveStatus = {}));
|
|
153
156
|
// HAIR COLOR
|
|
154
|
-
|
|
157
|
+
var HairColor;
|
|
155
158
|
(function (HairColor) {
|
|
156
159
|
HairColor["BLOND"] = "BLOND";
|
|
157
160
|
HairColor["BRUNET"] = "BRUNET";
|
|
158
161
|
HairColor["REDHEAD"] = "REDHEAD";
|
|
159
|
-
})(HairColor || (HairColor = {}));
|
|
162
|
+
})(HairColor = exports.HairColor || (exports.HairColor = {}));
|
|
160
163
|
// HAIR LENGTH
|
|
161
|
-
|
|
164
|
+
var HairLength;
|
|
162
165
|
(function (HairLength) {
|
|
163
166
|
HairLength["LONG"] = "LONG";
|
|
164
167
|
HairLength["SHORT"] = "SHORT";
|
|
165
|
-
})(HairLength || (HairLength = {}));
|
|
168
|
+
})(HairLength = exports.HairLength || (exports.HairLength = {}));
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
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("./types"), exports);
|
|
18
|
+
__exportStar(require("./filterEnums"), exports);
|
package/dist/types.js
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
package/package.json
CHANGED