@ndla/types-backend 1.0.68 → 1.0.70

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.
@@ -603,6 +603,8 @@ export type components = {
603
603
  isBasedOn?: number;
604
604
  /** @description Message that admins can place on a LearningPath for notifying a owner of issues with the LearningPath */
605
605
  message?: string;
606
+ /** @description The codes from GREP API registered for this draft article */
607
+ grepCodes: string[];
606
608
  };
607
609
  /**
608
610
  * LearningPathTagsDTO
@@ -689,6 +691,8 @@ export type components = {
689
691
  revisions: components["schemas"]["RevisionMetaDTO"][];
690
692
  /** @description An introduction for the learningpath */
691
693
  introduction: components["schemas"]["IntroductionDTO"];
694
+ /** @description A list of codes from GREP API connected to the article */
695
+ grepCodes: string[];
692
696
  };
693
697
  /**
694
698
  * LearningStepContainerSummaryDTO
@@ -792,6 +796,10 @@ export type components = {
792
796
  canEdit: boolean;
793
797
  /** @description The status of the learningstep */
794
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;
795
803
  /** @description The supported languages of the learningstep */
796
804
  supportedLanguages: string[];
797
805
  };
@@ -880,6 +888,8 @@ export type components = {
880
888
  priority?: components["schemas"]["Priority"];
881
889
  /** @description An introduction */
882
890
  introduction?: string;
891
+ /** @description A list of codes from GREP API connected to the article */
892
+ grepCodes?: string[];
883
893
  };
884
894
  /**
885
895
  * NewLearningStepV2DTO
@@ -1095,6 +1105,8 @@ export type components = {
1095
1105
  revisionMeta?: components["schemas"]["RevisionMetaDTO"][];
1096
1106
  /** @description An introduction */
1097
1107
  introduction?: string;
1108
+ /** @description A list of codes from GREP API connected to the article */
1109
+ grepCodes?: string[];
1098
1110
  };
1099
1111
  /**
1100
1112
  * 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.68",
35
+ "version": "1.0.70",
36
36
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
37
37
  }