@botpress/api 1.42.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 +83 -18
- package/dist/src/gen/admin/state.d.ts +20 -0
- package/dist/src/gen/files/state.d.ts +4 -0
- package/dist/src/gen/runtime/state.d.ts +4 -0
- package/dist/src/gen/state.d.ts +20 -0
- package/dist/src/gen/tables/state.d.ts +4 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +31 -6
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +7 -2
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +7 -2
- package/src/gen/state.ts +31 -6
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +7 -2
package/src/gen/files/state.ts
CHANGED
|
@@ -1868,7 +1868,7 @@ export const state = {
|
|
|
1868
1868
|
"title": "Botpress API",
|
|
1869
1869
|
"description": "API for Botpress Cloud",
|
|
1870
1870
|
"server": "https://api.botpress.cloud",
|
|
1871
|
-
"version": "1.
|
|
1871
|
+
"version": "1.43.0",
|
|
1872
1872
|
"prefix": "v1"
|
|
1873
1873
|
},
|
|
1874
1874
|
"errors": [
|
|
@@ -4113,6 +4113,10 @@ export const state = {
|
|
|
4113
4113
|
},
|
|
4114
4114
|
"handle": {
|
|
4115
4115
|
"type": "string"
|
|
4116
|
+
},
|
|
4117
|
+
"activeTrialId": {
|
|
4118
|
+
"type": "string",
|
|
4119
|
+
"nullable": true
|
|
4116
4120
|
}
|
|
4117
4121
|
},
|
|
4118
4122
|
"required": [
|
|
@@ -4125,7 +4129,8 @@ export const state = {
|
|
|
4125
4129
|
"billingVersion",
|
|
4126
4130
|
"plan",
|
|
4127
4131
|
"blocked",
|
|
4128
|
-
"spendingLimit"
|
|
4132
|
+
"spendingLimit",
|
|
4133
|
+
"activeTrialId"
|
|
4129
4134
|
],
|
|
4130
4135
|
"title": "updateWorkspaceResponse",
|
|
4131
4136
|
"additionalProperties": false
|