Skip to content

Commit 3848ebc

Browse files
Merge branch 'master' into danny/prototyping-tool-annotations
2 parents 949fca9 + 89b584b commit 3848ebc

File tree

30 files changed

+363
-87
lines changed

30 files changed

+363
-87
lines changed

components/connectwise_psa/package.json

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

components/connectwise_psa/sources/common/base.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ export default {
4141
const results = this.connectwise.paginate({
4242
resourceFn,
4343
params,
44+
max,
4445
});
4546
let items = [];
4647
for await (const item of results) {

components/connectwise_psa/sources/new-contact-created/new-contact-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "connectwise_psa-new-contact-created",
77
name: "New Contact Created",
88
description: "Emit new event when a new contact is created in Connectwise.",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
methods: {

components/connectwise_psa/sources/new-project-created/new-project-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "connectwise_psa-new-project-created",
77
name: "New Project Created",
88
description: "Emit new event when a new project is created in Connectwise.",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
methods: {

components/connectwise_psa/sources/new-ticket-created/new-ticket-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "connectwise_psa-new-ticket-created",
77
name: "New Ticket Created",
88
description: "Emit new event when a new ticket is created in Connectwise.",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
methods: {

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": [

components/google_cloud/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/google_cloud",
3-
"version": "0.6.0",
3+
"version": "0.6.1",
44
"description": "Pipedream Google_cloud Components",
55
"main": "google_cloud.app.mjs",
66
"keywords": [
@@ -20,7 +20,7 @@
2020
"@google-cloud/logging": "^10.0.3",
2121
"@google-cloud/pubsub": "^3.0.1",
2222
"@google-cloud/storage": "^6.0.1",
23-
"@pipedream/platform": "^0.10.0",
23+
"@pipedream/platform": "^3.1.0",
2424
"crypto": "^1.0.1",
2525
"lodash-es": "^4.17.21",
2626
"uuid": "^8.3.2"

components/google_cloud/sources/bigquery-new-row/bigquery-new-row.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default {
99
// eslint-disable-next-line pipedream/source-name
1010
name: "BigQuery - New Row",
1111
description: "Emit new events when a new row is added to a table",
12-
version: "0.1.6",
12+
version: "0.1.7",
1313
dedupe: "unique",
1414
type: "source",
1515
props: {

components/google_cloud/sources/bigquery-query-results/bigquery-query-results.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default {
88
// eslint-disable-next-line pipedream/source-name
99
name: "BigQuery - Query Results",
1010
description: "Emit new events with the results of an arbitrary query",
11-
version: "0.1.5",
11+
version: "0.1.6",
1212
dedupe: "unique",
1313
type: "source",
1414
props: {

0 commit comments

Comments
 (0)