@pipedream/prodpad 0.0.3 → 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 +8 -18
- package/actions/create-company/create-company.mjs +6 -1
- package/actions/create-contact/create-contact.mjs +6 -1
- package/actions/create-feedback/create-feedback.mjs +6 -1
- package/actions/create-idea/create-idea.mjs +6 -1
- package/actions/find-company/find-company.mjs +6 -1
- package/actions/find-contact/find-contact.mjs +6 -1
- package/actions/find-feedback/find-feedback.mjs +6 -1
- package/actions/find-idea/find-idea.mjs +6 -1
- package/actions/find-or-create-company/find-or-create-company.mjs +6 -1
- package/actions/find-or-create-contact/find-or-create-contact.mjs +6 -1
- package/actions/find-or-create-feedback/find-or-create-feedback.mjs +6 -1
- package/actions/list-jobrole-id-options/list-jobrole-id-options.mjs +24 -0
- package/actions/list-persona-id-options/list-persona-id-options.mjs +24 -0
- package/actions/list-product-id-options/list-product-id-options.mjs +24 -0
- package/actions/list-status-id-options/list-status-id-options.mjs +24 -0
- package/actions/update-company/update-company.mjs +6 -1
- package/actions/update-contact/update-contact.mjs +6 -1
- package/actions/update-feedback/update-feedback.mjs +6 -1
- package/actions/update-idea-stage/update-idea-stage.mjs +6 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,28 +1,18 @@
|
|
|
1
1
|
# Overview
|
|
2
2
|
|
|
3
|
-
|
|
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
|
-
|
|
5
|
+
# Example Use Cases
|
|
6
6
|
|
|
7
|
-
-
|
|
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
|
-
|
|
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
|
-
-
|
|
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
|
-
#
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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,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.
|
|
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.
|
|
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.
|
|
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.
|
|
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
|
+
"version": "0.1.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.
|
|
13
|
+
"@pipedream/platform": "^1.6.8"
|
|
14
14
|
},
|
|
15
15
|
"publishConfig": {
|
|
16
16
|
"access": "public"
|