@botpress/api 1.29.0 → 1.31.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.
- package/.turbo/turbo-openapi.log +5 -5
- package/dist/index.js +71 -15
- package/dist/src/gen/admin/state.d.ts +7 -0
- package/dist/src/gen/files/state.d.ts +7 -0
- package/dist/src/gen/runtime/state.d.ts +15 -0
- package/dist/src/gen/state.d.ts +15 -0
- package/dist/src/gen/tables/state.d.ts +7 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +11 -3
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +11 -3
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +19 -3
- package/src/gen/state.ts +19 -3
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +11 -3
package/src/gen/runtime/state.ts
CHANGED
|
@@ -2460,6 +2460,14 @@ export const state = {
|
|
|
2460
2460
|
"eventId": {
|
|
2461
2461
|
"type": "string",
|
|
2462
2462
|
"description": "Event id must be specified if the workflow is created with the status in_progress"
|
|
2463
|
+
},
|
|
2464
|
+
"discriminateByTags": {
|
|
2465
|
+
"type": "array",
|
|
2466
|
+
"items": {
|
|
2467
|
+
"type": "string",
|
|
2468
|
+
"maxLength": 500
|
|
2469
|
+
},
|
|
2470
|
+
"description": "Optional list of tag names to use for strict matching when looking up existing workflows. If provided, all specified tags must match exactly for a workflow to be considered a match. For example, with an existing workflow whose tags are {\"foo\": \"a\", \"bar\": \"b\", baz: \"c\"}: Without this parameter, ALL tags must match exactly. With [\"bar\",\"baz\"], all listed tags must match their values, and other tags are not considered."
|
|
2463
2471
|
}
|
|
2464
2472
|
},
|
|
2465
2473
|
"required": [
|
|
@@ -2602,7 +2610,7 @@ export const state = {
|
|
|
2602
2610
|
"title": "Botpress API",
|
|
2603
2611
|
"description": "API for Botpress Cloud",
|
|
2604
2612
|
"server": "https://api.botpress.cloud",
|
|
2605
|
-
"version": "1.
|
|
2613
|
+
"version": "1.31.0",
|
|
2606
2614
|
"prefix": "v1"
|
|
2607
2615
|
},
|
|
2608
2616
|
"errors": [
|
|
@@ -3015,11 +3023,19 @@ export const state = {
|
|
|
3015
3023
|
"type": "object",
|
|
3016
3024
|
"properties": {
|
|
3017
3025
|
"integrationId": {
|
|
3018
|
-
"type": "string"
|
|
3026
|
+
"type": "string",
|
|
3027
|
+
"minLength": 28,
|
|
3028
|
+
"maxLength": 36
|
|
3029
|
+
},
|
|
3030
|
+
"interfaceId": {
|
|
3031
|
+
"type": "string",
|
|
3032
|
+
"minLength": 28,
|
|
3033
|
+
"maxLength": 36
|
|
3019
3034
|
}
|
|
3020
3035
|
},
|
|
3021
3036
|
"required": [
|
|
3022
|
-
"integrationId"
|
|
3037
|
+
"integrationId",
|
|
3038
|
+
"interfaceId"
|
|
3023
3039
|
],
|
|
3024
3040
|
"additionalProperties": false
|
|
3025
3041
|
},
|
package/src/gen/state.ts
CHANGED
|
@@ -2460,6 +2460,14 @@ export const state = {
|
|
|
2460
2460
|
"eventId": {
|
|
2461
2461
|
"type": "string",
|
|
2462
2462
|
"description": "Event id must be specified if the workflow is created with the status in_progress"
|
|
2463
|
+
},
|
|
2464
|
+
"discriminateByTags": {
|
|
2465
|
+
"type": "array",
|
|
2466
|
+
"items": {
|
|
2467
|
+
"type": "string",
|
|
2468
|
+
"maxLength": 500
|
|
2469
|
+
},
|
|
2470
|
+
"description": "Optional list of tag names to use for strict matching when looking up existing workflows. If provided, all specified tags must match exactly for a workflow to be considered a match. For example, with an existing workflow whose tags are {\"foo\": \"a\", \"bar\": \"b\", baz: \"c\"}: Without this parameter, ALL tags must match exactly. With [\"bar\",\"baz\"], all listed tags must match their values, and other tags are not considered."
|
|
2463
2471
|
}
|
|
2464
2472
|
},
|
|
2465
2473
|
"required": [
|
|
@@ -19351,7 +19359,7 @@ export const state = {
|
|
|
19351
19359
|
"title": "Botpress API",
|
|
19352
19360
|
"description": "API for Botpress Cloud",
|
|
19353
19361
|
"server": "https://api.botpress.cloud",
|
|
19354
|
-
"version": "1.
|
|
19362
|
+
"version": "1.31.0",
|
|
19355
19363
|
"prefix": "v1"
|
|
19356
19364
|
},
|
|
19357
19365
|
"errors": [
|
|
@@ -19951,11 +19959,19 @@ export const state = {
|
|
|
19951
19959
|
"type": "object",
|
|
19952
19960
|
"properties": {
|
|
19953
19961
|
"integrationId": {
|
|
19954
|
-
"type": "string"
|
|
19962
|
+
"type": "string",
|
|
19963
|
+
"minLength": 28,
|
|
19964
|
+
"maxLength": 36
|
|
19965
|
+
},
|
|
19966
|
+
"interfaceId": {
|
|
19967
|
+
"type": "string",
|
|
19968
|
+
"minLength": 28,
|
|
19969
|
+
"maxLength": 36
|
|
19955
19970
|
}
|
|
19956
19971
|
},
|
|
19957
19972
|
"required": [
|
|
19958
|
-
"integrationId"
|
|
19973
|
+
"integrationId",
|
|
19974
|
+
"interfaceId"
|
|
19959
19975
|
],
|
|
19960
19976
|
"additionalProperties": false
|
|
19961
19977
|
},
|