Skip to content

Commit 4beace3

Browse files
add quote body prop
1 parent 214e592 commit 4beace3

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

components/frontapp/actions/reply-to-conversation/reply-to-conversation.mjs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "frontapp-reply-to-conversation",
66
name: "Reply To Conversation",
77
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).",
8-
version: "0.0.5",
8+
version: "0.0.6",
99
type: "action",
1010
props: {
1111
frontApp,
@@ -60,6 +60,12 @@ export default {
6060
"attachments",
6161
],
6262
},
63+
quoteBody: {
64+
type: "string",
65+
label: "Quote Body",
66+
description: "Body for the quote that the message is referencing. Only available on email channels.",
67+
optional: true,
68+
},
6369
optionsTagIds: {
6470
propDefinition: [
6571
frontApp,
@@ -101,6 +107,7 @@ export default {
101107
subject,
102108
body,
103109
text,
110+
quoteBody,
104111
optionsIsArchive,
105112
} = this;
106113

@@ -133,6 +140,7 @@ export default {
133140
author_id: authorId,
134141
body,
135142
text,
143+
quote_body: quoteBody,
136144
options: {
137145
tag_ids: tagIds,
138146
archive: optionsIsArchive ?? true,

components/frontapp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/frontapp",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"description": "Pipedream Frontapp Components",
55
"main": "frontapp.app.mjs",
66
"keywords": [

0 commit comments

Comments
 (0)