@botonic/core 0.42.0-alpha.0 → 0.42.0-alpha.1

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.
@@ -35,6 +35,7 @@ export interface HtBaseEventAllFlowProps extends HtBaseEventProps {
35
35
  flowName: string;
36
36
  flowNodeId: string;
37
37
  flowNodeContentId: string;
38
+ flowNodeIsMeaningful: boolean;
38
39
  }
39
40
  export interface EventFeedback extends HtBaseEventProps {
40
41
  action: EventAction.FeedbackCase | EventAction.FeedbackConversation | EventAction.FeedbackMessage | EventAction.FeedbackWebview;
@@ -160,7 +161,6 @@ export interface EventWebviewActionTriggered extends HtBaseEventAllFlowProps {
160
161
  }
161
162
  export interface EventAiAgent extends HtBaseEventAllFlowProps {
162
163
  action: EventAction.AiAgent;
163
- flowNodeIsMeaningful: boolean;
164
164
  toolsExecuted: ToolExecution[];
165
165
  inputMessageId: string;
166
166
  memoryLength: number;
@@ -35,6 +35,7 @@ export interface HtBaseEventAllFlowProps extends HtBaseEventProps {
35
35
  flowName: string;
36
36
  flowNodeId: string;
37
37
  flowNodeContentId: string;
38
+ flowNodeIsMeaningful: boolean;
38
39
  }
39
40
  export interface EventFeedback extends HtBaseEventProps {
40
41
  action: EventAction.FeedbackCase | EventAction.FeedbackConversation | EventAction.FeedbackMessage | EventAction.FeedbackWebview;
@@ -160,7 +161,6 @@ export interface EventWebviewActionTriggered extends HtBaseEventAllFlowProps {
160
161
  }
161
162
  export interface EventAiAgent extends HtBaseEventAllFlowProps {
162
163
  action: EventAction.AiAgent;
163
- flowNodeIsMeaningful: boolean;
164
164
  toolsExecuted: ToolExecution[];
165
165
  inputMessageId: string;
166
166
  memoryLength: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botonic/core",
3
- "version": "0.42.0-alpha.0",
3
+ "version": "0.42.0-alpha.1",
4
4
  "license": "MIT",
5
5
  "description": "Build Chatbots using React",
6
6
  "main": "./lib/cjs/index.js",
@@ -39,6 +39,7 @@ export interface HtBaseEventAllFlowProps extends HtBaseEventProps {
39
39
  flowName: string
40
40
  flowNodeId: string
41
41
  flowNodeContentId: string
42
+ flowNodeIsMeaningful: boolean
42
43
  }
43
44
 
44
45
  export interface EventFeedback extends HtBaseEventProps {
@@ -183,7 +184,6 @@ export interface EventWebviewActionTriggered extends HtBaseEventAllFlowProps {
183
184
 
184
185
  export interface EventAiAgent extends HtBaseEventAllFlowProps {
185
186
  action: EventAction.AiAgent
186
- flowNodeIsMeaningful: boolean
187
187
  toolsExecuted: ToolExecution[]
188
188
  inputMessageId: string
189
189
  memoryLength: number