@botpress/api 0.38.2 → 0.38.3
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/dist/index.js +11 -1
- package/dist/src/gen/state.d.ts +8 -0
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +11 -1
package/dist/index.js
CHANGED
|
@@ -293780,7 +293780,7 @@ var state = {
|
|
|
293780
293780
|
"title": "Botpress API",
|
|
293781
293781
|
"description": "API for Botpress Cloud",
|
|
293782
293782
|
"server": "https://api.botpress.cloud",
|
|
293783
|
-
"version": "0.38.
|
|
293783
|
+
"version": "0.38.3",
|
|
293784
293784
|
"prefix": "v1"
|
|
293785
293785
|
},
|
|
293786
293786
|
"errors": [
|
|
@@ -296243,6 +296243,7 @@ var state = {
|
|
|
296243
296243
|
"type": "string",
|
|
296244
296244
|
"enum": [
|
|
296245
296245
|
"ai",
|
|
296246
|
+
"code",
|
|
296246
296247
|
"workflow"
|
|
296247
296248
|
]
|
|
296248
296249
|
},
|
|
@@ -296257,6 +296258,10 @@ var state = {
|
|
|
296257
296258
|
"type": "string",
|
|
296258
296259
|
"description": 'Prompt when action is "ai"'
|
|
296259
296260
|
},
|
|
296261
|
+
"code": {
|
|
296262
|
+
"type": "string",
|
|
296263
|
+
"description": 'Code to execute when action is "code"'
|
|
296264
|
+
},
|
|
296260
296265
|
"model": {
|
|
296261
296266
|
"default": "gpt-4o",
|
|
296262
296267
|
"type": "string",
|
|
@@ -296400,6 +296405,7 @@ var state = {
|
|
|
296400
296405
|
"type": "string",
|
|
296401
296406
|
"enum": [
|
|
296402
296407
|
"ai",
|
|
296408
|
+
"code",
|
|
296403
296409
|
"workflow"
|
|
296404
296410
|
]
|
|
296405
296411
|
},
|
|
@@ -296414,6 +296420,10 @@ var state = {
|
|
|
296414
296420
|
"type": "string",
|
|
296415
296421
|
"description": 'Prompt when action is "ai"'
|
|
296416
296422
|
},
|
|
296423
|
+
"code": {
|
|
296424
|
+
"type": "string",
|
|
296425
|
+
"description": 'Code to execute when action is "code"'
|
|
296426
|
+
},
|
|
296417
296427
|
"model": {
|
|
296418
296428
|
"default": "gpt-4o",
|
|
296419
296429
|
"type": "string",
|
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -11870,6 +11870,10 @@ export declare const state: {
|
|
|
11870
11870
|
type: "string";
|
|
11871
11871
|
description: string;
|
|
11872
11872
|
};
|
|
11873
|
+
code: {
|
|
11874
|
+
type: "string";
|
|
11875
|
+
description: string;
|
|
11876
|
+
};
|
|
11873
11877
|
model: {
|
|
11874
11878
|
default: string;
|
|
11875
11879
|
type: "string";
|
|
@@ -11998,6 +12002,10 @@ export declare const state: {
|
|
|
11998
12002
|
type: "string";
|
|
11999
12003
|
description: string;
|
|
12000
12004
|
};
|
|
12005
|
+
code: {
|
|
12006
|
+
type: "string";
|
|
12007
|
+
description: string;
|
|
12008
|
+
};
|
|
12001
12009
|
model: {
|
|
12002
12010
|
default: string;
|
|
12003
12011
|
type: "string";
|