@ndla/types-backend 1.0.138 → 1.0.140
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 +8 -0
- package/package.json +1 -1
package/build/frontpage-api.d.ts
CHANGED
|
@@ -294,6 +294,12 @@ export type components = {
|
|
|
294
294
|
*/
|
|
295
295
|
statusCode: number;
|
|
296
296
|
};
|
|
297
|
+
/** PopularArticleDTO */
|
|
298
|
+
PopularArticleDTO: {
|
|
299
|
+
contextId: string;
|
|
300
|
+
/** Format: int64 */
|
|
301
|
+
numHits: number;
|
|
302
|
+
};
|
|
297
303
|
/** SubjectPageDTO */
|
|
298
304
|
SubjectPageDTO: {
|
|
299
305
|
/** Format: int64 */
|
|
@@ -307,6 +313,7 @@ export type components = {
|
|
|
307
313
|
connectedTo: string[];
|
|
308
314
|
buildsOn: string[];
|
|
309
315
|
leadsTo: string[];
|
|
316
|
+
popularArticles: components["schemas"]["PopularArticleDTO"][];
|
|
310
317
|
};
|
|
311
318
|
/** UpdatedSubjectPageDTO */
|
|
312
319
|
UpdatedSubjectPageDTO: {
|
|
@@ -381,6 +388,7 @@ export type NewOrUpdatedMovieThemeDTO = components['schemas']['NewOrUpdatedMovie
|
|
|
381
388
|
export type NewOrUpdatedVisualElementDTO = components['schemas']['NewOrUpdatedVisualElementDTO'];
|
|
382
389
|
export type NewSubjectPageDTO = components['schemas']['NewSubjectPageDTO'];
|
|
383
390
|
export type NotFoundWithSupportedLanguages = components['schemas']['NotFoundWithSupportedLanguages'];
|
|
391
|
+
export type PopularArticleDTO = components['schemas']['PopularArticleDTO'];
|
|
384
392
|
export type SubjectPageDTO = components['schemas']['SubjectPageDTO'];
|
|
385
393
|
export type UpdatedSubjectPageDTO = components['schemas']['UpdatedSubjectPageDTO'];
|
|
386
394
|
export type ValidationErrorBody = components['schemas']['ValidationErrorBody'];
|