@exclusive-website/types 1.6.4 → 1.6.6

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,129 +1,147 @@
1
- export declare enum DayStatus {
2
- WORKING = 0,
3
- ON_DEMAND = 1,
4
- BUSY = 2,
5
- NOT_WORKING = 3
6
- }
7
- export declare enum SexualOrientation {
8
- HETERO = 0,
9
- BI = 1,
10
- HOMO = 2
11
- }
12
- export declare enum ExperienceLevel {
13
- PROFI = 0,
14
- ADVANCED = 1,
15
- AMATEUR = 2
16
- }
17
- export declare enum ServiceType {
18
- ESCORT = 0,
19
- MASSAGE = 1,
20
- DOMINA = 2
21
- }
22
- export declare enum Location {
23
- UNDEFINED = 0,
24
- BRATISLAVA = 1,
25
- KOSICE = 2,
26
- PRESOV = 3,
27
- NITRA = 4
28
- }
29
- export declare enum Language {
30
- ENGLISH = 0,
31
- GERMAN = 1,
32
- UKRAINIAN = 2,
33
- RUSSIAN = 3,
34
- HUNGARIAN = 4,
35
- POLISH = 5,
36
- SPANISH = 6,
37
- FRENCH = 7
38
- }
39
- export declare enum AgeRange {
40
- UNDEFINED = 0,
41
- AGE_18_19 = 1,
42
- AGE_20_24 = 2,
43
- AGE_25_29 = 3,
44
- AGE_30_34 = 4,
45
- AGE_35_39 = 5,
46
- AGE_40_PLUS = 6
47
- }
48
- export declare enum AvailabilityStatus {
49
- UNDEFINED = 0,
50
- AVAILABLE = 1,
51
- UNAVAILABLE = 2
52
- }
53
- export declare enum BreastSize {
54
- UNDEFINED = 0,
55
- SIZE_1 = 1,
56
- SIZE_2 = 2,
57
- SIZE_3 = 3,
58
- SIZE_4 = 4,
59
- SIZE_5 = 5,
60
- SIZE_6 = 6,
61
- SIZE_7_PLUS = 7
62
- }
63
- export declare enum NationalityOption {
64
- UNDEFINED = 0,
65
- SLOVAK = 1,
66
- HUNGARIAN = 2,
67
- CZECH = 3,
68
- AUSTRIAN = 4,
69
- GERMAN = 5,
70
- OTHER = 6
71
- }
72
- export declare enum ContactMethod {
73
- WHATSAPP = 0,
74
- TELEGRAM = 1,
75
- VIBER = 2
76
- }
77
- export declare enum ServicesFor {
78
- MEN = 0,
79
- WOMEN = 1,
80
- COUPLES = 2
81
- }
82
- export declare enum UserRole {
83
- MODEL = 0,
84
- CLIENT = 1
85
- }
86
- export declare enum Practise {
87
- MASSAGE = 0,
88
- HANDJOB = 1,
89
- STRIPTEASE = 2,
90
- MUTUAL_MASSAGE = 3,
91
- FOOTJOB = 4,
92
- FOOTFETISH = 5,
93
- AUTOEROTIC = 6,
94
- STRAPON = 7,
95
- DOMINATION = 8,
96
- BONDAGE = 9,
97
- ROLEPLAY = 10,
98
- EROTIC_MASSAGE = 11,
99
- COMPANY = 12,
100
- ESCORT = 13,
101
- OTHER = 14
102
- }
103
- export declare enum OtherPractise {
104
- ANAL = 0,
105
- ORAL_WITHOUT = 1,
106
- CUM_IN_MOUTH = 2,
107
- CUM_ON_FACE = 3,
108
- DEEPTHROAT = 4,
109
- DOUBLE_PENETRATION = 5,
110
- FISTING = 6,
111
- POSITION_69 = 7,
112
- PISSING = 8,
113
- RIMMING = 9,
114
- TOYS = 10
115
- }
116
- export declare enum ShaveStatus {
117
- SHAVED = 0,
118
- PARTIALLY_SHAVED = 1,
119
- NOT_SHAVED = 2
120
- }
121
- export declare enum HairColor {
122
- BLOND = 0,
123
- BRUNET = 1,
124
- REDHEAD = 2
125
- }
126
- export declare enum HairLength {
127
- LONG = 0,
128
- SHORT = 1
129
- }
1
+ export declare const DayStatus: {
2
+ readonly WORKING: "WORKING";
3
+ readonly ON_DEMAND: "ON_DEMAND";
4
+ readonly BUSY: "BUSY";
5
+ readonly NOT_WORKING: "NOT_WORKING";
6
+ };
7
+ export type DayStatus = keyof typeof DayStatus;
8
+ export declare const SexualOrientation: {
9
+ readonly HETERO: "HETERO";
10
+ readonly BI: "BI";
11
+ readonly HOMO: "HOMO";
12
+ };
13
+ export type SexualOrientation = keyof typeof SexualOrientation;
14
+ export declare const ExperienceLevel: {
15
+ readonly PROFI: "PROFI";
16
+ readonly ADVANCED: "ADVANCED";
17
+ readonly AMATEUR: "AMATEUR";
18
+ };
19
+ export type ExperienceLevel = keyof typeof ExperienceLevel;
20
+ export declare const ServiceType: {
21
+ readonly ESCORT: "ESCORT";
22
+ readonly MASSAGE: "MASSAGE";
23
+ readonly DOMINA: "DOMINA";
24
+ };
25
+ export type ServiceType = keyof typeof ServiceType;
26
+ export declare const Location: {
27
+ readonly UNDEFINED: "UNDEFINED";
28
+ readonly BRATISLAVA: "BRATISLAVA";
29
+ readonly KOSICE: "KOSICE";
30
+ readonly PRESOV: "PRESOV";
31
+ readonly NITRA: "NITRA";
32
+ };
33
+ export type Location = keyof typeof Location;
34
+ export declare const Language: {
35
+ readonly ENGLISH: "ENGLISH";
36
+ readonly GERMAN: "GERMAN";
37
+ readonly UKRAINIAN: "UKRAINIAN";
38
+ readonly RUSSIAN: "RUSSIAN";
39
+ readonly HUNGARIAN: "HUNGARIAN";
40
+ readonly POLISH: "POLISH";
41
+ readonly SPANISH: "SPANISH";
42
+ readonly FRENCH: "FRENCH";
43
+ };
44
+ export type Language = keyof typeof Language;
45
+ export declare const AgeRange: {
46
+ readonly UNDEFINED: "UNDEFINED";
47
+ readonly AGE_18_19: "AGE_18_19";
48
+ readonly AGE_20_24: "AGE_20_24";
49
+ readonly AGE_25_29: "AGE_25_29";
50
+ readonly AGE_30_34: "AGE_30_34";
51
+ readonly AGE_35_39: "AGE_35_39";
52
+ readonly AGE_40_PLUS: "AGE_40_PLUS";
53
+ };
54
+ export type AgeRange = keyof typeof AgeRange;
55
+ export declare const AvailabilityStatus: {
56
+ readonly UNDEFINED: "UNDEFINED";
57
+ readonly AVAILABLE: "AVAILABLE";
58
+ readonly UNAVAILABLE: "UNAVAILABLE";
59
+ };
60
+ export type AvailabilityStatus = keyof typeof AvailabilityStatus;
61
+ export declare const BreastSize: {
62
+ readonly UNDEFINED: "UNDEFINED";
63
+ readonly SIZE_1: "SIZE_1";
64
+ readonly SIZE_2: "SIZE_2";
65
+ readonly SIZE_3: "SIZE_3";
66
+ readonly SIZE_4: "SIZE_4";
67
+ readonly SIZE_5: "SIZE_5";
68
+ readonly SIZE_6: "SIZE_6";
69
+ readonly SIZE_7_PLUS: "SIZE_7_PLUS";
70
+ };
71
+ export type BreastSize = keyof typeof BreastSize;
72
+ export declare const NationalityOption: {
73
+ readonly UNDEFINED: "UNDEFINED";
74
+ readonly SLOVAK: "SLOVAK";
75
+ readonly HUNGARIAN: "HUNGARIAN";
76
+ readonly CZECH: "CZECH";
77
+ readonly AUSTRIAN: "AUSTRIAN";
78
+ readonly GERMAN: "GERMAN";
79
+ readonly OTHER: "OTHER";
80
+ };
81
+ export type NationalityOption = keyof typeof NationalityOption;
82
+ export declare const ContactMethod: {
83
+ readonly WHATSAPP: "WHATSAPP";
84
+ readonly TELEGRAM: "TELEGRAM";
85
+ readonly VIBER: "VIBER";
86
+ };
87
+ export type ContactMethod = keyof typeof ContactMethod;
88
+ export declare const ServicesFor: {
89
+ readonly MEN: "MEN";
90
+ readonly WOMEN: "WOMEN";
91
+ readonly COUPLES: "COUPLES";
92
+ };
93
+ export type ServicesFor = keyof typeof ServicesFor;
94
+ export declare const UserRole: {
95
+ readonly MODEL: "MODEL";
96
+ readonly CLIENT: "CLIENT";
97
+ };
98
+ export type UserRole = keyof typeof UserRole;
99
+ export declare const Practise: {
100
+ readonly MASSAGE: "MASSAGE";
101
+ readonly HANDJOB: "HANDJOB";
102
+ readonly STRIPTEASE: "STRIPTEASE";
103
+ readonly MUTUAL_MASSAGE: "MUTUAL_MASSAGE";
104
+ readonly FOOTJOB: "FOOTJOB";
105
+ readonly FOOTFETISH: "FOOTFETISH";
106
+ readonly AUTOEROTIC: "AUTOEROTIC";
107
+ readonly STRAPON: "STRAPON";
108
+ readonly DOMINATION: "DOMINATION";
109
+ readonly BONDAGE: "BONDAGE";
110
+ readonly ROLEPLAY: "ROLEPLAY";
111
+ readonly EROTIC_MASSAGE: "EROTIC_MASSAGE";
112
+ readonly COMPANY: "COMPANY";
113
+ readonly ESCORT: "ESCORT";
114
+ readonly OTHER: "OTHER";
115
+ };
116
+ export type Practise = keyof typeof Practise;
117
+ export declare const OtherPractise: {
118
+ readonly ANAL: "ANAL";
119
+ readonly ORAL_WITHOUT: "ORAL_WITHOUT";
120
+ readonly CUM_IN_MOUTH: "CUM_IN_MOUTH";
121
+ readonly CUM_ON_FACE: "CUM_ON_FACE";
122
+ readonly DEEPTHROAT: "DEEPTHROAT";
123
+ readonly DOUBLE_PENETRATION: "DOUBLE_PENETRATION";
124
+ readonly FISTING: "FISTING";
125
+ readonly POSITION_69: "POSITION_69";
126
+ readonly PISSING: "PISSING";
127
+ readonly RIMMING: "RIMMING";
128
+ readonly TOYS: "TOYS";
129
+ };
130
+ export type OtherPractise = keyof typeof OtherPractise;
131
+ export declare const ShaveStatus: {
132
+ readonly SHAVED: "SHAVED";
133
+ readonly PARTIALLY_SHAVED: "PARTIALLY_SHAVED";
134
+ readonly NOT_SHAVED: "NOT_SHAVED";
135
+ };
136
+ export type ShaveStatus = keyof typeof ShaveStatus;
137
+ export declare const HairColor: {
138
+ readonly BLOND: "BLOND";
139
+ readonly BRUNET: "BRUNET";
140
+ readonly REDHEAD: "REDHEAD";
141
+ };
142
+ export type HairColor = keyof typeof HairColor;
143
+ export declare const HairLength: {
144
+ readonly LONG: "LONG";
145
+ readonly SHORT: "SHORT";
146
+ };
147
+ export type HairLength = keyof typeof HairLength;
@@ -1,165 +1,147 @@
1
1
  // DAY STATUS
2
- export var DayStatus;
3
- (function (DayStatus) {
4
- DayStatus[DayStatus["WORKING"] = 0] = "WORKING";
5
- DayStatus[DayStatus["ON_DEMAND"] = 1] = "ON_DEMAND";
6
- DayStatus[DayStatus["BUSY"] = 2] = "BUSY";
7
- DayStatus[DayStatus["NOT_WORKING"] = 3] = "NOT_WORKING";
8
- })(DayStatus || (DayStatus = {}));
2
+ export const DayStatus = {
3
+ WORKING: "WORKING",
4
+ ON_DEMAND: "ON_DEMAND",
5
+ BUSY: "BUSY",
6
+ NOT_WORKING: "NOT_WORKING",
7
+ };
9
8
  // SEXUAL ORIENTATION
10
- export var SexualOrientation;
11
- (function (SexualOrientation) {
12
- SexualOrientation[SexualOrientation["HETERO"] = 0] = "HETERO";
13
- SexualOrientation[SexualOrientation["BI"] = 1] = "BI";
14
- SexualOrientation[SexualOrientation["HOMO"] = 2] = "HOMO";
15
- })(SexualOrientation || (SexualOrientation = {}));
9
+ export const SexualOrientation = {
10
+ HETERO: "HETERO",
11
+ BI: "BI",
12
+ HOMO: "HOMO",
13
+ };
16
14
  // EXPERIENCE LEVEL
17
- export var ExperienceLevel;
18
- (function (ExperienceLevel) {
19
- ExperienceLevel[ExperienceLevel["PROFI"] = 0] = "PROFI";
20
- ExperienceLevel[ExperienceLevel["ADVANCED"] = 1] = "ADVANCED";
21
- ExperienceLevel[ExperienceLevel["AMATEUR"] = 2] = "AMATEUR";
22
- })(ExperienceLevel || (ExperienceLevel = {}));
15
+ export const ExperienceLevel = {
16
+ PROFI: "PROFI",
17
+ ADVANCED: "ADVANCED",
18
+ AMATEUR: "AMATEUR",
19
+ };
23
20
  // SERVICE TYPE
24
- export var ServiceType;
25
- (function (ServiceType) {
26
- ServiceType[ServiceType["ESCORT"] = 0] = "ESCORT";
27
- ServiceType[ServiceType["MASSAGE"] = 1] = "MASSAGE";
28
- ServiceType[ServiceType["DOMINA"] = 2] = "DOMINA";
29
- })(ServiceType || (ServiceType = {}));
21
+ export const ServiceType = {
22
+ ESCORT: "ESCORT",
23
+ MASSAGE: "MASSAGE",
24
+ DOMINA: "DOMINA",
25
+ };
30
26
  // LOCATION
31
- export var Location;
32
- (function (Location) {
33
- Location[Location["UNDEFINED"] = 0] = "UNDEFINED";
34
- Location[Location["BRATISLAVA"] = 1] = "BRATISLAVA";
35
- Location[Location["KOSICE"] = 2] = "KOSICE";
36
- Location[Location["PRESOV"] = 3] = "PRESOV";
37
- Location[Location["NITRA"] = 4] = "NITRA";
38
- })(Location || (Location = {}));
27
+ export const Location = {
28
+ UNDEFINED: "UNDEFINED",
29
+ BRATISLAVA: "BRATISLAVA",
30
+ KOSICE: "KOSICE",
31
+ PRESOV: "PRESOV",
32
+ NITRA: "NITRA",
33
+ };
39
34
  // LANGUAGE
40
- export var Language;
41
- (function (Language) {
42
- Language[Language["ENGLISH"] = 0] = "ENGLISH";
43
- Language[Language["GERMAN"] = 1] = "GERMAN";
44
- Language[Language["UKRAINIAN"] = 2] = "UKRAINIAN";
45
- Language[Language["RUSSIAN"] = 3] = "RUSSIAN";
46
- Language[Language["HUNGARIAN"] = 4] = "HUNGARIAN";
47
- Language[Language["POLISH"] = 5] = "POLISH";
48
- Language[Language["SPANISH"] = 6] = "SPANISH";
49
- Language[Language["FRENCH"] = 7] = "FRENCH";
50
- })(Language || (Language = {}));
35
+ export const Language = {
36
+ ENGLISH: "ENGLISH",
37
+ GERMAN: "GERMAN",
38
+ UKRAINIAN: "UKRAINIAN",
39
+ RUSSIAN: "RUSSIAN",
40
+ HUNGARIAN: "HUNGARIAN",
41
+ POLISH: "POLISH",
42
+ SPANISH: "SPANISH",
43
+ FRENCH: "FRENCH",
44
+ };
51
45
  // AGE RANGE
52
- export var AgeRange;
53
- (function (AgeRange) {
54
- AgeRange[AgeRange["UNDEFINED"] = 0] = "UNDEFINED";
55
- AgeRange[AgeRange["AGE_18_19"] = 1] = "AGE_18_19";
56
- AgeRange[AgeRange["AGE_20_24"] = 2] = "AGE_20_24";
57
- AgeRange[AgeRange["AGE_25_29"] = 3] = "AGE_25_29";
58
- AgeRange[AgeRange["AGE_30_34"] = 4] = "AGE_30_34";
59
- AgeRange[AgeRange["AGE_35_39"] = 5] = "AGE_35_39";
60
- AgeRange[AgeRange["AGE_40_PLUS"] = 6] = "AGE_40_PLUS";
61
- })(AgeRange || (AgeRange = {}));
46
+ export const AgeRange = {
47
+ UNDEFINED: "UNDEFINED",
48
+ AGE_18_19: "AGE_18_19",
49
+ AGE_20_24: "AGE_20_24",
50
+ AGE_25_29: "AGE_25_29",
51
+ AGE_30_34: "AGE_30_34",
52
+ AGE_35_39: "AGE_35_39",
53
+ AGE_40_PLUS: "AGE_40_PLUS",
54
+ };
62
55
  // AVAILABILITY
63
- export var AvailabilityStatus;
64
- (function (AvailabilityStatus) {
65
- AvailabilityStatus[AvailabilityStatus["UNDEFINED"] = 0] = "UNDEFINED";
66
- AvailabilityStatus[AvailabilityStatus["AVAILABLE"] = 1] = "AVAILABLE";
67
- AvailabilityStatus[AvailabilityStatus["UNAVAILABLE"] = 2] = "UNAVAILABLE";
68
- })(AvailabilityStatus || (AvailabilityStatus = {}));
56
+ export const AvailabilityStatus = {
57
+ UNDEFINED: "UNDEFINED",
58
+ AVAILABLE: "AVAILABLE",
59
+ UNAVAILABLE: "UNAVAILABLE",
60
+ };
69
61
  // BREAST SIZE
70
- export var BreastSize;
71
- (function (BreastSize) {
72
- BreastSize[BreastSize["UNDEFINED"] = 0] = "UNDEFINED";
73
- BreastSize[BreastSize["SIZE_1"] = 1] = "SIZE_1";
74
- BreastSize[BreastSize["SIZE_2"] = 2] = "SIZE_2";
75
- BreastSize[BreastSize["SIZE_3"] = 3] = "SIZE_3";
76
- BreastSize[BreastSize["SIZE_4"] = 4] = "SIZE_4";
77
- BreastSize[BreastSize["SIZE_5"] = 5] = "SIZE_5";
78
- BreastSize[BreastSize["SIZE_6"] = 6] = "SIZE_6";
79
- BreastSize[BreastSize["SIZE_7_PLUS"] = 7] = "SIZE_7_PLUS";
80
- })(BreastSize || (BreastSize = {}));
62
+ export const BreastSize = {
63
+ UNDEFINED: "UNDEFINED",
64
+ SIZE_1: "SIZE_1",
65
+ SIZE_2: "SIZE_2",
66
+ SIZE_3: "SIZE_3",
67
+ SIZE_4: "SIZE_4",
68
+ SIZE_5: "SIZE_5",
69
+ SIZE_6: "SIZE_6",
70
+ SIZE_7_PLUS: "SIZE_7_PLUS",
71
+ };
81
72
  // NATIONALITY
82
- export var NationalityOption;
83
- (function (NationalityOption) {
84
- NationalityOption[NationalityOption["UNDEFINED"] = 0] = "UNDEFINED";
85
- NationalityOption[NationalityOption["SLOVAK"] = 1] = "SLOVAK";
86
- NationalityOption[NationalityOption["HUNGARIAN"] = 2] = "HUNGARIAN";
87
- NationalityOption[NationalityOption["CZECH"] = 3] = "CZECH";
88
- NationalityOption[NationalityOption["AUSTRIAN"] = 4] = "AUSTRIAN";
89
- NationalityOption[NationalityOption["GERMAN"] = 5] = "GERMAN";
90
- NationalityOption[NationalityOption["OTHER"] = 6] = "OTHER";
91
- })(NationalityOption || (NationalityOption = {}));
73
+ export const NationalityOption = {
74
+ UNDEFINED: "UNDEFINED",
75
+ SLOVAK: "SLOVAK",
76
+ HUNGARIAN: "HUNGARIAN",
77
+ CZECH: "CZECH",
78
+ AUSTRIAN: "AUSTRIAN",
79
+ GERMAN: "GERMAN",
80
+ OTHER: "OTHER",
81
+ };
92
82
  // CONTACT METHOD
93
- export var ContactMethod;
94
- (function (ContactMethod) {
95
- ContactMethod[ContactMethod["WHATSAPP"] = 0] = "WHATSAPP";
96
- ContactMethod[ContactMethod["TELEGRAM"] = 1] = "TELEGRAM";
97
- ContactMethod[ContactMethod["VIBER"] = 2] = "VIBER";
98
- })(ContactMethod || (ContactMethod = {}));
83
+ export const ContactMethod = {
84
+ WHATSAPP: "WHATSAPP",
85
+ TELEGRAM: "TELEGRAM",
86
+ VIBER: "VIBER",
87
+ };
99
88
  // SERVICES FOR
100
- export var ServicesFor;
101
- (function (ServicesFor) {
102
- ServicesFor[ServicesFor["MEN"] = 0] = "MEN";
103
- ServicesFor[ServicesFor["WOMEN"] = 1] = "WOMEN";
104
- ServicesFor[ServicesFor["COUPLES"] = 2] = "COUPLES";
105
- })(ServicesFor || (ServicesFor = {}));
89
+ export const ServicesFor = {
90
+ MEN: "MEN",
91
+ WOMEN: "WOMEN",
92
+ COUPLES: "COUPLES",
93
+ };
106
94
  // USER ROLE
107
- export var UserRole;
108
- (function (UserRole) {
109
- UserRole[UserRole["MODEL"] = 0] = "MODEL";
110
- UserRole[UserRole["CLIENT"] = 1] = "CLIENT";
111
- })(UserRole || (UserRole = {}));
95
+ export const UserRole = {
96
+ MODEL: "MODEL",
97
+ CLIENT: "CLIENT",
98
+ };
112
99
  // PRACTISE
113
- export var Practise;
114
- (function (Practise) {
115
- Practise[Practise["MASSAGE"] = 0] = "MASSAGE";
116
- Practise[Practise["HANDJOB"] = 1] = "HANDJOB";
117
- Practise[Practise["STRIPTEASE"] = 2] = "STRIPTEASE";
118
- Practise[Practise["MUTUAL_MASSAGE"] = 3] = "MUTUAL_MASSAGE";
119
- Practise[Practise["FOOTJOB"] = 4] = "FOOTJOB";
120
- Practise[Practise["FOOTFETISH"] = 5] = "FOOTFETISH";
121
- Practise[Practise["AUTOEROTIC"] = 6] = "AUTOEROTIC";
122
- Practise[Practise["STRAPON"] = 7] = "STRAPON";
123
- Practise[Practise["DOMINATION"] = 8] = "DOMINATION";
124
- Practise[Practise["BONDAGE"] = 9] = "BONDAGE";
125
- Practise[Practise["ROLEPLAY"] = 10] = "ROLEPLAY";
126
- Practise[Practise["EROTIC_MASSAGE"] = 11] = "EROTIC_MASSAGE";
127
- Practise[Practise["COMPANY"] = 12] = "COMPANY";
128
- Practise[Practise["ESCORT"] = 13] = "ESCORT";
129
- Practise[Practise["OTHER"] = 14] = "OTHER";
130
- })(Practise || (Practise = {}));
100
+ export const Practise = {
101
+ MASSAGE: "MASSAGE",
102
+ HANDJOB: "HANDJOB",
103
+ STRIPTEASE: "STRIPTEASE",
104
+ MUTUAL_MASSAGE: "MUTUAL_MASSAGE",
105
+ FOOTJOB: "FOOTJOB",
106
+ FOOTFETISH: "FOOTFETISH",
107
+ AUTOEROTIC: "AUTOEROTIC",
108
+ STRAPON: "STRAPON",
109
+ DOMINATION: "DOMINATION",
110
+ BONDAGE: "BONDAGE",
111
+ ROLEPLAY: "ROLEPLAY",
112
+ EROTIC_MASSAGE: "EROTIC_MASSAGE",
113
+ COMPANY: "COMPANY",
114
+ ESCORT: "ESCORT",
115
+ OTHER: "OTHER",
116
+ };
131
117
  // OTHER PRACTISE
132
- export var OtherPractise;
133
- (function (OtherPractise) {
134
- OtherPractise[OtherPractise["ANAL"] = 0] = "ANAL";
135
- OtherPractise[OtherPractise["ORAL_WITHOUT"] = 1] = "ORAL_WITHOUT";
136
- OtherPractise[OtherPractise["CUM_IN_MOUTH"] = 2] = "CUM_IN_MOUTH";
137
- OtherPractise[OtherPractise["CUM_ON_FACE"] = 3] = "CUM_ON_FACE";
138
- OtherPractise[OtherPractise["DEEPTHROAT"] = 4] = "DEEPTHROAT";
139
- OtherPractise[OtherPractise["DOUBLE_PENETRATION"] = 5] = "DOUBLE_PENETRATION";
140
- OtherPractise[OtherPractise["FISTING"] = 6] = "FISTING";
141
- OtherPractise[OtherPractise["POSITION_69"] = 7] = "POSITION_69";
142
- OtherPractise[OtherPractise["PISSING"] = 8] = "PISSING";
143
- OtherPractise[OtherPractise["RIMMING"] = 9] = "RIMMING";
144
- OtherPractise[OtherPractise["TOYS"] = 10] = "TOYS";
145
- })(OtherPractise || (OtherPractise = {}));
118
+ export const OtherPractise = {
119
+ ANAL: "ANAL",
120
+ ORAL_WITHOUT: "ORAL_WITHOUT",
121
+ CUM_IN_MOUTH: "CUM_IN_MOUTH",
122
+ CUM_ON_FACE: "CUM_ON_FACE",
123
+ DEEPTHROAT: "DEEPTHROAT",
124
+ DOUBLE_PENETRATION: "DOUBLE_PENETRATION",
125
+ FISTING: "FISTING",
126
+ POSITION_69: "POSITION_69",
127
+ PISSING: "PISSING",
128
+ RIMMING: "RIMMING",
129
+ TOYS: "TOYS",
130
+ };
146
131
  // SHAVE STATUS
147
- export var ShaveStatus;
148
- (function (ShaveStatus) {
149
- ShaveStatus[ShaveStatus["SHAVED"] = 0] = "SHAVED";
150
- ShaveStatus[ShaveStatus["PARTIALLY_SHAVED"] = 1] = "PARTIALLY_SHAVED";
151
- ShaveStatus[ShaveStatus["NOT_SHAVED"] = 2] = "NOT_SHAVED";
152
- })(ShaveStatus || (ShaveStatus = {}));
132
+ export const ShaveStatus = {
133
+ SHAVED: "SHAVED",
134
+ PARTIALLY_SHAVED: "PARTIALLY_SHAVED",
135
+ NOT_SHAVED: "NOT_SHAVED",
136
+ };
153
137
  // HAIR COLOR
154
- export var HairColor;
155
- (function (HairColor) {
156
- HairColor[HairColor["BLOND"] = 0] = "BLOND";
157
- HairColor[HairColor["BRUNET"] = 1] = "BRUNET";
158
- HairColor[HairColor["REDHEAD"] = 2] = "REDHEAD";
159
- })(HairColor || (HairColor = {}));
138
+ export const HairColor = {
139
+ BLOND: "BLOND",
140
+ BRUNET: "BRUNET",
141
+ REDHEAD: "REDHEAD",
142
+ };
160
143
  // HAIR LENGTH
161
- export var HairLength;
162
- (function (HairLength) {
163
- HairLength[HairLength["LONG"] = 0] = "LONG";
164
- HairLength[HairLength["SHORT"] = 1] = "SHORT";
165
- })(HairLength || (HairLength = {}));
144
+ export const HairLength = {
145
+ LONG: "LONG",
146
+ SHORT: "SHORT",
147
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "1.6.4",
3
+ "version": "1.6.6",
4
4
  "description": "A collection of shared types (DTOs and DBEs) for the organization",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,164 +1,182 @@
1
1
  // DAY STATUS
2
- export enum DayStatus {
3
- WORKING,
4
- ON_DEMAND,
5
- BUSY,
6
- NOT_WORKING,
7
- }
2
+ export const DayStatus = {
3
+ WORKING: "WORKING",
4
+ ON_DEMAND: "ON_DEMAND",
5
+ BUSY: "BUSY",
6
+ NOT_WORKING: "NOT_WORKING",
7
+ } as const;
8
+ export type DayStatus = keyof typeof DayStatus;
8
9
 
9
10
  // SEXUAL ORIENTATION
10
- export enum SexualOrientation {
11
- HETERO,
12
- BI,
13
- HOMO,
14
- }
11
+ export const SexualOrientation = {
12
+ HETERO: "HETERO",
13
+ BI: "BI",
14
+ HOMO: "HOMO",
15
+ } as const;
16
+ export type SexualOrientation = keyof typeof SexualOrientation;
15
17
 
16
18
  // EXPERIENCE LEVEL
17
- export enum ExperienceLevel {
18
- PROFI,
19
- ADVANCED,
20
- AMATEUR,
21
- }
19
+ export const ExperienceLevel = {
20
+ PROFI: "PROFI",
21
+ ADVANCED: "ADVANCED",
22
+ AMATEUR: "AMATEUR",
23
+ } as const;
24
+ export type ExperienceLevel = keyof typeof ExperienceLevel;
22
25
 
23
26
  // SERVICE TYPE
24
- export enum ServiceType {
25
- ESCORT,
26
- MASSAGE,
27
- DOMINA,
28
- }
27
+ export const ServiceType = {
28
+ ESCORT: "ESCORT",
29
+ MASSAGE: "MASSAGE",
30
+ DOMINA: "DOMINA",
31
+ } as const;
32
+ export type ServiceType = keyof typeof ServiceType;
29
33
 
30
34
  // LOCATION
31
- export enum Location {
32
- UNDEFINED,
33
- BRATISLAVA,
34
- KOSICE,
35
- PRESOV,
36
- NITRA,
37
- }
35
+ export const Location = {
36
+ UNDEFINED: "UNDEFINED",
37
+ BRATISLAVA: "BRATISLAVA",
38
+ KOSICE: "KOSICE",
39
+ PRESOV: "PRESOV",
40
+ NITRA: "NITRA",
41
+ } as const;
42
+ export type Location = keyof typeof Location;
38
43
 
39
44
  // LANGUAGE
40
- export enum Language {
41
- ENGLISH,
42
- GERMAN,
43
- UKRAINIAN,
44
- RUSSIAN,
45
- HUNGARIAN,
46
- POLISH,
47
- SPANISH,
48
- FRENCH,
49
- }
45
+ export const Language = {
46
+ ENGLISH: "ENGLISH",
47
+ GERMAN: "GERMAN",
48
+ UKRAINIAN: "UKRAINIAN",
49
+ RUSSIAN: "RUSSIAN",
50
+ HUNGARIAN: "HUNGARIAN",
51
+ POLISH: "POLISH",
52
+ SPANISH: "SPANISH",
53
+ FRENCH: "FRENCH",
54
+ } as const;
55
+ export type Language = keyof typeof Language;
50
56
 
51
57
  // AGE RANGE
52
- export enum AgeRange {
53
- UNDEFINED,
54
- AGE_18_19,
55
- AGE_20_24,
56
- AGE_25_29,
57
- AGE_30_34,
58
- AGE_35_39,
59
- AGE_40_PLUS,
60
- }
58
+ export const AgeRange = {
59
+ UNDEFINED: "UNDEFINED",
60
+ AGE_18_19: "AGE_18_19",
61
+ AGE_20_24: "AGE_20_24",
62
+ AGE_25_29: "AGE_25_29",
63
+ AGE_30_34: "AGE_30_34",
64
+ AGE_35_39: "AGE_35_39",
65
+ AGE_40_PLUS: "AGE_40_PLUS",
66
+ } as const;
67
+ export type AgeRange = keyof typeof AgeRange;
61
68
 
62
69
  // AVAILABILITY
63
- export enum AvailabilityStatus {
64
- UNDEFINED,
65
- AVAILABLE,
66
- UNAVAILABLE,
67
- }
70
+ export const AvailabilityStatus = {
71
+ UNDEFINED: "UNDEFINED",
72
+ AVAILABLE: "AVAILABLE",
73
+ UNAVAILABLE: "UNAVAILABLE",
74
+ } as const;
75
+ export type AvailabilityStatus = keyof typeof AvailabilityStatus;
68
76
 
69
77
  // BREAST SIZE
70
- export enum BreastSize {
71
- UNDEFINED,
72
- SIZE_1,
73
- SIZE_2,
74
- SIZE_3,
75
- SIZE_4,
76
- SIZE_5,
77
- SIZE_6,
78
- SIZE_7_PLUS,
79
- }
78
+ export const BreastSize = {
79
+ UNDEFINED: "UNDEFINED",
80
+ SIZE_1: "SIZE_1",
81
+ SIZE_2: "SIZE_2",
82
+ SIZE_3: "SIZE_3",
83
+ SIZE_4: "SIZE_4",
84
+ SIZE_5: "SIZE_5",
85
+ SIZE_6: "SIZE_6",
86
+ SIZE_7_PLUS: "SIZE_7_PLUS",
87
+ } as const;
88
+ export type BreastSize = keyof typeof BreastSize;
80
89
 
81
90
  // NATIONALITY
82
- export enum NationalityOption {
83
- UNDEFINED,
84
- SLOVAK,
85
- HUNGARIAN,
86
- CZECH,
87
- AUSTRIAN,
88
- GERMAN,
89
- OTHER,
90
- }
91
+ export const NationalityOption = {
92
+ UNDEFINED: "UNDEFINED",
93
+ SLOVAK: "SLOVAK",
94
+ HUNGARIAN: "HUNGARIAN",
95
+ CZECH: "CZECH",
96
+ AUSTRIAN: "AUSTRIAN",
97
+ GERMAN: "GERMAN",
98
+ OTHER: "OTHER",
99
+ } as const;
100
+ export type NationalityOption = keyof typeof NationalityOption;
91
101
 
92
102
  // CONTACT METHOD
93
- export enum ContactMethod {
94
- WHATSAPP,
95
- TELEGRAM,
96
- VIBER,
97
- }
103
+ export const ContactMethod = {
104
+ WHATSAPP: "WHATSAPP",
105
+ TELEGRAM: "TELEGRAM",
106
+ VIBER: "VIBER",
107
+ } as const;
108
+ export type ContactMethod = keyof typeof ContactMethod;
98
109
 
99
110
  // SERVICES FOR
100
- export enum ServicesFor {
101
- MEN,
102
- WOMEN,
103
- COUPLES,
104
- }
111
+ export const ServicesFor = {
112
+ MEN: "MEN",
113
+ WOMEN: "WOMEN",
114
+ COUPLES: "COUPLES",
115
+ } as const;
116
+ export type ServicesFor = keyof typeof ServicesFor;
105
117
 
106
118
  // USER ROLE
107
- export enum UserRole {
108
- MODEL,
109
- CLIENT,
110
- }
119
+ export const UserRole = {
120
+ MODEL: "MODEL",
121
+ CLIENT: "CLIENT",
122
+ } as const;
123
+ export type UserRole = keyof typeof UserRole;
111
124
 
112
125
  // PRACTISE
113
- export enum Practise {
114
- MASSAGE,
115
- HANDJOB,
116
- STRIPTEASE,
117
- MUTUAL_MASSAGE,
118
- FOOTJOB,
119
- FOOTFETISH,
120
- AUTOEROTIC,
121
- STRAPON,
122
- DOMINATION,
123
- BONDAGE,
124
- ROLEPLAY,
125
- EROTIC_MASSAGE,
126
- COMPANY,
127
- ESCORT,
128
- OTHER,
129
- }
126
+ export const Practise = {
127
+ MASSAGE: "MASSAGE",
128
+ HANDJOB: "HANDJOB",
129
+ STRIPTEASE: "STRIPTEASE",
130
+ MUTUAL_MASSAGE: "MUTUAL_MASSAGE",
131
+ FOOTJOB: "FOOTJOB",
132
+ FOOTFETISH: "FOOTFETISH",
133
+ AUTOEROTIC: "AUTOEROTIC",
134
+ STRAPON: "STRAPON",
135
+ DOMINATION: "DOMINATION",
136
+ BONDAGE: "BONDAGE",
137
+ ROLEPLAY: "ROLEPLAY",
138
+ EROTIC_MASSAGE: "EROTIC_MASSAGE",
139
+ COMPANY: "COMPANY",
140
+ ESCORT: "ESCORT",
141
+ OTHER: "OTHER",
142
+ } as const;
143
+ export type Practise = keyof typeof Practise;
130
144
 
131
145
  // OTHER PRACTISE
132
- export enum OtherPractise {
133
- ANAL,
134
- ORAL_WITHOUT,
135
- CUM_IN_MOUTH,
136
- CUM_ON_FACE,
137
- DEEPTHROAT,
138
- DOUBLE_PENETRATION,
139
- FISTING,
140
- POSITION_69,
141
- PISSING,
142
- RIMMING,
143
- TOYS,
144
- }
146
+ export const OtherPractise = {
147
+ ANAL: "ANAL",
148
+ ORAL_WITHOUT: "ORAL_WITHOUT",
149
+ CUM_IN_MOUTH: "CUM_IN_MOUTH",
150
+ CUM_ON_FACE: "CUM_ON_FACE",
151
+ DEEPTHROAT: "DEEPTHROAT",
152
+ DOUBLE_PENETRATION: "DOUBLE_PENETRATION",
153
+ FISTING: "FISTING",
154
+ POSITION_69: "POSITION_69",
155
+ PISSING: "PISSING",
156
+ RIMMING: "RIMMING",
157
+ TOYS: "TOYS",
158
+ } as const;
159
+ export type OtherPractise = keyof typeof OtherPractise;
145
160
 
146
161
  // SHAVE STATUS
147
- export enum ShaveStatus {
148
- SHAVED,
149
- PARTIALLY_SHAVED,
150
- NOT_SHAVED,
151
- }
162
+ export const ShaveStatus = {
163
+ SHAVED: "SHAVED",
164
+ PARTIALLY_SHAVED: "PARTIALLY_SHAVED",
165
+ NOT_SHAVED: "NOT_SHAVED",
166
+ } as const;
167
+ export type ShaveStatus = keyof typeof ShaveStatus;
152
168
 
153
169
  // HAIR COLOR
154
- export enum HairColor {
155
- BLOND,
156
- BRUNET,
157
- REDHEAD,
158
- }
170
+ export const HairColor = {
171
+ BLOND: "BLOND",
172
+ BRUNET: "BRUNET",
173
+ REDHEAD: "REDHEAD",
174
+ } as const;
175
+ export type HairColor = keyof typeof HairColor;
159
176
 
160
177
  // HAIR LENGTH
161
- export enum HairLength {
162
- LONG,
163
- SHORT,
164
- }
178
+ export const HairLength = {
179
+ LONG: "LONG",
180
+ SHORT: "SHORT",
181
+ } as const;
182
+ export type HairLength = keyof typeof HairLength;