@ndla/types-backend 1.0.59 → 1.0.60
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.
|
@@ -664,6 +664,7 @@ export type components = {
|
|
|
664
664
|
responsible?: components["schemas"]["ResponsibleDTO"];
|
|
665
665
|
/** @description Information about comments attached to the learningpath */
|
|
666
666
|
comments: components["schemas"]["CommentDTO"][];
|
|
667
|
+
priority: components["schemas"]["Priority"];
|
|
667
668
|
};
|
|
668
669
|
/**
|
|
669
670
|
* LearningStepContainerSummaryDTO
|
|
@@ -838,6 +839,7 @@ export type components = {
|
|
|
838
839
|
responsibleId?: string;
|
|
839
840
|
/** @description Information about comments attached to the learningpath */
|
|
840
841
|
comments?: components["schemas"]["NewCommentDTO"][];
|
|
842
|
+
priority?: components["schemas"]["Priority"];
|
|
841
843
|
};
|
|
842
844
|
/**
|
|
843
845
|
* NewLearningStepV2DTO
|
|
@@ -882,6 +884,12 @@ export type components = {
|
|
|
882
884
|
*/
|
|
883
885
|
statusCode: number;
|
|
884
886
|
};
|
|
887
|
+
/**
|
|
888
|
+
* Priority
|
|
889
|
+
* @description If the learningpath should be prioritized. Possible values are prioritized, on-hold, unspecified
|
|
890
|
+
* @enum {string}
|
|
891
|
+
*/
|
|
892
|
+
Priority: "prioritized" | "on-hold" | "unspecified";
|
|
885
893
|
/**
|
|
886
894
|
* ResponsibleDTO
|
|
887
895
|
* @description Object with data representing the editor responsible for this learningpath
|
|
@@ -1018,6 +1026,7 @@ export type components = {
|
|
|
1018
1026
|
responsibleId?: string | null;
|
|
1019
1027
|
/** @description Information about comments attached to the learningpath */
|
|
1020
1028
|
comments?: components["schemas"]["UpdatedCommentDTO"][];
|
|
1029
|
+
priority?: components["schemas"]["Priority"];
|
|
1021
1030
|
};
|
|
1022
1031
|
/**
|
|
1023
1032
|
* UpdatedLearningStepV2DTO
|
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.
|
|
35
|
+
"version": "1.0.60",
|
|
36
36
|
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
37
37
|
}
|