@ndla/types-taxonomy 1.0.15 → 1.0.16

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.
@@ -132,6 +132,10 @@ export interface NodePostPut {
132
132
  * The node is a root node. Default is false. Only used if present.
133
133
  */
134
134
  root?: boolean;
135
+ /**
136
+ * The node is visible. Default is true.
137
+ */
138
+ visible?: boolean;
135
139
  }
136
140
  export interface NodeResource {
137
141
  /**
package/package.json CHANGED
@@ -17,5 +17,5 @@
17
17
  "devDependencies": {
18
18
  "typescript": "^5.0.2"
19
19
  },
20
- "version": "1.0.15"
20
+ "version": "1.0.16"
21
21
  }
package/taxonomy-api.ts CHANGED
@@ -142,6 +142,10 @@ export interface NodePostPut {
142
142
  * The node is a root node. Default is false. Only used if present.
143
143
  */
144
144
  root?: boolean;
145
+ /**
146
+ * The node is visible. Default is true.
147
+ */
148
+ visible?: boolean;
145
149
  }
146
150
 
147
151
  export interface NodeResource {