@botpress/api 1.9.0 → 1.10.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.9.0",
1219
+ "version": "1.10.0",
1220
1220
  "prefix": "v1"
1221
1221
  },
1222
1222
  "errors": [
@@ -2824,6 +2824,29 @@ export const state = {
2824
2824
  ],
2825
2825
  "description": "Template string optionaly used at build time by integrations implementing this interface to pick a name for actions and events.",
2826
2826
  "additionalProperties": false
2827
+ },
2828
+ "title": {
2829
+ "type": "string",
2830
+ "minLength": 1,
2831
+ "maxLength": 64,
2832
+ "description": "Title of the interface. This is the name that will be displayed in the UI"
2833
+ },
2834
+ "description": {
2835
+ "type": "string",
2836
+ "maxLength": 256,
2837
+ "description": "Description of the interface. This is the description that will be displayed in the UI"
2838
+ },
2839
+ "iconUrl": {
2840
+ "type": "string",
2841
+ "description": "URL of the icon of the interface. This is the icon that will be displayed in the UI"
2842
+ },
2843
+ "readmeUrl": {
2844
+ "type": "string",
2845
+ "description": "URL of the readme of the interface. This is the readme that will be displayed in the UI"
2846
+ },
2847
+ "public": {
2848
+ "type": "boolean",
2849
+ "description": "Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version."
2827
2850
  }
2828
2851
  },
2829
2852
  "required": [
@@ -2835,7 +2858,12 @@ export const state = {
2835
2858
  "entities",
2836
2859
  "events",
2837
2860
  "actions",
2838
- "channels"
2861
+ "channels",
2862
+ "title",
2863
+ "description",
2864
+ "iconUrl",
2865
+ "readmeUrl",
2866
+ "public"
2839
2867
  ],
2840
2868
  "additionalProperties": false
2841
2869
  }