Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into connect/workflow-sd…
Browse files Browse the repository at this point in the history
…k-docs
  • Loading branch information
dylburger committed Sep 21, 2024
2 parents 1c210e1 + b360576 commit 97c5839
Show file tree
Hide file tree
Showing 9 changed files with 116 additions and 0 deletions.
11 changes: 11 additions & 0 deletions components/agentos/agentos.app.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
export default {
type: "app",
app: "agentos",
propDefinitions: {},
methods: {
// this.$auth contains connected account data
authKeys() {
console.log(Object.keys(this.$auth));
},
},
};
15 changes: 15 additions & 0 deletions components/agentos/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "@pipedream/agentos",
"version": "0.0.1",
"description": "Pipedream agentOS Components",
"main": "agentos.app.mjs",
"keywords": [
"pipedream",
"agentos"
],
"homepage": "https://pipedream.com/apps/agentos",
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
"publishConfig": {
"access": "public"
}
}
11 changes: 11 additions & 0 deletions components/epsy/epsy.app.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
export default {
type: "app",
app: "epsy",
propDefinitions: {},
methods: {
// this.$auth contains connected account data
authKeys() {
console.log(Object.keys(this.$auth));
},
},
};
15 changes: 15 additions & 0 deletions components/epsy/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "@pipedream/epsy",
"version": "0.0.1",
"description": "Pipedream Epsy Components",
"main": "epsy.app.mjs",
"keywords": [
"pipedream",
"epsy"
],
"homepage": "https://pipedream.com/apps/epsy",
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
"publishConfig": {
"access": "public"
}
}
11 changes: 11 additions & 0 deletions components/highergov/highergov.app.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
export default {
type: "app",
app: "highergov",
propDefinitions: {},
methods: {
// this.$auth contains connected account data
authKeys() {
console.log(Object.keys(this.$auth));
},
},
};
15 changes: 15 additions & 0 deletions components/highergov/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "@pipedream/highergov",
"version": "0.0.1",
"description": "Pipedream HigherGov Components",
"main": "highergov.app.mjs",
"keywords": [
"pipedream",
"highergov"
],
"homepage": "https://pipedream.com/apps/highergov",
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
"publishConfig": {
"access": "public"
}
}
11 changes: 11 additions & 0 deletions components/offlight/offlight.app.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
export default {
type: "app",
app: "offlight",
propDefinitions: {},
methods: {
// this.$auth contains connected account data
authKeys() {
console.log(Object.keys(this.$auth));
},
},
};
15 changes: 15 additions & 0 deletions components/offlight/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "@pipedream/offlight",
"version": "0.0.1",
"description": "Pipedream OFFLIGHT Components",
"main": "offlight.app.mjs",
"keywords": [
"pipedream",
"offlight"
],
"homepage": "https://pipedream.com/apps/offlight",
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
"publishConfig": {
"access": "public"
}
}
12 changes: 12 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 97c5839

Please sign in to comment.