Skip to content

Commit 9b70290

Browse files
authored
[BUG] Apollo.io triggers are not logging anything (#15991)
1 parent ab7454a commit 9b70290

File tree

25 files changed

+80
-80
lines changed

25 files changed

+80
-80
lines changed

components/apollo_io/actions/add-contacts-to-sequence/add-contacts-to-sequence.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "Add Contacts to Sequence",
66
description: "Adds one or more contacts to a sequence in Apollo.io. [See the documentation](https://apolloio.github.io/apollo-api-docs/?shell#add-contacts-to-sequence)",
77
type: "action",
8-
version: "0.0.4",
8+
version: "0.0.5",
99
props: {
1010
app,
1111
sequenceId: {

components/apollo_io/actions/create-account/create-account.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "Create Account",
66
description: "Creates a new account in Apollo.io. [See the documentation](https://apolloio.github.io/apollo-api-docs/?shell#create-an-account)",
77
type: "action",
8-
version: "0.0.4",
8+
version: "0.0.5",
99
props: {
1010
app,
1111
name: {

components/apollo_io/actions/create-contact/create-contact.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "Create Contact",
66
description: "Creates a new contact in Apollo.io. [See the documentation](https://apolloio.github.io/apollo-api-docs/?shell#create-a-contact)",
77
type: "action",
8-
version: "0.0.5",
8+
version: "0.0.6",
99
props: {
1010
app,
1111
email: {

components/apollo_io/actions/create-opportunity/create-opportunity.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "Create Opportunity",
66
description: "Creates a new opportunity in Apollo.io. [See the documentation](https://apolloio.github.io/apollo-api-docs/?shell#create-opportunity)",
77
type: "action",
8-
version: "0.0.3",
8+
version: "0.0.4",
99
props: {
1010
app,
1111
ownerId: {

components/apollo_io/actions/create-update-contact/create-update-contact.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
name: "Create Or Update Contact",
77
description: "Creates or updates a specific contact. If the contact email already exists, it's updated. Otherwise, a new contact is created. [See the documentation](https://apolloio.github.io/apollo-api-docs/?shell#create-a-contact)",
88
type: "action",
9-
version: "0.0.2",
9+
version: "0.0.3",
1010
props: {
1111
app,
1212
email: {
@@ -88,7 +88,7 @@ export default {
8888
direct_phone: this.phone,
8989
});
9090

91-
const { contacts } = await this.app.listContacts({
91+
const { contacts } = await this.app.searchContacts({
9292
params: {
9393
q_keywords: this.email,
9494
},

components/apollo_io/actions/get-opportunity/get-opportunity.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "Get Opportunity",
66
description: "Gets a specific opportunity in Apollo.io. [See the documentation](https://apolloio.github.io/apollo-api-docs/?shell#view-opportunity)",
77
type: "action",
8-
version: "0.0.3",
8+
version: "0.0.4",
99
props: {
1010
app,
1111
opportunityId: {

components/apollo_io/actions/people-enrichment/people-enrichment.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
name: "People Enrichment",
66
description: "Enriches a person's information, the more information you pass in, the more likely we can find a match. [See the documentation](https://apolloio.github.io/apollo-api-docs/?shell#people-enrichment)",
77
type: "action",
8-
version: "0.0.6",
8+
version: "0.0.7",
99
props: {
1010
app,
1111
firstName: {

components/apollo_io/actions/search-accounts/search-accounts.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
name: "Search For Accounts",
77
description: "Search for accounts in Apollo.io. [See the documentation](https://apolloio.github.io/apollo-api-docs/?shell#search-for-accounts)",
88
type: "action",
9-
version: "0.0.3",
9+
version: "0.0.4",
1010
props: {
1111
app,
1212
search: {

components/apollo_io/actions/search-contacts/search-contacts.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
name: "Search For Contacts",
77
description: "Search for contacts in Apollo.io. [See the documentation](https://apolloio.github.io/apollo-api-docs/?shell#search-for-contacts)",
88
type: "action",
9-
version: "0.0.3",
9+
version: "0.0.4",
1010
props: {
1111
app,
1212
search: {

components/apollo_io/actions/search-sequences/search-sequences.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
name: "Search For Sequences",
77
description: "Search for sequences in Apollo.io. [See the documentation](https://apolloio.github.io/apollo-api-docs/?shell#search-for-sequences)",
88
type: "action",
9-
version: "0.0.3",
9+
version: "0.0.4",
1010
props: {
1111
app,
1212
search: {

0 commit comments

Comments
 (0)