@botpress/api 1.44.0 → 1.46.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 +6 -6
- package/dist/index.js +2137 -3621
- package/dist/src/gen/runtime/state.d.ts +5 -0
- package/dist/src/gen/state.d.ts +12 -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 +4 -2
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +9 -1
- package/src/gen/state.ts +19 -2
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +8 -1
package/src/gen/runtime/state.ts
CHANGED
|
@@ -2493,6 +2493,14 @@ export const state = {
|
|
|
2493
2493
|
"maxLength": 500
|
|
2494
2494
|
},
|
|
2495
2495
|
"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."
|
|
2496
|
+
},
|
|
2497
|
+
"discriminateByStatusGroup": {
|
|
2498
|
+
"type": "string",
|
|
2499
|
+
"enum": [
|
|
2500
|
+
"active",
|
|
2501
|
+
"finished"
|
|
2502
|
+
],
|
|
2503
|
+
"description": "When provided, will only match workflows whose status corresponds to the status group."
|
|
2496
2504
|
}
|
|
2497
2505
|
},
|
|
2498
2506
|
"required": [
|
|
@@ -2635,7 +2643,7 @@ export const state = {
|
|
|
2635
2643
|
"title": "Botpress API",
|
|
2636
2644
|
"description": "API for Botpress Cloud",
|
|
2637
2645
|
"server": "https://api.botpress.cloud",
|
|
2638
|
-
"version": "1.
|
|
2646
|
+
"version": "1.46.0",
|
|
2639
2647
|
"prefix": "v1"
|
|
2640
2648
|
},
|
|
2641
2649
|
"errors": [
|
package/src/gen/state.ts
CHANGED
|
@@ -2493,6 +2493,14 @@ export const state = {
|
|
|
2493
2493
|
"maxLength": 500
|
|
2494
2494
|
},
|
|
2495
2495
|
"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."
|
|
2496
|
+
},
|
|
2497
|
+
"discriminateByStatusGroup": {
|
|
2498
|
+
"type": "string",
|
|
2499
|
+
"enum": [
|
|
2500
|
+
"active",
|
|
2501
|
+
"finished"
|
|
2502
|
+
],
|
|
2503
|
+
"description": "When provided, will only match workflows whose status corresponds to the status group."
|
|
2496
2504
|
}
|
|
2497
2505
|
},
|
|
2498
2506
|
"required": [
|
|
@@ -10904,7 +10912,9 @@ export const state = {
|
|
|
10904
10912
|
"UPDATE_WORKSPACE",
|
|
10905
10913
|
"SET_SPENDING_LIMIT",
|
|
10906
10914
|
"SET_AI_SPENDING_LIMIT",
|
|
10907
|
-
"UPDATE_WORKSPACE_BILLING_READONLY"
|
|
10915
|
+
"UPDATE_WORKSPACE_BILLING_READONLY",
|
|
10916
|
+
"EXECUTE_AUTO_RECHARGE_SUCCESS",
|
|
10917
|
+
"EXECUTE_AUTO_RECHARGE_FAILED"
|
|
10908
10918
|
]
|
|
10909
10919
|
}
|
|
10910
10920
|
},
|
|
@@ -19361,6 +19371,13 @@ export const state = {
|
|
|
19361
19371
|
"maxLength": 1024,
|
|
19362
19372
|
"description": "Search term to apply to the row search. When using this parameter, some rows which doesn't match the search term will be returned, use the similarity field to know how much the row matches the search term. "
|
|
19363
19373
|
},
|
|
19374
|
+
"select": {
|
|
19375
|
+
"type": "array",
|
|
19376
|
+
"items": {
|
|
19377
|
+
"type": "string"
|
|
19378
|
+
},
|
|
19379
|
+
"description": "Specify which columns to return in the response. Supports both top-level columns (e.g., \"name\") and nested attributes using dot notation (e.g., \"attributes.price\"). System columns (id, createdAt, updatedAt, etc.) are always included. If omitted, all columns are returned."
|
|
19380
|
+
},
|
|
19364
19381
|
"orderBy": {
|
|
19365
19382
|
"default": "id",
|
|
19366
19383
|
"type": "string",
|
|
@@ -19731,7 +19748,7 @@ export const state = {
|
|
|
19731
19748
|
"title": "Botpress API",
|
|
19732
19749
|
"description": "API for Botpress Cloud",
|
|
19733
19750
|
"server": "https://api.botpress.cloud",
|
|
19734
|
-
"version": "1.
|
|
19751
|
+
"version": "1.46.0",
|
|
19735
19752
|
"prefix": "v1"
|
|
19736
19753
|
},
|
|
19737
19754
|
"errors": [
|