@botonic/core 0.44.0-alpha.0 → 0.44.0-alpha.2

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.
@@ -86,7 +86,7 @@ export interface Input {
86
86
  type: InputType;
87
87
  context?: {
88
88
  campaign?: Campaign;
89
- campaign_v2?: CampaignV2;
89
+ campaigns_v2?: CampaignV2[];
90
90
  salesforce?: {
91
91
  access_token: string;
92
92
  };
@@ -86,7 +86,7 @@ export interface Input {
86
86
  type: InputType;
87
87
  context?: {
88
88
  campaign?: Campaign;
89
- campaign_v2?: CampaignV2;
89
+ campaigns_v2?: CampaignV2[];
90
90
  salesforce?: {
91
91
  access_token: string;
92
92
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botonic/core",
3
- "version": "0.44.0-alpha.0",
3
+ "version": "0.44.0-alpha.2",
4
4
  "license": "MIT",
5
5
  "description": "Build Chatbots using React",
6
6
  "main": "./lib/cjs/index.js",
@@ -143,7 +143,7 @@ export interface Input {
143
143
  type: InputType
144
144
  context?: {
145
145
  campaign?: Campaign
146
- campaign_v2?: CampaignV2
146
+ campaigns_v2?: CampaignV2[]
147
147
  salesforce?: {
148
148
  access_token: string
149
149
  }