@feresmeryas/microservices-common 1.5.19 → 1.5.20

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
@@ -167,6 +167,12 @@ declare class PostFileDto {
167
167
  createdAt: Date;
168
168
  }
169
169
 
170
+ declare class TagResponseDto {
171
+ name: string;
172
+ slug: string;
173
+ id: string;
174
+ }
175
+
170
176
  declare class PostResponseDto {
171
177
  id: string;
172
178
  publisherId: string;
@@ -174,6 +180,7 @@ declare class PostResponseDto {
174
180
  publisherFullName: string;
175
181
  publisherProfilePictureUrl: string | null;
176
182
  files: PostFileDto[];
183
+ tags: TagResponseDto[];
177
184
  commentsCount: number;
178
185
  sector: BusinessSector;
179
186
  likesCount: number;
package/dist/index.d.ts CHANGED
@@ -167,6 +167,12 @@ declare class PostFileDto {
167
167
  createdAt: Date;
168
168
  }
169
169
 
170
+ declare class TagResponseDto {
171
+ name: string;
172
+ slug: string;
173
+ id: string;
174
+ }
175
+
170
176
  declare class PostResponseDto {
171
177
  id: string;
172
178
  publisherId: string;
@@ -174,6 +180,7 @@ declare class PostResponseDto {
174
180
  publisherFullName: string;
175
181
  publisherProfilePictureUrl: string | null;
176
182
  files: PostFileDto[];
183
+ tags: TagResponseDto[];
177
184
  commentsCount: number;
178
185
  sector: BusinessSector;
179
186
  likesCount: number;