@ndla/types-backend 1.0.58 → 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.
package/build/draft-api.d.ts
CHANGED
|
@@ -71,6 +71,8 @@ export type PartialBulkArticlesDTO = schemas["PartialBulkArticlesDTO"];
|
|
|
71
71
|
export type IPartialBulkArticlesDTO = schemas["PartialBulkArticlesDTO"];
|
|
72
72
|
export type PartialPublishFailureDTO = schemas["PartialPublishFailureDTO"];
|
|
73
73
|
export type IPartialPublishFailureDTO = schemas["PartialPublishFailureDTO"];
|
|
74
|
+
export type Priority = schemas["Priority"];
|
|
75
|
+
export type IPriority = schemas["Priority"];
|
|
74
76
|
export type QualityEvaluationDTO = schemas["QualityEvaluationDTO"];
|
|
75
77
|
export type IQualityEvaluationDTO = schemas["QualityEvaluationDTO"];
|
|
76
78
|
export type RelatedContentLinkDTO = schemas["RelatedContentLinkDTO"];
|
|
@@ -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/build/search-api.d.ts
CHANGED
|
@@ -83,6 +83,8 @@ export type NodeType = schemas["NodeType"];
|
|
|
83
83
|
export type INodeType = schemas["NodeType"];
|
|
84
84
|
export type NotFoundWithSupportedLanguages = schemas["NotFoundWithSupportedLanguages"];
|
|
85
85
|
export type INotFoundWithSupportedLanguages = schemas["NotFoundWithSupportedLanguages"];
|
|
86
|
+
export type Priority = schemas["Priority"];
|
|
87
|
+
export type IPriority = schemas["Priority"];
|
|
86
88
|
export type ResponsibleDTO = schemas["ResponsibleDTO"];
|
|
87
89
|
export type IResponsibleDTO = schemas["ResponsibleDTO"];
|
|
88
90
|
export type RevisionMetaDTO = schemas["RevisionMetaDTO"];
|
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
|
}
|