@epam/ai-dial-shared 0.40.0-rc.52 → 0.40.0-rc.53
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/index.esm.js +1 -0
- package/package.json +1 -1
- package/src/types/chat.d.ts +1 -0
- package/src/types/features.d.ts +1 -0
package/index.esm.js
CHANGED
|
@@ -18,6 +18,7 @@ var Feature;
|
|
|
18
18
|
Feature["DisallowChangeAgent"] = "disallow-change-agent";
|
|
19
19
|
// Conversation functions
|
|
20
20
|
Feature["Likes"] = "likes";
|
|
21
|
+
Feature["DislikeComment"] = "dislike-comment";
|
|
21
22
|
Feature["InputFiles"] = "input-files";
|
|
22
23
|
Feature["InputLinks"] = "input-links";
|
|
23
24
|
Feature["MessageTemplates"] = "message-templates";
|
package/package.json
CHANGED
package/src/types/chat.d.ts
CHANGED
package/src/types/features.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export declare enum Feature {
|
|
|
14
14
|
HideTopContextMenu = "hide-top-context-menu",// Hide top context menu button
|
|
15
15
|
DisallowChangeAgent = "disallow-change-agent",// Disallow "Change agent" button
|
|
16
16
|
Likes = "likes",// Display likes
|
|
17
|
+
DislikeComment = "dislike-comment",// Enable adding comment when disliking a message
|
|
17
18
|
InputFiles = "input-files",// Allow attach files to conversation
|
|
18
19
|
InputLinks = "input-links",// Allow attach links to conversation
|
|
19
20
|
MessageTemplates = "message-templates",// message templates
|