@epam/ai-dial-shared 0.26.0-rc.8 → 0.26.0

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 CHANGED
@@ -31,6 +31,7 @@ var Feature;
31
31
  Feature["CodeApps"] = "code-apps";
32
32
  Feature["DisallowChangeAgent"] = "disallow-change-agent";
33
33
  Feature["MarketplaceTableView"] = "marketplace-table-view";
34
+ Feature["HideUserSettings"] = "hide-user-settings";
34
35
  })(Feature || (Feature = {}));
35
36
  const availableFeatures = {
36
37
  [Feature.ConversationsSection]: true,
@@ -64,6 +65,7 @@ const availableFeatures = {
64
65
  [Feature.CodeApps]: true,
65
66
  [Feature.DisallowChangeAgent]: true,
66
67
  [Feature.MarketplaceTableView]: true,
68
+ [Feature.HideUserSettings]: true,
67
69
  };
68
70
 
69
71
  var Role;
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.26.0-rc.8",
5
+ "version": "0.26.0",
6
6
  "dependencies": {},
7
7
  "type": "module",
8
8
  "bugs": {
@@ -29,6 +29,7 @@ export declare enum Feature {
29
29
  QuickApps = "quick-apps",
30
30
  CodeApps = "code-apps",
31
31
  DisallowChangeAgent = "disallow-change-agent",
32
- MarketplaceTableView = "marketplace-table-view"
32
+ MarketplaceTableView = "marketplace-table-view",
33
+ HideUserSettings = "hide-user-settings"
33
34
  }
34
35
  export declare const availableFeatures: Record<Feature, boolean>;
@@ -7,6 +7,7 @@ export interface ChatOverlayOptions {
7
7
  theme?: string;
8
8
  modelId?: string;
9
9
  overlayConversationId?: string;
10
+ newConversationsFolderId?: string;
10
11
  enabledFeatures?: Feature[] | string;
11
12
  requestTimeout?: number;
12
13
  loaderStyles?: Styles;