@ndla/types-backend 1.0.139 → 1.0.141
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 +6 -6
- package/package.json +1 -1
package/build/taxonomy-api.d.ts
CHANGED
|
@@ -1719,19 +1719,19 @@ export type components = {
|
|
|
1719
1719
|
Metadata: {
|
|
1720
1720
|
customFields: {
|
|
1721
1721
|
[key: string]: string;
|
|
1722
|
-
};
|
|
1723
|
-
grepCodes: string[];
|
|
1724
|
-
visible: boolean;
|
|
1722
|
+
} | null;
|
|
1723
|
+
grepCodes: string[] | null;
|
|
1724
|
+
visible: boolean | null;
|
|
1725
1725
|
};
|
|
1726
1726
|
MetadataPUT: {
|
|
1727
1727
|
/** @description Custom fields, Only updated if present */
|
|
1728
1728
|
customFields?: {
|
|
1729
1729
|
[key: string]: string;
|
|
1730
|
-
};
|
|
1730
|
+
} | null;
|
|
1731
1731
|
/** @description Set of grep codes, Only updated if present */
|
|
1732
|
-
grepCodes?: string[];
|
|
1732
|
+
grepCodes?: string[] | null;
|
|
1733
1733
|
/** @description Visibility of the node, Only updated if present */
|
|
1734
|
-
visible?: boolean;
|
|
1734
|
+
visible?: boolean | null;
|
|
1735
1735
|
};
|
|
1736
1736
|
Node: {
|
|
1737
1737
|
/**
|