Skip to content

Commit 154d885

Browse files
Merge branch 'master' of github.com:PipedreamHQ/pipedream
2 parents 3647d21 + a84a0e6 commit 154d885

File tree

197 files changed

+1687
-358
lines changed

Some content is hidden

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

197 files changed

+1687
-358
lines changed

components/agentql/agentql.app.mjs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export default {
2+
type: "app",
3+
app: "agentql",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

components/agentql/package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/agentql",
3+
"version": "0.0.1",
4+
"description": "Pipedream AgentQL Components",
5+
"main": "agentql.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"agentql"
9+
],
10+
"homepage": "https://pipedream.com/apps/agentql",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

components/airtable_oauth/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,9 @@ Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Air
99
- **Aggregate and Email Weekly Reports**: Collect data from an Airtable base at the end of each week, create a summary report, and send it via email with SendGrid or Gmail. Perfect for providing stakeholders with regular insights without manual report generation.
1010

1111
- **Trigger SMS Notifications on Record Status Change**: Monitor an Airtable base for specific status changes and use Twilio to send an SMS notification whenever a record meets the criteria. This workflow ensures immediate alerts for time-sensitive operations.
12+
13+
# Troubleshooting
14+
15+
## Unable to find a new base
16+
17+
After creating a new base, reconnect your account and select it to enable Pipedream access.

components/algolia/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@pipedream/algolia",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Pipedream Algolia Components",
5-
"main": "algolia.app.js",
5+
"main": "algolia.app.mjs",
66
"keywords": [
77
"pipedream",
88
"algolia"

components/amazon_ses/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@pipedream/amazon_ses",
3-
"version": "0.3.6",
3+
"version": "0.3.7",
44
"description": "Pipedream Amazon SES Components",
5-
"main": "amazon_ses.app.js",
5+
"main": "amazon_ses.app.mjs",
66
"keywords": [
77
"pipedream",
88
"amazon_ses"
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export default {
2+
type: "app",
3+
app: "api_labz",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

components/api_labz/package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/api_labz",
3+
"version": "0.0.1",
4+
"description": "Pipedream API Labz Components",
5+
"main": "api_labz.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"api_labz"
9+
],
10+
"homepage": "https://pipedream.com/apps/api_labz",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

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: {

0 commit comments

Comments
 (0)