@botpress/sdk 3.4.0 → 3.5.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.
@@ -173,6 +173,21 @@ export type FooBarBazBot = DefaultBot<{
173
173
  age: number;
174
174
  };
175
175
  };
176
+ workflows: {
177
+ fooWorkflow: {
178
+ tags: {
179
+ foo: string;
180
+ };
181
+ input: {
182
+ string: string;
183
+ optionalNumber?: number;
184
+ };
185
+ output: {
186
+ optionalString?: string;
187
+ number: number;
188
+ };
189
+ };
190
+ };
176
191
  }>;
177
192
  export type FooBarBazPlugin = DefaultPlugin<{
178
193
  integrations: {
@@ -191,6 +206,21 @@ export type FooBarBazPlugin = DefaultPlugin<{
191
206
  };
192
207
  };
193
208
  };
209
+ workflows: {
210
+ fooWorkflow: {
211
+ tags: {
212
+ foo: string;
213
+ };
214
+ input: {
215
+ string: string;
216
+ optionalNumber?: number;
217
+ };
218
+ output: {
219
+ optionalString?: string;
220
+ number: number;
221
+ };
222
+ };
223
+ };
194
224
  }>;
195
225
  export type EmptyBot = DefaultBot<{
196
226
  integrations: {};