@botpress/api 1.43.0 → 1.44.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.43.0",
1219
+ "version": "1.44.0",
1220
1220
  "prefix": "v1"
1221
1221
  },
1222
1222
  "errors": [
@@ -1604,6 +1604,14 @@ export const state = {
1604
1604
  "minLength": 28,
1605
1605
  "maxLength": 36
1606
1606
  },
1607
+ "integrationAlias": {
1608
+ "type": "string",
1609
+ "maxLength": 200
1610
+ },
1611
+ "integrationInterfaceAlias": {
1612
+ "type": "string",
1613
+ "maxLength": 200
1614
+ },
1607
1615
  "interfaceId": {
1608
1616
  "type": "string",
1609
1617
  "minLength": 28,
@@ -1612,12 +1620,36 @@ export const state = {
1612
1620
  },
1613
1621
  "required": [
1614
1622
  "integrationId",
1623
+ "integrationAlias",
1615
1624
  "interfaceId"
1616
1625
  ],
1617
1626
  "additionalProperties": false
1618
1627
  },
1619
1628
  "description": "A mapping of plugin interface aliases to their backing integrations"
1620
1629
  },
1630
+ "integrations": {
1631
+ "type": "object",
1632
+ "additionalProperties": {
1633
+ "type": "object",
1634
+ "properties": {
1635
+ "integrationId": {
1636
+ "type": "string",
1637
+ "minLength": 28,
1638
+ "maxLength": 36
1639
+ },
1640
+ "integrationAlias": {
1641
+ "type": "string",
1642
+ "maxLength": 200
1643
+ }
1644
+ },
1645
+ "required": [
1646
+ "integrationId",
1647
+ "integrationAlias"
1648
+ ],
1649
+ "additionalProperties": false
1650
+ },
1651
+ "description": "A mapping of plugin integration aliases to their backing integrations"
1652
+ },
1621
1653
  "id": {
1622
1654
  "type": "string",
1623
1655
  "minLength": 28,