@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.
@@ -1216,7 +1216,7 @@ export const state = {
1216
1216
  "title": "Botpress API",
1217
1217
  "description": "API for Botpress Cloud",
1218
1218
  "server": "https://api.botpress.cloud",
1219
- "version": "1.32.0",
1219
+ "version": "1.34.0",
1220
1220
  "prefix": "v1"
1221
1221
  },
1222
1222
  "errors": [
@@ -1524,7 +1524,17 @@ export const state = {
1524
1524
  },
1525
1525
  "public": {
1526
1526
  "type": "boolean",
1527
- "description": "Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
1527
+ "description": "[DEPRECATED] Indicates whether the integration is public. Please use the \"visibility\" parameter instead.",
1528
+ "deprecated": true
1529
+ },
1530
+ "visibility": {
1531
+ "type": "string",
1532
+ "enum": [
1533
+ "public",
1534
+ "private",
1535
+ "unlisted"
1536
+ ],
1537
+ "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."
1528
1538
  },
1529
1539
  "verificationStatus": {
1530
1540
  "type": "string",
@@ -1555,6 +1565,7 @@ export const state = {
1555
1565
  "description",
1556
1566
  "iconUrl",
1557
1567
  "public",
1568
+ "visibility",
1558
1569
  "verificationStatus"
1559
1570
  ],
1560
1571
  "additionalProperties": false
@@ -2691,7 +2702,17 @@ export const state = {
2691
2702
  },
2692
2703
  "public": {
2693
2704
  "type": "boolean",
2694
- "description": "Indicates if the integration is public. Public integrations are available to all and cannot be updated without creating a new version."
2705
+ "description": "[DEPRECATED] Indicates whether the integration is public. Please use the \"visibility\" parameter instead.",
2706
+ "deprecated": true
2707
+ },
2708
+ "visibility": {
2709
+ "type": "string",
2710
+ "enum": [
2711
+ "public",
2712
+ "private",
2713
+ "unlisted"
2714
+ ],
2715
+ "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."
2695
2716
  },
2696
2717
  "verificationStatus": {
2697
2718
  "type": "string",
@@ -2734,6 +2755,7 @@ export const state = {
2734
2755
  "iconUrl",
2735
2756
  "readmeUrl",
2736
2757
  "public",
2758
+ "visibility",
2737
2759
  "verificationStatus",
2738
2760
  "secrets"
2739
2761
  ],