@botpress/api 1.36.0 → 1.37.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.
@@ -12692,42 +12692,6 @@ export const state = {
12692
12692
  "description": "Conversation object configuration",
12693
12693
  "additionalProperties": false
12694
12694
  },
12695
- "dependencies": {
12696
- "type": "object",
12697
- "properties": {
12698
- "interfaces": {
12699
- "type": "object",
12700
- "additionalProperties": {
12701
- "type": "object",
12702
- "properties": {
12703
- "id": {
12704
- "type": "string"
12705
- }
12706
- },
12707
- "required": [
12708
- "id"
12709
- ],
12710
- "additionalProperties": false
12711
- }
12712
- },
12713
- "integrations": {
12714
- "type": "object",
12715
- "additionalProperties": {
12716
- "type": "object",
12717
- "properties": {
12718
- "id": {
12719
- "type": "string"
12720
- }
12721
- },
12722
- "required": [
12723
- "id"
12724
- ],
12725
- "additionalProperties": false
12726
- }
12727
- }
12728
- },
12729
- "additionalProperties": false
12730
- },
12731
12695
  "attributes": {
12732
12696
  "type": "object",
12733
12697
  "additionalProperties": {
@@ -12776,6 +12740,56 @@ export const state = {
12776
12740
  "public": {
12777
12741
  "type": "boolean",
12778
12742
  "description": "Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version."
12743
+ },
12744
+ "dependencies": {
12745
+ "type": "object",
12746
+ "properties": {
12747
+ "interfaces": {
12748
+ "type": "object",
12749
+ "additionalProperties": {
12750
+ "type": "object",
12751
+ "properties": {
12752
+ "id": {
12753
+ "type": "string",
12754
+ "description": "Id of the interface. If provided, \"name\" and \"version\" are ignored"
12755
+ },
12756
+ "name": {
12757
+ "type": "string",
12758
+ "description": "Name of the interface"
12759
+ },
12760
+ "version": {
12761
+ "type": "string",
12762
+ "description": "Version of the interface. Accepts semver versions and version ranges"
12763
+ }
12764
+ },
12765
+ "additionalProperties": false
12766
+ },
12767
+ "description": "Mapping of interface aliases to interface references"
12768
+ },
12769
+ "integrations": {
12770
+ "type": "object",
12771
+ "additionalProperties": {
12772
+ "type": "object",
12773
+ "properties": {
12774
+ "id": {
12775
+ "type": "string",
12776
+ "description": "Id of the integration. If provided, \"name\" and \"version\" are ignored"
12777
+ },
12778
+ "name": {
12779
+ "type": "string",
12780
+ "description": "Name of the integration"
12781
+ },
12782
+ "version": {
12783
+ "type": "string",
12784
+ "description": "Version of the integration. Accepts semver versions and version ranges"
12785
+ }
12786
+ },
12787
+ "additionalProperties": false
12788
+ },
12789
+ "description": "Mapping of integration aliases to integration references"
12790
+ }
12791
+ },
12792
+ "additionalProperties": false
12779
12793
  }
12780
12794
  },
12781
12795
  "required": [
@@ -13152,44 +13166,6 @@ export const state = {
13152
13166
  ],
13153
13167
  "additionalProperties": false
13154
13168
  },
13155
- "dependencies": {
13156
- "type": "object",
13157
- "properties": {
13158
- "interfaces": {
13159
- "type": "object",
13160
- "additionalProperties": {
13161
- "type": "object",
13162
- "properties": {
13163
- "id": {
13164
- "type": "string"
13165
- }
13166
- },
13167
- "required": [
13168
- "id"
13169
- ],
13170
- "nullable": true,
13171
- "additionalProperties": false
13172
- }
13173
- },
13174
- "integrations": {
13175
- "type": "object",
13176
- "additionalProperties": {
13177
- "type": "object",
13178
- "properties": {
13179
- "id": {
13180
- "type": "string"
13181
- }
13182
- },
13183
- "required": [
13184
- "id"
13185
- ],
13186
- "nullable": true,
13187
- "additionalProperties": false
13188
- }
13189
- }
13190
- },
13191
- "additionalProperties": false
13192
- },
13193
13169
  "attributes": {
13194
13170
  "type": "object",
13195
13171
  "additionalProperties": {
@@ -13235,6 +13211,58 @@ export const state = {
13235
13211
  "public": {
13236
13212
  "type": "boolean",
13237
13213
  "description": "Indicates if the plugin is public. Public plugins are available to all and cannot be updated without creating a new version."
13214
+ },
13215
+ "dependencies": {
13216
+ "type": "object",
13217
+ "properties": {
13218
+ "interfaces": {
13219
+ "type": "object",
13220
+ "additionalProperties": {
13221
+ "type": "object",
13222
+ "properties": {
13223
+ "id": {
13224
+ "type": "string",
13225
+ "description": "Id of the interface. If provided, \"name\" and \"version\" are ignored"
13226
+ },
13227
+ "name": {
13228
+ "type": "string",
13229
+ "description": "Name of the interface"
13230
+ },
13231
+ "version": {
13232
+ "type": "string",
13233
+ "description": "Version of the interface. Accepts semver versions and version ranges"
13234
+ }
13235
+ },
13236
+ "nullable": true,
13237
+ "additionalProperties": false
13238
+ },
13239
+ "description": "Mapping of interface aliases to interface references"
13240
+ },
13241
+ "integrations": {
13242
+ "type": "object",
13243
+ "additionalProperties": {
13244
+ "type": "object",
13245
+ "properties": {
13246
+ "id": {
13247
+ "type": "string",
13248
+ "description": "Id of the integration. If provided, \"name\" and \"version\" are ignored"
13249
+ },
13250
+ "name": {
13251
+ "type": "string",
13252
+ "description": "Name of the integration"
13253
+ },
13254
+ "version": {
13255
+ "type": "string",
13256
+ "description": "Version of the integration. Accepts semver versions and version ranges"
13257
+ }
13258
+ },
13259
+ "nullable": true,
13260
+ "additionalProperties": false
13261
+ },
13262
+ "description": "Mapping of integration aliases to integration references"
13263
+ }
13264
+ },
13265
+ "additionalProperties": false
13238
13266
  }
13239
13267
  },
13240
13268
  "title": "updatePluginBody",
@@ -13965,7 +13993,7 @@ export const state = {
13965
13993
  "title": "Botpress API",
13966
13994
  "description": "API for Botpress Cloud",
13967
13995
  "server": "https://api.botpress.cloud",
13968
- "version": "1.36.0",
13996
+ "version": "1.37.0",
13969
13997
  "prefix": "v1"
13970
13998
  },
13971
13999
  "errors": [