@botpress/api 0.84.0 → 0.85.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 +7 -2
- package/dist/src/gen/state.d.ts +5 -0
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +7 -2
package/dist/index.js
CHANGED
|
@@ -282904,7 +282904,7 @@ var state = {
|
|
|
282904
282904
|
},
|
|
282905
282905
|
"updateMessage": {
|
|
282906
282906
|
"name": "updateMessage",
|
|
282907
|
-
"description": "
|
|
282907
|
+
"description": "Updates a message tags and payload. The message type cannot be changed. Calling this operation from an integration, to update an incoming message, will not invoke the bot. The other way around it also true; Calling this operation from the bot, to update an outgoing message, will not invoke the integration.",
|
|
282908
282908
|
"method": "put",
|
|
282909
282909
|
"path": "/v1/chat/messages/{id}",
|
|
282910
282910
|
"parameters": {
|
|
@@ -282926,6 +282926,11 @@ var state = {
|
|
|
282926
282926
|
"type": "string"
|
|
282927
282927
|
},
|
|
282928
282928
|
"description": "Set of [Tags](/docs/developers/concepts/tags) that you can attach to a [Conversation](#schema_conversation). The set of [Tags](/docs/developers/concepts/tags) available on a [Conversation](#schema_conversation) is restricted by the list of [Tags](/docs/developers/concepts/tags) defined previously by the [Bot](#schema_bot). Individual keys can be unset by posting an empty value to them."
|
|
282929
|
+
},
|
|
282930
|
+
"payload": {
|
|
282931
|
+
"type": "object",
|
|
282932
|
+
"additionalProperties": true,
|
|
282933
|
+
"description": "Payload is the content type of the message. Accepted payload options: Text, Image, Choice, Dropdown, Card, Carousel, File, Audio, Video, Location"
|
|
282929
282934
|
}
|
|
282930
282935
|
},
|
|
282931
282936
|
"required": [
|
|
@@ -297857,7 +297862,7 @@ var state = {
|
|
|
297857
297862
|
"title": "Botpress API",
|
|
297858
297863
|
"description": "API for Botpress Cloud",
|
|
297859
297864
|
"server": "https://api.botpress.cloud",
|
|
297860
|
-
"version": "0.
|
|
297865
|
+
"version": "0.85.0",
|
|
297861
297866
|
"prefix": "v1"
|
|
297862
297867
|
},
|
|
297863
297868
|
"errors": [
|
package/dist/src/gen/state.d.ts
CHANGED