@feresmeryas/microservices-common 1.5.22 → 1.5.23
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 +19 -1
- package/dist/index.d.ts +19 -1
- package/dist/index.js +579 -443
- package/dist/index.mjs +452 -319
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -114,6 +114,18 @@ declare class SearchUsersByFullNameDTO extends FindAllUsersDto {
|
|
|
114
114
|
fullName?: string;
|
|
115
115
|
}
|
|
116
116
|
|
|
117
|
+
declare class UpdateProfessionalProfileDto {
|
|
118
|
+
businessSector?: BusinessSector;
|
|
119
|
+
bio?: string;
|
|
120
|
+
companyName?: string;
|
|
121
|
+
website?: string;
|
|
122
|
+
phone?: string;
|
|
123
|
+
location?: string;
|
|
124
|
+
yearsOfExperience?: number;
|
|
125
|
+
hourlyRate?: number;
|
|
126
|
+
availabilityStatus?: string;
|
|
127
|
+
}
|
|
128
|
+
|
|
117
129
|
declare class DeleteFileDto {
|
|
118
130
|
fileUrl: string;
|
|
119
131
|
}
|
|
@@ -354,6 +366,12 @@ declare class PaginatedCommentLikesDto {
|
|
|
354
366
|
totalPages: number;
|
|
355
367
|
}
|
|
356
368
|
|
|
369
|
+
declare enum RoleName {
|
|
370
|
+
PREMIUM = "PREMIUM",
|
|
371
|
+
DEFAULT = "DEFAULT",
|
|
372
|
+
VISITOR = "VISITOR"
|
|
373
|
+
}
|
|
374
|
+
|
|
357
375
|
declare class CreateOrGetTagDto {
|
|
358
376
|
name: string;
|
|
359
377
|
sector: BusinessSector;
|
|
@@ -368,4 +386,4 @@ declare class SearchTagsDto {
|
|
|
368
386
|
name: string;
|
|
369
387
|
}
|
|
370
388
|
|
|
371
|
-
export { BusinessSector, CommentFields, CommentLikeResponseDto, CommentResponseDto, CommentTreeDto, CreateCommentDto, CreateOrGetTagDto, CreatePostDto, CreatePostFileDto, CreateUserDto, CreateUserFireBaseDto, DeleteFileDto, type DeviceInfo, EmailParamDto, FileCategory, FileResponseDto, FindAllUsersDto, FindByRoleDto, ForgotPasswordDto, GetTagsBySectorDto, type IStorageProvider, LikeCommentDto, LikePostDto, LoginLocalDTO, PaginatedCommentLikesDto, PaginatedCommentsDto, PaginatedPostLikesDto, PaginatedPostsDto, PaginatedPostsSelfDto, PostFields, PostFileDto, PostLikeResponseDto, PostResponseDto, PostResponseSelfDto, ProfessionalProfileResponseDto, ReactionType, ReorderDto, ResetPasswordDto, SearchTagsDto, SearchUsersByFullNameDTO, TagResponseDto, UpdateCommentDto, UpdatePasswordDto, UpdatePostDto, UpdateUserDto, UploadFileDto, type UploadedFile, UserResponseDto };
|
|
389
|
+
export { BusinessSector, CommentFields, CommentLikeResponseDto, CommentResponseDto, CommentTreeDto, CreateCommentDto, CreateOrGetTagDto, CreatePostDto, CreatePostFileDto, CreateUserDto, CreateUserFireBaseDto, DeleteFileDto, type DeviceInfo, EmailParamDto, FileCategory, FileResponseDto, FindAllUsersDto, FindByRoleDto, ForgotPasswordDto, GetTagsBySectorDto, type IStorageProvider, LikeCommentDto, LikePostDto, LoginLocalDTO, PaginatedCommentLikesDto, PaginatedCommentsDto, PaginatedPostLikesDto, PaginatedPostsDto, PaginatedPostsSelfDto, PostFields, PostFileDto, PostLikeResponseDto, PostResponseDto, PostResponseSelfDto, ProfessionalProfileResponseDto, ReactionType, ReorderDto, ResetPasswordDto, RoleName, SearchTagsDto, SearchUsersByFullNameDTO, TagResponseDto, UpdateCommentDto, UpdatePasswordDto, UpdatePostDto, UpdateProfessionalProfileDto, UpdateUserDto, UploadFileDto, type UploadedFile, UserResponseDto, UserType };
|
package/dist/index.d.ts
CHANGED
|
@@ -114,6 +114,18 @@ declare class SearchUsersByFullNameDTO extends FindAllUsersDto {
|
|
|
114
114
|
fullName?: string;
|
|
115
115
|
}
|
|
116
116
|
|
|
117
|
+
declare class UpdateProfessionalProfileDto {
|
|
118
|
+
businessSector?: BusinessSector;
|
|
119
|
+
bio?: string;
|
|
120
|
+
companyName?: string;
|
|
121
|
+
website?: string;
|
|
122
|
+
phone?: string;
|
|
123
|
+
location?: string;
|
|
124
|
+
yearsOfExperience?: number;
|
|
125
|
+
hourlyRate?: number;
|
|
126
|
+
availabilityStatus?: string;
|
|
127
|
+
}
|
|
128
|
+
|
|
117
129
|
declare class DeleteFileDto {
|
|
118
130
|
fileUrl: string;
|
|
119
131
|
}
|
|
@@ -354,6 +366,12 @@ declare class PaginatedCommentLikesDto {
|
|
|
354
366
|
totalPages: number;
|
|
355
367
|
}
|
|
356
368
|
|
|
369
|
+
declare enum RoleName {
|
|
370
|
+
PREMIUM = "PREMIUM",
|
|
371
|
+
DEFAULT = "DEFAULT",
|
|
372
|
+
VISITOR = "VISITOR"
|
|
373
|
+
}
|
|
374
|
+
|
|
357
375
|
declare class CreateOrGetTagDto {
|
|
358
376
|
name: string;
|
|
359
377
|
sector: BusinessSector;
|
|
@@ -368,4 +386,4 @@ declare class SearchTagsDto {
|
|
|
368
386
|
name: string;
|
|
369
387
|
}
|
|
370
388
|
|
|
371
|
-
export { BusinessSector, CommentFields, CommentLikeResponseDto, CommentResponseDto, CommentTreeDto, CreateCommentDto, CreateOrGetTagDto, CreatePostDto, CreatePostFileDto, CreateUserDto, CreateUserFireBaseDto, DeleteFileDto, type DeviceInfo, EmailParamDto, FileCategory, FileResponseDto, FindAllUsersDto, FindByRoleDto, ForgotPasswordDto, GetTagsBySectorDto, type IStorageProvider, LikeCommentDto, LikePostDto, LoginLocalDTO, PaginatedCommentLikesDto, PaginatedCommentsDto, PaginatedPostLikesDto, PaginatedPostsDto, PaginatedPostsSelfDto, PostFields, PostFileDto, PostLikeResponseDto, PostResponseDto, PostResponseSelfDto, ProfessionalProfileResponseDto, ReactionType, ReorderDto, ResetPasswordDto, SearchTagsDto, SearchUsersByFullNameDTO, TagResponseDto, UpdateCommentDto, UpdatePasswordDto, UpdatePostDto, UpdateUserDto, UploadFileDto, type UploadedFile, UserResponseDto };
|
|
389
|
+
export { BusinessSector, CommentFields, CommentLikeResponseDto, CommentResponseDto, CommentTreeDto, CreateCommentDto, CreateOrGetTagDto, CreatePostDto, CreatePostFileDto, CreateUserDto, CreateUserFireBaseDto, DeleteFileDto, type DeviceInfo, EmailParamDto, FileCategory, FileResponseDto, FindAllUsersDto, FindByRoleDto, ForgotPasswordDto, GetTagsBySectorDto, type IStorageProvider, LikeCommentDto, LikePostDto, LoginLocalDTO, PaginatedCommentLikesDto, PaginatedCommentsDto, PaginatedPostLikesDto, PaginatedPostsDto, PaginatedPostsSelfDto, PostFields, PostFileDto, PostLikeResponseDto, PostResponseDto, PostResponseSelfDto, ProfessionalProfileResponseDto, ReactionType, ReorderDto, ResetPasswordDto, RoleName, SearchTagsDto, SearchUsersByFullNameDTO, TagResponseDto, UpdateCommentDto, UpdatePasswordDto, UpdatePostDto, UpdateProfessionalProfileDto, UpdateUserDto, UploadFileDto, type UploadedFile, UserResponseDto, UserType };
|