Skip to content

Commit 83582e8

Browse files
Feature/remove labels (#20447)
* feat(pipedrive): add remove-labels action * fix: use plain Error for API failures, remove unused import * fix: re-add ConfigurationError import * fix: consistent return shape and loop in additionalProps * fix: extract ENTITY_TYPES constant and safe error stringify * fix: ENTITY_TYPES constant, safe stringify, trailing newline * fix: validate entity ID, fetch inside try/catch, document last-write-wins * fix: safe getItem fallback, entity ID validation, trailing newline * refactor: use entityId and entityLabelIds props from app file * fix(pipedrive): bump package version * fix: update pnpm lockfile after rebase * fix: bump component versions * fix: bump component versions 2 --------- Co-authored-by: michelle0927 <michelle0927@users.noreply.github.com>
1 parent b122fac commit 83582e8

30 files changed

Lines changed: 289 additions & 28 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
key: "pipedrive-add-activity",
88
name: "Add Activity",
99
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)",
10-
version: "0.1.23",
10+
version: "0.1.24",
1111
annotations: {
1212
destructiveHint: false,
1313
openWorldHint: true,

components/pipedrive/actions/add-deal/add-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-add-deal",
77
name: "Add Deal",
88
description: "Adds a new deal. See the Pipedrive API docs for Deals [here](https://developers.pipedrive.com/docs/api/v1/Deals#addDeal)",
9-
version: "0.1.24",
9+
version: "0.1.25",
1010
annotations: {
1111
destructiveHint: false,
1212
openWorldHint: true,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "pipedrive-add-labels",
66
name: "Add Labels",
77
description: "Adds labels to a lead, person, deal, or organization in Pipedrive. [See the documentation](https://developers.pipedrive.com/docs/api/v1/Leads#updateLead)",
8-
version: "0.0.3",
8+
version: "0.0.4",
99
annotations: {
1010
destructiveHint: true,
1111
openWorldHint: true,

components/pipedrive/actions/add-lead/add-lead.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-lead",
77
name: "Add Lead",
88
description: "Create a new lead in Pipedrive. [See the documentation](https://developers.pipedrive.com/docs/api/v1/Leads#addLead)",
9-
version: "0.0.17",
9+
version: "0.0.18",
1010
annotations: {
1111
destructiveHint: false,
1212
openWorldHint: true,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "pipedrive-add-note",
66
name: "Add Note",
77
description: "Adds a new note. For info on [adding an note in Pipedrive](https://developers.pipedrive.com/docs/api/v1/Notes#addNote)",
8-
version: "0.0.18",
8+
version: "0.0.19",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "pipedrive-add-organization",
66
name: "Add Organization",
77
description: "Adds a new organization. See the Pipedrive API docs for Organizations [here](https://developers.pipedrive.com/docs/api/v1/Organizations#addOrganization)",
8-
version: "0.1.20",
8+
version: "0.1.21",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,

components/pipedrive/actions/add-person/add-person.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-person",
77
name: "Add Person",
88
description: "Adds a new person. See the Pipedrive API docs for People [here](https://developers.pipedrive.com/docs/api/v1/Persons#addPerson)",
9-
version: "0.1.23",
9+
version: "0.1.24",
1010
annotations: {
1111
destructiveHint: false,
1212
openWorldHint: true,

components/pipedrive/actions/get-all-leads/get-all-leads.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "pipedrive-get-all-leads",
55
name: "Get All Leads",
66
description: "Get all leads from Pipedrive. [See the documentation](https://developers.pipedrive.com/docs/api/v1/Leads#getLeads)",
7-
version: "0.0.3",
7+
version: "0.0.4",
88
type: "action",
99
annotations: {
1010
destructiveHint: false,

components/pipedrive/actions/get-deal/get-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-get-deal",
55
name: "Get Deal",
66
description: "Get a deal by its ID. [See the documentation](https://developers.pipedrive.com/docs/api/v1/Deals)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "action",
99
annotations: {
1010
destructiveHint: false,

components/pipedrive/actions/get-lead-by-id/get-lead-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: "pipedrive-get-lead-by-id",
55
name: "Get Lead by ID",
66
description: "Get a lead by its ID. [See the documentation](https://developers.pipedrive.com/docs/api/v1/Leads#getLead)",
7-
version: "0.0.8",
7+
version: "0.0.9",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,

0 commit comments

Comments
 (0)