@pipedream/form_io 0.0.1 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # Overview
2
+
3
+ The Form.io API empowers developers to manage forms and submissions on Pipedream, enabling the automation of workflows that require data collection and processing. With Form.io on Pipedream, you can create, update, and fetch forms, as well as handle form submissions. This is ideal for tasks like dynamically generating forms based on user input, streamlining data collection processes, and integrating form data with other services for further analysis or action.
4
+
5
+ # Example Use Cases
6
+
7
+ - **Form Submission Trigger to Slack Notification**: When a new form submission is received in Form.io, trigger a Pipedream workflow to send a custom alert to a Slack channel, informing the team about the submission details.
8
+
9
+ - **Dynamic Form Creation and Data Storage**: Automatically create a new form in Form.io using a Pipedream workflow whenever a specific event occurs (like a new product launch), and store the form data in a Pipedream data store for later use or analysis.
10
+
11
+ - **Form Data to Google Sheets Integration**: Use Pipedream to send new Form.io submissions to Google Sheets. Each submission can be added as a new row in a sheet, providing easy access for non-technical team members to review and process the data.
@@ -0,0 +1,11 @@
1
+ export default {
2
+ type: "app",
3
+ app: "form_io",
4
+ propDefinitions: {},
5
+ methods: {
6
+ // this.$auth contains connected account data
7
+ authKeys() {
8
+ console.log(Object.keys(this.$auth));
9
+ },
10
+ },
11
+ };
package/package.json CHANGED
@@ -1,18 +1,14 @@
1
1
  {
2
2
  "name": "@pipedream/form_io",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Pipedream Form.io Components",
5
- "main": "dist/app/form_io.app.mjs",
5
+ "main": "form_io.app.mjs",
6
6
  "keywords": [
7
7
  "pipedream",
8
8
  "form_io"
9
9
  ],
10
- "files": [
11
- "dist"
12
- ],
13
10
  "homepage": "https://pipedream.com/apps/form_io",
14
11
  "author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
15
- "license": "MIT",
16
12
  "publishConfig": {
17
13
  "access": "public"
18
14
  }