@ndla/types-backend 1.0.130 → 1.0.132

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.
@@ -766,6 +766,8 @@ export type components = {
766
766
  title: string;
767
767
  /** @description The url to the frontend page of the taxonomy node */
768
768
  url?: string;
769
+ /** @description When this node was last updated */
770
+ lastUpdated: string;
769
771
  subjectPage?: components["schemas"]["SubjectPageSummaryDTO"];
770
772
  /** @description Primary context of the resource */
771
773
  context?: components["schemas"]["ApiTaxonomyContextDTO"];
@@ -1815,6 +1815,11 @@ export type components = {
1815
1815
  technicalEvaluation?: components["schemas"]["TechnicalEvaluationDTO"];
1816
1816
  /** @description All translations of this node */
1817
1817
  translations: components["schemas"]["Translation"][];
1818
+ /**
1819
+ * Format: date-time
1820
+ * @description When was this last updated.
1821
+ */
1822
+ updatedAt: string;
1818
1823
  /** @description A pretty url based on name and context. Empty if no context. */
1819
1824
  url?: string;
1820
1825
  /** @description Url safe names for the node. */
@@ -1920,6 +1925,11 @@ export type components = {
1920
1925
  technicalEvaluation?: components["schemas"]["TechnicalEvaluationDTO"];
1921
1926
  /** @description All translations of this node */
1922
1927
  translations: components["schemas"]["Translation"][];
1928
+ /**
1929
+ * Format: date-time
1930
+ * @description When was this last updated.
1931
+ */
1932
+ updatedAt?: string;
1923
1933
  /** @description A pretty url based on name and context. Empty if no context. */
1924
1934
  url?: string;
1925
1935
  /** @description Url safe names for the node. */
@@ -2205,6 +2215,11 @@ export type components = {
2205
2215
  technicalEvaluation?: components["schemas"]["TechnicalEvaluationDTO"];
2206
2216
  /** @description All translations of this node */
2207
2217
  translations?: components["schemas"]["Translation"][];
2218
+ /**
2219
+ * Format: date-time
2220
+ * @description When was this last updated.
2221
+ */
2222
+ updatedAt?: string;
2208
2223
  /** @description A pretty url based on name and context. Empty if no context. */
2209
2224
  url?: string;
2210
2225
  /** @description Url safe names for the node. */
package/package.json CHANGED
@@ -33,6 +33,6 @@
33
33
  "tsx": "^4.21.0",
34
34
  "typescript": "^5.9.3"
35
35
  },
36
- "version": "1.0.130",
36
+ "version": "1.0.132",
37
37
  "packageManager": "yarn@4.10.3"
38
38
  }