@epam/ai-dial-shared 0.36.0-rc.18 → 0.36.0-rc.19
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 -0
package/package.json
CHANGED
package/src/types/chat.d.ts
CHANGED
|
@@ -133,6 +133,7 @@ export interface Playback {
|
|
|
133
133
|
isPlayback?: boolean;
|
|
134
134
|
messagesStack: Message[];
|
|
135
135
|
activePlaybackIndex: number;
|
|
136
|
+
customViewState?: Record<string, any>;
|
|
136
137
|
}
|
|
137
138
|
export interface Conversation extends ShareEntity, ConversationInfo {
|
|
138
139
|
messages: Message[];
|
|
@@ -144,4 +145,5 @@ export interface Conversation extends ShareEntity, ConversationInfo {
|
|
|
144
145
|
selectedAddons: string[];
|
|
145
146
|
assistantModelId?: string;
|
|
146
147
|
isMessageStreaming?: boolean;
|
|
148
|
+
customViewState?: Record<string, any>;
|
|
147
149
|
}
|