@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.
- package/build/myndla-api.d.ts +8 -4
- 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: {
|
|
@@ -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
|
-
|
|
1128
|
-
|
|
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
|