@botpress/api 1.33.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 +309 -31
- package/dist/src/gen/admin/state.d.ts +60 -0
- 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 +60 -0
- 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 +117 -11
- 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 +117 -11
- 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",
|
|
@@ -9324,7 +9357,17 @@ export const state = {
|
|
|
9324
9357
|
},
|
|
9325
9358
|
"public": {
|
|
9326
9359
|
"type": "boolean",
|
|
9327
|
-
"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."
|
|
9328
9371
|
},
|
|
9329
9372
|
"layers": {
|
|
9330
9373
|
"type": "array",
|
|
@@ -9930,7 +9973,17 @@ export const state = {
|
|
|
9930
9973
|
},
|
|
9931
9974
|
"public": {
|
|
9932
9975
|
"type": "boolean",
|
|
9933
|
-
"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."
|
|
9934
9987
|
},
|
|
9935
9988
|
"layers": {
|
|
9936
9989
|
"type": "array",
|
|
@@ -10539,7 +10592,17 @@ export const state = {
|
|
|
10539
10592
|
},
|
|
10540
10593
|
"public": {
|
|
10541
10594
|
"type": "boolean",
|
|
10542
|
-
"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."
|
|
10543
10606
|
},
|
|
10544
10607
|
"layers": {
|
|
10545
10608
|
"type": "array",
|
|
@@ -11151,7 +11214,17 @@ export const state = {
|
|
|
11151
11214
|
},
|
|
11152
11215
|
"public": {
|
|
11153
11216
|
"type": "boolean",
|
|
11154
|
-
"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."
|
|
11155
11228
|
},
|
|
11156
11229
|
"layers": {
|
|
11157
11230
|
"type": "array",
|
|
@@ -11323,7 +11396,17 @@ export const state = {
|
|
|
11323
11396
|
},
|
|
11324
11397
|
"public": {
|
|
11325
11398
|
"type": "boolean",
|
|
11326
|
-
"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."
|
|
11327
11410
|
},
|
|
11328
11411
|
"verificationStatus": {
|
|
11329
11412
|
"type": "string",
|
|
@@ -11398,6 +11481,7 @@ export const state = {
|
|
|
11398
11481
|
"description",
|
|
11399
11482
|
"iconUrl",
|
|
11400
11483
|
"public",
|
|
11484
|
+
"visibility",
|
|
11401
11485
|
"verificationStatus"
|
|
11402
11486
|
]
|
|
11403
11487
|
}
|
|
@@ -13881,7 +13965,7 @@ export const state = {
|
|
|
13881
13965
|
"title": "Botpress API",
|
|
13882
13966
|
"description": "API for Botpress Cloud",
|
|
13883
13967
|
"server": "https://api.botpress.cloud",
|
|
13884
|
-
"version": "1.
|
|
13968
|
+
"version": "1.34.0",
|
|
13885
13969
|
"prefix": "v1"
|
|
13886
13970
|
},
|
|
13887
13971
|
"errors": [
|
|
@@ -14302,7 +14386,17 @@ export const state = {
|
|
|
14302
14386
|
},
|
|
14303
14387
|
"public": {
|
|
14304
14388
|
"type": "boolean",
|
|
14305
|
-
"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."
|
|
14306
14400
|
},
|
|
14307
14401
|
"verificationStatus": {
|
|
14308
14402
|
"type": "string",
|
|
@@ -14333,6 +14427,7 @@ export const state = {
|
|
|
14333
14427
|
"description",
|
|
14334
14428
|
"iconUrl",
|
|
14335
14429
|
"public",
|
|
14430
|
+
"visibility",
|
|
14336
14431
|
"verificationStatus"
|
|
14337
14432
|
],
|
|
14338
14433
|
"additionalProperties": false
|
|
@@ -15469,7 +15564,17 @@ export const state = {
|
|
|
15469
15564
|
},
|
|
15470
15565
|
"public": {
|
|
15471
15566
|
"type": "boolean",
|
|
15472
|
-
"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."
|
|
15473
15578
|
},
|
|
15474
15579
|
"verificationStatus": {
|
|
15475
15580
|
"type": "string",
|
|
@@ -15512,6 +15617,7 @@ export const state = {
|
|
|
15512
15617
|
"iconUrl",
|
|
15513
15618
|
"readmeUrl",
|
|
15514
15619
|
"public",
|
|
15620
|
+
"visibility",
|
|
15515
15621
|
"verificationStatus",
|
|
15516
15622
|
"secrets"
|
|
15517
15623
|
],
|