From 4f283b68792728cd9e38a51d804c213eb220a56c Mon Sep 17 00:00:00 2001 From: danhsiung <35384182+danhsiung@users.noreply.github.com> Date: Wed, 1 May 2024 15:38:17 -0700 Subject: [PATCH] Adding app scaffolding for botpress --- components/botpress/botpress.app.mjs | 11 +++++++++++ components/botpress/package.json | 15 +++++++++++++++ pnpm-lock.yaml | 3 +++ 3 files changed, 29 insertions(+) create mode 100644 components/botpress/botpress.app.mjs create mode 100644 components/botpress/package.json diff --git a/components/botpress/botpress.app.mjs b/components/botpress/botpress.app.mjs new file mode 100644 index 0000000000000..39205d4e90cc0 --- /dev/null +++ b/components/botpress/botpress.app.mjs @@ -0,0 +1,11 @@ +export default { + type: "app", + app: "botpress", + 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/botpress/package.json b/components/botpress/package.json new file mode 100644 index 0000000000000..96ca9fe90ab6e --- /dev/null +++ b/components/botpress/package.json @@ -0,0 +1,15 @@ +{ + "name": "@pipedream/botpress", + "version": "0.0.1", + "description": "Pipedream Botpress Components", + "main": "botpress.app.mjs", + "keywords": [ + "pipedream", + "botpress" + ], + "homepage": "https://pipedream.com/apps/botpress", + "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 4025982071957..e27a6d5b55a49 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -954,6 +954,9 @@ importers: dependencies: '@pipedream/platform': 1.5.1 + components/botpress: + specifiers: {} + components/bouncer: specifiers: '@pipedream/platform': ^1.5.1