@ndla/types-backend 1.0.46 → 1.0.47
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.
|
@@ -527,7 +527,10 @@ export type components = {
|
|
|
527
527
|
AllErrors: components["schemas"]["ErrorBody"] | components["schemas"]["NotFoundWithSupportedLanguages"] | components["schemas"]["ValidationErrorBody"];
|
|
528
528
|
/** BreadcrumbDTO */
|
|
529
529
|
BreadcrumbDTO: {
|
|
530
|
-
/**
|
|
530
|
+
/**
|
|
531
|
+
* Format: uuid
|
|
532
|
+
* @description UUID of the folder
|
|
533
|
+
*/
|
|
531
534
|
id: string;
|
|
532
535
|
/** @description Folder name */
|
|
533
536
|
name: string;
|
|
@@ -601,13 +604,19 @@ export type components = {
|
|
|
601
604
|
};
|
|
602
605
|
/** FolderDTO */
|
|
603
606
|
FolderDTO: {
|
|
604
|
-
/**
|
|
607
|
+
/**
|
|
608
|
+
* Format: uuid
|
|
609
|
+
* @description UUID of the folder
|
|
610
|
+
*/
|
|
605
611
|
id: string;
|
|
606
612
|
/** @description Folder name */
|
|
607
613
|
name: string;
|
|
608
614
|
/** @description Folder status */
|
|
609
615
|
status: string;
|
|
610
|
-
/**
|
|
616
|
+
/**
|
|
617
|
+
* Format: uuid
|
|
618
|
+
* @description UUID of parent folder
|
|
619
|
+
*/
|
|
611
620
|
parentId?: string;
|
|
612
621
|
/** @description List of parent folders to resource */
|
|
613
622
|
breadcrumbs: components["schemas"]["BreadcrumbDTO"][];
|
|
@@ -748,7 +757,10 @@ export type components = {
|
|
|
748
757
|
};
|
|
749
758
|
/** ResourceDTO */
|
|
750
759
|
ResourceDTO: {
|
|
751
|
-
/**
|
|
760
|
+
/**
|
|
761
|
+
* Format: uuid
|
|
762
|
+
* @description Unique ID of the resource
|
|
763
|
+
*/
|
|
752
764
|
id: string;
|
|
753
765
|
/** @description Type of the resource. (Article, Learningpath) */
|
|
754
766
|
resourceType: components["schemas"]["ResourceType"];
|
package/package.json
CHANGED
|
@@ -32,6 +32,6 @@
|
|
|
32
32
|
"tsx": "^4.19.3",
|
|
33
33
|
"typescript": "^5.3.3"
|
|
34
34
|
},
|
|
35
|
-
"version": "1.0.
|
|
35
|
+
"version": "1.0.47",
|
|
36
36
|
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
37
37
|
}
|