@pipedream/prodpad 0.0.3 → 0.2.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.
Files changed (25) hide show
  1. package/README.md +8 -18
  2. package/actions/create-company/create-company.mjs +6 -1
  3. package/actions/create-contact/create-contact.mjs +6 -1
  4. package/actions/create-feedback/create-feedback.mjs +6 -1
  5. package/actions/create-idea/create-idea.mjs +6 -1
  6. package/actions/find-company/find-company.mjs +6 -1
  7. package/actions/find-contact/find-contact.mjs +6 -1
  8. package/actions/find-feedback/find-feedback.mjs +6 -1
  9. package/actions/find-idea/find-idea.mjs +6 -1
  10. package/actions/find-or-create-company/find-or-create-company.mjs +6 -1
  11. package/actions/find-or-create-contact/find-or-create-contact.mjs +6 -1
  12. package/actions/find-or-create-feedback/find-or-create-feedback.mjs +6 -1
  13. package/actions/list-company-id-options/list-company-id-options.mjs +33 -0
  14. package/actions/list-contact-id-options/list-contact-id-options.mjs +33 -0
  15. package/actions/list-feedback-id-options/list-feedback-id-options.mjs +33 -0
  16. package/actions/list-idea-id-options/list-idea-id-options.mjs +33 -0
  17. package/actions/list-jobrole-id-options/list-jobrole-id-options.mjs +24 -0
  18. package/actions/list-persona-id-options/list-persona-id-options.mjs +24 -0
  19. package/actions/list-product-id-options/list-product-id-options.mjs +24 -0
  20. package/actions/list-status-id-options/list-status-id-options.mjs +24 -0
  21. package/actions/update-company/update-company.mjs +6 -1
  22. package/actions/update-contact/update-contact.mjs +6 -1
  23. package/actions/update-feedback/update-feedback.mjs +6 -1
  24. package/actions/update-idea-stage/update-idea-stage.mjs +6 -1
  25. package/package.json +2 -2
package/README.md CHANGED
@@ -1,28 +1,18 @@
1
1
  # Overview
2
2
 
3
- What can you build with ProdPad's API? The possibilities are endless!
3
+ The ProdPad API taps into the core functionalities of product management, allowing you to automate interactions with your product backlog, roadmaps, and idea pools. With Pipedream's serverless execution environment, you can trigger workflows based on events in ProdPad, sync data across multiple platforms, and create custom automations to streamline your product management processes. ProdPad's API lets you seamlessly integrate with other tools to keep your team aligned, informed, and productive.
4
4
 
5
- ProdPad is an idea and innovation management platform – with our API, you’re able to turn ideas into actionable tasks with minimal effort. ProdPad’s API enables you to manage product planning and roadmapping, such as:
5
+ # Example Use Cases
6
6
 
7
- - Retrieve ideas, including customer feedback and suggestions
8
- - Automatically creates tasks for your team to feature develop and utilize
9
- - Track and analyze the progress of product-related tasks across your different products
10
- - Generate reports on product performance
11
- - Monitor customer feedback with customizable filters
12
- - Integrate your product roadmap with third-party systems and tools
7
+ - **Idea Submission Automation**: When a new idea is submitted to ProdPad, use Pipedream to trigger a workflow that automatically categorizes the idea based on predefined rules, assigns it to the appropriate team, and sends notifications via Slack or email to relevant stakeholders. This ensures that new ideas are quickly processed and evaluated.
13
8
 
14
- The ProdPad API allows you to build a range of custom projects that can streamline and automate parts of your product planning process. Here are some of the things you can do:
9
+ - **Feedback Loop Enhancement**: Integrate ProdPad with customer support tools like Zendesk or Intercom. Whenever feedback is received, it can trigger a Pipedream workflow that creates or updates ideas in ProdPad, linking them back to the customer tickets. This ensures valuable user feedback is directly tied to potential feature development in the product roadmap.
15
10
 
16
- - Track customer feedback and manage product roadmaps
17
- - Keep track of team tasks and milestones
18
- - Analyze product performance and utilization
19
- - Visualize your product roadmap
20
- - Aggregate customer feedback into reports
21
- - Integrate ProdPad into your existing systems and tools
22
- - Create custom development projects
23
- - Synchronize data between Prodpad and third-party applications
11
+ - **Product Roadmap Synchronization**: Keep your product roadmap in sync with project management tools such as Jira or Trello. When changes are made to the roadmap in ProdPad, Pipedream can catch these events and update corresponding tasks, stories, or epics in your project management tool, ensuring all teams are working from the latest plan.
24
12
 
25
- # Webhooks
13
+ # Getting Started
14
+
15
+ ## Webhooks
26
16
 
27
17
  Some triggers support webhooks for ProdPad. These include:
28
18
 
@@ -6,7 +6,12 @@ export default {
6
6
  name: "Create Company",
7
7
  description: "Create a new company in the account. This is only available to accounts with an Advanced or higher subscription. If you try on an account without an advanced or higher subscription package it will return a 403. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PostCompanies).",
8
8
  type: "action",
9
- version: "0.0.1",
9
+ version: "0.0.2",
10
+ annotations: {
11
+ destructiveHint: false,
12
+ openWorldHint: true,
13
+ readOnlyHint: false,
14
+ },
10
15
  props: {
11
16
  app,
12
17
  name: {
@@ -6,7 +6,12 @@ export default {
6
6
  name: "Create Contact",
7
7
  description: "Creates a contact. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PostContacts).",
8
8
  type: "action",
9
- version: "0.0.1",
9
+ version: "0.0.2",
10
+ annotations: {
11
+ destructiveHint: false,
12
+ openWorldHint: true,
13
+ readOnlyHint: false,
14
+ },
10
15
  props: {
11
16
  app,
12
17
  name: {
@@ -7,7 +7,12 @@ export default {
7
7
  name: "Create Feedback",
8
8
  description: "Creates feedback. [See the documentation](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PostFeedbacks).",
9
9
  type: "action",
10
- version: "0.0.2",
10
+ version: "0.0.3",
11
+ annotations: {
12
+ destructiveHint: false,
13
+ openWorldHint: true,
14
+ readOnlyHint: false,
15
+ },
11
16
  props: {
12
17
  app,
13
18
  feedback: {
@@ -6,7 +6,12 @@ export default {
6
6
  name: "Create Idea",
7
7
  description: "Creates an idea. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Ideas/PostIdeas).",
8
8
  type: "action",
9
- version: "0.0.1",
9
+ version: "0.0.2",
10
+ annotations: {
11
+ destructiveHint: false,
12
+ openWorldHint: true,
13
+ readOnlyHint: false,
14
+ },
10
15
  props: {
11
16
  app,
12
17
  title: {
@@ -6,7 +6,12 @@ export default {
6
6
  name: "Find Company",
7
7
  description: "Finds a company. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/GetCompanies).",
8
8
  type: "action",
9
- version: "0.0.1",
9
+ version: "0.0.2",
10
+ annotations: {
11
+ destructiveHint: false,
12
+ openWorldHint: true,
13
+ readOnlyHint: true,
14
+ },
10
15
  props: {
11
16
  app,
12
17
  name: {
@@ -6,7 +6,12 @@ export default {
6
6
  name: "Find Contact",
7
7
  description: "Finds a contact. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PostContacts).",
8
8
  type: "action",
9
- version: "0.0.1",
9
+ version: "0.0.2",
10
+ annotations: {
11
+ destructiveHint: false,
12
+ openWorldHint: true,
13
+ readOnlyHint: true,
14
+ },
10
15
  props: {
11
16
  app,
12
17
  name: {
@@ -6,7 +6,12 @@ export default {
6
6
  name: "Find Feedback",
7
7
  description: "Finds a feedback. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/GetFeedbacks).",
8
8
  type: "action",
9
- version: "0.0.1",
9
+ version: "0.0.2",
10
+ annotations: {
11
+ destructiveHint: false,
12
+ openWorldHint: true,
13
+ readOnlyHint: true,
14
+ },
10
15
  props: {
11
16
  app,
12
17
  state: {
@@ -6,7 +6,12 @@ export default {
6
6
  name: "Find Idea",
7
7
  description: "Finds an idea. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Ideas/GetIdeas).",
8
8
  type: "action",
9
- version: "0.0.1",
9
+ version: "0.0.2",
10
+ annotations: {
11
+ destructiveHint: false,
12
+ openWorldHint: true,
13
+ readOnlyHint: true,
14
+ },
10
15
  props: {
11
16
  app,
12
17
  externalId: {
@@ -6,7 +6,12 @@ export default {
6
6
  name: "Find or Create Company",
7
7
  description: "Finds or creates a company. See the docs for [find company](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/GetCompanies) and [create company](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PostCompanies).",
8
8
  type: "action",
9
- version: "0.0.1",
9
+ version: "0.0.2",
10
+ annotations: {
11
+ destructiveHint: false,
12
+ openWorldHint: true,
13
+ readOnlyHint: true,
14
+ },
10
15
  props: {
11
16
  app,
12
17
  name: {
@@ -6,7 +6,12 @@ export default {
6
6
  name: "Find or Create Contact",
7
7
  description: "Finds or creates a contact. See the docs for [find contact](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PostContacts) and [create contact](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PostContacts).",
8
8
  type: "action",
9
- version: "0.0.1",
9
+ version: "0.0.2",
10
+ annotations: {
11
+ destructiveHint: false,
12
+ openWorldHint: true,
13
+ readOnlyHint: true,
14
+ },
10
15
  props: {
11
16
  app,
12
17
  name: {
@@ -6,7 +6,12 @@ export default {
6
6
  name: "Find or Create Feedback",
7
7
  description: "Finds or creates a feedback. See the docs for [find feedback](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/GetFeedbacks) and [create feedback](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PostFeedbacks).",
8
8
  type: "action",
9
- version: "0.0.1",
9
+ version: "0.0.2",
10
+ annotations: {
11
+ destructiveHint: false,
12
+ openWorldHint: true,
13
+ readOnlyHint: true,
14
+ },
10
15
  props: {
11
16
  app,
12
17
  customer: {
@@ -0,0 +1,33 @@
1
+ import prodpad from "../../prodpad.app.mjs";
2
+
3
+ export default {
4
+ key: "prodpad-list-company-id-options",
5
+ name: "List Company ID Options",
6
+ description: "Retrieves available options for the Company 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
+ prodpad,
16
+ page: {
17
+ type: "integer",
18
+ label: "Page",
19
+ description: "The page of results to retrieve.",
20
+ min: 0,
21
+ default: 0,
22
+ },
23
+ },
24
+ async run({ $ }) {
25
+ const options = await prodpad.propDefinitions.companyId.options.call(this.prodpad, {
26
+ page: this.page,
27
+ });
28
+ $.export("$summary", `Successfully retrieved ${options.length} option${options.length === 1
29
+ ? ""
30
+ : "s"}`);
31
+ return options;
32
+ },
33
+ };
@@ -0,0 +1,33 @@
1
+ import prodpad from "../../prodpad.app.mjs";
2
+
3
+ export default {
4
+ key: "prodpad-list-contact-id-options",
5
+ name: "List Contact ID Options",
6
+ description: "Retrieves available options for the Contact 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
+ prodpad,
16
+ page: {
17
+ type: "integer",
18
+ label: "Page",
19
+ description: "The page of results to retrieve.",
20
+ min: 0,
21
+ default: 0,
22
+ },
23
+ },
24
+ async run({ $ }) {
25
+ const options = await prodpad.propDefinitions.contactId.options.call(this.prodpad, {
26
+ page: this.page,
27
+ });
28
+ $.export("$summary", `Successfully retrieved ${options.length} option${options.length === 1
29
+ ? ""
30
+ : "s"}`);
31
+ return options;
32
+ },
33
+ };
@@ -0,0 +1,33 @@
1
+ import prodpad from "../../prodpad.app.mjs";
2
+
3
+ export default {
4
+ key: "prodpad-list-feedback-id-options",
5
+ name: "List Feedback ID Options",
6
+ description: "Retrieves available options for the Feedback 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
+ prodpad,
16
+ page: {
17
+ type: "integer",
18
+ label: "Page",
19
+ description: "The page of results to retrieve.",
20
+ min: 0,
21
+ default: 0,
22
+ },
23
+ },
24
+ async run({ $ }) {
25
+ const options = await prodpad.propDefinitions.feedbackId.options.call(this.prodpad, {
26
+ page: this.page,
27
+ });
28
+ $.export("$summary", `Successfully retrieved ${options.length} option${options.length === 1
29
+ ? ""
30
+ : "s"}`);
31
+ return options;
32
+ },
33
+ };
@@ -0,0 +1,33 @@
1
+ import prodpad from "../../prodpad.app.mjs";
2
+
3
+ export default {
4
+ key: "prodpad-list-idea-id-options",
5
+ name: "List Idea ID Options",
6
+ description: "Retrieves available options for the Idea 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
+ prodpad,
16
+ page: {
17
+ type: "integer",
18
+ label: "Page",
19
+ description: "The page of results to retrieve.",
20
+ min: 0,
21
+ default: 0,
22
+ },
23
+ },
24
+ async run({ $ }) {
25
+ const options = await prodpad.propDefinitions.ideaId.options.call(this.prodpad, {
26
+ page: this.page,
27
+ });
28
+ $.export("$summary", `Successfully retrieved ${options.length} option${options.length === 1
29
+ ? ""
30
+ : "s"}`);
31
+ return options;
32
+ },
33
+ };
@@ -0,0 +1,24 @@
1
+ import prodpad from "../../prodpad.app.mjs";
2
+
3
+ export default {
4
+ key: "prodpad-list-jobrole-id-options",
5
+ name: "List Job Role ID Options",
6
+ description: "Retrieves available options for the Job Role 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
+ prodpad,
16
+ },
17
+ async run({ $ }) {
18
+ const options = await prodpad.propDefinitions.jobroleId.options.call(this.prodpad);
19
+ $.export("$summary", `Successfully retrieved ${options.length} option${options.length === 1
20
+ ? ""
21
+ : "s"}`);
22
+ return options;
23
+ },
24
+ };
@@ -0,0 +1,24 @@
1
+ import prodpad from "../../prodpad.app.mjs";
2
+
3
+ export default {
4
+ key: "prodpad-list-persona-id-options",
5
+ name: "List Persona ID Options",
6
+ description: "Retrieves available options for the Persona 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
+ prodpad,
16
+ },
17
+ async run({ $ }) {
18
+ const options = await prodpad.propDefinitions.personaId.options.call(this.prodpad);
19
+ $.export("$summary", `Successfully retrieved ${options.length} option${options.length === 1
20
+ ? ""
21
+ : "s"}`);
22
+ return options;
23
+ },
24
+ };
@@ -0,0 +1,24 @@
1
+ import prodpad from "../../prodpad.app.mjs";
2
+
3
+ export default {
4
+ key: "prodpad-list-product-id-options",
5
+ name: "List Product ID Options",
6
+ description: "Retrieves available options for the Product 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
+ prodpad,
16
+ },
17
+ async run({ $ }) {
18
+ const options = await prodpad.propDefinitions.productId.options.call(this.prodpad);
19
+ $.export("$summary", `Successfully retrieved ${options.length} option${options.length === 1
20
+ ? ""
21
+ : "s"}`);
22
+ return options;
23
+ },
24
+ };
@@ -0,0 +1,24 @@
1
+ import prodpad from "../../prodpad.app.mjs";
2
+
3
+ export default {
4
+ key: "prodpad-list-status-id-options",
5
+ name: "List Status ID Options",
6
+ description: "Retrieves available options for the Status 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
+ prodpad,
16
+ },
17
+ async run({ $ }) {
18
+ const options = await prodpad.propDefinitions.statusId.options.call(this.prodpad);
19
+ $.export("$summary", `Successfully retrieved ${options.length} option${options.length === 1
20
+ ? ""
21
+ : "s"}`);
22
+ return options;
23
+ },
24
+ };
@@ -6,7 +6,12 @@ export default {
6
6
  name: "Update Company",
7
7
  description: "Updates a company. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PutCompany).",
8
8
  type: "action",
9
- version: "0.0.1",
9
+ version: "0.0.2",
10
+ annotations: {
11
+ destructiveHint: true,
12
+ openWorldHint: true,
13
+ readOnlyHint: false,
14
+ },
10
15
  props: {
11
16
  app,
12
17
  companyId: {
@@ -6,7 +6,12 @@ export default {
6
6
  name: "Update Contact",
7
7
  description: "Updates a contact. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PutContact).",
8
8
  type: "action",
9
- version: "0.0.1",
9
+ version: "0.0.2",
10
+ annotations: {
11
+ destructiveHint: true,
12
+ openWorldHint: true,
13
+ readOnlyHint: false,
14
+ },
10
15
  props: {
11
16
  app,
12
17
  contactId: {
@@ -5,7 +5,12 @@ export default {
5
5
  name: "Update Feedback",
6
6
  description: "Updates a feedback. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Feedback/PutFeedback).",
7
7
  type: "action",
8
- version: "0.0.1",
8
+ version: "0.0.2",
9
+ annotations: {
10
+ destructiveHint: true,
11
+ openWorldHint: true,
12
+ readOnlyHint: false,
13
+ },
9
14
  props: {
10
15
  app,
11
16
  feedbackId: {
@@ -5,7 +5,12 @@ export default {
5
5
  name: "Update Idea Stage",
6
6
  description: "Updates the stage of an idea. [See the docs](https://app.swaggerhub.com/apis-docs/ProdPad/prodpad/1.0#/Ideas/PostIdeaStatus).",
7
7
  type: "action",
8
- version: "0.0.1",
8
+ version: "0.0.2",
9
+ annotations: {
10
+ destructiveHint: true,
11
+ openWorldHint: true,
12
+ readOnlyHint: false,
13
+ },
9
14
  props: {
10
15
  app,
11
16
  ideaId: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/prodpad",
3
- "version": "0.0.3",
3
+ "version": "0.2.0",
4
4
  "description": "Pipedream ProdPad Components",
5
5
  "main": "prodpad.app.mjs",
6
6
  "keywords": [
@@ -10,7 +10,7 @@
10
10
  "homepage": "https://pipedream.com/apps/prodpad",
11
11
  "author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
12
12
  "dependencies": {
13
- "@pipedream/platform": "^1.2.1"
13
+ "@pipedream/platform": "^1.6.8"
14
14
  },
15
15
  "publishConfig": {
16
16
  "access": "public"