@ndla/types-backend 1.0.152 → 1.0.154
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/myndla-api.d.ts +2 -0
- package/build/taxonomy-api.d.ts +2 -2
- package/package.json +1 -1
package/build/myndla-api.d.ts
CHANGED
|
@@ -855,6 +855,8 @@ export type components = {
|
|
|
855
855
|
userData: components["schemas"]["MyNDLAUserDTO"];
|
|
856
856
|
/** @description The users folders */
|
|
857
857
|
folders: components["schemas"]["FolderDTO"][];
|
|
858
|
+
/** @description Resources saved on the root level */
|
|
859
|
+
rootResources: components["schemas"]["ResourceDTO"][];
|
|
858
860
|
};
|
|
859
861
|
/** FolderDTO */
|
|
860
862
|
FolderDTO: {
|
package/build/taxonomy-api.d.ts
CHANGED
|
@@ -2268,7 +2268,7 @@ export type components = {
|
|
|
2268
2268
|
* @description The ID of this element in the system where the content is stored. This ID should be of the form 'urn:<system>:<id>', where <system> is a short identifier for the system, and <id> is the id of this content in that system.
|
|
2269
2269
|
* @example urn:article:1
|
|
2270
2270
|
*/
|
|
2271
|
-
contentUri
|
|
2271
|
+
contentUri?: string | null;
|
|
2272
2272
|
/** @description Is this an exact match for the provided path? False if this is another path to the same resource. */
|
|
2273
2273
|
exactMatch: boolean;
|
|
2274
2274
|
/**
|
|
@@ -2555,7 +2555,7 @@ export type components = {
|
|
|
2555
2555
|
* @description Subject URN for resource in new system (optional)
|
|
2556
2556
|
* @example urn:subject:5
|
|
2557
2557
|
*/
|
|
2558
|
-
subjectId
|
|
2558
|
+
subjectId?: string | null;
|
|
2559
2559
|
/**
|
|
2560
2560
|
* @description URL for resource in old system
|
|
2561
2561
|
* @example ndla.no/nb/node/183926?fag=127013
|