We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b5f3f4 commit 840d913Copy full SHA for 840d913
components/pipedream_utils/package.json
@@ -0,0 +1,15 @@
1
+{
2
+ "name": "@pipedream/pipedream_utils",
3
+ "version": "0.0.1",
4
+ "description": "Pipedream Utils Components",
5
+ "main": "pipedream_utils.app.mjs",
6
+ "keywords": [
7
+ "pipedream",
8
+ "pipedream_utils"
9
+ ],
10
+ "homepage": "https://pipedream.com/apps/pipedream_utils",
11
+ "author": "Pipedream <[email protected]> (https://pipedream.com/)",
12
+ "publishConfig": {
13
+ "access": "public"
14
+ }
15
+}
components/pipedream_utils/pipedream_utils.mjs
@@ -0,0 +1,11 @@
+export default {
+ type: "app",
+ app: "pipedream_utils",
+ propDefinitions: {},
+ methods: {
+ // this.$auth contains connected account data
+ authKeys() {
+ console.log(Object.keys(this.$auth));
+ },
+};
0 commit comments