Skip to content

Commit 9253834

Browse files
authored
Merge branch 'master' into issue-14085
2 parents 9d052cc + b476225 commit 9253834

File tree

303 files changed

+10381
-596
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

303 files changed

+10381
-596
lines changed

components/activecampaign/actions/create-or-update-contact/create-or-update-contact.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "activecampaign-create-or-update-contact",
66
name: "Create or Update Contact",
77
description: "Creates a new contact or updates an existing contact. [See the documentation](https://developers.activecampaign.com/reference/sync-a-contacts-data).",
8-
version: "0.2.5",
8+
version: "0.2.6",
99
type: "action",
1010
async run({ $ }) {
1111
const response =

components/activecampaign/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/activecampaign",
3-
"version": "0.4.4",
3+
"version": "0.4.5",
44
"description": "Pipedream Activecampaing Components",
55
"main": "activecampaign.app.mjs",
66
"keywords": [
@@ -14,7 +14,7 @@
1414
"access": "public"
1515
},
1616
"dependencies": {
17-
"@pipedream/platform": "^1.6.0",
17+
"@pipedream/platform": "^3.0.3",
1818
"inflection": "^3.0.0"
1919
}
2020
}
Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
import { defineApp } from "@pipedream/types";
2-
3-
export default defineApp({
1+
export default {
42
type: "app",
5-
app: "cloze",
3+
app: "adp",
64
propDefinitions: {},
75
methods: {
86
// this.$auth contains connected account data
97
authKeys() {
108
console.log(Object.keys(this.$auth));
119
},
1210
},
13-
});
11+
};

components/attio/actions/create-note/create-note.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "attio-create-note",
55
name: "Create Note",
66
description: "Creates a new note for a given record. The note will be linked to the specified record. [See the documentation](https://developers.attio.com/reference/post_v2-notes)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "action",
99
props: {
1010
attio,

components/attio/actions/create-update-record/create-update-record.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "attio-create-update-record",
66
name: "Create or Update Record",
77
description: "Creates or updates a specific record such as a person or a deal. If the record already exists, it's updated. Otherwise, a new record is created. [See the documentation](https://developers.attio.com/reference/put_v2-objects-object-records)",
8-
version: "0.0.1",
8+
version: "0.0.2",
99
type: "action",
1010
props: {
1111
attio,

components/attio/actions/delete-list-entry/delete-list-entry.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "attio-delete-list-entry",
55
name: "Delete List Entry",
66
description: "Deletes an existing entry from a specific list. [See the documentation](https://developers.attio.com/reference/delete_v2-lists-list-entries-entry-id)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "action",
99
props: {
1010
attio,

components/attio/attio.app.mjs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,15 @@ export default {
6464
offset: page * DEFAULT_LIMIT,
6565
},
6666
});
67-
return data?.map(({ id }) => id.record_id) || [];
67+
return data?.map(({
68+
id, values,
69+
}) => ({
70+
value: id.record_id,
71+
label: (values?.name?.length && (values.name[0].value || values.name[0].full_name))
72+
?? (values?.domains?.length && values.domains[0].domain)
73+
?? (values?.email_addresses?.length && values.email_addresses[0].email_address)
74+
?? values?.id?.record_id,
75+
})) || [];
6876
},
6977
},
7078
attributeId: {

components/attio/package.json

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

components/attio/sources/new-list-entry-instant/new-list-entry-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "attio-new-list-entry-instant",
77
name: "New List Entry (Instant)",
88
description: "Emit new event when a record, such as person, company, or deal, is added to a list",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
props: {

components/attio/sources/new-record-created-instant/new-record-created-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "attio-new-record-created-instant",
77
name: "New Record Created (Instant)",
88
description: "Emit new event when new record, such as person, company or deal gets created",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
props: {

0 commit comments

Comments
 (0)