@exclusive-website/types 1.7.4 → 1.7.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.
- package/dist/filterEnums.d.ts +2 -2
- package/dist/filterEnums.js +2 -2
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
- package/src/filterEnums.ts +2 -2
- package/src/types.ts +1 -2
package/dist/filterEnums.d.ts
CHANGED
|
@@ -93,7 +93,7 @@ export declare enum UserRole {
|
|
|
93
93
|
CLIENT = "CLIENT"
|
|
94
94
|
}
|
|
95
95
|
export declare enum Practise {
|
|
96
|
-
|
|
96
|
+
PMASSAGE = "PMASSAGE",
|
|
97
97
|
HANDJOB = "HANDJOB",
|
|
98
98
|
STRIPTEASE = "STRIPTEASE",
|
|
99
99
|
MUTUAL_MASSAGE = "MUTUAL_MASSAGE",
|
|
@@ -106,7 +106,7 @@ export declare enum Practise {
|
|
|
106
106
|
ROLEPLAY = "ROLEPLAY",
|
|
107
107
|
EROTIC_MASSAGE = "EROTIC_MASSAGE",
|
|
108
108
|
COMPANY = "COMPANY",
|
|
109
|
-
|
|
109
|
+
PESCORT = "PESCORT",
|
|
110
110
|
OTHER = "OTHER"
|
|
111
111
|
}
|
|
112
112
|
export declare enum OtherPractise {
|
package/dist/filterEnums.js
CHANGED
|
@@ -125,7 +125,7 @@ var UserRole;
|
|
|
125
125
|
// PRACTISE
|
|
126
126
|
var Practise;
|
|
127
127
|
(function (Practise) {
|
|
128
|
-
Practise["
|
|
128
|
+
Practise["PMASSAGE"] = "PMASSAGE";
|
|
129
129
|
Practise["HANDJOB"] = "HANDJOB";
|
|
130
130
|
Practise["STRIPTEASE"] = "STRIPTEASE";
|
|
131
131
|
Practise["MUTUAL_MASSAGE"] = "MUTUAL_MASSAGE";
|
|
@@ -138,7 +138,7 @@ var Practise;
|
|
|
138
138
|
Practise["ROLEPLAY"] = "ROLEPLAY";
|
|
139
139
|
Practise["EROTIC_MASSAGE"] = "EROTIC_MASSAGE";
|
|
140
140
|
Practise["COMPANY"] = "COMPANY";
|
|
141
|
-
Practise["
|
|
141
|
+
Practise["PESCORT"] = "PESCORT";
|
|
142
142
|
Practise["OTHER"] = "OTHER";
|
|
143
143
|
})(Practise = exports.Practise || (exports.Practise = {}));
|
|
144
144
|
// OTHER PRACTISE
|
package/dist/types.d.ts
CHANGED
package/package.json
CHANGED
package/src/filterEnums.ts
CHANGED
|
@@ -121,7 +121,7 @@ export enum UserRole {
|
|
|
121
121
|
|
|
122
122
|
// PRACTISE
|
|
123
123
|
export enum Practise {
|
|
124
|
-
|
|
124
|
+
PMASSAGE = "PMASSAGE",
|
|
125
125
|
HANDJOB = "HANDJOB",
|
|
126
126
|
STRIPTEASE = "STRIPTEASE",
|
|
127
127
|
MUTUAL_MASSAGE = "MUTUAL_MASSAGE",
|
|
@@ -134,7 +134,7 @@ export enum Practise {
|
|
|
134
134
|
ROLEPLAY = "ROLEPLAY",
|
|
135
135
|
EROTIC_MASSAGE = "EROTIC_MASSAGE",
|
|
136
136
|
COMPANY = "COMPANY",
|
|
137
|
-
|
|
137
|
+
PESCORT = "PESCORT",
|
|
138
138
|
OTHER = "OTHER",
|
|
139
139
|
}
|
|
140
140
|
|
package/src/types.ts
CHANGED
|
@@ -26,7 +26,7 @@ export interface ModelWriteDto {
|
|
|
26
26
|
nationality: NationalityOption;
|
|
27
27
|
experience: ExperienceLevel;
|
|
28
28
|
age: number;
|
|
29
|
-
serviceType: ServiceType;
|
|
29
|
+
serviceType: ServiceType[];
|
|
30
30
|
servicesFor: ServicesFor[];
|
|
31
31
|
height: number;
|
|
32
32
|
weight: number;
|
|
@@ -128,7 +128,6 @@ export interface ModelReadDto {
|
|
|
128
128
|
description: string;
|
|
129
129
|
practice: Practise[];
|
|
130
130
|
otherService: OtherPractise[];
|
|
131
|
-
|
|
132
131
|
phoneNumber: string;
|
|
133
132
|
isClir: boolean;
|
|
134
133
|
contactMethods: ContactMethod[];
|