@epam/ai-dial-shared 0.31.0-rc.39 → 0.31.0-rc.4

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
@@ -41,6 +41,7 @@ var Feature;
41
41
  Feature["CustomLogo"] = "custom-logo";
42
42
  // Applications
43
43
  Feature["CustomApplications"] = "custom-applications";
44
+ Feature["QuickApps"] = "quick-apps";
44
45
  Feature["CodeApps"] = "code-apps";
45
46
  // Marketplace
46
47
  Feature["Marketplace"] = "marketplace";
@@ -194,16 +195,12 @@ const overlayAppName = '@DIAL_OVERLAY';
194
195
  var OverlayRequests;
195
196
  (function (OverlayRequests) {
196
197
  OverlayRequests["getMessages"] = "GET_MESSAGES";
197
- OverlayRequests["sendMessage"] = "SEND_MESSAGE";
198
- OverlayRequests["setSystemPrompt"] = "SET_SYSTEM_PROMPT";
199
- OverlayRequests["setOverlayOptions"] = "SET_OVERLAY_OPTIONS";
200
198
  OverlayRequests["getConversations"] = "GET_CONVERSATIONS";
201
199
  OverlayRequests["selectConversation"] = "SELECT_CONVERSATION";
202
200
  OverlayRequests["createConversation"] = "CREATE_CONVERSATION";
203
- OverlayRequests["deleteConversation"] = "DELETE_CONVERSATION";
204
- OverlayRequests["renameConversation"] = "RENAME_CONVERSATION";
205
- OverlayRequests["createPlaybackConversation"] = "CREATE_PLAYBACK_CONVERSATION";
206
- OverlayRequests["exportConversation"] = "EXPORT_CONVERSATION";
201
+ OverlayRequests["setOverlayOptions"] = "SET_OVERLAY_OPTIONS";
202
+ OverlayRequests["setSystemPrompt"] = "SET_SYSTEM_PROMPT";
203
+ OverlayRequests["sendMessage"] = "SEND_MESSAGE";
207
204
  })(OverlayRequests || (OverlayRequests = {}));
208
205
  var OverlayEvents;
209
206
  (function (OverlayEvents) {
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.31.0-rc.39",
5
+ "version": "0.31.0-rc.4",
6
6
  "dependencies": {},
7
7
  "type": "module",
8
8
  "bugs": {
@@ -1,16 +1,12 @@
1
1
  export declare const overlayAppName = "@DIAL_OVERLAY";
2
2
  export declare enum OverlayRequests {
3
3
  getMessages = "GET_MESSAGES",
4
- sendMessage = "SEND_MESSAGE",
5
- setSystemPrompt = "SET_SYSTEM_PROMPT",
6
- setOverlayOptions = "SET_OVERLAY_OPTIONS",
7
4
  getConversations = "GET_CONVERSATIONS",
8
5
  selectConversation = "SELECT_CONVERSATION",
9
6
  createConversation = "CREATE_CONVERSATION",
10
- deleteConversation = "DELETE_CONVERSATION",
11
- renameConversation = "RENAME_CONVERSATION",
12
- createPlaybackConversation = "CREATE_PLAYBACK_CONVERSATION",
13
- exportConversation = "EXPORT_CONVERSATION"
7
+ setOverlayOptions = "SET_OVERLAY_OPTIONS",
8
+ setSystemPrompt = "SET_SYSTEM_PROMPT",
9
+ sendMessage = "SEND_MESSAGE"
14
10
  }
15
11
  export declare enum OverlayEvents {
16
12
  /**
@@ -30,6 +30,7 @@ export declare enum Feature {
30
30
  HideUserSettings = "hide-user-settings",// Hide user settings
31
31
  CustomLogo = "custom-logo",// Enable setting for custom logo feature
32
32
  CustomApplications = "custom-applications",// custom applications
33
+ QuickApps = "quick-apps",// Enable Quick apps
33
34
  CodeApps = "code-apps",// Enable Code apps
34
35
  Marketplace = "marketplace",// Enable Marketplace
35
36
  MarketplaceTableView = "marketplace-table-view"
@@ -21,6 +21,5 @@ export interface ChatOverlayOptions {
21
21
  interface OverlaySignInOptions {
22
22
  autoSignIn: boolean;
23
23
  signInProvider?: string;
24
- signInInNewWindow?: boolean;
25
24
  }
26
25
  export {};
@@ -10,16 +10,3 @@ export interface CreateConversationRequest {
10
10
  export interface SelectConversationRequest {
11
11
  id: string;
12
12
  }
13
- export interface DeleteConversationRequest {
14
- id: string;
15
- }
16
- export interface RenameConversationRequest {
17
- id: string;
18
- newName: string;
19
- }
20
- export interface CreatePlaybackConversationRequest {
21
- id: string;
22
- }
23
- export interface ExportConversationRequest {
24
- id: string;
25
- }
@@ -14,12 +14,3 @@ export interface CreateConversationResponse {
14
14
  export interface SelectConversationResponse {
15
15
  conversation: OverlayConversation;
16
16
  }
17
- export interface RenameConversationResponse {
18
- conversation: OverlayConversation;
19
- }
20
- export interface CreatePlaybackConversationResponse {
21
- conversation: OverlayConversation;
22
- }
23
- export interface ExportConversationResponse {
24
- conversation: OverlayConversation;
25
- }