Skip to content

Commit 6959712

Browse files
[Pipedrive] Pin sdk version (#15624)
* temporarily pin (old) 13.2.7 sdk version * pnpm * bump versions
1 parent c5e8d97 commit 6959712

File tree

14 files changed

+14
-15
lines changed

14 files changed

+14
-15
lines changed

components/pipedrive/actions/add-activity/add-activity.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "pipedrive-add-activity",
77
name: "Add Activity",
88
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)",
9-
version: "0.1.5",
9+
version: "0.1.6",
1010
type: "action",
1111
props: {
1212
pipedriveApp,

components/pipedrive/actions/add-deal/add-deal.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "pipedrive-add-deal",
55
name: "Add Deal",
66
description: "Adds a new deal. See the Pipedrive API docs for Deals [here](https://developers.pipedrive.com/docs/api/v1/Deals#addDeal)",
7-
version: "0.1.5",
7+
version: "0.1.6",
88
type: "action",
99
props: {
1010
pipedriveApp,

components/pipedrive/actions/add-note/add-note.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "pipedrive-add-note",
55
name: "Add Note",
66
description: "Adds a new note. For info on [adding an note in Pipedrive](https://developers.pipedrive.com/docs/api/v1/Notes#addNote)",
7-
version: "0.0.3",
7+
version: "0.0.4",
88
type: "action",
99
props: {
1010
pipedriveApp,

components/pipedrive/actions/add-organization/add-organization.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "pipedrive-add-organization",
55
name: "Add Organization",
66
description: "Adds a new organization. See the Pipedrive API docs for Organizations [here](https://developers.pipedrive.com/docs/api/v1/Organizations#addOrganization)",
7-
version: "0.1.5",
7+
version: "0.1.6",
88
type: "action",
99
props: {
1010
pipedriveApp,

components/pipedrive/actions/add-person/add-person.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "pipedrive-add-person",
55
name: "Add Person",
66
description: "Adds a new person. See the Pipedrive API docs for People [here](https://developers.pipedrive.com/docs/api/v1/Persons#addPerson)",
7-
version: "0.1.5",
7+
version: "0.1.6",
88
type: "action",
99
props: {
1010
pipedriveApp,

components/pipedrive/actions/search-persons/search-persons.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "pipedrive-search-persons",
66
name: "Search persons",
77
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)",
8-
version: "0.1.5",
8+
version: "0.1.6",
99
type: "action",
1010
props: {
1111
pipedriveApp,

components/pipedrive/actions/update-deal/update-deal.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "pipedrive-update-deal",
55
name: "Update Deal",
66
description: "Updates the properties of a deal. See the Pipedrive API docs for Deals [here](https://developers.pipedrive.com/docs/api/v1/Deals#updateDeal)",
7-
version: "0.1.6",
7+
version: "0.1.7",
88
type: "action",
99
props: {
1010
pipedriveApp,

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.9",
3+
"version": "0.3.10",
44
"description": "Pipedream Pipedrive Components",
55
"main": "pipedrive.app.mjs",
66
"keywords": [

components/pipedrive/pipedrive.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import pipedrive from "pipedrive";
1+
import pipedrive from "pipedrive@13.2.7";
22
import constants from "./common/constants.mjs";
33

44
export default {

components/pipedrive/sources/new-deal/new-deal.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",
77
name: "New Deal",
88
description: "Emit new event when a new deal is created.",
9-
version: "0.0.5",
9+
version: "0.0.6",
1010
type: "source",
1111
dedupe: "unique",
1212
methods: {

0 commit comments

Comments
 (0)