@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.
- package/build/taxonomy-api.d.ts +4 -0
- package/package.json +1 -1
- package/taxonomy-api.ts +4 -0
package/build/taxonomy-api.d.ts
CHANGED
|
@@ -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
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 {
|