@feresmeryas/microservices-common 1.5.22 → 1.5.24

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 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,10 +366,15 @@ 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;
360
- type?: "SYSTEM" | "USER_GENERATED";
361
378
  }
362
379
 
363
380
  declare class GetTagsBySectorDto {
@@ -368,4 +385,4 @@ declare class SearchTagsDto {
368
385
  name: string;
369
386
  }
370
387
 
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 };
388
+ 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,10 +366,15 @@ 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;
360
- type?: "SYSTEM" | "USER_GENERATED";
361
378
  }
362
379
 
363
380
  declare class GetTagsBySectorDto {
@@ -368,4 +385,4 @@ declare class SearchTagsDto {
368
385
  name: string;
369
386
  }
370
387
 
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 };
388
+ 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 };