@epam/ai-dial-shared 0.39.0-rc.12 → 0.39.0-rc.14

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@epam/ai-dial-shared",
3
3
  "description": "Shared elements that support developing DIAL",
4
4
  "homepage": "https://epam-rail.com",
5
- "version": "0.39.0-rc.12",
5
+ "version": "0.39.0-rc.14",
6
6
  "dependencies": {},
7
7
  "type": "module",
8
8
  "bugs": {
@@ -31,8 +31,10 @@ export declare enum LikeState {
31
31
  export interface MessageSettings {
32
32
  prompt: string;
33
33
  temperature: number;
34
- selectedAddons: string[];
35
- assistantModelId?: string;
34
+ /**
35
+ * @deprecated but required by core validation
36
+ */
37
+ selectedAddons?: string[];
36
38
  }
37
39
  export interface ConversationEntityModel {
38
40
  id: string;
@@ -139,11 +141,13 @@ export interface Conversation extends ShareEntity, ConversationInfo {
139
141
  messages: Message[];
140
142
  prompt: string;
141
143
  temperature: number;
144
+ /**
145
+ * @deprecated but required by core validation
146
+ */
147
+ selectedAddons?: string[];
142
148
  reference?: string;
143
149
  replay?: Replay;
144
150
  playback?: Playback;
145
- selectedAddons: string[];
146
- assistantModelId?: string;
147
151
  isMessageStreaming?: boolean;
148
152
  customViewState?: Record<string, unknown>;
149
153
  }