@epam/ai-dial-shared 0.40.0-rc.5 → 0.40.0-rc.51

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
@@ -329,6 +329,9 @@ var VisualizerConnectorEvents;
329
329
  VisualizerConnectorEvents["ready"] = "READY";
330
330
  VisualizerConnectorEvents["readyToInteract"] = "READY_TO_INTERACT";
331
331
  VisualizerConnectorEvents["sendMessage"] = "SEND_MESSAGE";
332
+ VisualizerConnectorEvents["createdConversationSuccess"] = "CREATED_CONVERSATION_SUCCESS";
333
+ VisualizerConnectorEvents["updatedConversationSuccess"] = "UPDATED_CONVERSATION_SUCCESS";
334
+ VisualizerConnectorEvents["updatedApplicationSuccess"] = "UPDATED_APPLICATION_SUCCESS";
332
335
  })(VisualizerConnectorEvents || (VisualizerConnectorEvents = {}));
333
336
  var VisualizerConnectorRequests;
334
337
  (function (VisualizerConnectorRequests) {
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://dialx.ai",
5
- "version": "0.40.0-rc.5",
5
+ "version": "0.40.0-rc.51",
6
6
  "dependencies": {},
7
7
  "type": "module",
8
8
  "bugs": {
@@ -3,7 +3,10 @@ export declare enum VisualizerConnectorEvents {
3
3
  initReady = "INIT_READY",
4
4
  ready = "READY",
5
5
  readyToInteract = "READY_TO_INTERACT",
6
- sendMessage = "SEND_MESSAGE"
6
+ sendMessage = "SEND_MESSAGE",
7
+ createdConversationSuccess = "CREATED_CONVERSATION_SUCCESS",
8
+ updatedConversationSuccess = "UPDATED_CONVERSATION_SUCCESS",
9
+ updatedApplicationSuccess = "UPDATED_APPLICATION_SUCCESS"
7
10
  }
8
11
  export declare enum VisualizerConnectorRequests {
9
12
  sendVisualizeData = "SEND_VISUALIZE_DATA",