@botpress/api 1.42.0 → 1.44.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 +579 -351
- package/dist/src/gen/admin/state.d.ts +73 -0
- package/dist/src/gen/files/state.d.ts +32 -0
- package/dist/src/gen/runtime/state.d.ts +32 -0
- package/dist/src/gen/state.d.ts +73 -0
- package/dist/src/gen/tables/state.d.ts +32 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +91 -6
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +39 -2
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +39 -2
- package/src/gen/state.ts +91 -6
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +39 -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.44.0",
|
|
1872
1872
|
"prefix": "v1"
|
|
1873
1873
|
},
|
|
1874
1874
|
"errors": [
|
|
@@ -2249,6 +2249,14 @@ export const state = {
|
|
|
2249
2249
|
"minLength": 28,
|
|
2250
2250
|
"maxLength": 36
|
|
2251
2251
|
},
|
|
2252
|
+
"integrationAlias": {
|
|
2253
|
+
"type": "string",
|
|
2254
|
+
"maxLength": 200
|
|
2255
|
+
},
|
|
2256
|
+
"integrationInterfaceAlias": {
|
|
2257
|
+
"type": "string",
|
|
2258
|
+
"maxLength": 200
|
|
2259
|
+
},
|
|
2252
2260
|
"interfaceId": {
|
|
2253
2261
|
"type": "string",
|
|
2254
2262
|
"minLength": 28,
|
|
@@ -2257,12 +2265,36 @@ export const state = {
|
|
|
2257
2265
|
},
|
|
2258
2266
|
"required": [
|
|
2259
2267
|
"integrationId",
|
|
2268
|
+
"integrationAlias",
|
|
2260
2269
|
"interfaceId"
|
|
2261
2270
|
],
|
|
2262
2271
|
"additionalProperties": false
|
|
2263
2272
|
},
|
|
2264
2273
|
"description": "A mapping of plugin interface aliases to their backing integrations"
|
|
2265
2274
|
},
|
|
2275
|
+
"integrations": {
|
|
2276
|
+
"type": "object",
|
|
2277
|
+
"additionalProperties": {
|
|
2278
|
+
"type": "object",
|
|
2279
|
+
"properties": {
|
|
2280
|
+
"integrationId": {
|
|
2281
|
+
"type": "string",
|
|
2282
|
+
"minLength": 28,
|
|
2283
|
+
"maxLength": 36
|
|
2284
|
+
},
|
|
2285
|
+
"integrationAlias": {
|
|
2286
|
+
"type": "string",
|
|
2287
|
+
"maxLength": 200
|
|
2288
|
+
}
|
|
2289
|
+
},
|
|
2290
|
+
"required": [
|
|
2291
|
+
"integrationId",
|
|
2292
|
+
"integrationAlias"
|
|
2293
|
+
],
|
|
2294
|
+
"additionalProperties": false
|
|
2295
|
+
},
|
|
2296
|
+
"description": "A mapping of plugin integration aliases to their backing integrations"
|
|
2297
|
+
},
|
|
2266
2298
|
"id": {
|
|
2267
2299
|
"type": "string",
|
|
2268
2300
|
"minLength": 28,
|
|
@@ -4113,6 +4145,10 @@ export const state = {
|
|
|
4113
4145
|
},
|
|
4114
4146
|
"handle": {
|
|
4115
4147
|
"type": "string"
|
|
4148
|
+
},
|
|
4149
|
+
"activeTrialId": {
|
|
4150
|
+
"type": "string",
|
|
4151
|
+
"nullable": true
|
|
4116
4152
|
}
|
|
4117
4153
|
},
|
|
4118
4154
|
"required": [
|
|
@@ -4125,7 +4161,8 @@ export const state = {
|
|
|
4125
4161
|
"billingVersion",
|
|
4126
4162
|
"plan",
|
|
4127
4163
|
"blocked",
|
|
4128
|
-
"spendingLimit"
|
|
4164
|
+
"spendingLimit",
|
|
4165
|
+
"activeTrialId"
|
|
4129
4166
|
],
|
|
4130
4167
|
"title": "updateWorkspaceResponse",
|
|
4131
4168
|
"additionalProperties": false
|