@botpress/api 1.41.0 → 1.43.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 +142 -18
- package/dist/src/gen/admin/state.d.ts +25 -0
- package/dist/src/gen/files/state.d.ts +9 -0
- package/dist/src/gen/runtime/state.d.ts +17 -0
- package/dist/src/gen/state.d.ts +33 -0
- package/dist/src/gen/tables/state.d.ts +9 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +38 -6
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +14 -2
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +26 -2
- package/src/gen/state.ts +50 -6
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +14 -2
package/src/gen/tables/state.ts
CHANGED
|
@@ -1216,7 +1216,7 @@ export const state = {
|
|
|
1216
1216
|
"title": "Botpress API",
|
|
1217
1217
|
"description": "API for Botpress Cloud",
|
|
1218
1218
|
"server": "https://api.botpress.cloud",
|
|
1219
|
-
"version": "1.
|
|
1219
|
+
"version": "1.43.0",
|
|
1220
1220
|
"prefix": "v1"
|
|
1221
1221
|
},
|
|
1222
1222
|
"errors": [
|
|
@@ -3468,6 +3468,10 @@ export const state = {
|
|
|
3468
3468
|
},
|
|
3469
3469
|
"handle": {
|
|
3470
3470
|
"type": "string"
|
|
3471
|
+
},
|
|
3472
|
+
"activeTrialId": {
|
|
3473
|
+
"type": "string",
|
|
3474
|
+
"nullable": true
|
|
3471
3475
|
}
|
|
3472
3476
|
},
|
|
3473
3477
|
"required": [
|
|
@@ -3480,7 +3484,8 @@ export const state = {
|
|
|
3480
3484
|
"billingVersion",
|
|
3481
3485
|
"plan",
|
|
3482
3486
|
"blocked",
|
|
3483
|
-
"spendingLimit"
|
|
3487
|
+
"spendingLimit",
|
|
3488
|
+
"activeTrialId"
|
|
3484
3489
|
],
|
|
3485
3490
|
"title": "updateWorkspaceResponse",
|
|
3486
3491
|
"additionalProperties": false
|
|
@@ -4046,6 +4051,13 @@ export const state = {
|
|
|
4046
4051
|
"type": "string"
|
|
4047
4052
|
},
|
|
4048
4053
|
"description": "Set of [Tags](/docs/developers/concepts/tags) that you can attach to a [Conversation](#schema_conversation). The set of [Tags](/docs/developers/concepts/tags) available on a [Conversation](#schema_conversation) is restricted by the list of [Tags](/docs/developers/concepts/tags) defined previously by the [Bot](#schema_bot). Individual keys can be unset by posting an empty value to them."
|
|
4054
|
+
},
|
|
4055
|
+
"origin": {
|
|
4056
|
+
"type": "string",
|
|
4057
|
+
"enum": [
|
|
4058
|
+
"synthetic"
|
|
4059
|
+
],
|
|
4060
|
+
"description": "Origin of the message (`synthetic`)."
|
|
4049
4061
|
}
|
|
4050
4062
|
},
|
|
4051
4063
|
"required": [
|