@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.
@@ -93,7 +93,7 @@ export declare enum UserRole {
93
93
  CLIENT = "CLIENT"
94
94
  }
95
95
  export declare enum Practise {
96
- MASSAGE = "MASSAGE",
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
- ESCORT = "ESCORT",
109
+ PESCORT = "PESCORT",
110
110
  OTHER = "OTHER"
111
111
  }
112
112
  export declare enum OtherPractise {
@@ -125,7 +125,7 @@ var UserRole;
125
125
  // PRACTISE
126
126
  var Practise;
127
127
  (function (Practise) {
128
- Practise["MASSAGE"] = "MASSAGE";
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["ESCORT"] = "ESCORT";
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
@@ -7,7 +7,7 @@ export interface ModelWriteDto {
7
7
  nationality: NationalityOption;
8
8
  experience: ExperienceLevel;
9
9
  age: number;
10
- serviceType: ServiceType;
10
+ serviceType: ServiceType[];
11
11
  servicesFor: ServicesFor[];
12
12
  height: number;
13
13
  weight: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "1.7.4",
3
+ "version": "1.7.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",
@@ -121,7 +121,7 @@ export enum UserRole {
121
121
 
122
122
  // PRACTISE
123
123
  export enum Practise {
124
- MASSAGE = "MASSAGE",
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
- ESCORT = "ESCORT",
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[];