Skip to content

Commit 97c5839

Browse files
committed
Merge remote-tracking branch 'origin/master' into connect/workflow-sdk-docs
2 parents 1c210e1 + b360576 commit 97c5839

File tree

9 files changed

+116
-0
lines changed

9 files changed

+116
-0
lines changed

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

components/agentos/package.json

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

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

components/epsy/package.json

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

components/highergov/package.json

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

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

components/offlight/package.json

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

pnpm-lock.yaml

Lines changed: 12 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)