From c6bcdf0560e6cd27caa8e72421246d16221055cc Mon Sep 17 00:00:00 2001 From: danhsiung <35384182+danhsiung@users.noreply.github.com> Date: Mon, 30 Sep 2024 17:33:01 -0700 Subject: [PATCH] Adding app scaffolding for helpspot --- components/helpspot/helpspot.app.mjs | 11 +++++++++++ components/helpspot/package.json | 15 +++++++++++++++ pnpm-lock.yaml | 3 +++ 3 files changed, 29 insertions(+) create mode 100644 components/helpspot/helpspot.app.mjs create mode 100644 components/helpspot/package.json diff --git a/components/helpspot/helpspot.app.mjs b/components/helpspot/helpspot.app.mjs new file mode 100644 index 0000000000000..982fb6ada862d --- /dev/null +++ b/components/helpspot/helpspot.app.mjs @@ -0,0 +1,11 @@ +export default { + type: "app", + app: "helpspot", + propDefinitions: {}, + methods: { + // this.$auth contains connected account data + authKeys() { + console.log(Object.keys(this.$auth)); + }, + }, +}; \ No newline at end of file diff --git a/components/helpspot/package.json b/components/helpspot/package.json new file mode 100644 index 0000000000000..95d10790828f2 --- /dev/null +++ b/components/helpspot/package.json @@ -0,0 +1,15 @@ +{ + "name": "@pipedream/helpspot", + "version": "0.0.1", + "description": "Pipedream HelpSpot Components", + "main": "helpspot.app.mjs", + "keywords": [ + "pipedream", + "helpspot" + ], + "homepage": "https://pipedream.com/apps/helpspot", + "author": "Pipedream (https://pipedream.com/)", + "publishConfig": { + "access": "public" + } +} \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 767ac384eed5e..109e065dcb4f6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4411,6 +4411,9 @@ importers: dependencies: '@pipedream/platform': 1.6.0 + components/helpspot: + specifiers: {} + components/helpwise: specifiers: {}