@ndla/types-backend 1.0.138 → 1.0.139

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.
@@ -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'];
package/package.json CHANGED
@@ -33,6 +33,6 @@
33
33
  "tsx": "^4.21.0",
34
34
  "typescript": "^5.9.3"
35
35
  },
36
- "version": "1.0.138",
36
+ "version": "1.0.139",
37
37
  "packageManager": "yarn@4.10.3"
38
38
  }