@ndla/types-backend 1.0.141 → 1.0.143
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.
- package/build/taxonomy-api.d.ts +4 -0
- package/package.json +1 -1
package/build/taxonomy-api.d.ts
CHANGED
|
@@ -2065,6 +2065,8 @@ export type components = {
|
|
|
2065
2065
|
nodeType?: components["schemas"]["NodeType"];
|
|
2066
2066
|
/** @description The quality evaluation of the node. Consist of a score from 1 to 5 and a comment. Can be null to remove existing evaluation. */
|
|
2067
2067
|
qualityEvaluation?: components["schemas"]["QualityEvaluationDTO"];
|
|
2068
|
+
/** @description ResourceType public ids to assign to the node. Only works on create for nodes of type RESOURCE */
|
|
2069
|
+
resourceTypes?: string[];
|
|
2068
2070
|
/**
|
|
2069
2071
|
* @deprecated
|
|
2070
2072
|
* @description The node is a root node. Default is false. Only used if present.
|
|
@@ -2072,6 +2074,8 @@ export type components = {
|
|
|
2072
2074
|
root?: boolean;
|
|
2073
2075
|
/** @description The technical evaluation of the node. Contains a flag and an optional comment. Can be null to remove existing evaluation. */
|
|
2074
2076
|
technicalEvaluation?: components["schemas"]["TechnicalEvaluationDTO"];
|
|
2077
|
+
/** @description The translations for the node. Contains an array of translations in different languages */
|
|
2078
|
+
translations?: components["schemas"]["Translation"];
|
|
2075
2079
|
/** @description The node is visible. Default is true. */
|
|
2076
2080
|
visible?: boolean;
|
|
2077
2081
|
};
|