@botonic/plugin-flow-builder 0.51.0 → 0.51.1-alpha.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.
@@ -13,6 +13,7 @@ export interface HtFlowBuilderData {
13
13
  flows: HtFlows[];
14
14
  webviews: HtFlowWebview[];
15
15
  campaigns: HtCampaign[];
16
+ bot_variable_definitions: HtBotVariableDefinition[];
16
17
  }
17
18
  export interface HtFlows {
18
19
  id: string;
@@ -29,6 +30,11 @@ export interface HtCampaign {
29
30
  name: string;
30
31
  start_node_id: string;
31
32
  }
33
+ export interface HtBotVariableDefinition {
34
+ key_path: string;
35
+ is_from_bot_config: boolean;
36
+ type?: string;
37
+ }
32
38
  export interface HtNodeLink {
33
39
  id: string;
34
40
  type: HtNodeWithContentType | HtNodeWithoutContentType;
@@ -13,6 +13,7 @@ export interface HtFlowBuilderData {
13
13
  flows: HtFlows[];
14
14
  webviews: HtFlowWebview[];
15
15
  campaigns: HtCampaign[];
16
+ bot_variable_definitions: HtBotVariableDefinition[];
16
17
  }
17
18
  export interface HtFlows {
18
19
  id: string;
@@ -29,6 +30,11 @@ export interface HtCampaign {
29
30
  name: string;
30
31
  start_node_id: string;
31
32
  }
33
+ export interface HtBotVariableDefinition {
34
+ key_path: string;
35
+ is_from_bot_config: boolean;
36
+ type?: string;
37
+ }
32
38
  export interface HtNodeLink {
33
39
  id: string;
34
40
  type: HtNodeWithContentType | HtNodeWithoutContentType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botonic/plugin-flow-builder",
3
- "version": "0.51.0",
3
+ "version": "0.51.1-alpha.0",
4
4
  "main": "./lib/cjs/index.js",
5
5
  "module": "./lib/esm/index.js",
6
6
  "description": "Use Flow Builder to show your contents",
@@ -17,6 +17,7 @@ export interface HtFlowBuilderData {
17
17
  flows: HtFlows[]
18
18
  webviews: HtFlowWebview[]
19
19
  campaigns: HtCampaign[]
20
+ bot_variable_definitions: HtBotVariableDefinition[]
20
21
  }
21
22
 
22
23
  export interface HtFlows {
@@ -37,6 +38,12 @@ export interface HtCampaign {
37
38
  start_node_id: string
38
39
  }
39
40
 
41
+ export interface HtBotVariableDefinition {
42
+ key_path: string
43
+ is_from_bot_config: boolean
44
+ type?: string
45
+ }
46
+
40
47
  export interface HtNodeLink {
41
48
  id: string
42
49
  type: HtNodeWithContentType | HtNodeWithoutContentType