@botpress/api 1.32.0 → 1.34.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 +319 -53
- package/dist/src/gen/admin/state.d.ts +65 -9
- package/dist/src/gen/files/state.d.ts +12 -0
- package/dist/src/gen/runtime/state.d.ts +12 -0
- package/dist/src/gen/state.d.ts +65 -9
- package/dist/src/gen/tables/state.d.ts +12 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +122 -22
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +25 -3
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +25 -3
- package/src/gen/state.ts +122 -22
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +25 -3
package/src/gen/admin/state.ts
CHANGED
|
@@ -558,7 +558,17 @@ export const state = {
|
|
|
558
558
|
},
|
|
559
559
|
"public": {
|
|
560
560
|
"type": "boolean",
|
|
561
|
-
"description": "Indicates
|
|
561
|
+
"description": "[DEPRECATED] Indicates whether the integration is public. Please use the \"visibility\" parameter instead.",
|
|
562
|
+
"deprecated": true
|
|
563
|
+
},
|
|
564
|
+
"visibility": {
|
|
565
|
+
"type": "string",
|
|
566
|
+
"enum": [
|
|
567
|
+
"public",
|
|
568
|
+
"private",
|
|
569
|
+
"unlisted"
|
|
570
|
+
],
|
|
571
|
+
"description": "The integration's visibility. Public integrations are available to all and cannot be updated without creating a new version. Unlisted integrations behave identically to public integrations, but they are not listed in the integration hub. By default, integrations are private and only accessible to the workspace that created them."
|
|
562
572
|
},
|
|
563
573
|
"verificationStatus": {
|
|
564
574
|
"type": "string",
|
|
@@ -648,6 +658,7 @@ export const state = {
|
|
|
648
658
|
"description",
|
|
649
659
|
"iconUrl",
|
|
650
660
|
"public",
|
|
661
|
+
"visibility",
|
|
651
662
|
"verificationStatus",
|
|
652
663
|
"ownerWorkspace",
|
|
653
664
|
"meta"
|
|
@@ -1318,7 +1329,17 @@ export const state = {
|
|
|
1318
1329
|
},
|
|
1319
1330
|
"public": {
|
|
1320
1331
|
"type": "boolean",
|
|
1321
|
-
"description": "Indicates
|
|
1332
|
+
"description": "[DEPRECATED] Indicates whether the integration is public. Please use the \"visibility\" parameter instead.",
|
|
1333
|
+
"deprecated": true
|
|
1334
|
+
},
|
|
1335
|
+
"visibility": {
|
|
1336
|
+
"type": "string",
|
|
1337
|
+
"enum": [
|
|
1338
|
+
"public",
|
|
1339
|
+
"private",
|
|
1340
|
+
"unlisted"
|
|
1341
|
+
],
|
|
1342
|
+
"description": "The integration's visibility. Public integrations are available to all and cannot be updated without creating a new version. Unlisted integrations behave identically to public integrations, but they are not listed in the integration hub. By default, integrations are private and only accessible to the workspace that created them."
|
|
1322
1343
|
},
|
|
1323
1344
|
"verificationStatus": {
|
|
1324
1345
|
"type": "string",
|
|
@@ -1398,6 +1419,7 @@ export const state = {
|
|
|
1398
1419
|
"iconUrl",
|
|
1399
1420
|
"readmeUrl",
|
|
1400
1421
|
"public",
|
|
1422
|
+
"visibility",
|
|
1401
1423
|
"verificationStatus",
|
|
1402
1424
|
"secrets",
|
|
1403
1425
|
"ownerWorkspace",
|
|
@@ -2063,7 +2085,17 @@ export const state = {
|
|
|
2063
2085
|
},
|
|
2064
2086
|
"public": {
|
|
2065
2087
|
"type": "boolean",
|
|
2066
|
-
"description": "Indicates
|
|
2088
|
+
"description": "[DEPRECATED] Indicates whether the integration is public. Please use the \"visibility\" parameter instead.",
|
|
2089
|
+
"deprecated": true
|
|
2090
|
+
},
|
|
2091
|
+
"visibility": {
|
|
2092
|
+
"type": "string",
|
|
2093
|
+
"enum": [
|
|
2094
|
+
"public",
|
|
2095
|
+
"private",
|
|
2096
|
+
"unlisted"
|
|
2097
|
+
],
|
|
2098
|
+
"description": "The integration's visibility. Public integrations are available to all and cannot be updated without creating a new version. Unlisted integrations behave identically to public integrations, but they are not listed in the integration hub. By default, integrations are private and only accessible to the workspace that created them."
|
|
2067
2099
|
},
|
|
2068
2100
|
"verificationStatus": {
|
|
2069
2101
|
"type": "string",
|
|
@@ -2143,6 +2175,7 @@ export const state = {
|
|
|
2143
2175
|
"iconUrl",
|
|
2144
2176
|
"readmeUrl",
|
|
2145
2177
|
"public",
|
|
2178
|
+
"visibility",
|
|
2146
2179
|
"verificationStatus",
|
|
2147
2180
|
"secrets",
|
|
2148
2181
|
"ownerWorkspace",
|
|
@@ -6652,20 +6685,14 @@ export const state = {
|
|
|
6652
6685
|
],
|
|
6653
6686
|
"description": "Allowlist setting of the bot"
|
|
6654
6687
|
},
|
|
6655
|
-
"
|
|
6656
|
-
"type": "
|
|
6657
|
-
"
|
|
6658
|
-
"type": "
|
|
6659
|
-
"
|
|
6660
|
-
"type": "boolean",
|
|
6661
|
-
"description": "If `true`, the user should be added to the allowlist. If `false`, the user should be removed from the allowlist. This performs a partial update, so any existing users not included here will be kept in the allowlist"
|
|
6662
|
-
}
|
|
6688
|
+
"users": {
|
|
6689
|
+
"type": "object",
|
|
6690
|
+
"additionalProperties": {
|
|
6691
|
+
"type": "boolean",
|
|
6692
|
+
"description": "If `true`, the user should be added to the allowlist. If `false`, the user should be removed from the allowlist. This performs a partial update, so any existing users not included here will be kept in the allowlist"
|
|
6663
6693
|
}
|
|
6664
6694
|
}
|
|
6665
6695
|
},
|
|
6666
|
-
"required": [
|
|
6667
|
-
"modifiedUsers"
|
|
6668
|
-
],
|
|
6669
6696
|
"title": "updateBotAllowlistBody",
|
|
6670
6697
|
"additionalProperties": false
|
|
6671
6698
|
}
|
|
@@ -9330,7 +9357,17 @@ export const state = {
|
|
|
9330
9357
|
},
|
|
9331
9358
|
"public": {
|
|
9332
9359
|
"type": "boolean",
|
|
9333
|
-
"description": "Indicates
|
|
9360
|
+
"description": "[DEPRECATED] Indicates whether the integration is public. Please use the \"visibility\" parameter instead.",
|
|
9361
|
+
"deprecated": true
|
|
9362
|
+
},
|
|
9363
|
+
"visibility": {
|
|
9364
|
+
"type": "string",
|
|
9365
|
+
"enum": [
|
|
9366
|
+
"public",
|
|
9367
|
+
"private",
|
|
9368
|
+
"unlisted"
|
|
9369
|
+
],
|
|
9370
|
+
"description": "The integration's visibility. Public integrations are available to all and cannot be updated without creating a new version. Unlisted integrations behave identically to public integrations, but they are not listed in the integration hub. By default, integrations are private and only accessible to the workspace that created them."
|
|
9334
9371
|
},
|
|
9335
9372
|
"layers": {
|
|
9336
9373
|
"type": "array",
|
|
@@ -9936,7 +9973,17 @@ export const state = {
|
|
|
9936
9973
|
},
|
|
9937
9974
|
"public": {
|
|
9938
9975
|
"type": "boolean",
|
|
9939
|
-
"description": "Indicates
|
|
9976
|
+
"description": "[DEPRECATED] Indicates whether the integration is public. Please use the \"visibility\" parameter instead.",
|
|
9977
|
+
"deprecated": true
|
|
9978
|
+
},
|
|
9979
|
+
"visibility": {
|
|
9980
|
+
"type": "string",
|
|
9981
|
+
"enum": [
|
|
9982
|
+
"public",
|
|
9983
|
+
"private",
|
|
9984
|
+
"unlisted"
|
|
9985
|
+
],
|
|
9986
|
+
"description": "The integration's visibility. Public integrations are available to all and cannot be updated without creating a new version. Unlisted integrations behave identically to public integrations, but they are not listed in the integration hub. By default, integrations are private and only accessible to the workspace that created them."
|
|
9940
9987
|
},
|
|
9941
9988
|
"layers": {
|
|
9942
9989
|
"type": "array",
|
|
@@ -10545,7 +10592,17 @@ export const state = {
|
|
|
10545
10592
|
},
|
|
10546
10593
|
"public": {
|
|
10547
10594
|
"type": "boolean",
|
|
10548
|
-
"description": "Indicates
|
|
10595
|
+
"description": "[DEPRECATED] Indicates whether the integration is public. Please use the \"visibility\" parameter instead.",
|
|
10596
|
+
"deprecated": true
|
|
10597
|
+
},
|
|
10598
|
+
"visibility": {
|
|
10599
|
+
"type": "string",
|
|
10600
|
+
"enum": [
|
|
10601
|
+
"public",
|
|
10602
|
+
"private",
|
|
10603
|
+
"unlisted"
|
|
10604
|
+
],
|
|
10605
|
+
"description": "The integration's visibility. Public integrations are available to all and cannot be updated without creating a new version. Unlisted integrations behave identically to public integrations, but they are not listed in the integration hub. By default, integrations are private and only accessible to the workspace that created them."
|
|
10549
10606
|
},
|
|
10550
10607
|
"layers": {
|
|
10551
10608
|
"type": "array",
|
|
@@ -11157,7 +11214,17 @@ export const state = {
|
|
|
11157
11214
|
},
|
|
11158
11215
|
"public": {
|
|
11159
11216
|
"type": "boolean",
|
|
11160
|
-
"description": "Indicates
|
|
11217
|
+
"description": "[DEPRECATED] Indicates whether the integration is public. Please use the \"visibility\" parameter instead.",
|
|
11218
|
+
"deprecated": true
|
|
11219
|
+
},
|
|
11220
|
+
"visibility": {
|
|
11221
|
+
"type": "string",
|
|
11222
|
+
"enum": [
|
|
11223
|
+
"public",
|
|
11224
|
+
"private",
|
|
11225
|
+
"unlisted"
|
|
11226
|
+
],
|
|
11227
|
+
"description": "The integration's visibility. Public integrations are available to all and cannot be updated without creating a new version. Unlisted integrations behave identically to public integrations, but they are not listed in the integration hub. By default, integrations are private and only accessible to the workspace that created them."
|
|
11161
11228
|
},
|
|
11162
11229
|
"layers": {
|
|
11163
11230
|
"type": "array",
|
|
@@ -11329,7 +11396,17 @@ export const state = {
|
|
|
11329
11396
|
},
|
|
11330
11397
|
"public": {
|
|
11331
11398
|
"type": "boolean",
|
|
11332
|
-
"description": "Indicates
|
|
11399
|
+
"description": "[DEPRECATED] Indicates whether the integration is public. Please use the \"visibility\" parameter instead.",
|
|
11400
|
+
"deprecated": true
|
|
11401
|
+
},
|
|
11402
|
+
"visibility": {
|
|
11403
|
+
"type": "string",
|
|
11404
|
+
"enum": [
|
|
11405
|
+
"public",
|
|
11406
|
+
"private",
|
|
11407
|
+
"unlisted"
|
|
11408
|
+
],
|
|
11409
|
+
"description": "The integration's visibility. Public integrations are available to all and cannot be updated without creating a new version. Unlisted integrations behave identically to public integrations, but they are not listed in the integration hub. By default, integrations are private and only accessible to the workspace that created them."
|
|
11333
11410
|
},
|
|
11334
11411
|
"verificationStatus": {
|
|
11335
11412
|
"type": "string",
|
|
@@ -11404,6 +11481,7 @@ export const state = {
|
|
|
11404
11481
|
"description",
|
|
11405
11482
|
"iconUrl",
|
|
11406
11483
|
"public",
|
|
11484
|
+
"visibility",
|
|
11407
11485
|
"verificationStatus"
|
|
11408
11486
|
]
|
|
11409
11487
|
}
|
|
@@ -13887,7 +13965,7 @@ export const state = {
|
|
|
13887
13965
|
"title": "Botpress API",
|
|
13888
13966
|
"description": "API for Botpress Cloud",
|
|
13889
13967
|
"server": "https://api.botpress.cloud",
|
|
13890
|
-
"version": "1.
|
|
13968
|
+
"version": "1.34.0",
|
|
13891
13969
|
"prefix": "v1"
|
|
13892
13970
|
},
|
|
13893
13971
|
"errors": [
|
|
@@ -14308,7 +14386,17 @@ export const state = {
|
|
|
14308
14386
|
},
|
|
14309
14387
|
"public": {
|
|
14310
14388
|
"type": "boolean",
|
|
14311
|
-
"description": "Indicates
|
|
14389
|
+
"description": "[DEPRECATED] Indicates whether the integration is public. Please use the \"visibility\" parameter instead.",
|
|
14390
|
+
"deprecated": true
|
|
14391
|
+
},
|
|
14392
|
+
"visibility": {
|
|
14393
|
+
"type": "string",
|
|
14394
|
+
"enum": [
|
|
14395
|
+
"public",
|
|
14396
|
+
"private",
|
|
14397
|
+
"unlisted"
|
|
14398
|
+
],
|
|
14399
|
+
"description": "The integration's visibility. Public integrations are available to all and cannot be updated without creating a new version. Unlisted integrations behave identically to public integrations, but they are not listed in the integration hub. By default, integrations are private and only accessible to the workspace that created them."
|
|
14312
14400
|
},
|
|
14313
14401
|
"verificationStatus": {
|
|
14314
14402
|
"type": "string",
|
|
@@ -14339,6 +14427,7 @@ export const state = {
|
|
|
14339
14427
|
"description",
|
|
14340
14428
|
"iconUrl",
|
|
14341
14429
|
"public",
|
|
14430
|
+
"visibility",
|
|
14342
14431
|
"verificationStatus"
|
|
14343
14432
|
],
|
|
14344
14433
|
"additionalProperties": false
|
|
@@ -15475,7 +15564,17 @@ export const state = {
|
|
|
15475
15564
|
},
|
|
15476
15565
|
"public": {
|
|
15477
15566
|
"type": "boolean",
|
|
15478
|
-
"description": "Indicates
|
|
15567
|
+
"description": "[DEPRECATED] Indicates whether the integration is public. Please use the \"visibility\" parameter instead.",
|
|
15568
|
+
"deprecated": true
|
|
15569
|
+
},
|
|
15570
|
+
"visibility": {
|
|
15571
|
+
"type": "string",
|
|
15572
|
+
"enum": [
|
|
15573
|
+
"public",
|
|
15574
|
+
"private",
|
|
15575
|
+
"unlisted"
|
|
15576
|
+
],
|
|
15577
|
+
"description": "The integration's visibility. Public integrations are available to all and cannot be updated without creating a new version. Unlisted integrations behave identically to public integrations, but they are not listed in the integration hub. By default, integrations are private and only accessible to the workspace that created them."
|
|
15479
15578
|
},
|
|
15480
15579
|
"verificationStatus": {
|
|
15481
15580
|
"type": "string",
|
|
@@ -15518,6 +15617,7 @@ export const state = {
|
|
|
15518
15617
|
"iconUrl",
|
|
15519
15618
|
"readmeUrl",
|
|
15520
15619
|
"public",
|
|
15620
|
+
"visibility",
|
|
15521
15621
|
"verificationStatus",
|
|
15522
15622
|
"secrets"
|
|
15523
15623
|
],
|