@ndla/types-backend 1.0.60 → 1.0.61
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.
|
@@ -746,6 +746,11 @@ export type components = {
|
|
|
746
746
|
/** @description The description of the learningstep */
|
|
747
747
|
description?: components["schemas"]["DescriptionDTO"];
|
|
748
748
|
embedUrl?: components["schemas"]["EmbedUrlV2DTO"];
|
|
749
|
+
/**
|
|
750
|
+
* Format: int64
|
|
751
|
+
* @description The id of the article that this learningstep is associated with
|
|
752
|
+
*/
|
|
753
|
+
article?: number;
|
|
749
754
|
/** @description Determines if the title of the step should be displayed in viewmode */
|
|
750
755
|
showTitle: boolean;
|
|
751
756
|
/** @description The type of the step */
|
|
@@ -854,6 +859,11 @@ export type components = {
|
|
|
854
859
|
description?: string;
|
|
855
860
|
/** @description The chosen language */
|
|
856
861
|
language: string;
|
|
862
|
+
/**
|
|
863
|
+
* Format: int64
|
|
864
|
+
* @description The article id this learningstep points to
|
|
865
|
+
*/
|
|
866
|
+
article?: number;
|
|
857
867
|
embedUrl?: components["schemas"]["EmbedUrlV2DTO"];
|
|
858
868
|
/**
|
|
859
869
|
* @description Determines if the title of the step should be displayed in viewmode.
|
|
@@ -1048,6 +1058,11 @@ export type components = {
|
|
|
1048
1058
|
description?: string | null;
|
|
1049
1059
|
/** @description The embed content for the learningstep */
|
|
1050
1060
|
embedUrl?: components["schemas"]["EmbedUrlV2DTO"] | null;
|
|
1061
|
+
/**
|
|
1062
|
+
* Format: int64
|
|
1063
|
+
* @description The article id this learningstep points to
|
|
1064
|
+
*/
|
|
1065
|
+
article?: number | null;
|
|
1051
1066
|
/** @description Determines if the title of the step should be displayed in viewmode */
|
|
1052
1067
|
showTitle?: boolean;
|
|
1053
1068
|
/** @description The type of the step */
|
|
@@ -55,6 +55,8 @@ export type NewLearningStepV2DTO = schemas["NewLearningStepV2DTO"];
|
|
|
55
55
|
export type INewLearningStepV2DTO = schemas["NewLearningStepV2DTO"];
|
|
56
56
|
export type NotFoundWithSupportedLanguages = schemas["NotFoundWithSupportedLanguages"];
|
|
57
57
|
export type INotFoundWithSupportedLanguages = schemas["NotFoundWithSupportedLanguages"];
|
|
58
|
+
export type Priority = schemas["Priority"];
|
|
59
|
+
export type IPriority = schemas["Priority"];
|
|
58
60
|
export type ResponsibleDTO = schemas["ResponsibleDTO"];
|
|
59
61
|
export type IResponsibleDTO = schemas["ResponsibleDTO"];
|
|
60
62
|
export type SearchParamsDTO = schemas["SearchParamsDTO"];
|
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.61",
|
|
36
36
|
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
37
37
|
}
|