@ndla/types-backend 0.2.27 → 0.2.29
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/frontpage-api.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ export interface IFilmFrontPageData {
|
|
|
26
26
|
about: IAboutFilmSubject[];
|
|
27
27
|
movieThemes: IMovieTheme[];
|
|
28
28
|
slideShow: string[];
|
|
29
|
+
article?: string;
|
|
29
30
|
}
|
|
30
31
|
export interface IFrontPage {
|
|
31
32
|
articleId: number;
|
|
@@ -59,6 +60,7 @@ export interface INewOrUpdatedFilmFrontPageData {
|
|
|
59
60
|
about: INewOrUpdatedAboutSubject[];
|
|
60
61
|
movieThemes: INewOrUpdatedMovieTheme[];
|
|
61
62
|
slideShow: string[];
|
|
63
|
+
article?: string;
|
|
62
64
|
}
|
|
63
65
|
export interface INewOrUpdatedMetaDescription {
|
|
64
66
|
metaDescription: string;
|
|
@@ -50,6 +50,7 @@ export interface IFolder {
|
|
|
50
50
|
updated: string;
|
|
51
51
|
shared?: string;
|
|
52
52
|
description?: string;
|
|
53
|
+
owner?: IOwner;
|
|
53
54
|
}
|
|
54
55
|
export type IFolderData = IFolder;
|
|
55
56
|
export interface IIntroduction {
|
|
@@ -154,6 +155,7 @@ export interface IMyNDLAUser {
|
|
|
154
155
|
role: string;
|
|
155
156
|
organization: string;
|
|
156
157
|
arenaEnabled: boolean;
|
|
158
|
+
shareName: boolean;
|
|
157
159
|
}
|
|
158
160
|
export interface INewFolder {
|
|
159
161
|
name: string;
|
|
@@ -167,6 +169,9 @@ export interface INewResource {
|
|
|
167
169
|
tags?: string[];
|
|
168
170
|
resourceId: string;
|
|
169
171
|
}
|
|
172
|
+
export interface IOwner {
|
|
173
|
+
name: string;
|
|
174
|
+
}
|
|
170
175
|
export interface IResource {
|
|
171
176
|
id: string;
|
|
172
177
|
resourceType: string;
|
package/package.json
CHANGED