From 126ab07ad463d962250dbbe3d6d5b8b2aba3626c Mon Sep 17 00:00:00 2001 From: Andrew Chuang Date: Fri, 14 Feb 2025 10:37:15 -0300 Subject: [PATCH 1/3] temporarily pin (old) 13.2.7 sdk version --- components/pipedrive/pipedrive.app.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/pipedrive/pipedrive.app.mjs b/components/pipedrive/pipedrive.app.mjs index e1edb9fdedaea..6637202884ed0 100644 --- a/components/pipedrive/pipedrive.app.mjs +++ b/components/pipedrive/pipedrive.app.mjs @@ -1,4 +1,4 @@ -import pipedrive from "pipedrive"; +import pipedrive from "pipedrive@13.2.7"; import constants from "./common/constants.mjs"; export default { From 71c502483454826ce10737bd3162eb10669f0892 Mon Sep 17 00:00:00 2001 From: Andrew Chuang Date: Fri, 14 Feb 2025 10:38:10 -0300 Subject: [PATCH 2/3] pnpm --- pnpm-lock.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c9c8192d81715..7225fc115136d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8719,8 +8719,7 @@ importers: specifier: ^1.2.0 version: 1.6.6 - components/real_id: - specifiers: {} + components/real_id: {} components/realgeeks: dependencies: From 253b5b143a632ac36e738a94d55027f777085396 Mon Sep 17 00:00:00 2001 From: Andrew Chuang Date: Fri, 14 Feb 2025 10:41:55 -0300 Subject: [PATCH 3/3] bump versions --- components/pipedrive/actions/add-activity/add-activity.mjs | 2 +- components/pipedrive/actions/add-deal/add-deal.mjs | 2 +- components/pipedrive/actions/add-note/add-note.mjs | 2 +- .../pipedrive/actions/add-organization/add-organization.mjs | 2 +- components/pipedrive/actions/add-person/add-person.mjs | 2 +- components/pipedrive/actions/search-persons/search-persons.mjs | 2 +- components/pipedrive/actions/update-deal/update-deal.mjs | 2 +- components/pipedrive/package.json | 2 +- components/pipedrive/sources/new-deal/new-deal.mjs | 2 +- components/pipedrive/sources/new-person/new-person.mjs | 2 +- components/pipedrive/sources/updated-deal/updated-deal.mjs | 2 +- components/pipedrive/sources/updated-person/updated-person.mjs | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/components/pipedrive/actions/add-activity/add-activity.mjs b/components/pipedrive/actions/add-activity/add-activity.mjs index 22c683c3515df..a016d80ac6899 100644 --- a/components/pipedrive/actions/add-activity/add-activity.mjs +++ b/components/pipedrive/actions/add-activity/add-activity.mjs @@ -6,7 +6,7 @@ export default { key: "pipedrive-add-activity", name: "Add Activity", description: "Adds a new activity. Includes `more_activities_scheduled_in_context` property in response's `additional_data` which indicates whether there are more undone activities scheduled with the same deal, person or organization (depending on the supplied data). See the Pipedrive API docs for Activities [here](https://developers.pipedrive.com/docs/api/v1/#!/Activities). For info on [adding an activity in Pipedrive](https://developers.pipedrive.com/docs/api/v1/Activities#addActivity)", - version: "0.1.5", + version: "0.1.6", type: "action", props: { pipedriveApp, diff --git a/components/pipedrive/actions/add-deal/add-deal.mjs b/components/pipedrive/actions/add-deal/add-deal.mjs index a0dcf042ab4f4..427a4f78e1854 100644 --- a/components/pipedrive/actions/add-deal/add-deal.mjs +++ b/components/pipedrive/actions/add-deal/add-deal.mjs @@ -4,7 +4,7 @@ export default { key: "pipedrive-add-deal", name: "Add Deal", description: "Adds a new deal. See the Pipedrive API docs for Deals [here](https://developers.pipedrive.com/docs/api/v1/Deals#addDeal)", - version: "0.1.5", + version: "0.1.6", type: "action", props: { pipedriveApp, diff --git a/components/pipedrive/actions/add-note/add-note.mjs b/components/pipedrive/actions/add-note/add-note.mjs index 4f22533aae34e..171fcdc699e64 100644 --- a/components/pipedrive/actions/add-note/add-note.mjs +++ b/components/pipedrive/actions/add-note/add-note.mjs @@ -4,7 +4,7 @@ export default { key: "pipedrive-add-note", name: "Add Note", description: "Adds a new note. For info on [adding an note in Pipedrive](https://developers.pipedrive.com/docs/api/v1/Notes#addNote)", - version: "0.0.3", + version: "0.0.4", type: "action", props: { pipedriveApp, diff --git a/components/pipedrive/actions/add-organization/add-organization.mjs b/components/pipedrive/actions/add-organization/add-organization.mjs index babea37f9fd4d..154a49ee29539 100644 --- a/components/pipedrive/actions/add-organization/add-organization.mjs +++ b/components/pipedrive/actions/add-organization/add-organization.mjs @@ -4,7 +4,7 @@ export default { key: "pipedrive-add-organization", name: "Add Organization", description: "Adds a new organization. See the Pipedrive API docs for Organizations [here](https://developers.pipedrive.com/docs/api/v1/Organizations#addOrganization)", - version: "0.1.5", + version: "0.1.6", type: "action", props: { pipedriveApp, diff --git a/components/pipedrive/actions/add-person/add-person.mjs b/components/pipedrive/actions/add-person/add-person.mjs index ec9d0a2c7eef0..1fd1770cfff3b 100644 --- a/components/pipedrive/actions/add-person/add-person.mjs +++ b/components/pipedrive/actions/add-person/add-person.mjs @@ -4,7 +4,7 @@ export default { key: "pipedrive-add-person", name: "Add Person", description: "Adds a new person. See the Pipedrive API docs for People [here](https://developers.pipedrive.com/docs/api/v1/Persons#addPerson)", - version: "0.1.5", + version: "0.1.6", type: "action", props: { pipedriveApp, diff --git a/components/pipedrive/actions/search-persons/search-persons.mjs b/components/pipedrive/actions/search-persons/search-persons.mjs index 508038b07a8c5..2348af23ecf83 100644 --- a/components/pipedrive/actions/search-persons/search-persons.mjs +++ b/components/pipedrive/actions/search-persons/search-persons.mjs @@ -5,7 +5,7 @@ export default { key: "pipedrive-search-persons", name: "Search persons", description: "Searches all Persons by `name`, `email`, `phone`, `notes` and/or custom fields. This endpoint is a wrapper of `/v1/itemSearch` with a narrower OAuth scope. Found Persons can be filtered by Organization ID. See the Pipedrive API docs [here](https://developers.pipedrive.com/docs/api/v1/Persons#searchPersons)", - version: "0.1.5", + version: "0.1.6", type: "action", props: { pipedriveApp, diff --git a/components/pipedrive/actions/update-deal/update-deal.mjs b/components/pipedrive/actions/update-deal/update-deal.mjs index e75b06f103d6d..4d6e11017faa1 100644 --- a/components/pipedrive/actions/update-deal/update-deal.mjs +++ b/components/pipedrive/actions/update-deal/update-deal.mjs @@ -4,7 +4,7 @@ export default { key: "pipedrive-update-deal", name: "Update Deal", description: "Updates the properties of a deal. See the Pipedrive API docs for Deals [here](https://developers.pipedrive.com/docs/api/v1/Deals#updateDeal)", - version: "0.1.6", + version: "0.1.7", type: "action", props: { pipedriveApp, diff --git a/components/pipedrive/package.json b/components/pipedrive/package.json index ac42f13453d8d..b0723645ecfdf 100644 --- a/components/pipedrive/package.json +++ b/components/pipedrive/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/pipedrive", - "version": "0.3.9", + "version": "0.3.10", "description": "Pipedream Pipedrive Components", "main": "pipedrive.app.mjs", "keywords": [ diff --git a/components/pipedrive/sources/new-deal/new-deal.mjs b/components/pipedrive/sources/new-deal/new-deal.mjs index 6f83da7f0882c..e865dc5d43657 100644 --- a/components/pipedrive/sources/new-deal/new-deal.mjs +++ b/components/pipedrive/sources/new-deal/new-deal.mjs @@ -6,7 +6,7 @@ export default { key: "pipedrive-new-deal", name: "New Deal", description: "Emit new event when a new deal is created.", - version: "0.0.5", + version: "0.0.6", type: "source", dedupe: "unique", methods: { diff --git a/components/pipedrive/sources/new-person/new-person.mjs b/components/pipedrive/sources/new-person/new-person.mjs index 871224ee526b7..3e5aa58838406 100644 --- a/components/pipedrive/sources/new-person/new-person.mjs +++ b/components/pipedrive/sources/new-person/new-person.mjs @@ -6,7 +6,7 @@ export default { key: "pipedrive-new-person", name: "New Person", description: "Emit new event when a new person is created.", - version: "0.0.5", + version: "0.0.6", type: "source", dedupe: "unique", methods: { diff --git a/components/pipedrive/sources/updated-deal/updated-deal.mjs b/components/pipedrive/sources/updated-deal/updated-deal.mjs index fdf33ff9ceeed..56059c65c28f3 100644 --- a/components/pipedrive/sources/updated-deal/updated-deal.mjs +++ b/components/pipedrive/sources/updated-deal/updated-deal.mjs @@ -6,7 +6,7 @@ export default { key: "pipedrive-updated-deal", name: "Updated Deal", description: "Emit new event when a deal is updated.", - version: "0.0.5", + version: "0.0.6", type: "source", dedupe: "greatest", methods: { diff --git a/components/pipedrive/sources/updated-person/updated-person.mjs b/components/pipedrive/sources/updated-person/updated-person.mjs index d4e3602262b0a..378d1bcf56292 100644 --- a/components/pipedrive/sources/updated-person/updated-person.mjs +++ b/components/pipedrive/sources/updated-person/updated-person.mjs @@ -6,7 +6,7 @@ export default { key: "pipedrive-updated-person", name: "Updated Person", description: "Emit new event when a person is updated.", - version: "0.0.5", + version: "0.0.6", type: "source", dedupe: "greatest", methods: {