Skip to content

Commit e941310

Browse files
[Pipedrive] fix webhooks v1 (#16245)
* pin webhooks to v1 version * bump versions
1 parent 4329ac8 commit e941310

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

components/pipedrive/package.json

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

components/pipedrive/sources/common/base.mjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ export default {
2020
hooks: {
2121
async activate() {
2222
const response = await this.pipedrive.addWebhook({
23+
// Specifying v1 because webhooks v2 became the default on March 17, 2025:
24+
// https://developers.pipedrive.com/changelog/post/breaking-change-webhooks-v2-will-become-the-new-default-version
25+
version: "1.0",
2326
subscription_url: this.http.endpoint,
2427
...this.getExtraData(),
2528
});

components/pipedrive/sources/new-deal-instant/new-deal-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "pipedrive-new-deal-instant",
77
name: "New Deal (Instant)",
88
description: "Emit new event when a new deal is created.",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
methods: {

components/pipedrive/sources/new-person-instant/new-person-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "pipedrive-new-person-instant",
77
name: "New Person (Instant)",
88
description: "Emit new event when a new person is created.",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
methods: {

components/pipedrive/sources/updated-deal-instant/updated-deal-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "pipedrive-updated-deal-instant",
77
name: "New Deal Update (Instant)",
88
description: "Emit new event when a deal is updated.",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
methods: {

components/pipedrive/sources/updated-person-instant/updated-person-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "pipedrive-updated-person-instant",
77
name: "New Person Update (Instant)",
88
description: "Emit new event when a person is updated.",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
methods: {

0 commit comments

Comments
 (0)