@ndla/types-backend 1.0.69 → 1.0.71
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.
|
@@ -796,6 +796,10 @@ export type components = {
|
|
|
796
796
|
canEdit: boolean;
|
|
797
797
|
/** @description The status of the learningstep */
|
|
798
798
|
status: string;
|
|
799
|
+
/** @description The date when this learningstep was created. */
|
|
800
|
+
created: string;
|
|
801
|
+
/** @description The date when this learningstep was last updated. */
|
|
802
|
+
lastUpdated: string;
|
|
799
803
|
/** @description The supported languages of the learningstep */
|
|
800
804
|
supportedLanguages: string[];
|
|
801
805
|
};
|
|
@@ -1100,7 +1104,7 @@ export type components = {
|
|
|
1100
1104
|
/** @description A list of all revisions of the learningpath */
|
|
1101
1105
|
revisionMeta?: components["schemas"]["RevisionMetaDTO"][];
|
|
1102
1106
|
/** @description An introduction */
|
|
1103
|
-
introduction?: string;
|
|
1107
|
+
introduction?: string | null;
|
|
1104
1108
|
/** @description A list of codes from GREP API connected to the article */
|
|
1105
1109
|
grepCodes?: string[];
|
|
1106
1110
|
};
|
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.71",
|
|
36
36
|
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
37
37
|
}
|