@botpress/api 1.9.0 → 1.11.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/dist/index.js +654 -888
- package/dist/src/gen/admin/state.d.ts +92 -0
- package/dist/src/gen/files/state.d.ts +23 -0
- package/dist/src/gen/runtime/state.d.ts +24 -5
- package/dist/src/gen/state.d.ts +93 -5
- package/dist/src/gen/tables/state.d.ts +23 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +105 -3
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +30 -2
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +32 -8
- package/src/gen/state.ts +107 -9
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +30 -2
package/src/gen/files/state.ts
CHANGED
|
@@ -1579,7 +1579,7 @@ export const state = {
|
|
|
1579
1579
|
"title": "Botpress API",
|
|
1580
1580
|
"description": "API for Botpress Cloud",
|
|
1581
1581
|
"server": "https://api.botpress.cloud",
|
|
1582
|
-
"version": "1.
|
|
1582
|
+
"version": "1.11.0",
|
|
1583
1583
|
"prefix": "v1"
|
|
1584
1584
|
},
|
|
1585
1585
|
"errors": [
|
|
@@ -3178,6 +3178,29 @@ export const state = {
|
|
|
3178
3178
|
],
|
|
3179
3179
|
"description": "Template string optionaly used at build time by integrations implementing this interface to pick a name for actions and events.",
|
|
3180
3180
|
"additionalProperties": false
|
|
3181
|
+
},
|
|
3182
|
+
"title": {
|
|
3183
|
+
"type": "string",
|
|
3184
|
+
"minLength": 1,
|
|
3185
|
+
"maxLength": 64,
|
|
3186
|
+
"description": "Title of the interface. This is the name that will be displayed in the UI"
|
|
3187
|
+
},
|
|
3188
|
+
"description": {
|
|
3189
|
+
"type": "string",
|
|
3190
|
+
"maxLength": 256,
|
|
3191
|
+
"description": "Description of the interface. This is the description that will be displayed in the UI"
|
|
3192
|
+
},
|
|
3193
|
+
"iconUrl": {
|
|
3194
|
+
"type": "string",
|
|
3195
|
+
"description": "URL of the icon of the interface. This is the icon that will be displayed in the UI"
|
|
3196
|
+
},
|
|
3197
|
+
"readmeUrl": {
|
|
3198
|
+
"type": "string",
|
|
3199
|
+
"description": "URL of the readme of the interface. This is the readme that will be displayed in the UI"
|
|
3200
|
+
},
|
|
3201
|
+
"public": {
|
|
3202
|
+
"type": "boolean",
|
|
3203
|
+
"description": "Indicates if the interface is public. Public interfaces are available to all and cannot be updated without creating a new version."
|
|
3181
3204
|
}
|
|
3182
3205
|
},
|
|
3183
3206
|
"required": [
|
|
@@ -3189,7 +3212,12 @@ export const state = {
|
|
|
3189
3212
|
"entities",
|
|
3190
3213
|
"events",
|
|
3191
3214
|
"actions",
|
|
3192
|
-
"channels"
|
|
3215
|
+
"channels",
|
|
3216
|
+
"title",
|
|
3217
|
+
"description",
|
|
3218
|
+
"iconUrl",
|
|
3219
|
+
"readmeUrl",
|
|
3220
|
+
"public"
|
|
3193
3221
|
],
|
|
3194
3222
|
"additionalProperties": false
|
|
3195
3223
|
}
|