@pipedream/process_street 0.0.2 → 0.1.0

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 CHANGED
@@ -1,11 +1,11 @@
1
1
  # Overview
2
2
 
3
- Process Street is an API-ready, cloud-based task-management platform that enables users to create and manage automated workflows. The API allows you to easily customize and extend the functionality of your Process Street processes. Here are some of the things you can build using the API:
4
-
5
- 1. Custom integrations with third-party apps and services, allowing for seamless data flow between them and Process Street.
6
- 2. Automated reports and notifications to help you stay on top of your processes.
7
- 3. Automated checks to ensure workflow accuracy, compliance and consistency.
8
- 4. Smart triggers that launch actions in response to changes in your data.
9
- 5. Ability to combine processes from multiple sources.
10
- 6. Custom logic and workflows tailored to specific processes.
11
- 7. An API-ready, easily extensible and customizable platform.
3
+ The Process Street API empowers you to automate and integrate your checklists and workflows with other apps to streamline business operations. With the API, you can create workflows, manage tasks, trigger actions based on checklist completion, and synchronize data across tools. This paves the way for endless possibilities in terms of project management, compliance tracking, onboarding processes, and routine audits, all managed within the familiar interface of Process Street but supercharged with Pipedream's connectivity.
4
+
5
+ # Example Use Cases
6
+
7
+ - **Workflow Management Automation**: Automatically create Process Street checklists from a project management tool like Asana or Trello. When a new task is marked as complete in Asana, trigger a Pipedream workflow to create a corresponding checklist in Process Street to ensure all subtasks and compliance requirements are assessed.
8
+
9
+ - **Dynamic Checklist Deployment**: Use Pipedream to deploy checklists in Process Street based on customer actions. For example, once a customer signs up on your platform, a Pipedream workflow can trigger the creation of an onboarding checklist in Process Street, ensuring consistent onboarding experiences.
10
+
11
+ - **Data Synchronization Across Tools**: Keep your CRM, like Salesforce, in sync with Process Street. When a sales deal is marked as won in Salesforce, a Pipedream workflow can update or create a checklist in Process Street for the account management team, ensuring a seamless transition and kickoff for account setup and management.
@@ -0,0 +1,27 @@
1
+ import process_street from "../../process_street.app.mjs";
2
+
3
+ export default {
4
+ key: "process_street-list-workflow-id-options",
5
+ name: "List Workflow ID Options",
6
+ description: "Retrieves available options for the Workflow ID field.",
7
+ version: "0.0.1",
8
+ type: "action",
9
+ annotations: {
10
+ destructiveHint: false,
11
+ openWorldHint: true,
12
+ readOnlyHint: true,
13
+ },
14
+ props: {
15
+ process_street,
16
+ },
17
+ async run({ $ }) {
18
+ const options = await process_street.propDefinitions.workflowId.options
19
+ .call(this.process_street, {});
20
+ $.export("$summary", `Successfully retrieved ${options.length} option${
21
+ options.length === 1
22
+ ? ""
23
+ : "s"
24
+ }`);
25
+ return options;
26
+ },
27
+ };
@@ -5,7 +5,12 @@ export default {
5
5
  key: "process_street-start-workflow-run",
6
6
  name: "Start Workflow Run",
7
7
  description: "Starts a workflow run. [See the docs here](https://public-api.process.st/api/v1.1/docs/index.html#operation/createWorkflowRun)",
8
- version: "0.0.1",
8
+ version: "0.0.2",
9
+ annotations: {
10
+ destructiveHint: true,
11
+ openWorldHint: true,
12
+ readOnlyHint: false,
13
+ },
9
14
  type: "action",
10
15
  props: {
11
16
  processStreet,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/process_street",
3
- "version": "0.0.2",
3
+ "version": "0.1.0",
4
4
  "description": "Pipedream Process Street Components",
5
5
  "main": "process_street.app.mjs",
6
6
  "keywords": [
@@ -14,7 +14,7 @@
14
14
  "access": "public"
15
15
  },
16
16
  "dependencies": {
17
- "@pipedream/platform": "^1.3.0",
18
- "lodash": "^4.17.21"
17
+ "@pipedream/platform": "^1.6.8",
18
+ "lodash": "^4.18.1"
19
19
  }
20
20
  }