Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -101,6 +107,7 @@ export default {
subject,
body,
text,
quoteBody,
optionsIsArchive,
} = this;

Expand Down Expand Up @@ -133,6 +140,7 @@ export default {
author_id: authorId,
body,
text,
quote_body: quoteBody,
options: {
tag_ids: tagIds,
archive: optionsIsArchive ?? true,
Expand Down
2 changes: 1 addition & 1 deletion components/frontapp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/frontapp",
"version": "0.8.0",
"version": "0.8.1",
"description": "Pipedream Frontapp Components",
"main": "frontapp.app.mjs",
"keywords": [
Expand Down
Loading