From ae2b37f282e674a8863b606b277af3b0db5eca68 Mon Sep 17 00:00:00 2001 From: danhsiung <35384182+danhsiung@users.noreply.github.com> Date: Fri, 18 Oct 2024 10:33:05 -0700 Subject: [PATCH] Adding app scaffolding for fluidforms --- components/fluidforms/fluidforms.app.mjs | 11 +++++++++++ components/fluidforms/package.json | 15 +++++++++++++++ pnpm-lock.yaml | 3 +++ 3 files changed, 29 insertions(+) create mode 100644 components/fluidforms/fluidforms.app.mjs create mode 100644 components/fluidforms/package.json diff --git a/components/fluidforms/fluidforms.app.mjs b/components/fluidforms/fluidforms.app.mjs new file mode 100644 index 0000000000000..47b75d8066d22 --- /dev/null +++ b/components/fluidforms/fluidforms.app.mjs @@ -0,0 +1,11 @@ +export default { + type: "app", + app: "fluidforms", + 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/fluidforms/package.json b/components/fluidforms/package.json new file mode 100644 index 0000000000000..70d8bad144f9f --- /dev/null +++ b/components/fluidforms/package.json @@ -0,0 +1,15 @@ +{ + "name": "@pipedream/fluidforms", + "version": "0.0.1", + "description": "Pipedream FluidForms Components", + "main": "fluidforms.app.mjs", + "keywords": [ + "pipedream", + "fluidforms" + ], + "homepage": "https://pipedream.com/apps/fluidforms", + "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 5bd4437e3c52a..b075176a7f032 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -3511,6 +3511,9 @@ importers: components/fluent_support: specifiers: {} + components/fluidforms: + specifiers: {} + components/flutterwave: specifiers: '@pipedream/platform': ^1.5.1