@botpress/api 0.45.0 → 0.45.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.
- package/dist/index.js +198 -1406
- package/dist/src/gen/state.d.ts +4 -0
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +19 -8
package/src/gen/state.ts
CHANGED
|
@@ -2193,7 +2193,8 @@ export const state = {
|
|
|
2193
2193
|
"cancelled",
|
|
2194
2194
|
"listening",
|
|
2195
2195
|
"paused",
|
|
2196
|
-
"failed"
|
|
2196
|
+
"failed",
|
|
2197
|
+
"in_progress"
|
|
2197
2198
|
],
|
|
2198
2199
|
"description": "Status of the workflow"
|
|
2199
2200
|
},
|
|
@@ -2212,6 +2213,10 @@ export const state = {
|
|
|
2212
2213
|
"userId": {
|
|
2213
2214
|
"type": "string",
|
|
2214
2215
|
"description": "Specific user related to this workflow"
|
|
2216
|
+
},
|
|
2217
|
+
"eventId": {
|
|
2218
|
+
"type": "string",
|
|
2219
|
+
"description": "Event id must be specified if the workflow is updated with the status in_progress"
|
|
2215
2220
|
}
|
|
2216
2221
|
},
|
|
2217
2222
|
"title": "updateWorkflowBody",
|
|
@@ -3210,7 +3215,8 @@ export const state = {
|
|
|
3210
3215
|
}
|
|
3211
3216
|
},
|
|
3212
3217
|
"required": [
|
|
3213
|
-
"identifier"
|
|
3218
|
+
"identifier",
|
|
3219
|
+
"schema"
|
|
3214
3220
|
],
|
|
3215
3221
|
"description": "Configuration definition",
|
|
3216
3222
|
"additionalProperties": false
|
|
@@ -3254,7 +3260,8 @@ export const state = {
|
|
|
3254
3260
|
}
|
|
3255
3261
|
},
|
|
3256
3262
|
"required": [
|
|
3257
|
-
"identifier"
|
|
3263
|
+
"identifier",
|
|
3264
|
+
"schema"
|
|
3258
3265
|
],
|
|
3259
3266
|
"description": "Configuration definition",
|
|
3260
3267
|
"additionalProperties": false
|
|
@@ -3886,7 +3893,8 @@ export const state = {
|
|
|
3886
3893
|
}
|
|
3887
3894
|
},
|
|
3888
3895
|
"required": [
|
|
3889
|
-
"identifier"
|
|
3896
|
+
"identifier",
|
|
3897
|
+
"schema"
|
|
3890
3898
|
],
|
|
3891
3899
|
"description": "Configuration definition",
|
|
3892
3900
|
"additionalProperties": false
|
|
@@ -3930,7 +3938,8 @@ export const state = {
|
|
|
3930
3938
|
}
|
|
3931
3939
|
},
|
|
3932
3940
|
"required": [
|
|
3933
|
-
"identifier"
|
|
3941
|
+
"identifier",
|
|
3942
|
+
"schema"
|
|
3934
3943
|
],
|
|
3935
3944
|
"description": "Configuration definition",
|
|
3936
3945
|
"additionalProperties": false
|
|
@@ -12332,7 +12341,7 @@ export const state = {
|
|
|
12332
12341
|
"title": "Botpress API",
|
|
12333
12342
|
"description": "API for Botpress Cloud",
|
|
12334
12343
|
"server": "https://api.botpress.cloud",
|
|
12335
|
-
"version": "0.45.
|
|
12344
|
+
"version": "0.45.2",
|
|
12336
12345
|
"prefix": "v1"
|
|
12337
12346
|
},
|
|
12338
12347
|
"errors": [
|
|
@@ -13392,7 +13401,8 @@ export const state = {
|
|
|
13392
13401
|
}
|
|
13393
13402
|
},
|
|
13394
13403
|
"required": [
|
|
13395
|
-
"identifier"
|
|
13404
|
+
"identifier",
|
|
13405
|
+
"schema"
|
|
13396
13406
|
],
|
|
13397
13407
|
"description": "Configuration definition",
|
|
13398
13408
|
"additionalProperties": false
|
|
@@ -13436,7 +13446,8 @@ export const state = {
|
|
|
13436
13446
|
}
|
|
13437
13447
|
},
|
|
13438
13448
|
"required": [
|
|
13439
|
-
"identifier"
|
|
13449
|
+
"identifier",
|
|
13450
|
+
"schema"
|
|
13440
13451
|
],
|
|
13441
13452
|
"description": "Configuration definition",
|
|
13442
13453
|
"additionalProperties": false
|