@ndla/types-backend 1.0.154 → 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.
@@ -1098,7 +1098,6 @@ export type components = {
1098
1098
  ResourceType: "article" | "audio" | "concept" | "image" | "learningpath" | "multidisciplinary" | "topic" | "video";
1099
1099
  /** RobotConfigurationDTO */
1100
1100
  RobotConfigurationDTO: {
1101
- title: string;
1102
1101
  version: string;
1103
1102
  settings: components["schemas"]["RobotSettingsDTO"];
1104
1103
  };
@@ -1126,16 +1125,19 @@ export type components = {
1126
1125
  */
1127
1126
  RobotSettingsDTO: {
1128
1127
  name: string;
1129
- systemprompt?: string;
1130
- question?: string;
1128
+ title: string;
1129
+ description?: string;
1130
+ systemprompt: string;
1131
+ question: string;
1131
1132
  temperature: string;
1132
1133
  model: string;
1134
+ voice: string;
1133
1135
  };
1134
1136
  /**
1135
1137
  * RobotStatus
1136
1138
  * @enum {string}
1137
1139
  */
1138
- RobotStatus: "PRIVATE" | "SHARED";
1140
+ RobotStatus: "PRIVATE" | "SHARED" | "PUBLIC" | "PUBLISHED";
1139
1141
  /**
1140
1142
  * SingleResourceStatsDTO
1141
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.154",
36
+ "version": "1.0.155",
37
37
  "packageManager": "yarn@4.10.3"
38
38
  }