@botpress/api 1.33.0 → 1.35.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.
@@ -1786,7 +1786,7 @@ export const state = {
1786
1786
  "title": "Botpress API",
1787
1787
  "description": "API for Botpress Cloud",
1788
1788
  "server": "https://api.botpress.cloud",
1789
- "version": "1.33.0",
1789
+ "version": "1.35.0",
1790
1790
  "prefix": "v1"
1791
1791
  },
1792
1792
  "errors": [
@@ -2087,7 +2087,17 @@ export const state = {
2087
2087
  },
2088
2088
  "public": {
2089
2089
  "type": "boolean",
2090
- "description": "Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
2090
+ "description": "[DEPRECATED] Indicates whether the integration is public. Please use the \"visibility\" parameter instead.",
2091
+ "deprecated": true
2092
+ },
2093
+ "visibility": {
2094
+ "type": "string",
2095
+ "enum": [
2096
+ "public",
2097
+ "private",
2098
+ "unlisted"
2099
+ ],
2100
+ "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."
2091
2101
  },
2092
2102
  "verificationStatus": {
2093
2103
  "type": "string",
@@ -2118,6 +2128,7 @@ export const state = {
2118
2128
  "description",
2119
2129
  "iconUrl",
2120
2130
  "public",
2131
+ "visibility",
2121
2132
  "verificationStatus"
2122
2133
  ],
2123
2134
  "additionalProperties": false
@@ -3254,7 +3265,17 @@ export const state = {
3254
3265
  },
3255
3266
  "public": {
3256
3267
  "type": "boolean",
3257
- "description": "Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
3268
+ "description": "[DEPRECATED] Indicates whether the integration is public. Please use the \"visibility\" parameter instead.",
3269
+ "deprecated": true
3270
+ },
3271
+ "visibility": {
3272
+ "type": "string",
3273
+ "enum": [
3274
+ "public",
3275
+ "private",
3276
+ "unlisted"
3277
+ ],
3278
+ "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."
3258
3279
  },
3259
3280
  "verificationStatus": {
3260
3281
  "type": "string",
@@ -3297,6 +3318,7 @@ export const state = {
3297
3318
  "iconUrl",
3298
3319
  "readmeUrl",
3299
3320
  "public",
3321
+ "visibility",
3300
3322
  "verificationStatus",
3301
3323
  "secrets"
3302
3324
  ],