Skip to content

Commit 388bd1d

Browse files
authored
Merge branch 'master' into gmail-find-email-improvements
2 parents d8be9e9 + 56a1a2e commit 388bd1d

File tree

10 files changed

+127
-1
lines changed

10 files changed

+127
-1
lines changed

components/action1/action1.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: "action1",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

components/action1/package.json

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

components/buddy/buddy.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: "buddy",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

components/buddy/package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/buddy",
3+
"version": "0.0.1",
4+
"description": "Pipedream Buddy Components",
5+
"main": "buddy.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"buddy"
9+
],
10+
"homepage": "https://pipedream.com/apps/buddy",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}
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: "guardrails",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

components/guardrails/package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/guardrails",
3+
"version": "0.0.1",
4+
"description": "Pipedream Guardrails Components",
5+
"main": "guardrails.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"guardrails"
9+
],
10+
"homepage": "https://pipedream.com/apps/guardrails",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}
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: "local_reviews",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@pipedream/local_reviews",
3+
"version": "0.0.1",
4+
"description": "Pipedream Local Reviews Components",
5+
"main": "local_reviews.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"local_reviews"
9+
],
10+
"homepage": "https://pipedream.com/apps/local_reviews",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

docs-v2/pages/connect/index.mdx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,16 @@ import VideoPlayer from "@/components/VideoPlayer";
55

66
# Pipedream Connect
77

8-
**Connect provides a developer toolkit that lets you add {process.env.PUBLIC_APPS}+ integrations to your app or AI agent.** You can build AI agents, in-app messaging, CRM syncs, [and much more](/connect/use-cases/), all in a few minutes. You have full, code-level control over how these integrations work in your app. You handle your product, Pipedream simplifies the integration.
8+
**Connect provides a developer toolkit that lets you add {process.env.PUBLIC_APPS}+ integrations to your app or AI agent.** You can build AI agents, chatbots, workflow builders, [and much more](/connect/use-cases/), all in a few minutes. You have full, code-level control over how these integrations work in your app. You handle your product, Pipedream simplifies the integration.
99

1010
![Connect visualization](https://res.cloudinary.com/pipedreamin/image/upload/v1738731467/pd-connect-viz_cep0uq.png)
1111

12+
## Demos
13+
14+
<Callout type="info">
15+
Check out [Pipedream MCP](/connect/mcp/developers) in our **[demo chat app](https://chat.pipedream.com)** or explore the [Connect SDK](/connect/components) in our **[playground](https://pdrm.co/connect)**.
16+
</Callout>
17+
1218
## Managed auth
1319

1420
- Handle authorization or accept API keys on behalf of your users, for any of Pipedream's [{process.env.PUBLIC_APPS}+ APIs](https://pipedream.com/apps)

pnpm-lock.yaml

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)