@ndla/types-backend 1.0.54 → 1.0.55

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.
@@ -1012,12 +1012,13 @@ export type components = {
1012
1012
  /** @description The title of the learningstep */
1013
1013
  title?: string;
1014
1014
  /** @description The introduction of the learningstep */
1015
- introduction?: string;
1015
+ introduction?: string | null;
1016
1016
  /** @description The chosen language */
1017
1017
  language: string;
1018
1018
  /** @description The description of the learningstep */
1019
- description?: string;
1020
- embedUrl?: components["schemas"]["EmbedUrlV2DTO"];
1019
+ description?: string | null;
1020
+ /** @description The embed content for the learningstep */
1021
+ embedUrl?: components["schemas"]["EmbedUrlV2DTO"] | null;
1021
1022
  /** @description Determines if the title of the step should be displayed in viewmode */
1022
1023
  showTitle?: boolean;
1023
1024
  /** @description The type of the step */
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.54",
35
+ "version": "1.0.55",
36
36
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
37
37
  }