@ndla/types-backend 1.0.154 → 1.0.156
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 +6 -4
- package/build/taxonomy-api.d.ts +4 -0
- package/package.json +1 -1
package/build/myndla-api.d.ts
CHANGED
|
@@ -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
|
-
|
|
1130
|
-
|
|
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/build/taxonomy-api.d.ts
CHANGED
|
@@ -3563,6 +3563,8 @@ export interface operations {
|
|
|
3563
3563
|
value?: string;
|
|
3564
3564
|
/** @description Filter by context id. Beware: handled separately from other parameters! */
|
|
3565
3565
|
contextId?: string;
|
|
3566
|
+
/** @description Filter by context ids. Beware: handled separately from other parameters! */
|
|
3567
|
+
contextIds?: string[];
|
|
3566
3568
|
/** @description Filter contexts by visibility */
|
|
3567
3569
|
isVisible?: boolean;
|
|
3568
3570
|
/** @description Include all contexts */
|
|
@@ -3645,6 +3647,8 @@ export interface operations {
|
|
|
3645
3647
|
value?: string;
|
|
3646
3648
|
/** @description Filter by context id. Beware: handled separately from other parameters! */
|
|
3647
3649
|
contextId?: string;
|
|
3650
|
+
/** @description Filter by context ids. Beware: handled separately from other parameters! */
|
|
3651
|
+
contextIds?: string[];
|
|
3648
3652
|
/** @description Filter contexts by visibility */
|
|
3649
3653
|
isVisible?: boolean;
|
|
3650
3654
|
/** @description Include all contexts */
|