@ndla/types-backend 0.2.90 → 0.2.92
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/build/myndla-api.d.ts +2 -0
- package/package.json +1 -1
package/build/myndla-api.d.ts
CHANGED
|
@@ -217,6 +217,7 @@ export interface ITopic {
|
|
|
217
217
|
isFollowing: boolean;
|
|
218
218
|
isLocked: boolean;
|
|
219
219
|
isPinned: boolean;
|
|
220
|
+
voteCount: number;
|
|
220
221
|
}
|
|
221
222
|
export interface ITopicWithPosts {
|
|
222
223
|
id: number;
|
|
@@ -229,6 +230,7 @@ export interface ITopicWithPosts {
|
|
|
229
230
|
isFollowing: boolean;
|
|
230
231
|
isLocked: boolean;
|
|
231
232
|
isPinned: boolean;
|
|
233
|
+
voteCount: number;
|
|
232
234
|
}
|
|
233
235
|
export interface IUpdatedFolder {
|
|
234
236
|
name?: string;
|
package/package.json
CHANGED