@botpress/api 1.43.0 → 1.45.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.
- package/.turbo/turbo-openapi.log +5 -5
- package/dist/index.js +2077 -3418
- package/dist/src/gen/admin/state.d.ts +53 -0
- package/dist/src/gen/files/state.d.ts +28 -0
- package/dist/src/gen/runtime/state.d.ts +28 -0
- package/dist/src/gen/state.d.ts +60 -0
- package/dist/src/gen/tables/state.d.ts +35 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +61 -1
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +33 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +33 -1
- package/src/gen/state.ts +68 -1
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +40 -1
package/src/gen/tables/state.ts
CHANGED
|
@@ -846,6 +846,13 @@ export const state = {
|
|
|
846
846
|
"maxLength": 1024,
|
|
847
847
|
"description": "Search term to apply to the row search. When using this parameter, some rows which doesn't match the search term will be returned, use the similarity field to know how much the row matches the search term. "
|
|
848
848
|
},
|
|
849
|
+
"select": {
|
|
850
|
+
"type": "array",
|
|
851
|
+
"items": {
|
|
852
|
+
"type": "string"
|
|
853
|
+
},
|
|
854
|
+
"description": "Specify which columns to return in the response. Supports both top-level columns (e.g., \"name\") and nested attributes using dot notation (e.g., \"attributes.price\"). System columns (id, createdAt, updatedAt, etc.) are always included. If omitted, all columns are returned."
|
|
855
|
+
},
|
|
849
856
|
"orderBy": {
|
|
850
857
|
"default": "id",
|
|
851
858
|
"type": "string",
|
|
@@ -1216,7 +1223,7 @@ export const state = {
|
|
|
1216
1223
|
"title": "Botpress API",
|
|
1217
1224
|
"description": "API for Botpress Cloud",
|
|
1218
1225
|
"server": "https://api.botpress.cloud",
|
|
1219
|
-
"version": "1.
|
|
1226
|
+
"version": "1.45.0",
|
|
1220
1227
|
"prefix": "v1"
|
|
1221
1228
|
},
|
|
1222
1229
|
"errors": [
|
|
@@ -1604,6 +1611,14 @@ export const state = {
|
|
|
1604
1611
|
"minLength": 28,
|
|
1605
1612
|
"maxLength": 36
|
|
1606
1613
|
},
|
|
1614
|
+
"integrationAlias": {
|
|
1615
|
+
"type": "string",
|
|
1616
|
+
"maxLength": 200
|
|
1617
|
+
},
|
|
1618
|
+
"integrationInterfaceAlias": {
|
|
1619
|
+
"type": "string",
|
|
1620
|
+
"maxLength": 200
|
|
1621
|
+
},
|
|
1607
1622
|
"interfaceId": {
|
|
1608
1623
|
"type": "string",
|
|
1609
1624
|
"minLength": 28,
|
|
@@ -1612,12 +1627,36 @@ export const state = {
|
|
|
1612
1627
|
},
|
|
1613
1628
|
"required": [
|
|
1614
1629
|
"integrationId",
|
|
1630
|
+
"integrationAlias",
|
|
1615
1631
|
"interfaceId"
|
|
1616
1632
|
],
|
|
1617
1633
|
"additionalProperties": false
|
|
1618
1634
|
},
|
|
1619
1635
|
"description": "A mapping of plugin interface aliases to their backing integrations"
|
|
1620
1636
|
},
|
|
1637
|
+
"integrations": {
|
|
1638
|
+
"type": "object",
|
|
1639
|
+
"additionalProperties": {
|
|
1640
|
+
"type": "object",
|
|
1641
|
+
"properties": {
|
|
1642
|
+
"integrationId": {
|
|
1643
|
+
"type": "string",
|
|
1644
|
+
"minLength": 28,
|
|
1645
|
+
"maxLength": 36
|
|
1646
|
+
},
|
|
1647
|
+
"integrationAlias": {
|
|
1648
|
+
"type": "string",
|
|
1649
|
+
"maxLength": 200
|
|
1650
|
+
}
|
|
1651
|
+
},
|
|
1652
|
+
"required": [
|
|
1653
|
+
"integrationId",
|
|
1654
|
+
"integrationAlias"
|
|
1655
|
+
],
|
|
1656
|
+
"additionalProperties": false
|
|
1657
|
+
},
|
|
1658
|
+
"description": "A mapping of plugin integration aliases to their backing integrations"
|
|
1659
|
+
},
|
|
1621
1660
|
"id": {
|
|
1622
1661
|
"type": "string",
|
|
1623
1662
|
"minLength": 28,
|