diff --git a/components/frontapp/actions/reply-to-conversation/reply-to-conversation.mjs b/components/frontapp/actions/reply-to-conversation/reply-to-conversation.mjs index 34d3bdc3f27b4..cce5f687ef796 100644 --- a/components/frontapp/actions/reply-to-conversation/reply-to-conversation.mjs +++ b/components/frontapp/actions/reply-to-conversation/reply-to-conversation.mjs @@ -5,7 +5,7 @@ export default { key: "frontapp-reply-to-conversation", name: "Reply To Conversation", description: "Reply to a conversation by sending a message and appending it to the conversation. [See the documentation](https://dev.frontapp.com/reference/post_conversations-conversation-id-messages).", - version: "0.0.5", + version: "0.0.6", type: "action", props: { frontApp, @@ -60,6 +60,12 @@ export default { "attachments", ], }, + quoteBody: { + type: "string", + label: "Quote Body", + description: "Body for the quote that the message is referencing. Only available on email channels.", + optional: true, + }, optionsTagIds: { propDefinition: [ frontApp, @@ -101,6 +107,7 @@ export default { subject, body, text, + quoteBody, optionsIsArchive, } = this; @@ -133,6 +140,7 @@ export default { author_id: authorId, body, text, + quote_body: quoteBody, options: { tag_ids: tagIds, archive: optionsIsArchive ?? true, diff --git a/components/frontapp/package.json b/components/frontapp/package.json index 46b11f68b7dd0..1ecb73184dc7f 100644 --- a/components/frontapp/package.json +++ b/components/frontapp/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/frontapp", - "version": "0.8.0", + "version": "0.8.1", "description": "Pipedream Frontapp Components", "main": "frontapp.app.mjs", "keywords": [