@feresmeryas/microservices-common 1.5.34 → 1.5.36
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 -57
- package/dist/index.d.ts +57 -57
- package/dist/index.js +739 -461
- package/dist/index.mjs +721 -451
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3,68 +3,12 @@ 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 AddressDto {
|
|
38
|
-
adresse: string;
|
|
39
|
-
}
|
|
40
|
-
declare class ExperienceDto {
|
|
41
|
-
experience: 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
|
declare class CreateUserDto {
|
|
62
7
|
email: string;
|
|
63
8
|
fullName: string;
|
|
64
9
|
password: string;
|
|
65
10
|
confirmPassword: string;
|
|
66
11
|
userType: UserType;
|
|
67
|
-
professionalData?: ProfessionalDataDto;
|
|
68
12
|
}
|
|
69
13
|
|
|
70
14
|
declare class CreateUserFireBaseDto {
|
|
@@ -108,6 +52,28 @@ declare class UpdatePasswordDto {
|
|
|
108
52
|
confirmNewPassword: string;
|
|
109
53
|
}
|
|
110
54
|
|
|
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
|
+
|
|
111
77
|
declare class SkillResponseDto {
|
|
112
78
|
id: string;
|
|
113
79
|
name: string;
|
|
@@ -202,6 +168,40 @@ declare class CreateReportDto {
|
|
|
202
168
|
description: string;
|
|
203
169
|
}
|
|
204
170
|
|
|
171
|
+
declare class SkillDto {
|
|
172
|
+
name: string;
|
|
173
|
+
}
|
|
174
|
+
declare class EducationDto {
|
|
175
|
+
degree: string;
|
|
176
|
+
}
|
|
177
|
+
declare class CertificationDto {
|
|
178
|
+
certif: string;
|
|
179
|
+
}
|
|
180
|
+
declare class ExperienceDto {
|
|
181
|
+
experience: string;
|
|
182
|
+
}
|
|
183
|
+
declare class AddressDto {
|
|
184
|
+
adresse: string;
|
|
185
|
+
}
|
|
186
|
+
declare class PhoneDto {
|
|
187
|
+
number: string;
|
|
188
|
+
}
|
|
189
|
+
declare class LinkDto {
|
|
190
|
+
url: string;
|
|
191
|
+
}
|
|
192
|
+
declare class ProfessionalDataDto {
|
|
193
|
+
businessSector: BusinessSector;
|
|
194
|
+
bio?: string;
|
|
195
|
+
companyName?: string;
|
|
196
|
+
skills?: SkillDto[];
|
|
197
|
+
education?: EducationDto[];
|
|
198
|
+
certifications?: CertificationDto[];
|
|
199
|
+
experiences?: ExperienceDto[];
|
|
200
|
+
addresses?: AddressDto[];
|
|
201
|
+
phones?: PhoneDto[];
|
|
202
|
+
links?: LinkDto[];
|
|
203
|
+
}
|
|
204
|
+
|
|
205
205
|
declare class DeleteFileDto {
|
|
206
206
|
fileUrl: string;
|
|
207
207
|
}
|
|
@@ -468,4 +468,4 @@ declare class SearchTagsDto {
|
|
|
468
468
|
name: string;
|
|
469
469
|
}
|
|
470
470
|
|
|
471
|
-
export { AddressResponseDto, BusinessSector, CertificationResponseDto, CommentFields, CommentLikeResponseDto, CommentResponseDto, CommentTreeDto, CreateCommentDto, CreateOrGetTagDto, CreatePostDto, CreatePostFileDto, CreateReportDto, CreateUserDto, CreateUserFireBaseDto, DeleteFileDto, type DeviceInfo, EducationResponseDto, EmailParamDto, ExperienceResponseDto, FileCategory, FileResponseDto, FindAllUsersDto, FindByRoleDto, ForgotPasswordDto, GetTagsBySectorDto, type IStorageProvider, LikeCommentDto, LikePostDto, LinkResponseDto, LoginLocalDTO, PaginatedCommentLikesDto, PaginatedCommentsDto, PaginatedPostLikesDto, PaginatedPostsDto, PaginatedPostsSelfDto, PhoneResponseDto, PostFields, PostFileDto, PostLikeResponseDto, PostResponseDto, PostResponseSelfDto, ProfessionalDataDto, ProfessionalProfileResponseDto, ReactionType, ReorderDto, ReportCategory, ReportStatus, ResetPasswordDto, RoleName, SearchTagsDto, SearchUsersByFullNameDTO, SkillResponseDto, TagResponseDto, UpdateCommentDto, UpdatePasswordDto, UpdatePostDto, UpdateProfessionalProfileDto, UpdateUserDto, UploadFileDto, type UploadedFile, UserResponseDto, UserType };
|
|
471
|
+
export { AddressDto, AddressResponseDto, BusinessSector, CertificationDto, CertificationResponseDto, CommentFields, CommentLikeResponseDto, CommentResponseDto, CommentTreeDto, CreateCommentDto, CreateOrGetTagDto, CreatePostDto, CreatePostFileDto, CreateReportDto, CreateUserDto, CreateUserFireBaseDto, DeleteFileDto, type DeviceInfo, EducationDto, EducationResponseDto, EmailParamDto, ExperienceDto, ExperienceResponseDto, FileCategory, FileResponseDto, FindAllUsersDto, FindByRoleDto, ForgotPasswordDto, GetTagsBySectorDto, type IStorageProvider, LikeCommentDto, LikePostDto, LinkDto, LinkResponseDto, LoginLocalDTO, PaginatedCommentLikesDto, PaginatedCommentsDto, PaginatedPostLikesDto, PaginatedPostsDto, PaginatedPostsSelfDto, PhoneDto, PhoneResponseDto, PostFields, PostFileDto, PostLikeResponseDto, PostResponseDto, PostResponseSelfDto, ProfessionalDataDto, ProfessionalProfileResponseDto, ReactionType, ReorderDto, ReportCategory, ReportStatus, ResetPasswordDto, RoleName, SearchTagsDto, SearchUsersByFullNameDTO, SkillDto, SkillResponseDto, TagResponseDto, UpdateCommentDto, UpdatePasswordDto, UpdatePostDto, UpdateProfessionalProfileDto, UpdateUserDto, UploadFileDto, type UploadedFile, UserResponseDto, UserType };
|
package/dist/index.d.ts
CHANGED
|
@@ -3,68 +3,12 @@ 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 AddressDto {
|
|
38
|
-
adresse: string;
|
|
39
|
-
}
|
|
40
|
-
declare class ExperienceDto {
|
|
41
|
-
experience: 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
|
declare class CreateUserDto {
|
|
62
7
|
email: string;
|
|
63
8
|
fullName: string;
|
|
64
9
|
password: string;
|
|
65
10
|
confirmPassword: string;
|
|
66
11
|
userType: UserType;
|
|
67
|
-
professionalData?: ProfessionalDataDto;
|
|
68
12
|
}
|
|
69
13
|
|
|
70
14
|
declare class CreateUserFireBaseDto {
|
|
@@ -108,6 +52,28 @@ declare class UpdatePasswordDto {
|
|
|
108
52
|
confirmNewPassword: string;
|
|
109
53
|
}
|
|
110
54
|
|
|
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
|
+
|
|
111
77
|
declare class SkillResponseDto {
|
|
112
78
|
id: string;
|
|
113
79
|
name: string;
|
|
@@ -202,6 +168,40 @@ declare class CreateReportDto {
|
|
|
202
168
|
description: string;
|
|
203
169
|
}
|
|
204
170
|
|
|
171
|
+
declare class SkillDto {
|
|
172
|
+
name: string;
|
|
173
|
+
}
|
|
174
|
+
declare class EducationDto {
|
|
175
|
+
degree: string;
|
|
176
|
+
}
|
|
177
|
+
declare class CertificationDto {
|
|
178
|
+
certif: string;
|
|
179
|
+
}
|
|
180
|
+
declare class ExperienceDto {
|
|
181
|
+
experience: string;
|
|
182
|
+
}
|
|
183
|
+
declare class AddressDto {
|
|
184
|
+
adresse: string;
|
|
185
|
+
}
|
|
186
|
+
declare class PhoneDto {
|
|
187
|
+
number: string;
|
|
188
|
+
}
|
|
189
|
+
declare class LinkDto {
|
|
190
|
+
url: string;
|
|
191
|
+
}
|
|
192
|
+
declare class ProfessionalDataDto {
|
|
193
|
+
businessSector: BusinessSector;
|
|
194
|
+
bio?: string;
|
|
195
|
+
companyName?: string;
|
|
196
|
+
skills?: SkillDto[];
|
|
197
|
+
education?: EducationDto[];
|
|
198
|
+
certifications?: CertificationDto[];
|
|
199
|
+
experiences?: ExperienceDto[];
|
|
200
|
+
addresses?: AddressDto[];
|
|
201
|
+
phones?: PhoneDto[];
|
|
202
|
+
links?: LinkDto[];
|
|
203
|
+
}
|
|
204
|
+
|
|
205
205
|
declare class DeleteFileDto {
|
|
206
206
|
fileUrl: string;
|
|
207
207
|
}
|
|
@@ -468,4 +468,4 @@ declare class SearchTagsDto {
|
|
|
468
468
|
name: string;
|
|
469
469
|
}
|
|
470
470
|
|
|
471
|
-
export { AddressResponseDto, BusinessSector, CertificationResponseDto, CommentFields, CommentLikeResponseDto, CommentResponseDto, CommentTreeDto, CreateCommentDto, CreateOrGetTagDto, CreatePostDto, CreatePostFileDto, CreateReportDto, CreateUserDto, CreateUserFireBaseDto, DeleteFileDto, type DeviceInfo, EducationResponseDto, EmailParamDto, ExperienceResponseDto, FileCategory, FileResponseDto, FindAllUsersDto, FindByRoleDto, ForgotPasswordDto, GetTagsBySectorDto, type IStorageProvider, LikeCommentDto, LikePostDto, LinkResponseDto, LoginLocalDTO, PaginatedCommentLikesDto, PaginatedCommentsDto, PaginatedPostLikesDto, PaginatedPostsDto, PaginatedPostsSelfDto, PhoneResponseDto, PostFields, PostFileDto, PostLikeResponseDto, PostResponseDto, PostResponseSelfDto, ProfessionalDataDto, ProfessionalProfileResponseDto, ReactionType, ReorderDto, ReportCategory, ReportStatus, ResetPasswordDto, RoleName, SearchTagsDto, SearchUsersByFullNameDTO, SkillResponseDto, TagResponseDto, UpdateCommentDto, UpdatePasswordDto, UpdatePostDto, UpdateProfessionalProfileDto, UpdateUserDto, UploadFileDto, type UploadedFile, UserResponseDto, UserType };
|
|
471
|
+
export { AddressDto, AddressResponseDto, BusinessSector, CertificationDto, CertificationResponseDto, CommentFields, CommentLikeResponseDto, CommentResponseDto, CommentTreeDto, CreateCommentDto, CreateOrGetTagDto, CreatePostDto, CreatePostFileDto, CreateReportDto, CreateUserDto, CreateUserFireBaseDto, DeleteFileDto, type DeviceInfo, EducationDto, EducationResponseDto, EmailParamDto, ExperienceDto, ExperienceResponseDto, FileCategory, FileResponseDto, FindAllUsersDto, FindByRoleDto, ForgotPasswordDto, GetTagsBySectorDto, type IStorageProvider, LikeCommentDto, LikePostDto, LinkDto, LinkResponseDto, LoginLocalDTO, PaginatedCommentLikesDto, PaginatedCommentsDto, PaginatedPostLikesDto, PaginatedPostsDto, PaginatedPostsSelfDto, PhoneDto, PhoneResponseDto, PostFields, PostFileDto, PostLikeResponseDto, PostResponseDto, PostResponseSelfDto, ProfessionalDataDto, ProfessionalProfileResponseDto, ReactionType, ReorderDto, ReportCategory, ReportStatus, ResetPasswordDto, RoleName, SearchTagsDto, SearchUsersByFullNameDTO, SkillDto, SkillResponseDto, TagResponseDto, UpdateCommentDto, UpdatePasswordDto, UpdatePostDto, UpdateProfessionalProfileDto, UpdateUserDto, UploadFileDto, type UploadedFile, UserResponseDto, UserType };
|