@epam/ai-dial-shared 0.45.0-rc.2 → 0.45.0-rc.20
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/features.d.ts +2 -1
package/index.esm.js
CHANGED
|
@@ -63,6 +63,7 @@ var Feature;
|
|
|
63
63
|
Feature["HideUserMenu"] = "hide-user-menu";
|
|
64
64
|
// Applications
|
|
65
65
|
Feature["CustomApplications"] = "custom-applications";
|
|
66
|
+
Feature["HideCustomAppCreation"] = "hide-custom-app-creation";
|
|
66
67
|
Feature["CodeApps"] = "code-apps";
|
|
67
68
|
Feature["CodeInterpreter"] = "code-interpreter";
|
|
68
69
|
// Marketplace
|
package/package.json
CHANGED
package/src/types/features.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export declare enum Feature {
|
|
|
21
21
|
InputFiles = "input-files",// Allow attach files to conversation
|
|
22
22
|
InputLinks = "input-links",// Allow attach links to conversation
|
|
23
23
|
MessageTemplates = "message-templates",// message templates
|
|
24
|
-
LiveChatInteraction = "live-chat-interaction"
|
|
24
|
+
LiveChatInteraction = "live-chat-interaction",// Enable interactive tool login flow during chat completion when agent tools are logged out
|
|
25
25
|
EditLastAssistantContent = "edit-last-assistant-message",// allow edit last assistant message only
|
|
26
26
|
EditAllAssistantContent = "edit-all-assistant-message",// allow edit all assistant messages
|
|
27
27
|
HideEditUserMessage = "hide-edit-user-message",// Hide editing button of user message
|
|
@@ -45,6 +45,7 @@ export declare enum Feature {
|
|
|
45
45
|
CustomLogo = "custom-logo",// Enable setting for custom logo feature
|
|
46
46
|
HideUserMenu = "hide-user-menu",// Hide user menu button from top header
|
|
47
47
|
CustomApplications = "custom-applications",// Enable creating of applications ('Add app' button/menu)
|
|
48
|
+
HideCustomAppCreation = "hide-custom-app-creation",// Hide "Custom app" option in 'Add app' button/menu
|
|
48
49
|
CodeApps = "code-apps",// Enable creating of Code apps (into the 'Add app' menu)
|
|
49
50
|
CodeInterpreter = "code-interpreter",// Enable Code Interpreter feature
|
|
50
51
|
Marketplace = "marketplace",// Enable Marketplace
|