@ndla/types-backend 1.0.153 → 1.0.155

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.
@@ -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: {
@@ -1096,7 +1098,6 @@ export type components = {
1096
1098
  ResourceType: "article" | "audio" | "concept" | "image" | "learningpath" | "multidisciplinary" | "topic" | "video";
1097
1099
  /** RobotConfigurationDTO */
1098
1100
  RobotConfigurationDTO: {
1099
- title: string;
1100
1101
  version: string;
1101
1102
  settings: components["schemas"]["RobotSettingsDTO"];
1102
1103
  };
@@ -1124,16 +1125,19 @@ export type components = {
1124
1125
  */
1125
1126
  RobotSettingsDTO: {
1126
1127
  name: string;
1127
- systemprompt?: string;
1128
- question?: string;
1128
+ title: string;
1129
+ description?: string;
1130
+ systemprompt: string;
1131
+ question: string;
1129
1132
  temperature: string;
1130
1133
  model: string;
1134
+ voice: string;
1131
1135
  };
1132
1136
  /**
1133
1137
  * RobotStatus
1134
1138
  * @enum {string}
1135
1139
  */
1136
- RobotStatus: "PRIVATE" | "SHARED";
1140
+ RobotStatus: "PRIVATE" | "SHARED" | "PUBLIC" | "PUBLISHED";
1137
1141
  /**
1138
1142
  * SingleResourceStatsDTO
1139
1143
  * @description Stats for single resource
package/package.json CHANGED
@@ -33,6 +33,6 @@
33
33
  "tsx": "^4.21.0",
34
34
  "typescript": "^5.9.3"
35
35
  },
36
- "version": "1.0.153",
36
+ "version": "1.0.155",
37
37
  "packageManager": "yarn@4.10.3"
38
38
  }