@ndla/types-backend 0.2.91 → 0.2.93
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 -1
- package/package.json +1 -1
package/build/myndla-api.d.ts
CHANGED
|
@@ -71,7 +71,7 @@ export interface IFolder {
|
|
|
71
71
|
breadcrumbs: IBreadcrumb[];
|
|
72
72
|
subfolders: IFolderData[];
|
|
73
73
|
resources: IResource[];
|
|
74
|
-
rank
|
|
74
|
+
rank: number;
|
|
75
75
|
created: string;
|
|
76
76
|
updated: string;
|
|
77
77
|
shared?: string;
|
|
@@ -230,6 +230,7 @@ export interface ITopicWithPosts {
|
|
|
230
230
|
isFollowing: boolean;
|
|
231
231
|
isLocked: boolean;
|
|
232
232
|
isPinned: boolean;
|
|
233
|
+
voteCount: number;
|
|
233
234
|
}
|
|
234
235
|
export interface IUpdatedFolder {
|
|
235
236
|
name?: string;
|
package/package.json
CHANGED