@botpress/api 1.35.2 → 1.36.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.
@@ -1589,6 +1589,12 @@ export const state = {
1589
1589
  "name": {
1590
1590
  "type": "string",
1591
1591
  "description": "Name of the knowledge base."
1592
+ },
1593
+ "tags": {
1594
+ "type": "object",
1595
+ "additionalProperties": {
1596
+ "type": "string"
1597
+ }
1592
1598
  }
1593
1599
  },
1594
1600
  "required": [
@@ -1615,11 +1621,18 @@ export const state = {
1615
1621
  "name": {
1616
1622
  "type": "string",
1617
1623
  "description": "Name of the knowledge base."
1624
+ },
1625
+ "tags": {
1626
+ "type": "object",
1627
+ "additionalProperties": {
1628
+ "type": "string"
1629
+ }
1618
1630
  }
1619
1631
  },
1620
1632
  "required": [
1621
1633
  "id",
1622
- "name"
1634
+ "name",
1635
+ "tags"
1623
1636
  ],
1624
1637
  "additionalProperties": false
1625
1638
  }
@@ -1676,6 +1689,15 @@ export const state = {
1676
1689
  "name": {
1677
1690
  "type": "string",
1678
1691
  "description": "New name of the knowledge base."
1692
+ },
1693
+ "tags": {
1694
+ "type": "object",
1695
+ "additionalProperties": {
1696
+ "type": "string",
1697
+ "maxLength": 1000,
1698
+ "nullable": true
1699
+ },
1700
+ "description": "The knowledge base tags to update as an object of key-value pairs with `string` (text) values. Omit to keep existing tags intact. Any existing tags not included will be preserved. New tags will be added. To delete a tag, set its value to `null`."
1679
1701
  }
1680
1702
  },
1681
1703
  "required": [
@@ -1701,11 +1723,18 @@ export const state = {
1701
1723
  "name": {
1702
1724
  "type": "string",
1703
1725
  "description": "Name of the knowledge base."
1726
+ },
1727
+ "tags": {
1728
+ "type": "object",
1729
+ "additionalProperties": {
1730
+ "type": "string"
1731
+ }
1704
1732
  }
1705
1733
  },
1706
1734
  "required": [
1707
1735
  "id",
1708
- "name"
1736
+ "name",
1737
+ "tags"
1709
1738
  ],
1710
1739
  "additionalProperties": false
1711
1740
  }
@@ -1729,6 +1758,12 @@ export const state = {
1729
1758
  "in": "query",
1730
1759
  "description": "Provide the `meta.nextToken` value provided in the last API response to retrieve the next page of results",
1731
1760
  "type": "string"
1761
+ },
1762
+ "tags": {
1763
+ "in": "query",
1764
+ "description": "Filter files by tags. Tags should be passed as a URL-encoded JSON object of key-value pairs that must be present in the tags of a file. An array of multiple string values for the same key are treated as an OR condition. To exclude a value, express it as an object with a nested `not` key with the string or string-array value(s) to exclude.",
1765
+ "type": "object",
1766
+ "schema": {}
1732
1767
  }
1733
1768
  },
1734
1769
  "response": {
@@ -1752,12 +1787,19 @@ export const state = {
1752
1787
  "createdAt": {
1753
1788
  "type": "string",
1754
1789
  "description": "Knowledge base creation timestamp in ISO 8601 format"
1790
+ },
1791
+ "tags": {
1792
+ "type": "object",
1793
+ "additionalProperties": {
1794
+ "type": "string"
1795
+ }
1755
1796
  }
1756
1797
  },
1757
1798
  "required": [
1758
1799
  "id",
1759
1800
  "name",
1760
- "createdAt"
1801
+ "createdAt",
1802
+ "tags"
1761
1803
  ]
1762
1804
  }
1763
1805
  },
@@ -1786,7 +1828,7 @@ export const state = {
1786
1828
  "title": "Botpress API",
1787
1829
  "description": "API for Botpress Cloud",
1788
1830
  "server": "https://api.botpress.cloud",
1789
- "version": "1.35.2",
1831
+ "version": "1.36.0",
1790
1832
  "prefix": "v1"
1791
1833
  },
1792
1834
  "errors": [