@ndla/types-backend 0.2.7 → 0.2.8
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/draft-api.d.ts +2 -0
- package/package.json +1 -1
package/build/draft-api.d.ts
CHANGED
|
@@ -254,6 +254,7 @@ export interface IUpdatedComment {
|
|
|
254
254
|
export interface IUpdatedUserData {
|
|
255
255
|
savedSearches?: string[];
|
|
256
256
|
latestEditedArticles?: string[];
|
|
257
|
+
latestEditedConcepts?: string[];
|
|
257
258
|
favoriteSubjects?: string[];
|
|
258
259
|
}
|
|
259
260
|
export interface IUploadedFile {
|
|
@@ -266,6 +267,7 @@ export interface IUserData {
|
|
|
266
267
|
userId: string;
|
|
267
268
|
savedSearches?: string[];
|
|
268
269
|
latestEditedArticles?: string[];
|
|
270
|
+
latestEditedConcepts?: string[];
|
|
269
271
|
favoriteSubjects?: string[];
|
|
270
272
|
}
|
|
271
273
|
export interface IVisualElement {
|
package/package.json
CHANGED