@pipedream/productlane 0.1.0 → 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.
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Overview
|
|
2
|
+
|
|
3
|
+
The Productlane API on Pipedream allows you to integrate and automate your product feedback loop. You can craft workflows to manage feature requests, prioritize product development, and engage with your user base more effectively. It's useful for product managers who want to streamline user feedback into actionable insights, and for development teams aiming to align their work with customer needs.
|
|
4
|
+
|
|
5
|
+
# Example Use Cases
|
|
6
|
+
|
|
7
|
+
- **Syncing Feature Requests to Project Management Tools**: Automatically create tasks in project management apps like Trello or Asana when new feature requests are submitted via Productlane.
|
|
8
|
+
|
|
9
|
+
- **User Feedback Aggregation**: Gather and sort user feedback from Productlane, sending a daily or weekly digest to your team's Slack channel or email to keep everyone in the loop.
|
|
10
|
+
|
|
11
|
+
- **Feature Launch Announcements**: When a feature moves to 'launched' status in Productlane, trigger a workflow to announce the update across multiple platforms, such as Twitter, company blog, or newsletter.
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "productlane-create-contact",
|
|
5
5
|
name: "Create Contact",
|
|
6
6
|
description: "Creates a new contact with email, name, and an array of segments in Productlane. [See the documentation](https://productlane.com/docs/api-reference/contacts/create-contact)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.2",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: false,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
productlane,
|
|
@@ -8,7 +8,12 @@ export default {
|
|
|
8
8
|
name: "Create Feedback",
|
|
9
9
|
description:
|
|
10
10
|
"Create new feedback in Productlane. [See the documentation](https://productlane.com/docs/api-reference/portal/create-feedback)",
|
|
11
|
-
version: "0.0.
|
|
11
|
+
version: "0.0.2",
|
|
12
|
+
annotations: {
|
|
13
|
+
destructiveHint: false,
|
|
14
|
+
openWorldHint: true,
|
|
15
|
+
readOnlyHint: false,
|
|
16
|
+
},
|
|
12
17
|
type: "action",
|
|
13
18
|
props: {
|
|
14
19
|
productlane,
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import productlane from "../../productlane.app.mjs";
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
key: "productlane-list-project-id-options",
|
|
5
|
+
name: "List Project ID Options",
|
|
6
|
+
description: "Retrieves available options for the Project 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
|
+
productlane,
|
|
16
|
+
},
|
|
17
|
+
async run({ $ }) {
|
|
18
|
+
const options = await productlane.propDefinitions.projectId.options.call(this.productlane, {});
|
|
19
|
+
$.export("$summary", `Successfully retrieved ${options.length} option${
|
|
20
|
+
options.length === 1
|
|
21
|
+
? ""
|
|
22
|
+
: "s"
|
|
23
|
+
}`);
|
|
24
|
+
return options;
|
|
25
|
+
},
|
|
26
|
+
};
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "productlane-upvote-project",
|
|
5
5
|
name: "Upvote Project",
|
|
6
6
|
description: "Upvotes a project by ID. [See the documentation](https://productlane.com/docs/api-reference/portal/upvote-project)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.2",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: false,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
productlane,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipedream/productlane",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Pipedream Productlane Components",
|
|
5
5
|
"main": "productlane.app.mjs",
|
|
6
6
|
"keywords": [
|
|
@@ -13,6 +13,6 @@
|
|
|
13
13
|
"access": "public"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@pipedream/platform": "^1.
|
|
16
|
+
"@pipedream/platform": "^1.6.8"
|
|
17
17
|
}
|
|
18
18
|
}
|