Skip to content

Commit 6803d80

Browse files
Merge branch 'master' into 2400-apps
2 parents 5e3ada6 + 3ac3776 commit 6803d80

File tree

11 files changed

+145
-0
lines changed

11 files changed

+145
-0
lines changed
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: "beaconchain",
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/beaconchain",
3+
"version": "0.0.1",
4+
"description": "Pipedream Beaconchain Components",
5+
"main": "beaconchain.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"beaconchain"
9+
],
10+
"homepage": "https://pipedream.com/apps/beaconchain",
11+
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
12+
"publishConfig": {
13+
"access": "public"
14+
}
15+
}

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

components/e2b/package.json

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

components/insertchat/package.json

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

components/skyvern/package.json

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

components/skyvern/skyvern.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: "skyvern",
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/workflow_max",
3+
"version": "0.0.1",
4+
"description": "Pipedream Workflow Max Components",
5+
"main": "workflow_max.app.mjs",
6+
"keywords": [
7+
"pipedream",
8+
"workflow_max"
9+
],
10+
"homepage": "https://pipedream.com/apps/workflow_max",
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: "workflow_max",
4+
propDefinitions: {},
5+
methods: {
6+
// this.$auth contains connected account data
7+
authKeys() {
8+
console.log(Object.keys(this.$auth));
9+
},
10+
},
11+
};

0 commit comments

Comments
 (0)