@feresmeryas/microservices-common 1.5.35 → 1.5.37
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/index.d.mts +57 -74
- package/dist/index.d.ts +57 -74
- package/dist/index.js +759 -916
- package/dist/index.mjs +739 -896
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3,12 +3,69 @@ declare enum UserType {
|
|
|
3
3
|
PROFESSIONAL = "PROFESSIONAL"
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
+
declare enum BusinessSector {
|
|
7
|
+
IT_SOFTWARE = "IT & Software Development",
|
|
8
|
+
DATA_ANALYTICS = "Data Science & Analytics",
|
|
9
|
+
ENGINEERING = "Engineering & Architecture",
|
|
10
|
+
DESIGN_CREATIVE = "Design & Creative",
|
|
11
|
+
WRITING_TRANSLATION = "Writing & Translation",
|
|
12
|
+
VIDEO_ANIMATION = "Video & Animation",
|
|
13
|
+
AUDIO_MUSIC = "Music & Audio",
|
|
14
|
+
MARKETING_SALES = "Marketing & Sales",
|
|
15
|
+
FINANCE_ACCOUNTING = "Finance & Accounting",
|
|
16
|
+
LEGAL = "Legal Services",
|
|
17
|
+
HR_RECRUITING = "HR & Recruiting",
|
|
18
|
+
CONSULTING = "Business Consulting",
|
|
19
|
+
ADMIN_SUPPORT = "Admin & Customer Support",
|
|
20
|
+
TRADES_CRAFTSMANSHIP = "Trades & Craftsmanship",
|
|
21
|
+
HEALTH_WELLNESS = "Health & Wellness",
|
|
22
|
+
EDUCATION_TRAINING = "Education & Training",
|
|
23
|
+
EVENTS_LIFESTYLE = "Events & Lifestyle",
|
|
24
|
+
REAL_ESTATE = "Real Estate",
|
|
25
|
+
LOGISTICS_OPERATIONS = "Logistics & Operations"
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
declare class SkillDto {
|
|
29
|
+
name: string;
|
|
30
|
+
}
|
|
31
|
+
declare class EducationDto {
|
|
32
|
+
degree: string;
|
|
33
|
+
}
|
|
34
|
+
declare class CertificationDto {
|
|
35
|
+
certif: string;
|
|
36
|
+
}
|
|
37
|
+
declare class ExperienceDto {
|
|
38
|
+
experience: string;
|
|
39
|
+
}
|
|
40
|
+
declare class AddressDto {
|
|
41
|
+
adresse: string;
|
|
42
|
+
}
|
|
43
|
+
declare class PhoneDto {
|
|
44
|
+
number: string;
|
|
45
|
+
}
|
|
46
|
+
declare class LinkDto {
|
|
47
|
+
url: string;
|
|
48
|
+
}
|
|
49
|
+
declare class ProfessionalDataDto {
|
|
50
|
+
businessSector: BusinessSector;
|
|
51
|
+
bio?: string;
|
|
52
|
+
companyName?: string;
|
|
53
|
+
skills?: SkillDto[];
|
|
54
|
+
education?: EducationDto[];
|
|
55
|
+
certifications?: CertificationDto[];
|
|
56
|
+
experiences?: ExperienceDto[];
|
|
57
|
+
addresses?: AddressDto[];
|
|
58
|
+
phones?: PhoneDto[];
|
|
59
|
+
links?: LinkDto[];
|
|
60
|
+
}
|
|
61
|
+
|
|
6
62
|
declare class CreateUserDto {
|
|
7
63
|
email: string;
|
|
8
64
|
fullName: string;
|
|
9
65
|
password: string;
|
|
10
66
|
confirmPassword: string;
|
|
11
67
|
userType: UserType;
|
|
68
|
+
professionalData?: ProfessionalDataDto;
|
|
12
69
|
}
|
|
13
70
|
|
|
14
71
|
declare class CreateUserFireBaseDto {
|
|
@@ -52,28 +109,6 @@ declare class UpdatePasswordDto {
|
|
|
52
109
|
confirmNewPassword: string;
|
|
53
110
|
}
|
|
54
111
|
|
|
55
|
-
declare enum BusinessSector {
|
|
56
|
-
IT_SOFTWARE = "IT & Software Development",
|
|
57
|
-
DATA_ANALYTICS = "Data Science & Analytics",
|
|
58
|
-
ENGINEERING = "Engineering & Architecture",
|
|
59
|
-
DESIGN_CREATIVE = "Design & Creative",
|
|
60
|
-
WRITING_TRANSLATION = "Writing & Translation",
|
|
61
|
-
VIDEO_ANIMATION = "Video & Animation",
|
|
62
|
-
AUDIO_MUSIC = "Music & Audio",
|
|
63
|
-
MARKETING_SALES = "Marketing & Sales",
|
|
64
|
-
FINANCE_ACCOUNTING = "Finance & Accounting",
|
|
65
|
-
LEGAL = "Legal Services",
|
|
66
|
-
HR_RECRUITING = "HR & Recruiting",
|
|
67
|
-
CONSULTING = "Business Consulting",
|
|
68
|
-
ADMIN_SUPPORT = "Admin & Customer Support",
|
|
69
|
-
TRADES_CRAFTSMANSHIP = "Trades & Craftsmanship",
|
|
70
|
-
HEALTH_WELLNESS = "Health & Wellness",
|
|
71
|
-
EDUCATION_TRAINING = "Education & Training",
|
|
72
|
-
EVENTS_LIFESTYLE = "Events & Lifestyle",
|
|
73
|
-
REAL_ESTATE = "Real Estate",
|
|
74
|
-
LOGISTICS_OPERATIONS = "Logistics & Operations"
|
|
75
|
-
}
|
|
76
|
-
|
|
77
112
|
declare class SkillResponseDto {
|
|
78
113
|
id: string;
|
|
79
114
|
name: string;
|
|
@@ -168,58 +203,6 @@ declare class CreateReportDto {
|
|
|
168
203
|
description: string;
|
|
169
204
|
}
|
|
170
205
|
|
|
171
|
-
declare class SkillDto {
|
|
172
|
-
name: string;
|
|
173
|
-
level?: string;
|
|
174
|
-
}
|
|
175
|
-
declare class EducationDto {
|
|
176
|
-
institution: string;
|
|
177
|
-
degree: string;
|
|
178
|
-
fieldOfStudy?: string;
|
|
179
|
-
startDate?: string;
|
|
180
|
-
endDate?: string;
|
|
181
|
-
}
|
|
182
|
-
declare class CertificationDto {
|
|
183
|
-
name: string;
|
|
184
|
-
issuingOrganization?: string;
|
|
185
|
-
issueDate?: string;
|
|
186
|
-
expirationDate?: string;
|
|
187
|
-
}
|
|
188
|
-
declare class ExperienceDto {
|
|
189
|
-
title: string;
|
|
190
|
-
company: string;
|
|
191
|
-
startDate?: string;
|
|
192
|
-
endDate?: string;
|
|
193
|
-
description?: string;
|
|
194
|
-
}
|
|
195
|
-
declare class AddressDto {
|
|
196
|
-
street: string;
|
|
197
|
-
city: string;
|
|
198
|
-
state?: string;
|
|
199
|
-
country?: string;
|
|
200
|
-
postalCode?: string;
|
|
201
|
-
}
|
|
202
|
-
declare class PhoneDto {
|
|
203
|
-
number: string;
|
|
204
|
-
type?: string;
|
|
205
|
-
}
|
|
206
|
-
declare class LinkDto {
|
|
207
|
-
url: string;
|
|
208
|
-
type?: string;
|
|
209
|
-
}
|
|
210
|
-
declare class ProfessionalDataDto {
|
|
211
|
-
businessSector: BusinessSector;
|
|
212
|
-
bio?: string;
|
|
213
|
-
companyName?: string;
|
|
214
|
-
skills?: SkillDto[];
|
|
215
|
-
education?: EducationDto[];
|
|
216
|
-
certifications?: CertificationDto[];
|
|
217
|
-
experiences?: ExperienceDto[];
|
|
218
|
-
addresses?: AddressDto[];
|
|
219
|
-
phones?: PhoneDto[];
|
|
220
|
-
links?: LinkDto[];
|
|
221
|
-
}
|
|
222
|
-
|
|
223
206
|
declare class DeleteFileDto {
|
|
224
207
|
fileUrl: string;
|
|
225
208
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -3,12 +3,69 @@ declare enum UserType {
|
|
|
3
3
|
PROFESSIONAL = "PROFESSIONAL"
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
+
declare enum BusinessSector {
|
|
7
|
+
IT_SOFTWARE = "IT & Software Development",
|
|
8
|
+
DATA_ANALYTICS = "Data Science & Analytics",
|
|
9
|
+
ENGINEERING = "Engineering & Architecture",
|
|
10
|
+
DESIGN_CREATIVE = "Design & Creative",
|
|
11
|
+
WRITING_TRANSLATION = "Writing & Translation",
|
|
12
|
+
VIDEO_ANIMATION = "Video & Animation",
|
|
13
|
+
AUDIO_MUSIC = "Music & Audio",
|
|
14
|
+
MARKETING_SALES = "Marketing & Sales",
|
|
15
|
+
FINANCE_ACCOUNTING = "Finance & Accounting",
|
|
16
|
+
LEGAL = "Legal Services",
|
|
17
|
+
HR_RECRUITING = "HR & Recruiting",
|
|
18
|
+
CONSULTING = "Business Consulting",
|
|
19
|
+
ADMIN_SUPPORT = "Admin & Customer Support",
|
|
20
|
+
TRADES_CRAFTSMANSHIP = "Trades & Craftsmanship",
|
|
21
|
+
HEALTH_WELLNESS = "Health & Wellness",
|
|
22
|
+
EDUCATION_TRAINING = "Education & Training",
|
|
23
|
+
EVENTS_LIFESTYLE = "Events & Lifestyle",
|
|
24
|
+
REAL_ESTATE = "Real Estate",
|
|
25
|
+
LOGISTICS_OPERATIONS = "Logistics & Operations"
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
declare class SkillDto {
|
|
29
|
+
name: string;
|
|
30
|
+
}
|
|
31
|
+
declare class EducationDto {
|
|
32
|
+
degree: string;
|
|
33
|
+
}
|
|
34
|
+
declare class CertificationDto {
|
|
35
|
+
certif: string;
|
|
36
|
+
}
|
|
37
|
+
declare class ExperienceDto {
|
|
38
|
+
experience: string;
|
|
39
|
+
}
|
|
40
|
+
declare class AddressDto {
|
|
41
|
+
adresse: string;
|
|
42
|
+
}
|
|
43
|
+
declare class PhoneDto {
|
|
44
|
+
number: string;
|
|
45
|
+
}
|
|
46
|
+
declare class LinkDto {
|
|
47
|
+
url: string;
|
|
48
|
+
}
|
|
49
|
+
declare class ProfessionalDataDto {
|
|
50
|
+
businessSector: BusinessSector;
|
|
51
|
+
bio?: string;
|
|
52
|
+
companyName?: string;
|
|
53
|
+
skills?: SkillDto[];
|
|
54
|
+
education?: EducationDto[];
|
|
55
|
+
certifications?: CertificationDto[];
|
|
56
|
+
experiences?: ExperienceDto[];
|
|
57
|
+
addresses?: AddressDto[];
|
|
58
|
+
phones?: PhoneDto[];
|
|
59
|
+
links?: LinkDto[];
|
|
60
|
+
}
|
|
61
|
+
|
|
6
62
|
declare class CreateUserDto {
|
|
7
63
|
email: string;
|
|
8
64
|
fullName: string;
|
|
9
65
|
password: string;
|
|
10
66
|
confirmPassword: string;
|
|
11
67
|
userType: UserType;
|
|
68
|
+
professionalData?: ProfessionalDataDto;
|
|
12
69
|
}
|
|
13
70
|
|
|
14
71
|
declare class CreateUserFireBaseDto {
|
|
@@ -52,28 +109,6 @@ declare class UpdatePasswordDto {
|
|
|
52
109
|
confirmNewPassword: string;
|
|
53
110
|
}
|
|
54
111
|
|
|
55
|
-
declare enum BusinessSector {
|
|
56
|
-
IT_SOFTWARE = "IT & Software Development",
|
|
57
|
-
DATA_ANALYTICS = "Data Science & Analytics",
|
|
58
|
-
ENGINEERING = "Engineering & Architecture",
|
|
59
|
-
DESIGN_CREATIVE = "Design & Creative",
|
|
60
|
-
WRITING_TRANSLATION = "Writing & Translation",
|
|
61
|
-
VIDEO_ANIMATION = "Video & Animation",
|
|
62
|
-
AUDIO_MUSIC = "Music & Audio",
|
|
63
|
-
MARKETING_SALES = "Marketing & Sales",
|
|
64
|
-
FINANCE_ACCOUNTING = "Finance & Accounting",
|
|
65
|
-
LEGAL = "Legal Services",
|
|
66
|
-
HR_RECRUITING = "HR & Recruiting",
|
|
67
|
-
CONSULTING = "Business Consulting",
|
|
68
|
-
ADMIN_SUPPORT = "Admin & Customer Support",
|
|
69
|
-
TRADES_CRAFTSMANSHIP = "Trades & Craftsmanship",
|
|
70
|
-
HEALTH_WELLNESS = "Health & Wellness",
|
|
71
|
-
EDUCATION_TRAINING = "Education & Training",
|
|
72
|
-
EVENTS_LIFESTYLE = "Events & Lifestyle",
|
|
73
|
-
REAL_ESTATE = "Real Estate",
|
|
74
|
-
LOGISTICS_OPERATIONS = "Logistics & Operations"
|
|
75
|
-
}
|
|
76
|
-
|
|
77
112
|
declare class SkillResponseDto {
|
|
78
113
|
id: string;
|
|
79
114
|
name: string;
|
|
@@ -168,58 +203,6 @@ declare class CreateReportDto {
|
|
|
168
203
|
description: string;
|
|
169
204
|
}
|
|
170
205
|
|
|
171
|
-
declare class SkillDto {
|
|
172
|
-
name: string;
|
|
173
|
-
level?: string;
|
|
174
|
-
}
|
|
175
|
-
declare class EducationDto {
|
|
176
|
-
institution: string;
|
|
177
|
-
degree: string;
|
|
178
|
-
fieldOfStudy?: string;
|
|
179
|
-
startDate?: string;
|
|
180
|
-
endDate?: string;
|
|
181
|
-
}
|
|
182
|
-
declare class CertificationDto {
|
|
183
|
-
name: string;
|
|
184
|
-
issuingOrganization?: string;
|
|
185
|
-
issueDate?: string;
|
|
186
|
-
expirationDate?: string;
|
|
187
|
-
}
|
|
188
|
-
declare class ExperienceDto {
|
|
189
|
-
title: string;
|
|
190
|
-
company: string;
|
|
191
|
-
startDate?: string;
|
|
192
|
-
endDate?: string;
|
|
193
|
-
description?: string;
|
|
194
|
-
}
|
|
195
|
-
declare class AddressDto {
|
|
196
|
-
street: string;
|
|
197
|
-
city: string;
|
|
198
|
-
state?: string;
|
|
199
|
-
country?: string;
|
|
200
|
-
postalCode?: string;
|
|
201
|
-
}
|
|
202
|
-
declare class PhoneDto {
|
|
203
|
-
number: string;
|
|
204
|
-
type?: string;
|
|
205
|
-
}
|
|
206
|
-
declare class LinkDto {
|
|
207
|
-
url: string;
|
|
208
|
-
type?: string;
|
|
209
|
-
}
|
|
210
|
-
declare class ProfessionalDataDto {
|
|
211
|
-
businessSector: BusinessSector;
|
|
212
|
-
bio?: string;
|
|
213
|
-
companyName?: string;
|
|
214
|
-
skills?: SkillDto[];
|
|
215
|
-
education?: EducationDto[];
|
|
216
|
-
certifications?: CertificationDto[];
|
|
217
|
-
experiences?: ExperienceDto[];
|
|
218
|
-
addresses?: AddressDto[];
|
|
219
|
-
phones?: PhoneDto[];
|
|
220
|
-
links?: LinkDto[];
|
|
221
|
-
}
|
|
222
|
-
|
|
223
206
|
declare class DeleteFileDto {
|
|
224
207
|
fileUrl: string;
|
|
225
208
|
}
|