@ndla/types-backend 1.0.56 → 1.0.57

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.
@@ -594,8 +594,6 @@ export type components = {
594
594
  slug?: string;
595
595
  /** @description Information about comments attached to the article */
596
596
  comments: components["schemas"]["CommentDTO"][];
597
- /** @description If the article should be prioritized */
598
- prioritized: boolean;
599
597
  /** @description If the article should be prioritized. Possible values are prioritized, on-hold, unspecified */
600
598
  priority: string;
601
599
  /** @description If the article has been edited after last status or responsible change */
@@ -969,8 +967,6 @@ export type components = {
969
967
  slug?: string;
970
968
  /** @description Information about a comment attached to an article */
971
969
  comments?: components["schemas"]["NewCommentDTO"][];
972
- /** @description If the article should be prioritized */
973
- prioritized?: boolean;
974
970
  /** @description If the article should be prioritized. Possible values are prioritized, on-hold, unspecified */
975
971
  priority?: string;
976
972
  qualityEvaluation?: components["schemas"]["QualityEvaluationDTO"];
@@ -1198,8 +1194,6 @@ export type components = {
1198
1194
  slug?: string;
1199
1195
  /** @description Information about a comment attached to an article */
1200
1196
  comments?: components["schemas"]["UpdatedCommentDTO"][];
1201
- /** @description If the article should be prioritized */
1202
- prioritized?: boolean;
1203
1197
  /** @description If the article should be prioritized. Possible values are prioritized, on-hold, unspecified */
1204
1198
  priority?: string;
1205
1199
  qualityEvaluation?: components["schemas"]["QualityEvaluationDTO"];
@@ -263,8 +263,6 @@ export type components = {
263
263
  responsibleIds?: string[];
264
264
  /** @description Filter out inactive taxonomy contexts. */
265
265
  filterInactive?: boolean;
266
- /** @description Set to true to only return prioritized articles */
267
- prioritized?: boolean;
268
266
  /** @description List of priority-levels to filter by. */
269
267
  priority?: string[];
270
268
  /** @description A list of parent topics the learning resources should be filtered by. */
@@ -627,8 +625,6 @@ export type components = {
627
625
  responsible?: components["schemas"]["ResponsibleDTO"];
628
626
  /** @description Information about comments attached to the article */
629
627
  comments?: components["schemas"]["CommentDTO"][];
630
- /** @description If the article should be prioritized */
631
- prioritized?: boolean;
632
628
  /** @description If the article should be prioritized. Possible values are prioritized, on-hold, unspecified */
633
629
  priority?: string;
634
630
  /** @description A combined resource type name if a standard article, otherwise the article type name */
package/package.json CHANGED
@@ -32,6 +32,6 @@
32
32
  "tsx": "^4.19.3",
33
33
  "typescript": "^5.3.3"
34
34
  },
35
- "version": "1.0.56",
35
+ "version": "1.0.57",
36
36
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
37
37
  }