@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/admin/state.ts
CHANGED
|
@@ -7109,6 +7109,10 @@ export const state = {
|
|
|
7109
7109
|
},
|
|
7110
7110
|
"handle": {
|
|
7111
7111
|
"type": "string"
|
|
7112
|
+
},
|
|
7113
|
+
"activeTrialId": {
|
|
7114
|
+
"type": "string",
|
|
7115
|
+
"nullable": true
|
|
7112
7116
|
}
|
|
7113
7117
|
},
|
|
7114
7118
|
"required": [
|
|
@@ -7121,7 +7125,8 @@ export const state = {
|
|
|
7121
7125
|
"billingVersion",
|
|
7122
7126
|
"plan",
|
|
7123
7127
|
"blocked",
|
|
7124
|
-
"spendingLimit"
|
|
7128
|
+
"spendingLimit",
|
|
7129
|
+
"activeTrialId"
|
|
7125
7130
|
],
|
|
7126
7131
|
"title": "createWorkspaceResponse",
|
|
7127
7132
|
"additionalProperties": false
|
|
@@ -7291,6 +7296,10 @@ export const state = {
|
|
|
7291
7296
|
},
|
|
7292
7297
|
"handle": {
|
|
7293
7298
|
"type": "string"
|
|
7299
|
+
},
|
|
7300
|
+
"activeTrialId": {
|
|
7301
|
+
"type": "string",
|
|
7302
|
+
"nullable": true
|
|
7294
7303
|
}
|
|
7295
7304
|
},
|
|
7296
7305
|
"required": [
|
|
@@ -7303,7 +7312,8 @@ export const state = {
|
|
|
7303
7312
|
"billingVersion",
|
|
7304
7313
|
"plan",
|
|
7305
7314
|
"blocked",
|
|
7306
|
-
"spendingLimit"
|
|
7315
|
+
"spendingLimit",
|
|
7316
|
+
"activeTrialId"
|
|
7307
7317
|
],
|
|
7308
7318
|
"title": "getWorkspaceResponse",
|
|
7309
7319
|
"additionalProperties": false
|
|
@@ -7806,6 +7816,10 @@ export const state = {
|
|
|
7806
7816
|
},
|
|
7807
7817
|
"handle": {
|
|
7808
7818
|
"type": "string"
|
|
7819
|
+
},
|
|
7820
|
+
"activeTrialId": {
|
|
7821
|
+
"type": "string",
|
|
7822
|
+
"nullable": true
|
|
7809
7823
|
}
|
|
7810
7824
|
},
|
|
7811
7825
|
"required": [
|
|
@@ -7818,7 +7832,8 @@ export const state = {
|
|
|
7818
7832
|
"billingVersion",
|
|
7819
7833
|
"plan",
|
|
7820
7834
|
"blocked",
|
|
7821
|
-
"spendingLimit"
|
|
7835
|
+
"spendingLimit",
|
|
7836
|
+
"activeTrialId"
|
|
7822
7837
|
],
|
|
7823
7838
|
"title": "updateWorkspaceResponse",
|
|
7824
7839
|
"additionalProperties": false
|
|
@@ -7982,6 +7997,10 @@ export const state = {
|
|
|
7982
7997
|
},
|
|
7983
7998
|
"handle": {
|
|
7984
7999
|
"type": "string"
|
|
8000
|
+
},
|
|
8001
|
+
"activeTrialId": {
|
|
8002
|
+
"type": "string",
|
|
8003
|
+
"nullable": true
|
|
7985
8004
|
}
|
|
7986
8005
|
},
|
|
7987
8006
|
"required": [
|
|
@@ -7994,7 +8013,8 @@ export const state = {
|
|
|
7994
8013
|
"billingVersion",
|
|
7995
8014
|
"plan",
|
|
7996
8015
|
"blocked",
|
|
7997
|
-
"spendingLimit"
|
|
8016
|
+
"spendingLimit",
|
|
8017
|
+
"activeTrialId"
|
|
7998
8018
|
],
|
|
7999
8019
|
"title": "updateWorkspaceResponse"
|
|
8000
8020
|
}
|
|
@@ -13993,7 +14013,7 @@ export const state = {
|
|
|
13993
14013
|
"title": "Botpress API",
|
|
13994
14014
|
"description": "API for Botpress Cloud",
|
|
13995
14015
|
"server": "https://api.botpress.cloud",
|
|
13996
|
-
"version": "1.
|
|
14016
|
+
"version": "1.43.0",
|
|
13997
14017
|
"prefix": "v1"
|
|
13998
14018
|
},
|
|
13999
14019
|
"errors": [
|
|
@@ -16358,6 +16378,10 @@ export const state = {
|
|
|
16358
16378
|
},
|
|
16359
16379
|
"handle": {
|
|
16360
16380
|
"type": "string"
|
|
16381
|
+
},
|
|
16382
|
+
"activeTrialId": {
|
|
16383
|
+
"type": "string",
|
|
16384
|
+
"nullable": true
|
|
16361
16385
|
}
|
|
16362
16386
|
},
|
|
16363
16387
|
"required": [
|
|
@@ -16370,7 +16394,8 @@ export const state = {
|
|
|
16370
16394
|
"billingVersion",
|
|
16371
16395
|
"plan",
|
|
16372
16396
|
"blocked",
|
|
16373
|
-
"spendingLimit"
|
|
16397
|
+
"spendingLimit",
|
|
16398
|
+
"activeTrialId"
|
|
16374
16399
|
],
|
|
16375
16400
|
"additionalProperties": false
|
|
16376
16401
|
}
|