Skip to content

Commit ce4b889

Browse files
authored
Merging pull request #18031
* Adjusts businessUnitId prop label bump versions * pnpm update
1 parent 3278343 commit ce4b889

File tree

16 files changed

+54
-44
lines changed

16 files changed

+54
-44
lines changed

components/trustpilot/actions/fetch-product-review-by-id/fetch-product-review-by-id.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "trustpilot-fetch-product-review-by-id",
55
name: "Fetch Product Review by ID",
66
description: "Retrieves detailed information about a specific product review on Trustpilot. Use this action to get comprehensive data about a single product review, including customer feedback, star rating, review text, and metadata. Perfect for analyzing individual customer experiences, responding to specific feedback, or integrating review data into your customer service workflows. [See the documentation](https://developers.trustpilot.com/product-reviews-api#get-private-product-review)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "action",
99
props: {
1010
trustpilot,

components/trustpilot/actions/fetch-product-reviews/fetch-product-reviews.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "trustpilot-fetch-product-reviews",
55
name: "Fetch Product Reviews",
66
description: "Retrieves a list of product reviews for a specific business unit on Trustpilot. This action enables you to fetch multiple product reviews with powerful filtering options including star ratings, language, tags, and sorting preferences. Ideal for monitoring product feedback trends, generating reports, analyzing customer sentiment across your product catalog, or building review dashboards. Supports pagination for handling large review volumes. [See the documentation](https://developers.trustpilot.com/product-reviews-api#get-private-product-reviews)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "action",
99
props: {
1010
trustpilot,

components/trustpilot/actions/fetch-service-review-by-id/fetch-service-review-by-id.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "trustpilot-fetch-service-review-by-id",
55
name: "Fetch Service Review by ID",
66
description: "Retrieves detailed information about a specific service review for your business on Trustpilot. Use this action to access comprehensive data about an individual service review, including the customer's rating, review content, date, and any responses. Essential for customer service teams to analyze specific feedback, track review history, or integrate individual review data into CRM systems and support tickets. [See the documentation](https://developers.trustpilot.com/business-units-api#get-business-unit-review)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "action",
99
props: {
1010
trustpilot,

components/trustpilot/actions/fetch-service-reviews/fetch-service-reviews.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "trustpilot-fetch-service-reviews",
55
name: "Fetch Service Reviews",
66
description: "Fetches service reviews for a specific business unit from Trustpilot with support for filtering by star rating, tags, language, and more. [See the documentation](https://developers.trustpilot.com/business-units-api#get-business-unit-reviews)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "action",
99
props: {
1010
trustpilot,

components/trustpilot/actions/reply-to-product-review/reply-to-product-review.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import trustpilot from "../../trustpilot.app.mjs";
21
import { ConfigurationError } from "@pipedream/platform";
2+
import trustpilot from "../../trustpilot.app.mjs";
33

44
export default {
55
key: "trustpilot-reply-to-product-review",
66
name: "Reply to Product Review",
77
description: "Posts a public reply to a product review on Trustpilot on behalf of your business. This action allows you to respond to customer feedback, address concerns, thank customers for positive reviews, or provide additional information about products. Replies help demonstrate your commitment to customer satisfaction and can improve your overall reputation. Note that replies are publicly visible and cannot be edited once posted. [See the documentation](https://developers.trustpilot.com/product-reviews-api#reply-to-product-review)",
8-
version: "0.0.1",
8+
version: "0.0.2",
99
type: "action",
1010
props: {
1111
trustpilot,

components/trustpilot/actions/reply-to-service-review/reply-to-service-review.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import trustpilot from "../../trustpilot.app.mjs";
21
import { ConfigurationError } from "@pipedream/platform";
2+
import trustpilot from "../../trustpilot.app.mjs";
33

44
export default {
55
key: "trustpilot-reply-to-service-review",
66
name: "Reply to Service Review",
77
description: "Posts a public reply to a service review on Trustpilot on behalf of your business. This action enables you to engage with customers who have reviewed your services, allowing you to address complaints, clarify misunderstandings, express gratitude for positive feedback, or provide updates on how you're improving based on their input. Professional responses to reviews can significantly impact your business reputation and show potential customers that you value feedback. Remember that all replies are permanent and publicly visible. [See the documentation](https://developers.trustpilot.com/business-units-api#reply-to-review)",
8-
version: "0.0.1",
8+
version: "0.0.2",
99
type: "action",
1010
props: {
1111
trustpilot,

components/trustpilot/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/trustpilot",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Pipedream Trustpilot Components",
55
"main": "trustpilot.app.mjs",
66
"keywords": [

components/trustpilot/sources/new-conversations/new-conversations.mjs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
import common from "../common/polling.mjs";
21
import {
3-
SOURCE_TYPES, SORT_OPTIONS,
2+
SORT_OPTIONS,
3+
SOURCE_TYPES,
44
} from "../../common/constants.mjs";
5+
import common from "../common/polling.mjs";
56

67
export default {
78
...common,
89
key: "trustpilot-new-conversations",
910
name: "New Conversations",
1011
description: "Emit new event when a new conversation is started on Trustpilot. This source periodically polls the Trustpilot API to detect new customer-business conversations. Each event contains conversation details including participants, subject, business unit, and creation timestamp. Useful for tracking customer inquiries, support requests, and maintaining real-time communication with customers.",
11-
version: "0.0.1",
12+
version: "0.0.2",
1213
type: "source",
1314
dedupe: "unique",
1415
methods: {

components/trustpilot/sources/new-product-review-replies/new-product-review-replies.mjs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
import common from "../common/polling.mjs";
21
import {
3-
SOURCE_TYPES, SORT_OPTIONS,
2+
SORT_OPTIONS,
3+
SOURCE_TYPES,
44
} from "../../common/constants.mjs";
5+
import common from "../common/polling.mjs";
56

67
export default {
78
...common,
89
key: "trustpilot-new-product-review-replies",
910
name: "New Product Review Replies",
1011
description: "Emit new event when a business replies to a product review on Trustpilot. This source periodically polls the Trustpilot API to detect new replies to product reviews. Each event includes the reply text, creation timestamp, and associated review details (product name, star rating, consumer info). Ideal for monitoring business responses to customer feedback, tracking customer service performance, and ensuring timely engagement with product reviews.",
11-
version: "0.0.1",
12+
version: "0.0.2",
1213
type: "source",
1314
dedupe: "unique",
1415
methods: {

components/trustpilot/sources/new-product-reviews/new-product-reviews.mjs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
import common from "../common/polling.mjs";
21
import {
3-
SOURCE_TYPES, SORT_OPTIONS,
2+
SORT_OPTIONS,
3+
SOURCE_TYPES,
44
} from "../../common/constants.mjs";
5+
import common from "../common/polling.mjs";
56

67
export default {
78
...common,
89
key: "trustpilot-new-product-reviews",
910
name: "New Product Reviews",
1011
description: "Emit new event when a customer posts a new product review on Trustpilot. This source periodically polls the Trustpilot API to detect new product reviews. Each event contains the complete review data including star rating, review text, product information, consumer details, and timestamps. Perfect for monitoring product feedback, analyzing customer satisfaction trends, and triggering automated responses or alerts for specific products.",
11-
version: "0.0.1",
12+
version: "0.0.2",
1213
type: "source",
1314
dedupe: "unique",
1415
methods: {

0 commit comments

Comments
 (0)