@feresmeryas/microservices-common 1.5.26 → 1.5.28
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 +3 -41
- package/dist/index.d.ts +3 -41
- package/dist/index.js +434 -689
- package/dist/index.mjs +394 -642
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -114,18 +114,6 @@ 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
|
-
|
|
129
117
|
declare class DeleteFileDto {
|
|
130
118
|
fileUrl: string;
|
|
131
119
|
}
|
|
@@ -208,12 +196,6 @@ declare class PostFileDto {
|
|
|
208
196
|
createdAt: Date;
|
|
209
197
|
}
|
|
210
198
|
|
|
211
|
-
declare class TagResponseDto {
|
|
212
|
-
name: string;
|
|
213
|
-
slug: string;
|
|
214
|
-
id: string;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
199
|
declare class PostResponseDto {
|
|
218
200
|
id: string;
|
|
219
201
|
publisherId: string;
|
|
@@ -221,7 +203,6 @@ declare class PostResponseDto {
|
|
|
221
203
|
publisherFullName: string;
|
|
222
204
|
publisherProfilePictureUrl: string | null;
|
|
223
205
|
files: PostFileDto[];
|
|
224
|
-
tags: TagResponseDto[];
|
|
225
206
|
commentsCount: number;
|
|
226
207
|
sector: BusinessSector;
|
|
227
208
|
likesCount: number;
|
|
@@ -237,8 +218,8 @@ declare class PaginatedPostsDto {
|
|
|
237
218
|
}
|
|
238
219
|
|
|
239
220
|
declare class UpdatePostDto {
|
|
240
|
-
description
|
|
241
|
-
sector
|
|
221
|
+
description: string;
|
|
222
|
+
sector: BusinessSector;
|
|
242
223
|
}
|
|
243
224
|
|
|
244
225
|
declare class PostFields {
|
|
@@ -366,23 +347,4 @@ declare class PaginatedCommentLikesDto {
|
|
|
366
347
|
totalPages: number;
|
|
367
348
|
}
|
|
368
349
|
|
|
369
|
-
|
|
370
|
-
PREMIUM = "PREMIUM",
|
|
371
|
-
DEFAULT = "DEFAULT",
|
|
372
|
-
VISITOR = "VISITOR"
|
|
373
|
-
}
|
|
374
|
-
|
|
375
|
-
declare class CreateOrGetTagDto {
|
|
376
|
-
name: string;
|
|
377
|
-
sector: BusinessSector;
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
declare class GetTagsBySectorDto {
|
|
381
|
-
sector: BusinessSector;
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
declare class SearchTagsDto {
|
|
385
|
-
name: string;
|
|
386
|
-
}
|
|
387
|
-
|
|
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 };
|
|
350
|
+
export { BusinessSector, CommentFields, CommentLikeResponseDto, CommentResponseDto, CommentTreeDto, CreateCommentDto, CreatePostDto, CreatePostFileDto, CreateUserDto, CreateUserFireBaseDto, DeleteFileDto, type DeviceInfo, EmailParamDto, FileCategory, FileResponseDto, FindAllUsersDto, FindByRoleDto, ForgotPasswordDto, type IStorageProvider, LikeCommentDto, LikePostDto, LoginLocalDTO, PaginatedCommentLikesDto, PaginatedCommentsDto, PaginatedPostLikesDto, PaginatedPostsDto, PaginatedPostsSelfDto, PostFields, PostFileDto, PostLikeResponseDto, PostResponseDto, PostResponseSelfDto, ProfessionalProfileResponseDto, ReactionType, ReorderDto, ResetPasswordDto, SearchUsersByFullNameDTO, UpdateCommentDto, UpdatePasswordDto, UpdatePostDto, UpdateUserDto, UploadFileDto, type UploadedFile, UserResponseDto };
|
package/dist/index.d.ts
CHANGED
|
@@ -114,18 +114,6 @@ 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
|
-
|
|
129
117
|
declare class DeleteFileDto {
|
|
130
118
|
fileUrl: string;
|
|
131
119
|
}
|
|
@@ -208,12 +196,6 @@ declare class PostFileDto {
|
|
|
208
196
|
createdAt: Date;
|
|
209
197
|
}
|
|
210
198
|
|
|
211
|
-
declare class TagResponseDto {
|
|
212
|
-
name: string;
|
|
213
|
-
slug: string;
|
|
214
|
-
id: string;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
199
|
declare class PostResponseDto {
|
|
218
200
|
id: string;
|
|
219
201
|
publisherId: string;
|
|
@@ -221,7 +203,6 @@ declare class PostResponseDto {
|
|
|
221
203
|
publisherFullName: string;
|
|
222
204
|
publisherProfilePictureUrl: string | null;
|
|
223
205
|
files: PostFileDto[];
|
|
224
|
-
tags: TagResponseDto[];
|
|
225
206
|
commentsCount: number;
|
|
226
207
|
sector: BusinessSector;
|
|
227
208
|
likesCount: number;
|
|
@@ -237,8 +218,8 @@ declare class PaginatedPostsDto {
|
|
|
237
218
|
}
|
|
238
219
|
|
|
239
220
|
declare class UpdatePostDto {
|
|
240
|
-
description
|
|
241
|
-
sector
|
|
221
|
+
description: string;
|
|
222
|
+
sector: BusinessSector;
|
|
242
223
|
}
|
|
243
224
|
|
|
244
225
|
declare class PostFields {
|
|
@@ -366,23 +347,4 @@ declare class PaginatedCommentLikesDto {
|
|
|
366
347
|
totalPages: number;
|
|
367
348
|
}
|
|
368
349
|
|
|
369
|
-
|
|
370
|
-
PREMIUM = "PREMIUM",
|
|
371
|
-
DEFAULT = "DEFAULT",
|
|
372
|
-
VISITOR = "VISITOR"
|
|
373
|
-
}
|
|
374
|
-
|
|
375
|
-
declare class CreateOrGetTagDto {
|
|
376
|
-
name: string;
|
|
377
|
-
sector: BusinessSector;
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
declare class GetTagsBySectorDto {
|
|
381
|
-
sector: BusinessSector;
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
declare class SearchTagsDto {
|
|
385
|
-
name: string;
|
|
386
|
-
}
|
|
387
|
-
|
|
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 };
|
|
350
|
+
export { BusinessSector, CommentFields, CommentLikeResponseDto, CommentResponseDto, CommentTreeDto, CreateCommentDto, CreatePostDto, CreatePostFileDto, CreateUserDto, CreateUserFireBaseDto, DeleteFileDto, type DeviceInfo, EmailParamDto, FileCategory, FileResponseDto, FindAllUsersDto, FindByRoleDto, ForgotPasswordDto, type IStorageProvider, LikeCommentDto, LikePostDto, LoginLocalDTO, PaginatedCommentLikesDto, PaginatedCommentsDto, PaginatedPostLikesDto, PaginatedPostsDto, PaginatedPostsSelfDto, PostFields, PostFileDto, PostLikeResponseDto, PostResponseDto, PostResponseSelfDto, ProfessionalProfileResponseDto, ReactionType, ReorderDto, ResetPasswordDto, SearchUsersByFullNameDTO, UpdateCommentDto, UpdatePasswordDto, UpdatePostDto, UpdateUserDto, UploadFileDto, type UploadedFile, UserResponseDto };
|