@epam/ai-dial-shared 0.37.0-rc.12 → 0.37.0-rc.13
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 +1 -1
- package/src/types/chat.d.ts +2 -2
package/package.json
CHANGED
package/src/types/chat.d.ts
CHANGED
|
@@ -134,7 +134,7 @@ export interface Playback {
|
|
|
134
134
|
isPlayback?: boolean;
|
|
135
135
|
messagesStack: Message[];
|
|
136
136
|
activePlaybackIndex: number;
|
|
137
|
-
customViewState?: Record<string,
|
|
137
|
+
customViewState?: Record<string, unknown>;
|
|
138
138
|
}
|
|
139
139
|
export interface Conversation extends ShareEntity, ConversationInfo {
|
|
140
140
|
messages: Message[];
|
|
@@ -146,5 +146,5 @@ export interface Conversation extends ShareEntity, ConversationInfo {
|
|
|
146
146
|
selectedAddons: string[];
|
|
147
147
|
assistantModelId?: string;
|
|
148
148
|
isMessageStreaming?: boolean;
|
|
149
|
-
customViewState?: Record<string,
|
|
149
|
+
customViewState?: Record<string, unknown>;
|
|
150
150
|
}
|