From 9539dd477abc154d5faa7450ded80913acebb384 Mon Sep 17 00:00:00 2001 From: Luan Cazarine Date: Mon, 1 Sep 2025 16:24:17 -0300 Subject: [PATCH 01/11] Add HubSpot Workflow Management Actions - Implemented new actions for managing workflows in HubSpot, including: - Create a new workflow - Retrieve workflow details - Retrieve emails associated with a workflow - Retrieve multiple workflows by their IDs - Retrieve migrated workflow mappings - Update an existing workflow - Delete a workflow - Added corresponding methods in the hubspot.app.mjs for API interactions. - Updated constants and added necessary props for each action. --- .../create-workflow/create-workflow.mjs | 72 ++++++++++++++++++ .../delete-workflow/delete-workflow.mjs | 28 +++++++ .../retrieve-batch-workflows.mjs | 39 ++++++++++ .../retrieve-migrated-workflow-mappings.mjs | 27 +++++++ .../retrieve-workflow-details.mjs | 27 +++++++ .../retrieve-workflow-emails.mjs | 27 +++++++ .../retrieve-workflows/retrieve-workflows.mjs | 20 +++++ .../update-workflow/update-workflow.mjs | 76 +++++++++++++++++++ components/hubspot/hubspot.app.mjs | 63 +++++++++++++++ 9 files changed, 379 insertions(+) create mode 100644 components/hubspot/actions/create-workflow/create-workflow.mjs create mode 100644 components/hubspot/actions/delete-workflow/delete-workflow.mjs create mode 100644 components/hubspot/actions/retrieve-batch-workflows/retrieve-batch-workflows.mjs create mode 100644 components/hubspot/actions/retrieve-migrated-workflow-mappings/retrieve-migrated-workflow-mappings.mjs create mode 100644 components/hubspot/actions/retrieve-workflow-details/retrieve-workflow-details.mjs create mode 100644 components/hubspot/actions/retrieve-workflow-emails/retrieve-workflow-emails.mjs create mode 100644 components/hubspot/actions/retrieve-workflows/retrieve-workflows.mjs create mode 100644 components/hubspot/actions/update-workflow/update-workflow.mjs diff --git a/components/hubspot/actions/create-workflow/create-workflow.mjs b/components/hubspot/actions/create-workflow/create-workflow.mjs new file mode 100644 index 0000000000000..057086af4a1d1 --- /dev/null +++ b/components/hubspot/actions/create-workflow/create-workflow.mjs @@ -0,0 +1,72 @@ +import hubspot from "../../hubspot.app.mjs"; + +export default { + key: "hubspot-create-workflow", + name: "Create a New Workflow", + description: "Create a new workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/get-automation-v3-workflows)", + version: "0.0.21", + type: "action", + props: { + hubspot, + name: { + type: "string", + label: "Workflow Name", + description: "The name of the workflow to create", + }, + type: { + type: "string", + label: "Workflow Type", + description: "The type of workflow to create", + options: [ + { + label: "DRIP", + value: "DRIP", + }, + { + label: "SIMPLE", + value: "SIMPLE", + }, + { + label: "COMPLEX", + value: "COMPLEX", + }, + ], + }, + description: { + type: "string", + label: "Description", + description: "Description of the workflow", + optional: true, + }, + triggerType: { + type: "string", + label: "Trigger Type", + description: "The type of trigger for the workflow", + optional: true, + }, + }, + async run({ $ }) { + const { + name, type, description, triggerType, + } = this; + + const workflowData = { + name, + type, + ...(description && { + description, + }), + ...(triggerType && { + triggerType, + }), + }; + + const response = await this.hubspot.createWorkflow({ + data: workflowData, + $, + }); + + $.export("$summary", `Successfully created workflow: ${name}`); + return response; + }, +}; diff --git a/components/hubspot/actions/delete-workflow/delete-workflow.mjs b/components/hubspot/actions/delete-workflow/delete-workflow.mjs new file mode 100644 index 0000000000000..8c87cd5dcffc0 --- /dev/null +++ b/components/hubspot/actions/delete-workflow/delete-workflow.mjs @@ -0,0 +1,28 @@ +import hubspot from "../../hubspot.app.mjs"; + +export default { + key: "hubspot-delete-workflow", + name: "Delete a Workflow", + description: "Delete a workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/get-automation-v3-workflows)", + version: "0.0.21", + type: "action", + props: { + hubspot, + workflowId: { + type: "string", + label: "Workflow ID", + description: "The ID of the workflow to delete", + }, + }, + async run({ $ }) { + const { workflowId } = this; + + const response = await this.hubspot.deleteWorkflow({ + workflowId, + $, + }); + + $.export("$summary", `Successfully deleted workflow ${workflowId}`); + return response; + }, +}; diff --git a/components/hubspot/actions/retrieve-batch-workflows/retrieve-batch-workflows.mjs b/components/hubspot/actions/retrieve-batch-workflows/retrieve-batch-workflows.mjs new file mode 100644 index 0000000000000..35e454d1794e6 --- /dev/null +++ b/components/hubspot/actions/retrieve-batch-workflows/retrieve-batch-workflows.mjs @@ -0,0 +1,39 @@ +import { parseObject } from "../../common/utils.mjs"; +import hubspot from "../../hubspot.app.mjs"; + +export default { + key: "hubspot-retrieve-batch-workflows", + name: "Retrieve a Batch of Workflows", + description: "Retrieve multiple workflows by their IDs. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/get-automation-v3-workflows)", + version: "0.0.1", + type: "action", + props: { + hubspot, + workflowIds: { + propDefinition: [ + hubspot, + "workflowId", + ], + type: "string[]", + label: "Workflow IDs", + description: "A list of workflow IDs to retrieve", + }, + }, + async run({ $ }) { + const workflows = []; + const parsedWorkflowIds = parseObject(this.workflowIds); + + for (const workflowId of parsedWorkflowIds) { + const response = await this.hubspot.getWorkflowDetails({ + workflowId, + $, + }); + workflows.push(response); + } + + $.export("$summary", `Successfully retrieved ${parsedWorkflowIds.length} workflows`); + return { + workflows, + }; + }, +}; diff --git a/components/hubspot/actions/retrieve-migrated-workflow-mappings/retrieve-migrated-workflow-mappings.mjs b/components/hubspot/actions/retrieve-migrated-workflow-mappings/retrieve-migrated-workflow-mappings.mjs new file mode 100644 index 0000000000000..2255104cf446c --- /dev/null +++ b/components/hubspot/actions/retrieve-migrated-workflow-mappings/retrieve-migrated-workflow-mappings.mjs @@ -0,0 +1,27 @@ +import hubspot from "../../hubspot.app.mjs"; + +export default { + key: "hubspot-retrieve-migrated-workflow-mappings", + name: "Retrieve Migrated Workflow Mappings", + description: "Retrieve mappings for migrated workflows. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/get-automation-v3-workflows)", + version: "0.0.1", + type: "action", + props: { + hubspot, + workflowId: { + propDefinition: [ + hubspot, + "workflowId", + ], + }, + }, + async run({ $ }) { + const response = await this.hubspot.getMigratedWorkflowMappings({ + workflowId: this.workflowId, + $, + }); + + $.export("$summary", `Successfully retrieved migrated workflow mappings for ${this.workflowId}`); + return response; + }, +}; diff --git a/components/hubspot/actions/retrieve-workflow-details/retrieve-workflow-details.mjs b/components/hubspot/actions/retrieve-workflow-details/retrieve-workflow-details.mjs new file mode 100644 index 0000000000000..b6a646967d844 --- /dev/null +++ b/components/hubspot/actions/retrieve-workflow-details/retrieve-workflow-details.mjs @@ -0,0 +1,27 @@ +import hubspot from "../../hubspot.app.mjs"; + +export default { + key: "hubspot-retrieve-workflow-details", + name: "Retrieve Workflow Details", + description: "Retrieve detailed information about a specific workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/get-automation-v3-workflows)", + version: "0.0.1", + type: "action", + props: { + hubspot, + workflowId: { + propDefinition: [ + hubspot, + "workflowId", + ], + }, + }, + async run({ $ }) { + const response = await this.hubspot.getWorkflowDetails({ + workflowId: this.workflowId, + $, + }); + + $.export("$summary", `Successfully retrieved details for workflow ${this.workflowId}`); + return response; + }, +}; diff --git a/components/hubspot/actions/retrieve-workflow-emails/retrieve-workflow-emails.mjs b/components/hubspot/actions/retrieve-workflow-emails/retrieve-workflow-emails.mjs new file mode 100644 index 0000000000000..c36d0683d2ee4 --- /dev/null +++ b/components/hubspot/actions/retrieve-workflow-emails/retrieve-workflow-emails.mjs @@ -0,0 +1,27 @@ +import hubspot from "../../hubspot.app.mjs"; + +export default { + key: "hubspot-retrieve-workflow-emails", + name: "Retrieve Workflow Emails", + description: "Retrieve emails associated with a specific workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/get-automation-v3-workflows)", + version: "0.0.1", + type: "action", + props: { + hubspot, + workflowId: { + propDefinition: [ + hubspot, + "workflowId", + ], + }, + }, + async run({ $ }) { + const response = await this.hubspot.getWorkflowEmails({ + workflowId: this.workflowId, + $, + }); + + $.export("$summary", `Successfully retrieved emails for workflow ${this.workflowId}`); + return response; + }, +}; diff --git a/components/hubspot/actions/retrieve-workflows/retrieve-workflows.mjs b/components/hubspot/actions/retrieve-workflows/retrieve-workflows.mjs new file mode 100644 index 0000000000000..f1a407ec94e5c --- /dev/null +++ b/components/hubspot/actions/retrieve-workflows/retrieve-workflows.mjs @@ -0,0 +1,20 @@ +import hubspot from "../../hubspot.app.mjs"; + +export default { + key: "hubspot-retrieve-workflows", + name: "Retrieve Workflows", + description: "Retrieve a list of all workflows. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/get-automation-v3-workflows)", + version: "0.0.1", + type: "action", + props: { + hubspot, + }, + async run({ $ }) { + const response = await this.hubspot.listWorkflows({ + $, + }); + + $.export("$summary", `Successfully retrieved ${response.workflows.length} workflows`); + return response; + }, +}; diff --git a/components/hubspot/actions/update-workflow/update-workflow.mjs b/components/hubspot/actions/update-workflow/update-workflow.mjs new file mode 100644 index 0000000000000..542f90f79aac0 --- /dev/null +++ b/components/hubspot/actions/update-workflow/update-workflow.mjs @@ -0,0 +1,76 @@ +import hubspot from "../../hubspot.app.mjs"; + +export default { + key: "hubspot-update-workflow", + name: "Update a Workflow", + description: "Update an existing workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/get-automation-v3-workflows)", + version: "0.0.1", + type: "action", + props: { + hubspot, + workflowId: { + propDefinition: [ + hubspot, + "workflowId", + ], + }, + name: { + type: "string", + label: "Workflow Name", + description: "The new name of the workflow", + optional: true, + }, + description: { + type: "string", + label: "Description", + description: "The new description of the workflow", + optional: true, + }, + type: { + type: "string", + label: "Workflow Type", + description: "The new type of workflow", + optional: true, + options: [ + { + label: "DRIP", + value: "DRIP", + }, + { + label: "SIMPLE", + value: "SIMPLE", + }, + { + label: "COMPLEX", + value: "COMPLEX", + }, + ], + }, + triggerType: { + type: "string", + label: "Trigger Type", + description: "The new trigger type for the workflow", + optional: true, + }, + }, + async run({ $ }) { + const { + name, type, description, triggerType, + } = this; + + const updateData = {}; + if (name) updateData.name = name; + if (description) updateData.description = description; + if (type) updateData.type = type; + if (triggerType) updateData.triggerType = triggerType; + + const response = await this.hubspot.updateWorkflow({ + workflowId: this.workflowId, + data: updateData, + $, + }); + + $.export("$summary", `Successfully updated workflow ${this.workflowId}`); + return response; + }, +}; diff --git a/components/hubspot/hubspot.app.mjs b/components/hubspot/hubspot.app.mjs index 1219d4744c230..253a5e11d3788 100644 --- a/components/hubspot/hubspot.app.mjs +++ b/components/hubspot/hubspot.app.mjs @@ -1223,6 +1223,69 @@ export default { ...opts, }); }, + getWorkflowEmails({ + workflowId, ...opts + }) { + return this.makeRequest({ + api: API_PATH.AUTOMATIONV4, + endpoint: `/workflows/${workflowId}/emails`, + ...opts, + }); + }, + getWorkflowDetails({ + workflowId, ...opts + }) { + return this.makeRequest({ + api: API_PATH.AUTOMATIONV4, + endpoint: `/workflows/${workflowId}`, + ...opts, + }); + }, + createWorkflow(opts = {}) { + return this.makeRequest({ + method: "POST", + api: API_PATH.AUTOMATIONV4, + endpoint: "/workflows", + ...opts, + }); + }, + getBatchWorkflows(opts = {}) { + return this.makeRequest({ + method: "POST", + api: API_PATH.AUTOMATIONV4, + endpoint: "/workflows/batch", + ...opts, + }); + }, + updateWorkflow({ + workflowId, ...opts + }) { + return this.makeRequest({ + method: "PUT", + api: API_PATH.AUTOMATIONV4, + endpoint: `/workflows/${workflowId}`, + ...opts, + }); + }, + deleteWorkflow({ + workflowId, ...opts + }) { + return this.makeRequest({ + method: "DELETE", + api: API_PATH.AUTOMATIONV4, + endpoint: `/workflows/${workflowId}`, + ...opts, + }); + }, + getMigratedWorkflowMappings({ + workflowId, ...opts + }) { + return this.makeRequest({ + api: API_PATH.AUTOMATIONV4, + endpoint: `/workflows/${workflowId}/mappings`, + ...opts, + }); + }, batchCreateContacts(opts = {}) { return this.makeRequest({ api: API_PATH.CRMV3, From 96208299f873670fbfb8a92f786348a20327f4f7 Mon Sep 17 00:00:00 2001 From: Luan Cazarine Date: Mon, 1 Sep 2025 16:37:54 -0300 Subject: [PATCH 02/11] pnpm update --- pnpm-lock.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 75e25ef3fe862..4b77ebfcad4b2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -38970,6 +38970,8 @@ snapshots: '@putout/operator-filesystem': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3)) '@putout/operator-json': 2.2.0 putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3) + transitivePeerDependencies: + - supports-color '@putout/operator-regexp@1.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))': dependencies: From 694d552b476dddddc5fd2cec73f047028043ae38 Mon Sep 17 00:00:00 2001 From: Luan Cazarine Date: Tue, 2 Sep 2025 16:25:52 -0300 Subject: [PATCH 03/11] Update HubSpot Workflow Management Actions - Refactored workflow-related actions to align with the v4 API, including: - Updated endpoints and request structures for creating, retrieving, updating, and deleting workflows. - Added new properties for workflow creation and management, such as `isEnabled`, `actions`, and `enrollmentCriteria`. - Enhanced error handling and response parsing for better integration. - Bumped package version to 1.7.0 to reflect these changes. --- .../create-workflow/create-workflow.mjs | 77 ++++++++---------- .../delete-workflow/delete-workflow.mjs | 16 ++-- .../retrieve-migrated-workflow-mappings.mjs | 47 +++++++++-- .../retrieve-workflow-details.mjs | 6 +- .../retrieve-workflow-emails.mjs | 32 +++++++- .../retrieve-workflows/retrieve-workflows.mjs | 21 ++++- .../update-workflow/update-workflow.mjs | 80 ++++++++++--------- components/hubspot/hubspot.app.mjs | 69 ++++++++++------ components/hubspot/package.json | 2 +- 9 files changed, 219 insertions(+), 131 deletions(-) diff --git a/components/hubspot/actions/create-workflow/create-workflow.mjs b/components/hubspot/actions/create-workflow/create-workflow.mjs index 057086af4a1d1..f0c8e76b568b4 100644 --- a/components/hubspot/actions/create-workflow/create-workflow.mjs +++ b/components/hubspot/actions/create-workflow/create-workflow.mjs @@ -1,10 +1,11 @@ +import { parseObject } from "../../common/utils.mjs"; import hubspot from "../../hubspot.app.mjs"; export default { key: "hubspot-create-workflow", name: "Create a New Workflow", - description: "Create a new workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/get-automation-v3-workflows)", - version: "0.0.21", + description: "Create a new workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/automation-automation-v4-v4/workflows/post-automation-v4-flows)", + version: "0.0.1", type: "action", props: { hubspot, @@ -13,60 +14,46 @@ export default { label: "Workflow Name", description: "The name of the workflow to create", }, + isEnabled: { + propDefinition: [ + hubspot, + "isEnabled", + ], + }, type: { - type: "string", - label: "Workflow Type", - description: "The type of workflow to create", - options: [ - { - label: "DRIP", - value: "DRIP", - }, - { - label: "SIMPLE", - value: "SIMPLE", - }, - { - label: "COMPLEX", - value: "COMPLEX", - }, + propDefinition: [ + hubspot, + "type", ], }, - description: { - type: "string", - label: "Description", - description: "Description of the workflow", - optional: true, + actions: { + propDefinition: [ + hubspot, + "actions", + ], }, - triggerType: { - type: "string", - label: "Trigger Type", - description: "The type of trigger for the workflow", - optional: true, + enrollmentCriteria: { + propDefinition: [ + hubspot, + "enrollmentCriteria", + ], }, }, async run({ $ }) { - const { - name, type, description, triggerType, - } = this; - - const workflowData = { - name, - type, - ...(description && { - description, - }), - ...(triggerType && { - triggerType, - }), - }; - const response = await this.hubspot.createWorkflow({ - data: workflowData, + data: { + name: this.name, + type: this.type, + isEnabled: this.isEnabled, + objectTypeId: "0-1", + flowType: "WORKFLOW", + actions: parseObject(this.actions), + enrollmentCriteria: parseObject(this.enrollmentCriteria), + }, $, }); - $.export("$summary", `Successfully created workflow: ${name}`); + $.export("$summary", `Successfully created workflow: ${this.name}`); return response; }, }; diff --git a/components/hubspot/actions/delete-workflow/delete-workflow.mjs b/components/hubspot/actions/delete-workflow/delete-workflow.mjs index 8c87cd5dcffc0..ef7868b25b0fe 100644 --- a/components/hubspot/actions/delete-workflow/delete-workflow.mjs +++ b/components/hubspot/actions/delete-workflow/delete-workflow.mjs @@ -3,26 +3,26 @@ import hubspot from "../../hubspot.app.mjs"; export default { key: "hubspot-delete-workflow", name: "Delete a Workflow", - description: "Delete a workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/get-automation-v3-workflows)", - version: "0.0.21", + description: "Delete a workflow by ID. [See the documentation](https://developers.hubspot.com/docs/api-reference/automation-automation-v4-v4/workflows/delete-automation-v4-flows-flowId)", + version: "0.0.1", type: "action", props: { hubspot, workflowId: { - type: "string", - label: "Workflow ID", + propDefinition: [ + hubspot, + "workflow", + ], description: "The ID of the workflow to delete", }, }, async run({ $ }) { - const { workflowId } = this; - const response = await this.hubspot.deleteWorkflow({ - workflowId, + workflowId: this.workflowId, $, }); - $.export("$summary", `Successfully deleted workflow ${workflowId}`); + $.export("$summary", `Successfully deleted workflow ${this.workflowId}`); return response; }, }; diff --git a/components/hubspot/actions/retrieve-migrated-workflow-mappings/retrieve-migrated-workflow-mappings.mjs b/components/hubspot/actions/retrieve-migrated-workflow-mappings/retrieve-migrated-workflow-mappings.mjs index 2255104cf446c..f5f855277bcd7 100644 --- a/components/hubspot/actions/retrieve-migrated-workflow-mappings/retrieve-migrated-workflow-mappings.mjs +++ b/components/hubspot/actions/retrieve-migrated-workflow-mappings/retrieve-migrated-workflow-mappings.mjs @@ -1,27 +1,58 @@ +import { parseObject } from "../../common/utils.mjs"; import hubspot from "../../hubspot.app.mjs"; export default { key: "hubspot-retrieve-migrated-workflow-mappings", name: "Retrieve Migrated Workflow Mappings", - description: "Retrieve mappings for migrated workflows. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/get-automation-v3-workflows)", + description: "Retrieve the IDs of v3 workflows that have been migrated to the v4 API. [See the documentation](https://developers.hubspot.com/docs/api-reference/automation-automation-v4-v4/workflow-id-mappings/post-automation-v4-workflow-id-mappings-batch-read)", version: "0.0.1", type: "action", props: { hubspot, - workflowId: { - propDefinition: [ - hubspot, - "workflowId", - ], + flowIds: { + type: "string[]", + label: "Flow IDs", + description: "A list of flowIds from the V4 API.", + optional: true, + }, + workflowIds: { + type: "string[]", + label: "Workflow IDs", + description: "A list of workflowIds from the V3 API.", + optional: true, }, }, async run({ $ }) { + const parsedFlowIds = parseObject(this.flowIds) || []; + const parsedWorkflowIds = parseObject(this.workflowIds) || []; + + const flowIds = []; + const workflowIds = []; + + for (const flowId of parsedFlowIds) { + flowIds.push({ + flowMigrationStatuses: `${flowId}`, + type: "FLOW_ID", + }); + } + for (const workflowId of parsedWorkflowIds) { + workflowIds.push({ + flowMigrationStatusForClassicWorkflows: `${workflowId}`, + type: "WORKFLOW_ID", + }); + } + const response = await this.hubspot.getMigratedWorkflowMappings({ - workflowId: this.workflowId, $, + data: { + inputs: [ + ...flowIds, + ...workflowIds, + ], + }, }); - $.export("$summary", `Successfully retrieved migrated workflow mappings for ${this.workflowId}`); + $.export("$summary", `Successfully retrieved ${response.results.length} migrated result(s) with ${response.errors?.length || 0} error(s)`); return response; }, }; diff --git a/components/hubspot/actions/retrieve-workflow-details/retrieve-workflow-details.mjs b/components/hubspot/actions/retrieve-workflow-details/retrieve-workflow-details.mjs index b6a646967d844..af7f672f57346 100644 --- a/components/hubspot/actions/retrieve-workflow-details/retrieve-workflow-details.mjs +++ b/components/hubspot/actions/retrieve-workflow-details/retrieve-workflow-details.mjs @@ -3,7 +3,7 @@ import hubspot from "../../hubspot.app.mjs"; export default { key: "hubspot-retrieve-workflow-details", name: "Retrieve Workflow Details", - description: "Retrieve detailed information about a specific workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/get-automation-v3-workflows)", + description: "Retrieve detailed information about a specific workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/automation-automation-v4-v4/workflows/get-automation-v4-flows-flowId)", version: "0.0.1", type: "action", props: { @@ -11,8 +11,10 @@ export default { workflowId: { propDefinition: [ hubspot, - "workflowId", + "workflow", ], + label: "Workflow ID", + description: "The ID of the workflow you wish to see details for.", }, }, async run({ $ }) { diff --git a/components/hubspot/actions/retrieve-workflow-emails/retrieve-workflow-emails.mjs b/components/hubspot/actions/retrieve-workflow-emails/retrieve-workflow-emails.mjs index c36d0683d2ee4..a888ef774b703 100644 --- a/components/hubspot/actions/retrieve-workflow-emails/retrieve-workflow-emails.mjs +++ b/components/hubspot/actions/retrieve-workflow-emails/retrieve-workflow-emails.mjs @@ -3,7 +3,7 @@ import hubspot from "../../hubspot.app.mjs"; export default { key: "hubspot-retrieve-workflow-emails", name: "Retrieve Workflow Emails", - description: "Retrieve emails associated with a specific workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/get-automation-v3-workflows)", + description: "Retrieve emails sent by a workflow by ID. [See the documentation](https://developers.hubspot.com/docs/api-reference/automation-automation-v4-v4/email-campaigns/get-automation-v4-flows-email-campaigns)", version: "0.0.1", type: "action", props: { @@ -11,17 +11,41 @@ export default { workflowId: { propDefinition: [ hubspot, - "workflowId", + "workflow", ], }, + after: { + type: "string", + label: "After", + description: "The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results.", + optional: true, + }, + before: { + type: "string", + label: "Before", + description: "The paging cursor token of the last successfully read resource will be returned as the `paging.next.before` JSON property of a paged response containing more results.", + optional: true, + }, + limit: { + type: "integer", + label: "Limit", + description: "The maximum number of results to display per page.", + default: 100, + optional: true, + }, }, async run({ $ }) { const response = await this.hubspot.getWorkflowEmails({ - workflowId: this.workflowId, $, + params: { + flowId: this.workflowId, + after: this.after, + before: this.before, + limit: this.limit, + }, }); - $.export("$summary", `Successfully retrieved emails for workflow ${this.workflowId}`); + $.export("$summary", `Successfully retrieved ${response.results.length} emails for workflow ${this.workflowId}`); return response; }, }; diff --git a/components/hubspot/actions/retrieve-workflows/retrieve-workflows.mjs b/components/hubspot/actions/retrieve-workflows/retrieve-workflows.mjs index f1a407ec94e5c..4430fc86e3c2b 100644 --- a/components/hubspot/actions/retrieve-workflows/retrieve-workflows.mjs +++ b/components/hubspot/actions/retrieve-workflows/retrieve-workflows.mjs @@ -3,18 +3,35 @@ import hubspot from "../../hubspot.app.mjs"; export default { key: "hubspot-retrieve-workflows", name: "Retrieve Workflows", - description: "Retrieve a list of all workflows. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/get-automation-v3-workflows)", + description: "Retrieve a list of all workflows. [See the documentation](https://developers.hubspot.com/docs/api-reference/automation-automation-v4-v4/workflows/get-automation-v4-flows)", version: "0.0.1", type: "action", props: { hubspot, + after: { + type: "string", + label: "After", + description: "The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results.", + optional: true, + }, + limit: { + type: "integer", + label: "Limit", + description: "The maximum number of results to display per page.", + default: 100, + optional: true, + }, }, async run({ $ }) { const response = await this.hubspot.listWorkflows({ $, + params: { + after: this.after, + limit: this.limit, + }, }); - $.export("$summary", `Successfully retrieved ${response.workflows.length} workflows`); + $.export("$summary", `Successfully retrieved ${response.results.length} workflows`); return response; }, }; diff --git a/components/hubspot/actions/update-workflow/update-workflow.mjs b/components/hubspot/actions/update-workflow/update-workflow.mjs index 542f90f79aac0..444140827b521 100644 --- a/components/hubspot/actions/update-workflow/update-workflow.mjs +++ b/components/hubspot/actions/update-workflow/update-workflow.mjs @@ -1,9 +1,10 @@ +import { parseObject } from "../../common/utils.mjs"; import hubspot from "../../hubspot.app.mjs"; export default { key: "hubspot-update-workflow", name: "Update a Workflow", - description: "Update an existing workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/get-automation-v3-workflows)", + description: "Update an existing workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/automation-automation-v4-v4/workflows/put-automation-v4-flows-flowId)", version: "0.0.1", type: "action", props: { @@ -11,8 +12,9 @@ export default { workflowId: { propDefinition: [ hubspot, - "workflowId", + "workflow", ], + description: "The ID of the workflow to update", }, name: { type: "string", @@ -20,53 +22,57 @@ export default { description: "The new name of the workflow", optional: true, }, - description: { - type: "string", - label: "Description", - description: "The new description of the workflow", - optional: true, - }, type: { - type: "string", - label: "Workflow Type", - description: "The new type of workflow", - optional: true, - options: [ - { - label: "DRIP", - value: "DRIP", - }, - { - label: "SIMPLE", - value: "SIMPLE", - }, - { - label: "COMPLEX", - value: "COMPLEX", - }, + propDefinition: [ + hubspot, + "type", + ], + }, + isEnabled: { + propDefinition: [ + hubspot, + "isEnabled", + ], + }, + actions: { + propDefinition: [ + hubspot, + "actions", + ], + }, + enrollmentCriteria: { + propDefinition: [ + hubspot, + "enrollmentCriteria", ], }, - triggerType: { + revisionId: { type: "string", - label: "Trigger Type", - description: "The new trigger type for the workflow", + label: "Revision ID", + description: "The revision ID of the workflow", optional: true, }, }, async run({ $ }) { - const { - name, type, description, triggerType, - } = this; + const data = {}; - const updateData = {}; - if (name) updateData.name = name; - if (description) updateData.description = description; - if (type) updateData.type = type; - if (triggerType) updateData.triggerType = triggerType; + if (this.name) data.name = this.name; + if (this.type) data.type = this.type; + if (Object.hasOwn(this, "isEnabled")) data.isEnabled = this.isEnabled; + if (this.actions) data.actions = parseObject(this.actions); + if (this.enrollmentCriteria) data.enrollmentCriteria = parseObject(this.enrollmentCriteria); + if (!this.revisionId) { + const workflow = await this.hubspot.getWorkflowDetails({ + workflowId: this.workflowId, + }); + data.revisionId = workflow.revisionId + 1; + } else { + data.revisionId = this.revisionId; + } const response = await this.hubspot.updateWorkflow({ workflowId: this.workflowId, - data: updateData, + data, $, }); diff --git a/components/hubspot/hubspot.app.mjs b/components/hubspot/hubspot.app.mjs index 253a5e11d3788..081798806cc3c 100644 --- a/components/hubspot/hubspot.app.mjs +++ b/components/hubspot/hubspot.app.mjs @@ -343,9 +343,9 @@ export default { label: "Workflow", description: "The ID of the workflow you wish to see metadata for.", async options() { - const { workflows } = await this.listWorkflows(); + const { results } = await this.listWorkflows(); return { - options: workflows.map(({ + options: results.map(({ name: label, id: value, }) => ({ label, @@ -676,6 +676,38 @@ export default { }; }, }, + type: { + type: "string", + label: "Type", + description: "The type of workflow to create", + options: [ + { + label: "Contact-based Workflow", + value: "CONTACT_FLOW", + }, + { + label: "All other workflow types (e.g., deal-based, goal-based, etc.)", + value: "PLATFORM_FLOW", + }, + ], + }, + isEnabled: { + type: "boolean", + label: "Is Enabled", + description: "Whether the workflow is enabled", + }, + actions: { + type: "string[]", + label: "Actions", + description: "A list of objects representing the workflow actions. [See the documentation](https://developers.hubspot.com/docs/api-reference/automation-automation-v4-v4/guide#action-types) for more information.", + optional: true, + }, + enrollmentCriteria: { + type: "object", + label: "Enrollment Criteria", + description: "The enrollment criteria of the workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/automation-automation-v4-v4/guide#enrollment-criteria) for more information.", + optional: true, + }, }, methods: { _getHeaders() { @@ -1208,8 +1240,8 @@ export default { }, listWorkflows(opts = {}) { return this.makeRequest({ - api: API_PATH.AUTOMATION, - endpoint: "/workflows", + api: API_PATH.AUTOMATIONV4, + endpoint: "/flows", ...opts, }); }, @@ -1223,12 +1255,10 @@ export default { ...opts, }); }, - getWorkflowEmails({ - workflowId, ...opts - }) { + getWorkflowEmails(opts = {}) { return this.makeRequest({ api: API_PATH.AUTOMATIONV4, - endpoint: `/workflows/${workflowId}/emails`, + endpoint: "/flows/email-campaigns", ...opts, }); }, @@ -1237,7 +1267,7 @@ export default { }) { return this.makeRequest({ api: API_PATH.AUTOMATIONV4, - endpoint: `/workflows/${workflowId}`, + endpoint: `/flows/${workflowId}`, ...opts, }); }, @@ -1245,15 +1275,7 @@ export default { return this.makeRequest({ method: "POST", api: API_PATH.AUTOMATIONV4, - endpoint: "/workflows", - ...opts, - }); - }, - getBatchWorkflows(opts = {}) { - return this.makeRequest({ - method: "POST", - api: API_PATH.AUTOMATIONV4, - endpoint: "/workflows/batch", + endpoint: "/flows", ...opts, }); }, @@ -1263,7 +1285,7 @@ export default { return this.makeRequest({ method: "PUT", api: API_PATH.AUTOMATIONV4, - endpoint: `/workflows/${workflowId}`, + endpoint: `/flows/${workflowId}`, ...opts, }); }, @@ -1273,16 +1295,15 @@ export default { return this.makeRequest({ method: "DELETE", api: API_PATH.AUTOMATIONV4, - endpoint: `/workflows/${workflowId}`, + endpoint: `/flows/${workflowId}`, ...opts, }); }, - getMigratedWorkflowMappings({ - workflowId, ...opts - }) { + getMigratedWorkflowMappings(opts = {}) { return this.makeRequest({ api: API_PATH.AUTOMATIONV4, - endpoint: `/workflows/${workflowId}/mappings`, + endpoint: "/workflow-id-mappings/batch/read", + method: "POST", ...opts, }); }, diff --git a/components/hubspot/package.json b/components/hubspot/package.json index ac21534642986..cf0e6b86ce2ff 100644 --- a/components/hubspot/package.json +++ b/components/hubspot/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/hubspot", - "version": "1.6.2", + "version": "1.7.0", "description": "Pipedream Hubspot Components", "main": "hubspot.app.mjs", "keywords": [ From 8a9e21d2528c7dd44af78b84074cd1b074b3cc49 Mon Sep 17 00:00:00 2001 From: Luan Cazarine Date: Tue, 2 Sep 2025 16:44:03 -0300 Subject: [PATCH 04/11] Remove Retrieve Batch Workflows Action - Deleted the `retrieve-batch-workflows` action from HubSpot components as part of the ongoing refactor to streamline workflow management actions. - Updated the `update-workflow` action to change the `revisionId` type from string to integer for better data integrity. --- .../retrieve-batch-workflows.mjs | 39 ------------------- .../update-workflow/update-workflow.mjs | 2 +- 2 files changed, 1 insertion(+), 40 deletions(-) delete mode 100644 components/hubspot/actions/retrieve-batch-workflows/retrieve-batch-workflows.mjs diff --git a/components/hubspot/actions/retrieve-batch-workflows/retrieve-batch-workflows.mjs b/components/hubspot/actions/retrieve-batch-workflows/retrieve-batch-workflows.mjs deleted file mode 100644 index 35e454d1794e6..0000000000000 --- a/components/hubspot/actions/retrieve-batch-workflows/retrieve-batch-workflows.mjs +++ /dev/null @@ -1,39 +0,0 @@ -import { parseObject } from "../../common/utils.mjs"; -import hubspot from "../../hubspot.app.mjs"; - -export default { - key: "hubspot-retrieve-batch-workflows", - name: "Retrieve a Batch of Workflows", - description: "Retrieve multiple workflows by their IDs. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/get-automation-v3-workflows)", - version: "0.0.1", - type: "action", - props: { - hubspot, - workflowIds: { - propDefinition: [ - hubspot, - "workflowId", - ], - type: "string[]", - label: "Workflow IDs", - description: "A list of workflow IDs to retrieve", - }, - }, - async run({ $ }) { - const workflows = []; - const parsedWorkflowIds = parseObject(this.workflowIds); - - for (const workflowId of parsedWorkflowIds) { - const response = await this.hubspot.getWorkflowDetails({ - workflowId, - $, - }); - workflows.push(response); - } - - $.export("$summary", `Successfully retrieved ${parsedWorkflowIds.length} workflows`); - return { - workflows, - }; - }, -}; diff --git a/components/hubspot/actions/update-workflow/update-workflow.mjs b/components/hubspot/actions/update-workflow/update-workflow.mjs index 444140827b521..304df617c8e80 100644 --- a/components/hubspot/actions/update-workflow/update-workflow.mjs +++ b/components/hubspot/actions/update-workflow/update-workflow.mjs @@ -47,7 +47,7 @@ export default { ], }, revisionId: { - type: "string", + type: "integer", label: "Revision ID", description: "The revision ID of the workflow", optional: true, From b1cb28b573a2a0d2e2c08e75680380a45d60de17 Mon Sep 17 00:00:00 2001 From: Luan Cazarine Date: Tue, 2 Sep 2025 16:46:36 -0300 Subject: [PATCH 05/11] Update HubSpot Actions and Sources Versions - Bumped version numbers for multiple HubSpot actions and sources to reflect recent updates and improvements. - Actions updated include: add-contact-to-list, batch-create-companies, batch-update-companies, create-associations, create-communication, and more. - Sources updated include: new-company-property-change, new-contact-property-change, new-deal-property-change, and others. - Ensured consistency across versioning for better management and tracking of changes. --- .../hubspot/actions/add-contact-to-list/add-contact-to-list.mjs | 2 +- .../actions/batch-create-companies/batch-create-companies.mjs | 2 +- .../batch-create-or-update-contact.mjs | 2 +- .../actions/batch-update-companies/batch-update-companies.mjs | 2 +- .../actions/batch-upsert-companies/batch-upsert-companies.mjs | 2 +- components/hubspot/actions/clone-email/clone-email.mjs | 2 +- components/hubspot/actions/clone-site-page/clone-site-page.mjs | 2 +- .../hubspot/actions/create-associations/create-associations.mjs | 2 +- .../actions/create-communication/create-communication.mjs | 2 +- components/hubspot/actions/create-company/create-company.mjs | 2 +- .../actions/create-contact-workflow/create-contact-workflow.mjs | 2 +- .../actions/create-custom-object/create-custom-object.mjs | 2 +- components/hubspot/actions/create-deal/create-deal.mjs | 2 +- components/hubspot/actions/create-email/create-email.mjs | 2 +- .../hubspot/actions/create-engagement/create-engagement.mjs | 2 +- components/hubspot/actions/create-form/create-form.mjs | 2 +- .../hubspot/actions/create-landing-page/create-landing-page.mjs | 2 +- components/hubspot/actions/create-lead/create-lead.mjs | 2 +- components/hubspot/actions/create-meeting/create-meeting.mjs | 2 +- components/hubspot/actions/create-note/create-note.mjs | 2 +- .../create-or-update-contact/create-or-update-contact.mjs | 2 +- components/hubspot/actions/create-page/create-page.mjs | 2 +- components/hubspot/actions/create-task/create-task.mjs | 2 +- components/hubspot/actions/create-ticket/create-ticket.mjs | 2 +- .../enroll-contact-into-workflow.mjs | 2 +- .../actions/get-associated-emails/get-associated-emails.mjs | 2 +- .../actions/get-associated-meetings/get-associated-meetings.mjs | 2 +- components/hubspot/actions/get-company/get-company.mjs | 2 +- components/hubspot/actions/get-contact/get-contact.mjs | 2 +- components/hubspot/actions/get-deal/get-deal.mjs | 2 +- .../hubspot/actions/get-file-public-url/get-file-public-url.mjs | 2 +- components/hubspot/actions/get-meeting/get-meeting.mjs | 2 +- .../get-subscription-preferences.mjs | 2 +- components/hubspot/actions/list-blog-posts/list-blog-posts.mjs | 2 +- components/hubspot/actions/list-campaigns/list-campaigns.mjs | 2 +- components/hubspot/actions/list-forms/list-forms.mjs | 2 +- .../actions/list-marketing-emails/list-marketing-emails.mjs | 2 +- .../actions/list-marketing-events/list-marketing-events.mjs | 2 +- components/hubspot/actions/list-pages/list-pages.mjs | 2 +- components/hubspot/actions/list-templates/list-templates.mjs | 2 +- components/hubspot/actions/search-crm/search-crm.mjs | 2 +- components/hubspot/actions/update-company/update-company.mjs | 2 +- components/hubspot/actions/update-contact/update-contact.mjs | 2 +- .../actions/update-custom-object/update-custom-object.mjs | 2 +- components/hubspot/actions/update-deal/update-deal.mjs | 2 +- .../update-fields-on-the-form/update-fields-on-the-form.mjs | 2 +- .../hubspot/actions/update-landing-page/update-landing-page.mjs | 2 +- components/hubspot/actions/update-lead/update-lead.mjs | 2 +- components/hubspot/actions/update-page/update-page.mjs | 2 +- .../hubspot/sources/delete-blog-article/delete-blog-article.mjs | 2 +- .../new-company-property-change/new-company-property-change.mjs | 2 +- .../new-contact-property-change/new-contact-property-change.mjs | 2 +- .../new-custom-object-property-change.mjs | 2 +- .../hubspot/sources/new-deal-in-stage/new-deal-in-stage.mjs | 2 +- .../new-deal-property-change/new-deal-property-change.mjs | 2 +- components/hubspot/sources/new-email-event/new-email-event.mjs | 2 +- .../new-email-subscriptions-timeline.mjs | 2 +- components/hubspot/sources/new-engagement/new-engagement.mjs | 2 +- components/hubspot/sources/new-event/new-event.mjs | 2 +- .../hubspot/sources/new-form-submission/new-form-submission.mjs | 2 +- components/hubspot/sources/new-note/new-note.mjs | 2 +- .../new-or-updated-blog-article/new-or-updated-blog-article.mjs | 2 +- .../sources/new-or-updated-company/new-or-updated-company.mjs | 2 +- .../sources/new-or-updated-contact/new-or-updated-contact.mjs | 2 +- .../new-or-updated-crm-object/new-or-updated-crm-object.mjs | 2 +- .../new-or-updated-custom-object.mjs | 2 +- .../hubspot/sources/new-or-updated-deal/new-or-updated-deal.mjs | 2 +- .../new-or-updated-line-item/new-or-updated-line-item.mjs | 2 +- .../sources/new-or-updated-product/new-or-updated-product.mjs | 2 +- .../new-social-media-message/new-social-media-message.mjs | 2 +- components/hubspot/sources/new-task/new-task.mjs | 2 +- .../new-ticket-property-change/new-ticket-property-change.mjs | 2 +- components/hubspot/sources/new-ticket/new-ticket.mjs | 2 +- 73 files changed, 73 insertions(+), 73 deletions(-) diff --git a/components/hubspot/actions/add-contact-to-list/add-contact-to-list.mjs b/components/hubspot/actions/add-contact-to-list/add-contact-to-list.mjs index b663b4f5dfdd2..a01c05c25dc2f 100644 --- a/components/hubspot/actions/add-contact-to-list/add-contact-to-list.mjs +++ b/components/hubspot/actions/add-contact-to-list/add-contact-to-list.mjs @@ -4,7 +4,7 @@ export default { key: "hubspot-add-contact-to-list", name: "Add Contact to List", description: "Adds a contact to a specific static list. [See the documentation](https://legacydocs.hubspot.com/docs/methods/lists/add_contact_to_list)", - version: "0.0.21", + version: "0.0.22", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/batch-create-companies/batch-create-companies.mjs b/components/hubspot/actions/batch-create-companies/batch-create-companies.mjs index b5e123c0437cf..19a730cbd646f 100644 --- a/components/hubspot/actions/batch-create-companies/batch-create-companies.mjs +++ b/components/hubspot/actions/batch-create-companies/batch-create-companies.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-batch-create-companies", name: "Batch Create Companies", description: "Create a batch of companies in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/objects/companies#post-%2Fcrm%2Fv3%2Fobjects%2Fcompanies%2Fbatch%2Fcreate)", - version: "0.0.4", + version: "0.0.5", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/batch-create-or-update-contact/batch-create-or-update-contact.mjs b/components/hubspot/actions/batch-create-or-update-contact/batch-create-or-update-contact.mjs index dfc27e663cb14..9fef8ba032db9 100644 --- a/components/hubspot/actions/batch-create-or-update-contact/batch-create-or-update-contact.mjs +++ b/components/hubspot/actions/batch-create-or-update-contact/batch-create-or-update-contact.mjs @@ -4,7 +4,7 @@ export default { key: "hubspot-batch-create-or-update-contact", name: "Batch Create or Update Contact", description: "Create or update a batch of contacts by its ID or email. [See the documentation](https://developers.hubspot.com/docs/api/crm/contacts)", - version: "0.0.18", + version: "0.0.19", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/batch-update-companies/batch-update-companies.mjs b/components/hubspot/actions/batch-update-companies/batch-update-companies.mjs index ffc6d9ad3d0a8..17339e69c688e 100644 --- a/components/hubspot/actions/batch-update-companies/batch-update-companies.mjs +++ b/components/hubspot/actions/batch-update-companies/batch-update-companies.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-batch-update-companies", name: "Batch Update Companies", description: "Update a batch of companies in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/objects/companies#post-%2Fcrm%2Fv3%2Fobjects%2Fcompanies%2Fbatch%2Fupdate)", - version: "0.0.4", + version: "0.0.5", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/batch-upsert-companies/batch-upsert-companies.mjs b/components/hubspot/actions/batch-upsert-companies/batch-upsert-companies.mjs index 1acdfec42c08e..1f7acd25a9f28 100644 --- a/components/hubspot/actions/batch-upsert-companies/batch-upsert-companies.mjs +++ b/components/hubspot/actions/batch-upsert-companies/batch-upsert-companies.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-batch-upsert-companies", name: "Batch Upsert Companies", description: "Upsert a batch of companies in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/objects/companies#post-%2Fcrm%2Fv3%2Fobjects%2Fcompanies%2Fbatch%2Fupsert)", - version: "0.0.4", + version: "0.0.5", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/clone-email/clone-email.mjs b/components/hubspot/actions/clone-email/clone-email.mjs index 8730acce007a6..f4d0cf604d6b7 100644 --- a/components/hubspot/actions/clone-email/clone-email.mjs +++ b/components/hubspot/actions/clone-email/clone-email.mjs @@ -5,7 +5,7 @@ export default { key: "hubspot-clone-email", name: "Clone Marketing Email", description: "Clone a marketing email in HubSpot. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/emails/marketing-emails#post-%2Fmarketing%2Fv3%2Femails%2Fclone)", - version: "0.0.2", + version: "0.0.3", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/clone-site-page/clone-site-page.mjs b/components/hubspot/actions/clone-site-page/clone-site-page.mjs index c1940d7f22ed0..3415576f95180 100644 --- a/components/hubspot/actions/clone-site-page/clone-site-page.mjs +++ b/components/hubspot/actions/clone-site-page/clone-site-page.mjs @@ -4,7 +4,7 @@ export default { key: "hubspot-clone-site-page", name: "Clone Site Page", description: "Clone a site page in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/pages#post-%2Fcms%2Fv3%2Fpages%2Fsite-pages%2Fclone)", - version: "0.0.2", + version: "0.0.3", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/create-associations/create-associations.mjs b/components/hubspot/actions/create-associations/create-associations.mjs index eca25331dfa41..759734c77e683 100644 --- a/components/hubspot/actions/create-associations/create-associations.mjs +++ b/components/hubspot/actions/create-associations/create-associations.mjs @@ -5,7 +5,7 @@ export default { key: "hubspot-create-associations", name: "Create Associations", description: "Create associations between objects. [See the documentation](https://developers.hubspot.com/docs/api/crm/associations#endpoint?spec=POST-/crm/v3/associations/{fromObjectType}/{toObjectType}/batch/create)", - version: "1.0.7", + version: "1.0.8", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/create-communication/create-communication.mjs b/components/hubspot/actions/create-communication/create-communication.mjs index b3031f8be3d7e..dd28016f94082 100644 --- a/components/hubspot/actions/create-communication/create-communication.mjs +++ b/components/hubspot/actions/create-communication/create-communication.mjs @@ -8,7 +8,7 @@ export default { key: "hubspot-create-communication", name: "Create Communication", description: "Create a WhatsApp, LinkedIn, or SMS message. [See the documentation](https://developers.hubspot.com/beta-docs/reference/api/crm/engagements/communications/v3#post-%2Fcrm%2Fv3%2Fobjects%2Fcommunications)", - version: "0.0.14", + version: "0.0.15", type: "action", props: { ...appProp.props, diff --git a/components/hubspot/actions/create-company/create-company.mjs b/components/hubspot/actions/create-company/create-company.mjs index caef7e034bbf6..77b7681923c62 100644 --- a/components/hubspot/actions/create-company/create-company.mjs +++ b/components/hubspot/actions/create-company/create-company.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-create-company", name: "Create Company", description: "Create a company in Hubspot. [See the documentation](https://developers.hubspot.com/docs/api/crm/companies#endpoint?spec=POST-/crm/v3/objects/companies)", - version: "0.0.25", + version: "0.0.26", type: "action", methods: { ...common.methods, diff --git a/components/hubspot/actions/create-contact-workflow/create-contact-workflow.mjs b/components/hubspot/actions/create-contact-workflow/create-contact-workflow.mjs index 199ba4d91a234..934e187e0181b 100644 --- a/components/hubspot/actions/create-contact-workflow/create-contact-workflow.mjs +++ b/components/hubspot/actions/create-contact-workflow/create-contact-workflow.mjs @@ -5,7 +5,7 @@ export default { key: "hubspot-create-contact-workflow", name: "Create Contact Workflow", description: "Create a contact workflow in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/automation/create-manage-workflows#post-%2Fautomation%2Fv4%2Fflows)", - version: "0.0.2", + version: "0.0.3", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/create-custom-object/create-custom-object.mjs b/components/hubspot/actions/create-custom-object/create-custom-object.mjs index dd856304c043c..2026ee468555e 100644 --- a/components/hubspot/actions/create-custom-object/create-custom-object.mjs +++ b/components/hubspot/actions/create-custom-object/create-custom-object.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-create-custom-object", name: "Create Custom Object", description: "Create a new custom object in Hubspot. [See the documentation](https://developers.hubspot.com/beta-docs/guides/api/crm/objects/custom-objects#create-a-custom-object)", - version: "1.0.7", + version: "1.0.8", type: "action", props: { ...appProp.props, diff --git a/components/hubspot/actions/create-deal/create-deal.mjs b/components/hubspot/actions/create-deal/create-deal.mjs index 2475e97bc77fe..682a761431e84 100644 --- a/components/hubspot/actions/create-deal/create-deal.mjs +++ b/components/hubspot/actions/create-deal/create-deal.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-create-deal", name: "Create Deal", description: "Create a deal in Hubspot. [See the documentation](https://developers.hubspot.com/docs/api/crm/deals#endpoint?spec=POST-/crm/v3/objects/deals)", - version: "0.0.25", + version: "0.0.26", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/create-email/create-email.mjs b/components/hubspot/actions/create-email/create-email.mjs index 6a8b8839e1772..698b5d17d7dab 100644 --- a/components/hubspot/actions/create-email/create-email.mjs +++ b/components/hubspot/actions/create-email/create-email.mjs @@ -9,7 +9,7 @@ export default { key: "hubspot-create-email", name: "Create Marketing Email", description: "Create a marketing email in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/emails/marketing-emails#post-%2Fmarketing%2Fv3%2Femails%2F)", - version: "0.0.2", + version: "0.0.3", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/create-engagement/create-engagement.mjs b/components/hubspot/actions/create-engagement/create-engagement.mjs index 39655fa69dc1f..f4e0d6d52ccec 100644 --- a/components/hubspot/actions/create-engagement/create-engagement.mjs +++ b/components/hubspot/actions/create-engagement/create-engagement.mjs @@ -9,7 +9,7 @@ export default { key: "hubspot-create-engagement", name: "Create Engagement", description: "Create a new engagement for a contact. [See the documentation](https://developers.hubspot.com/docs/api/crm/engagements)", - version: "0.0.24", + version: "0.0.25", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/create-form/create-form.mjs b/components/hubspot/actions/create-form/create-form.mjs index 1ffe8ada1ed6d..838fbdff6cd99 100644 --- a/components/hubspot/actions/create-form/create-form.mjs +++ b/components/hubspot/actions/create-form/create-form.mjs @@ -9,7 +9,7 @@ export default { key: "hubspot-create-form", name: "Create Form", description: "Create a form in HubSpot. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/forms#post-%2Fmarketing%2Fv3%2Fforms%2F)", - version: "0.0.2", + version: "0.0.3", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/create-landing-page/create-landing-page.mjs b/components/hubspot/actions/create-landing-page/create-landing-page.mjs index 1e969becab39a..7475e8df69681 100644 --- a/components/hubspot/actions/create-landing-page/create-landing-page.mjs +++ b/components/hubspot/actions/create-landing-page/create-landing-page.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-create-landing-page", name: "Create Landing Page", description: "Create a landing page in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/pages#post-%2Fcms%2Fv3%2Fpages%2Flanding-pages)", - version: "0.0.2", + version: "0.0.3", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/create-lead/create-lead.mjs b/components/hubspot/actions/create-lead/create-lead.mjs index ea1b99e8681de..1375f92894a93 100644 --- a/components/hubspot/actions/create-lead/create-lead.mjs +++ b/components/hubspot/actions/create-lead/create-lead.mjs @@ -10,7 +10,7 @@ export default { key: "hubspot-create-lead", name: "Create Lead", description: "Create a lead in Hubspot. [See the documentation](https://developers.hubspot.com/beta-docs/guides/api/crm/objects/leads#create-leads)", - version: "0.0.13", + version: "0.0.14", type: "action", props: { ...appProp.props, diff --git a/components/hubspot/actions/create-meeting/create-meeting.mjs b/components/hubspot/actions/create-meeting/create-meeting.mjs index 46ba1786f1fa5..3e5419bd86e2a 100644 --- a/components/hubspot/actions/create-meeting/create-meeting.mjs +++ b/components/hubspot/actions/create-meeting/create-meeting.mjs @@ -10,7 +10,7 @@ export default { key: "hubspot-create-meeting", name: "Create Meeting", description: "Creates a new meeting with optional associations to other objects. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/engagements/meetings#post-%2Fcrm%2Fv3%2Fobjects%2Fmeetings)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/create-note/create-note.mjs b/components/hubspot/actions/create-note/create-note.mjs index 0d22605758a21..64387656f1306 100644 --- a/components/hubspot/actions/create-note/create-note.mjs +++ b/components/hubspot/actions/create-note/create-note.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-create-note", name: "Create Note", description: "Create a new note. [See the documentation](https://developers.hubspot.com/docs/api/crm/engagements)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/create-or-update-contact/create-or-update-contact.mjs b/components/hubspot/actions/create-or-update-contact/create-or-update-contact.mjs index 253baa623fafd..73d89abde66d1 100644 --- a/components/hubspot/actions/create-or-update-contact/create-or-update-contact.mjs +++ b/components/hubspot/actions/create-or-update-contact/create-or-update-contact.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-create-or-update-contact", name: "Create or Update Contact", description: "Create or update a contact in Hubspot. [See the documentation](https://developers.hubspot.com/docs/api/crm/contacts#endpoint?spec=POST-/crm/v3/objects/contacts)", - version: "0.0.23", + version: "0.0.24", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/create-page/create-page.mjs b/components/hubspot/actions/create-page/create-page.mjs index 28fdffbe27fd0..717c51e7cc638 100644 --- a/components/hubspot/actions/create-page/create-page.mjs +++ b/components/hubspot/actions/create-page/create-page.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-create-page", name: "Create Page", description: "Create a page in HubSpot. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/pages#post-%2Fcms%2Fv3%2Fpages%2Fsite-pages)", - version: "0.0.2", + version: "0.0.3", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/create-task/create-task.mjs b/components/hubspot/actions/create-task/create-task.mjs index 025a92acb820a..7a97900066d91 100644 --- a/components/hubspot/actions/create-task/create-task.mjs +++ b/components/hubspot/actions/create-task/create-task.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-create-task", name: "Create Task", description: "Create a new task. [See the documentation](https://developers.hubspot.com/docs/api/crm/engagements)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/create-ticket/create-ticket.mjs b/components/hubspot/actions/create-ticket/create-ticket.mjs index d73ff06e3af49..22776af59f427 100644 --- a/components/hubspot/actions/create-ticket/create-ticket.mjs +++ b/components/hubspot/actions/create-ticket/create-ticket.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-create-ticket", name: "Create Ticket", description: "Create a ticket in Hubspot. [See the documentation](https://developers.hubspot.com/docs/api/crm/tickets)", - version: "0.0.16", + version: "0.0.17", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/enroll-contact-into-workflow/enroll-contact-into-workflow.mjs b/components/hubspot/actions/enroll-contact-into-workflow/enroll-contact-into-workflow.mjs index c30656d3dcb9e..29170c4fb1c72 100644 --- a/components/hubspot/actions/enroll-contact-into-workflow/enroll-contact-into-workflow.mjs +++ b/components/hubspot/actions/enroll-contact-into-workflow/enroll-contact-into-workflow.mjs @@ -4,7 +4,7 @@ export default { key: "hubspot-enroll-contact-into-workflow", name: "Enroll Contact Into Workflow", description: "Add a contact to a workflow. Note: The Workflows API currently only supports contact-based workflows and is only available for Marketing Hub Enterprise accounts. [See the documentation](https://legacydocs.hubspot.com/docs/methods/workflows/add_contact)", - version: "0.0.21", + version: "0.0.22", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/get-associated-emails/get-associated-emails.mjs b/components/hubspot/actions/get-associated-emails/get-associated-emails.mjs index c74e487e40ff1..ab45de293f691 100644 --- a/components/hubspot/actions/get-associated-emails/get-associated-emails.mjs +++ b/components/hubspot/actions/get-associated-emails/get-associated-emails.mjs @@ -5,7 +5,7 @@ export default { key: "hubspot-get-associated-emails", name: "Get Associated Emails", description: "Retrieves emails associated with a specific object (contact, company, or deal). [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/search)", - version: "0.0.3", + version: "0.0.4", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/get-associated-meetings/get-associated-meetings.mjs b/components/hubspot/actions/get-associated-meetings/get-associated-meetings.mjs index 035dd0d08c86c..ecbcd328fbd9a 100644 --- a/components/hubspot/actions/get-associated-meetings/get-associated-meetings.mjs +++ b/components/hubspot/actions/get-associated-meetings/get-associated-meetings.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-get-associated-meetings", name: "Get Associated Meetings", description: "Retrieves meetings associated with a specific object (contact, company, or deal) with optional time filtering. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/associations/association-details#get-%2Fcrm%2Fv4%2Fobjects%2F%7Bobjecttype%7D%2F%7Bobjectid%7D%2Fassociations%2F%7Btoobjecttype%7D)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/get-company/get-company.mjs b/components/hubspot/actions/get-company/get-company.mjs index 7e5d6b887149c..472b35c4080f9 100644 --- a/components/hubspot/actions/get-company/get-company.mjs +++ b/components/hubspot/actions/get-company/get-company.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-get-company", name: "Get Company", description: "Gets a company. [See the documentation](https://developers.hubspot.com/docs/api/crm/companies#endpoint?spec=GET-/crm/v3/objects/companies/{companyId})", - version: "0.0.21", + version: "0.0.22", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/get-contact/get-contact.mjs b/components/hubspot/actions/get-contact/get-contact.mjs index 2a2db8cc08064..8162ca90f95d8 100644 --- a/components/hubspot/actions/get-contact/get-contact.mjs +++ b/components/hubspot/actions/get-contact/get-contact.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-get-contact", name: "Get Contact", description: "Gets a contact. [See the documentation](https://developers.hubspot.com/docs/api/crm/contacts#endpoint?spec=GET-/crm/v3/objects/contacts/{contactId})", - version: "0.0.21", + version: "0.0.22", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/get-deal/get-deal.mjs b/components/hubspot/actions/get-deal/get-deal.mjs index 8e2ed2778d3b4..1dec46f014b7b 100644 --- a/components/hubspot/actions/get-deal/get-deal.mjs +++ b/components/hubspot/actions/get-deal/get-deal.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-get-deal", name: "Get Deal", description: "Gets a deal. [See the documentation](https://developers.hubspot.com/docs/api/crm/deals#endpoint?spec=GET-/crm/v3/objects/deals/{dealId})", - version: "0.0.21", + version: "0.0.22", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/get-file-public-url/get-file-public-url.mjs b/components/hubspot/actions/get-file-public-url/get-file-public-url.mjs index 1d3f1aa047b06..f777c91b95d68 100644 --- a/components/hubspot/actions/get-file-public-url/get-file-public-url.mjs +++ b/components/hubspot/actions/get-file-public-url/get-file-public-url.mjs @@ -4,7 +4,7 @@ export default { key: "hubspot-get-file-public-url", name: "Get File Public URL", description: "Get a publicly available URL for a file that was uploaded using a Hubspot form. [See the documentation](https://developers.hubspot.com/docs/api/files/files#endpoint?spec=GET-/files/v3/files/{fileId}/signed-url)", - version: "0.0.21", + version: "0.0.22", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/get-meeting/get-meeting.mjs b/components/hubspot/actions/get-meeting/get-meeting.mjs index 06e6aa10d1519..35987542b71de 100644 --- a/components/hubspot/actions/get-meeting/get-meeting.mjs +++ b/components/hubspot/actions/get-meeting/get-meeting.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-get-meeting", name: "Get Meeting", description: "Retrieves a specific meeting by its ID. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/engagements/meetings#get-%2Fcrm%2Fv3%2Fobjects%2Fmeetings%2F%7Bmeetingid%7D)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/get-subscription-preferences/get-subscription-preferences.mjs b/components/hubspot/actions/get-subscription-preferences/get-subscription-preferences.mjs index cf69c4f899912..07ab9e23dcd65 100644 --- a/components/hubspot/actions/get-subscription-preferences/get-subscription-preferences.mjs +++ b/components/hubspot/actions/get-subscription-preferences/get-subscription-preferences.mjs @@ -4,7 +4,7 @@ export default { key: "hubspot-get-subscription-preferences", name: "Get Subscription Preferences", description: "Retrieves the subscription preferences for a contact. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/subscriptions#get-%2Fcommunication-preferences%2Fv4%2Fstatuses%2F%7Bsubscriberidstring%7D)", - version: "0.0.3", + version: "0.0.4", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/list-blog-posts/list-blog-posts.mjs b/components/hubspot/actions/list-blog-posts/list-blog-posts.mjs index 5b6e62e79bbbe..7adb012b17ab1 100644 --- a/components/hubspot/actions/list-blog-posts/list-blog-posts.mjs +++ b/components/hubspot/actions/list-blog-posts/list-blog-posts.mjs @@ -4,7 +4,7 @@ export default { key: "hubspot-list-blog-posts", name: "List Blog Posts", description: "Retrieves a list of blog posts. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/blogs/blog-posts)", - version: "0.0.3", + version: "0.0.4", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/list-campaigns/list-campaigns.mjs b/components/hubspot/actions/list-campaigns/list-campaigns.mjs index 5b89be1529267..1dad39a6a580d 100644 --- a/components/hubspot/actions/list-campaigns/list-campaigns.mjs +++ b/components/hubspot/actions/list-campaigns/list-campaigns.mjs @@ -4,7 +4,7 @@ export default { key: "hubspot-list-campaigns", name: "List Campaigns", description: "Retrieves a list of campaigns. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/campaigns#get-%2Fmarketing%2Fv3%2Fcampaigns%2F)", - version: "0.0.3", + version: "0.0.4", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/list-forms/list-forms.mjs b/components/hubspot/actions/list-forms/list-forms.mjs index 58df18e8a9453..b95681fe296a5 100644 --- a/components/hubspot/actions/list-forms/list-forms.mjs +++ b/components/hubspot/actions/list-forms/list-forms.mjs @@ -4,7 +4,7 @@ export default { key: "hubspot-list-forms", name: "List Forms", description: "Retrieves a list of forms. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/forms#get-%2Fmarketing%2Fv3%2Fforms%2F)", - version: "0.0.3", + version: "0.0.4", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/list-marketing-emails/list-marketing-emails.mjs b/components/hubspot/actions/list-marketing-emails/list-marketing-emails.mjs index 4c6cb11ea82a1..45743c163643f 100644 --- a/components/hubspot/actions/list-marketing-emails/list-marketing-emails.mjs +++ b/components/hubspot/actions/list-marketing-emails/list-marketing-emails.mjs @@ -4,7 +4,7 @@ export default { key: "hubspot-list-marketing-emails", name: "List Marketing Emails", description: "Retrieves a list of marketing emails. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/emails/marketing-emails#get-%2Fmarketing%2Fv3%2Femails%2F)", - version: "0.0.3", + version: "0.0.4", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/list-marketing-events/list-marketing-events.mjs b/components/hubspot/actions/list-marketing-events/list-marketing-events.mjs index 15db09497ac3f..18a378fb39cb5 100644 --- a/components/hubspot/actions/list-marketing-events/list-marketing-events.mjs +++ b/components/hubspot/actions/list-marketing-events/list-marketing-events.mjs @@ -4,7 +4,7 @@ export default { key: "hubspot-list-marketing-events", name: "List Marketing Events", description: "Retrieves a list of marketing events. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/marketing-events#get-%2Fmarketing%2Fv3%2Fmarketing-events%2F)", - version: "0.0.3", + version: "0.0.4", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/list-pages/list-pages.mjs b/components/hubspot/actions/list-pages/list-pages.mjs index 8280a0f400df4..542edf58b00b1 100644 --- a/components/hubspot/actions/list-pages/list-pages.mjs +++ b/components/hubspot/actions/list-pages/list-pages.mjs @@ -4,7 +4,7 @@ export default { key: "hubspot-list-pages", name: "List Pages", description: "Retrieves a list of site pages. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/pages)", - version: "0.0.3", + version: "0.0.4", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/list-templates/list-templates.mjs b/components/hubspot/actions/list-templates/list-templates.mjs index f2ae58d868e06..9f308cc667e84 100644 --- a/components/hubspot/actions/list-templates/list-templates.mjs +++ b/components/hubspot/actions/list-templates/list-templates.mjs @@ -4,7 +4,7 @@ export default { key: "hubspot-list-templates", name: "List Templates", description: "Retrieves a list of templates. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/templates)", - version: "0.0.3", + version: "0.0.4", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/search-crm/search-crm.mjs b/components/hubspot/actions/search-crm/search-crm.mjs index 5b3a319313d91..e0c5aeff7e79a 100644 --- a/components/hubspot/actions/search-crm/search-crm.mjs +++ b/components/hubspot/actions/search-crm/search-crm.mjs @@ -17,7 +17,7 @@ export default { key: "hubspot-search-crm", name: "Search CRM", description: "Search companies, contacts, deals, feedback submissions, products, tickets, line-items, quotes, leads, or custom objects. [See the documentation](https://developers.hubspot.com/docs/api/crm/search)", - version: "1.0.8", + version: "1.0.9", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/update-company/update-company.mjs b/components/hubspot/actions/update-company/update-company.mjs index 8754f760469e4..30eaf3291b7bf 100644 --- a/components/hubspot/actions/update-company/update-company.mjs +++ b/components/hubspot/actions/update-company/update-company.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-update-company", name: "Update Company", description: "Update a company in Hubspot. [See the documentation](https://developers.hubspot.com/docs/api/crm/companies)", - version: "0.0.21", + version: "0.0.22", type: "action", methods: { ...common.methods, diff --git a/components/hubspot/actions/update-contact/update-contact.mjs b/components/hubspot/actions/update-contact/update-contact.mjs index b21fc4a6367f0..2e0529e0f7e3e 100644 --- a/components/hubspot/actions/update-contact/update-contact.mjs +++ b/components/hubspot/actions/update-contact/update-contact.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-update-contact", name: "Update Contact", description: "Update a contact in Hubspot. [See the documentation](https://developers.hubspot.com/docs/api/crm/contacts#endpoint?spec=POST-/crm/v3/objects/contacts)", - version: "0.0.22", + version: "0.0.23", type: "action", methods: { ...common.methods, diff --git a/components/hubspot/actions/update-custom-object/update-custom-object.mjs b/components/hubspot/actions/update-custom-object/update-custom-object.mjs index 456c27c4d703d..bdfe2f68ab29c 100644 --- a/components/hubspot/actions/update-custom-object/update-custom-object.mjs +++ b/components/hubspot/actions/update-custom-object/update-custom-object.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-update-custom-object", name: "Update Custom Object", description: "Update a custom object in Hubspot. [See the documentation](https://developers.hubspot.com/beta-docs/guides/api/crm/objects/custom-objects#update-existing-custom-objects)", - version: "1.0.7", + version: "1.0.8", type: "action", methods: { ...common.methods, diff --git a/components/hubspot/actions/update-deal/update-deal.mjs b/components/hubspot/actions/update-deal/update-deal.mjs index f27761975ed6d..1c23c902f04dd 100644 --- a/components/hubspot/actions/update-deal/update-deal.mjs +++ b/components/hubspot/actions/update-deal/update-deal.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-update-deal", name: "Update Deal", description: "Update a deal in Hubspot. [See the documentation](https://developers.hubspot.com/beta-docs/guides/api/crm/objects/deals#update-deals)", - version: "0.0.12", + version: "0.0.13", type: "action", methods: { ...common.methods, diff --git a/components/hubspot/actions/update-fields-on-the-form/update-fields-on-the-form.mjs b/components/hubspot/actions/update-fields-on-the-form/update-fields-on-the-form.mjs index 5c32703468591..69ed84007ef80 100644 --- a/components/hubspot/actions/update-fields-on-the-form/update-fields-on-the-form.mjs +++ b/components/hubspot/actions/update-fields-on-the-form/update-fields-on-the-form.mjs @@ -9,7 +9,7 @@ export default { key: "hubspot-update-fields-on-the-form", name: "Update Fields on the Form", description: "Update some of the form definition components. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/forms#patch-%2Fmarketing%2Fv3%2Fforms%2F%7Bformid%7D)", - version: "0.0.2", + version: "0.0.3", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/update-landing-page/update-landing-page.mjs b/components/hubspot/actions/update-landing-page/update-landing-page.mjs index cdc2c2e6d4703..db80d8486574b 100644 --- a/components/hubspot/actions/update-landing-page/update-landing-page.mjs +++ b/components/hubspot/actions/update-landing-page/update-landing-page.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-update-landing-page", name: "Update Landing Page", description: "Update a landing page in HubSpot. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/pages#patch-%2Fcms%2Fv3%2Fpages%2Flanding-pages%2F%7Bobjectid%7D)", - version: "0.0.2", + version: "0.0.3", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/update-lead/update-lead.mjs b/components/hubspot/actions/update-lead/update-lead.mjs index c5e28edb90914..07dd61fbab8ff 100644 --- a/components/hubspot/actions/update-lead/update-lead.mjs +++ b/components/hubspot/actions/update-lead/update-lead.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-update-lead", name: "Update Lead", description: "Update a lead in Hubspot. [See the documentation](https://developers.hubspot.com/beta-docs/guides/api/crm/objects/leads#update-leads)", - version: "0.0.13", + version: "0.0.14", type: "action", methods: { ...common.methods, diff --git a/components/hubspot/actions/update-page/update-page.mjs b/components/hubspot/actions/update-page/update-page.mjs index 138a64aefe82a..968a252d95d50 100644 --- a/components/hubspot/actions/update-page/update-page.mjs +++ b/components/hubspot/actions/update-page/update-page.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-update-page", name: "Update Page", description: "Update a page in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/pages#patch-%2Fcms%2Fv3%2Fpages%2Fsite-pages%2F%7Bobjectid%7D)", - version: "0.0.2", + version: "0.0.3", type: "action", props: { hubspot, diff --git a/components/hubspot/sources/delete-blog-article/delete-blog-article.mjs b/components/hubspot/sources/delete-blog-article/delete-blog-article.mjs index ca8a4020223ac..6df5df5054b01 100644 --- a/components/hubspot/sources/delete-blog-article/delete-blog-article.mjs +++ b/components/hubspot/sources/delete-blog-article/delete-blog-article.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-delete-blog-article", name: "Deleted Blog Posts", description: "Emit new event for each deleted blog post.", - version: "0.0.27", + version: "0.0.28", dedupe: "unique", type: "source", methods: { diff --git a/components/hubspot/sources/new-company-property-change/new-company-property-change.mjs b/components/hubspot/sources/new-company-property-change/new-company-property-change.mjs index 70a9860f8f535..fdd06978c51e2 100644 --- a/components/hubspot/sources/new-company-property-change/new-company-property-change.mjs +++ b/components/hubspot/sources/new-company-property-change/new-company-property-change.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-company-property-change", name: "New Company Property Change", description: "Emit new event when a specified property is provided or updated on a company. [See the documentation](https://developers.hubspot.com/docs/api/crm/companies)", - version: "0.0.20", + version: "0.0.21", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-contact-property-change/new-contact-property-change.mjs b/components/hubspot/sources/new-contact-property-change/new-contact-property-change.mjs index 41b8996d84fd2..35dfac6b2d71b 100644 --- a/components/hubspot/sources/new-contact-property-change/new-contact-property-change.mjs +++ b/components/hubspot/sources/new-contact-property-change/new-contact-property-change.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-contact-property-change", name: "New Contact Property Change", description: "Emit new event when a specified property is provided or updated on a contact. [See the documentation](https://developers.hubspot.com/docs/api/crm/contacts)", - version: "0.0.22", + version: "0.0.23", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-custom-object-property-change/new-custom-object-property-change.mjs b/components/hubspot/sources/new-custom-object-property-change/new-custom-object-property-change.mjs index a78ad74f9462f..61d7c5cf8ce6c 100644 --- a/components/hubspot/sources/new-custom-object-property-change/new-custom-object-property-change.mjs +++ b/components/hubspot/sources/new-custom-object-property-change/new-custom-object-property-change.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-new-custom-object-property-change", name: "New Custom Object Property Change", description: "Emit new event when a specified property is provided or updated on a custom object.", - version: "0.0.12", + version: "0.0.13", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-deal-in-stage/new-deal-in-stage.mjs b/components/hubspot/sources/new-deal-in-stage/new-deal-in-stage.mjs index a047e8ed4daa4..3fdbb80172419 100644 --- a/components/hubspot/sources/new-deal-in-stage/new-deal-in-stage.mjs +++ b/components/hubspot/sources/new-deal-in-stage/new-deal-in-stage.mjs @@ -11,7 +11,7 @@ export default { key: "hubspot-new-deal-in-stage", name: "New Deal In Stage", description: "Emit new event for each new deal in a stage.", - version: "0.0.33", + version: "0.0.34", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-deal-property-change/new-deal-property-change.mjs b/components/hubspot/sources/new-deal-property-change/new-deal-property-change.mjs index c9e9918eb4788..0f5ee2b0894e4 100644 --- a/components/hubspot/sources/new-deal-property-change/new-deal-property-change.mjs +++ b/components/hubspot/sources/new-deal-property-change/new-deal-property-change.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-deal-property-change", name: "New Deal Property Change", description: "Emit new event when a specified property is provided or updated on a deal. [See the documentation](https://developers.hubspot.com/docs/api/crm/deals)", - version: "0.0.21", + version: "0.0.22", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-email-event/new-email-event.mjs b/components/hubspot/sources/new-email-event/new-email-event.mjs index 1d0c1df69dcab..6d16adbafe85e 100644 --- a/components/hubspot/sources/new-email-event/new-email-event.mjs +++ b/components/hubspot/sources/new-email-event/new-email-event.mjs @@ -8,7 +8,7 @@ export default { key: "hubspot-new-email-event", name: "New Email Event", description: "Emit new event for each new Hubspot email event.", - version: "0.0.30", + version: "0.0.31", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-email-subscriptions-timeline/new-email-subscriptions-timeline.mjs b/components/hubspot/sources/new-email-subscriptions-timeline/new-email-subscriptions-timeline.mjs index 5d4f471371f9c..6fab02050f1b1 100644 --- a/components/hubspot/sources/new-email-subscriptions-timeline/new-email-subscriptions-timeline.mjs +++ b/components/hubspot/sources/new-email-subscriptions-timeline/new-email-subscriptions-timeline.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-new-email-subscriptions-timeline", name: "New Email Subscriptions Timeline", description: "Emit new event when a new email timeline subscription is added for the portal.", - version: "0.0.27", + version: "0.0.28", dedupe: "unique", type: "source", methods: { diff --git a/components/hubspot/sources/new-engagement/new-engagement.mjs b/components/hubspot/sources/new-engagement/new-engagement.mjs index 6b67b5a911410..15568c3a2b7a3 100644 --- a/components/hubspot/sources/new-engagement/new-engagement.mjs +++ b/components/hubspot/sources/new-engagement/new-engagement.mjs @@ -8,7 +8,7 @@ export default { key: "hubspot-new-engagement", name: "New Engagement", description: "Emit new event for each new engagement created. This action returns a maximum of 5000 records at a time, make sure you set a correct time range so you don't miss any events", - version: "0.0.32", + version: "0.0.33", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-event/new-event.mjs b/components/hubspot/sources/new-event/new-event.mjs index 0c4e482931d5d..3a89f6b53b08e 100644 --- a/components/hubspot/sources/new-event/new-event.mjs +++ b/components/hubspot/sources/new-event/new-event.mjs @@ -8,7 +8,7 @@ export default { key: "hubspot-new-event", name: "New Events", description: "Emit new event for each new Hubspot event. Note: Only available for Marketing Hub Enterprise, Sales Hub Enterprise, Service Hub Enterprise, or CMS Hub Enterprise accounts", - version: "0.0.31", + version: "0.0.32", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-form-submission/new-form-submission.mjs b/components/hubspot/sources/new-form-submission/new-form-submission.mjs index 53e1b53ce36e6..b3fe863b02ff1 100644 --- a/components/hubspot/sources/new-form-submission/new-form-submission.mjs +++ b/components/hubspot/sources/new-form-submission/new-form-submission.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-new-form-submission", name: "New Form Submission", description: "Emit new event for each new submission of a form.", - version: "0.0.32", + version: "0.0.33", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-note/new-note.mjs b/components/hubspot/sources/new-note/new-note.mjs index 606bf288e49b4..9ad0f2f457c47 100644 --- a/components/hubspot/sources/new-note/new-note.mjs +++ b/components/hubspot/sources/new-note/new-note.mjs @@ -8,7 +8,7 @@ export default { key: "hubspot-new-note", name: "New Note Created", description: "Emit new event for each new note created. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/engagements/notes#get-%2Fcrm%2Fv3%2Fobjects%2Fnotes)", - version: "1.0.8", + version: "1.0.9", type: "source", dedupe: "unique", methods: { diff --git a/components/hubspot/sources/new-or-updated-blog-article/new-or-updated-blog-article.mjs b/components/hubspot/sources/new-or-updated-blog-article/new-or-updated-blog-article.mjs index 42c1c012df43f..702d599935cbb 100644 --- a/components/hubspot/sources/new-or-updated-blog-article/new-or-updated-blog-article.mjs +++ b/components/hubspot/sources/new-or-updated-blog-article/new-or-updated-blog-article.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-or-updated-blog-article", name: "New or Updated Blog Post", description: "Emit new event for each new or updated blog post in Hubspot.", - version: "0.0.14", + version: "0.0.15", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-company/new-or-updated-company.mjs b/components/hubspot/sources/new-or-updated-company/new-or-updated-company.mjs index f6ecb5245d68f..7e7367aa11283 100644 --- a/components/hubspot/sources/new-or-updated-company/new-or-updated-company.mjs +++ b/components/hubspot/sources/new-or-updated-company/new-or-updated-company.mjs @@ -10,7 +10,7 @@ export default { key: "hubspot-new-or-updated-company", name: "New or Updated Company", description: "Emit new event for each new or updated company in Hubspot.", - version: "0.0.14", + version: "0.0.15", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-contact/new-or-updated-contact.mjs b/components/hubspot/sources/new-or-updated-contact/new-or-updated-contact.mjs index 8ed95cbb4f4bd..6af0be9e58421 100644 --- a/components/hubspot/sources/new-or-updated-contact/new-or-updated-contact.mjs +++ b/components/hubspot/sources/new-or-updated-contact/new-or-updated-contact.mjs @@ -10,7 +10,7 @@ export default { key: "hubspot-new-or-updated-contact", name: "New or Updated Contact", description: "Emit new event for each new or updated contact in Hubspot.", - version: "0.0.14", + version: "0.0.15", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-crm-object/new-or-updated-crm-object.mjs b/components/hubspot/sources/new-or-updated-crm-object/new-or-updated-crm-object.mjs index 6d76f04a44079..3d4a9c48982fd 100644 --- a/components/hubspot/sources/new-or-updated-crm-object/new-or-updated-crm-object.mjs +++ b/components/hubspot/sources/new-or-updated-crm-object/new-or-updated-crm-object.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-or-updated-crm-object", name: "New or Updated CRM Object", description: "Emit new event each time a CRM Object of the specified object type is updated.", - version: "0.0.27", + version: "0.0.28", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-custom-object/new-or-updated-custom-object.mjs b/components/hubspot/sources/new-or-updated-custom-object/new-or-updated-custom-object.mjs index 082ca80ff7204..2c5f690460d12 100644 --- a/components/hubspot/sources/new-or-updated-custom-object/new-or-updated-custom-object.mjs +++ b/components/hubspot/sources/new-or-updated-custom-object/new-or-updated-custom-object.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-or-updated-custom-object", name: "New or Updated Custom Object", description: "Emit new event each time a Custom Object of the specified schema is updated.", - version: "0.0.16", + version: "0.0.17", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-deal/new-or-updated-deal.mjs b/components/hubspot/sources/new-or-updated-deal/new-or-updated-deal.mjs index bb0f8224a70f9..c0a4848aabbae 100644 --- a/components/hubspot/sources/new-or-updated-deal/new-or-updated-deal.mjs +++ b/components/hubspot/sources/new-or-updated-deal/new-or-updated-deal.mjs @@ -10,7 +10,7 @@ export default { key: "hubspot-new-or-updated-deal", name: "New or Updated Deal", description: "Emit new event for each new or updated deal in Hubspot", - version: "0.0.14", + version: "0.0.15", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-line-item/new-or-updated-line-item.mjs b/components/hubspot/sources/new-or-updated-line-item/new-or-updated-line-item.mjs index a71760ee6b496..ff0391a095242 100644 --- a/components/hubspot/sources/new-or-updated-line-item/new-or-updated-line-item.mjs +++ b/components/hubspot/sources/new-or-updated-line-item/new-or-updated-line-item.mjs @@ -9,7 +9,7 @@ export default { key: "hubspot-new-or-updated-line-item", name: "New or Updated Line Item", description: "Emit new event for each new line item added or updated in Hubspot.", - version: "0.0.14", + version: "0.0.15", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-product/new-or-updated-product.mjs b/components/hubspot/sources/new-or-updated-product/new-or-updated-product.mjs index d8b28d4445dea..1fb6cdec7e791 100644 --- a/components/hubspot/sources/new-or-updated-product/new-or-updated-product.mjs +++ b/components/hubspot/sources/new-or-updated-product/new-or-updated-product.mjs @@ -9,7 +9,7 @@ export default { key: "hubspot-new-or-updated-product", name: "New or Updated Product", description: "Emit new event for each new or updated product in Hubspot.", - version: "0.0.14", + version: "0.0.15", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-social-media-message/new-social-media-message.mjs b/components/hubspot/sources/new-social-media-message/new-social-media-message.mjs index ced9962fab05f..ee46f6c5a3be5 100644 --- a/components/hubspot/sources/new-social-media-message/new-social-media-message.mjs +++ b/components/hubspot/sources/new-social-media-message/new-social-media-message.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-new-social-media-message", name: "New Social Media Message", description: "Emit new event when a message is posted from HubSpot to the specified social media channel. Note: Only available for Marketing Hub Enterprise accounts", - version: "0.0.27", + version: "0.0.28", type: "source", dedupe: "unique", props: { diff --git a/components/hubspot/sources/new-task/new-task.mjs b/components/hubspot/sources/new-task/new-task.mjs index e1000b63dc6be..5aba5bb8779a6 100644 --- a/components/hubspot/sources/new-task/new-task.mjs +++ b/components/hubspot/sources/new-task/new-task.mjs @@ -8,7 +8,7 @@ export default { key: "hubspot-new-task", name: "New Task Created", description: "Emit new event for each new task created. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/engagements/tasks#get-%2Fcrm%2Fv3%2Fobjects%2Ftasks)", - version: "1.0.8", + version: "1.0.9", type: "source", dedupe: "unique", methods: { diff --git a/components/hubspot/sources/new-ticket-property-change/new-ticket-property-change.mjs b/components/hubspot/sources/new-ticket-property-change/new-ticket-property-change.mjs index f8f450d390c35..e6c7ac9297d0a 100644 --- a/components/hubspot/sources/new-ticket-property-change/new-ticket-property-change.mjs +++ b/components/hubspot/sources/new-ticket-property-change/new-ticket-property-change.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-ticket-property-change", name: "New Ticket Property Change", description: "Emit new event when a specified property is provided or updated on a ticket. [See the documentation](https://developers.hubspot.com/docs/api/crm/tickets)", - version: "0.0.21", + version: "0.0.22", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-ticket/new-ticket.mjs b/components/hubspot/sources/new-ticket/new-ticket.mjs index 1e4db1465d9cd..bd32f8a60d190 100644 --- a/components/hubspot/sources/new-ticket/new-ticket.mjs +++ b/components/hubspot/sources/new-ticket/new-ticket.mjs @@ -9,7 +9,7 @@ export default { key: "hubspot-new-ticket", name: "New Ticket", description: "Emit new event for each new ticket created.", - version: "0.0.27", + version: "0.0.28", dedupe: "unique", type: "source", props: { From 9fb867ce9547a060e653c94f49cdc6e3b5c5f103 Mon Sep 17 00:00:00 2001 From: Luan Cazarine Date: Mon, 8 Sep 2025 14:04:02 -0300 Subject: [PATCH 06/11] Refactor HubSpot workflow actions to use v3 API endpoints - Updated workflow-related actions to utilize the v3 API instead of v4. - Renamed variables for clarity and consistency. - Removed deprecated props from create and update workflow actions. - Adjusted descriptions in action components to reflect the new API documentation. - Bumped versions for several source components to maintain compatibility. --- .../create-workflow/create-workflow.mjs | 18 +--- .../delete-workflow/delete-workflow.mjs | 2 +- .../retrieve-migrated-workflow-mappings.mjs | 16 +++- .../retrieve-workflow-details.mjs | 2 +- .../retrieve-workflows/retrieve-workflows.mjs | 19 +---- .../update-workflow/update-workflow.mjs | 82 ------------------- components/hubspot/common/constants.mjs | 1 + components/hubspot/hubspot.app.mjs | 54 +++++------- .../delete-blog-article.mjs | 2 +- .../new-company-property-change.mjs | 2 +- .../new-contact-property-change.mjs | 2 +- .../new-custom-object-property-change.mjs | 2 +- .../new-deal-in-stage/new-deal-in-stage.mjs | 2 +- .../new-deal-property-change.mjs | 2 +- .../new-email-event/new-email-event.mjs | 2 +- .../new-email-subscriptions-timeline.mjs | 2 +- .../sources/new-engagement/new-engagement.mjs | 2 +- .../hubspot/sources/new-event/new-event.mjs | 2 +- .../new-form-submission.mjs | 2 +- .../hubspot/sources/new-note/new-note.mjs | 2 +- .../new-or-updated-blog-article.mjs | 2 +- .../new-or-updated-company.mjs | 2 +- .../new-or-updated-contact.mjs | 2 +- .../new-or-updated-crm-object.mjs | 2 +- .../new-or-updated-custom-object.mjs | 2 +- .../new-or-updated-deal.mjs | 2 +- .../new-or-updated-line-item.mjs | 2 +- .../new-or-updated-product.mjs | 2 +- .../new-social-media-message.mjs | 2 +- .../hubspot/sources/new-task/new-task.mjs | 2 +- .../new-ticket-property-change.mjs | 2 +- .../hubspot/sources/new-ticket/new-ticket.mjs | 2 +- 32 files changed, 63 insertions(+), 179 deletions(-) delete mode 100644 components/hubspot/actions/update-workflow/update-workflow.mjs diff --git a/components/hubspot/actions/create-workflow/create-workflow.mjs b/components/hubspot/actions/create-workflow/create-workflow.mjs index f0c8e76b568b4..f22d6df100426 100644 --- a/components/hubspot/actions/create-workflow/create-workflow.mjs +++ b/components/hubspot/actions/create-workflow/create-workflow.mjs @@ -4,7 +4,7 @@ import hubspot from "../../hubspot.app.mjs"; export default { key: "hubspot-create-workflow", name: "Create a New Workflow", - description: "Create a new workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/automation-automation-v4-v4/workflows/post-automation-v4-flows)", + description: "Create a new workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/post-automation-v3-workflows)", version: "0.0.1", type: "action", props: { @@ -14,12 +14,6 @@ export default { label: "Workflow Name", description: "The name of the workflow to create", }, - isEnabled: { - propDefinition: [ - hubspot, - "isEnabled", - ], - }, type: { propDefinition: [ hubspot, @@ -32,23 +26,13 @@ export default { "actions", ], }, - enrollmentCriteria: { - propDefinition: [ - hubspot, - "enrollmentCriteria", - ], - }, }, async run({ $ }) { const response = await this.hubspot.createWorkflow({ data: { name: this.name, type: this.type, - isEnabled: this.isEnabled, - objectTypeId: "0-1", - flowType: "WORKFLOW", actions: parseObject(this.actions), - enrollmentCriteria: parseObject(this.enrollmentCriteria), }, $, }); diff --git a/components/hubspot/actions/delete-workflow/delete-workflow.mjs b/components/hubspot/actions/delete-workflow/delete-workflow.mjs index ef7868b25b0fe..b32d5b54e1feb 100644 --- a/components/hubspot/actions/delete-workflow/delete-workflow.mjs +++ b/components/hubspot/actions/delete-workflow/delete-workflow.mjs @@ -3,7 +3,7 @@ import hubspot from "../../hubspot.app.mjs"; export default { key: "hubspot-delete-workflow", name: "Delete a Workflow", - description: "Delete a workflow by ID. [See the documentation](https://developers.hubspot.com/docs/api-reference/automation-automation-v4-v4/workflows/delete-automation-v4-flows-flowId)", + description: "Delete a workflow by ID. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/delete-automation-v3-workflows-workflowId)", version: "0.0.1", type: "action", props: { diff --git a/components/hubspot/actions/retrieve-migrated-workflow-mappings/retrieve-migrated-workflow-mappings.mjs b/components/hubspot/actions/retrieve-migrated-workflow-mappings/retrieve-migrated-workflow-mappings.mjs index f5f855277bcd7..488f9b09978d5 100644 --- a/components/hubspot/actions/retrieve-migrated-workflow-mappings/retrieve-migrated-workflow-mappings.mjs +++ b/components/hubspot/actions/retrieve-migrated-workflow-mappings/retrieve-migrated-workflow-mappings.mjs @@ -10,12 +10,26 @@ export default { props: { hubspot, flowIds: { + propDefinition: [ + hubspot, + "workflow", + () => ({ + version: "V4", + }), + ], type: "string[]", label: "Flow IDs", description: "A list of flowIds from the V4 API.", optional: true, }, - workflowIds: { + workflow: { + propDefinition: [ + hubspot, + "workflow", + () => ({ + version: "V3", + }), + ], type: "string[]", label: "Workflow IDs", description: "A list of workflowIds from the V3 API.", diff --git a/components/hubspot/actions/retrieve-workflow-details/retrieve-workflow-details.mjs b/components/hubspot/actions/retrieve-workflow-details/retrieve-workflow-details.mjs index af7f672f57346..74871bbc1bef7 100644 --- a/components/hubspot/actions/retrieve-workflow-details/retrieve-workflow-details.mjs +++ b/components/hubspot/actions/retrieve-workflow-details/retrieve-workflow-details.mjs @@ -3,7 +3,7 @@ import hubspot from "../../hubspot.app.mjs"; export default { key: "hubspot-retrieve-workflow-details", name: "Retrieve Workflow Details", - description: "Retrieve detailed information about a specific workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/automation-automation-v4-v4/workflows/get-automation-v4-flows-flowId)", + description: "Retrieve detailed information about a specific workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/get-automation-v3-workflows-workflowId)", version: "0.0.1", type: "action", props: { diff --git a/components/hubspot/actions/retrieve-workflows/retrieve-workflows.mjs b/components/hubspot/actions/retrieve-workflows/retrieve-workflows.mjs index 4430fc86e3c2b..864d650f04ebf 100644 --- a/components/hubspot/actions/retrieve-workflows/retrieve-workflows.mjs +++ b/components/hubspot/actions/retrieve-workflows/retrieve-workflows.mjs @@ -3,32 +3,15 @@ import hubspot from "../../hubspot.app.mjs"; export default { key: "hubspot-retrieve-workflows", name: "Retrieve Workflows", - description: "Retrieve a list of all workflows. [See the documentation](https://developers.hubspot.com/docs/api-reference/automation-automation-v4-v4/workflows/get-automation-v4-flows)", + description: "Retrieve a list of all workflows. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/get-automation-v3-workflows)", version: "0.0.1", type: "action", props: { hubspot, - after: { - type: "string", - label: "After", - description: "The paging cursor token of the last successfully read resource will be returned as the `paging.next.after` JSON property of a paged response containing more results.", - optional: true, - }, - limit: { - type: "integer", - label: "Limit", - description: "The maximum number of results to display per page.", - default: 100, - optional: true, - }, }, async run({ $ }) { const response = await this.hubspot.listWorkflows({ $, - params: { - after: this.after, - limit: this.limit, - }, }); $.export("$summary", `Successfully retrieved ${response.results.length} workflows`); diff --git a/components/hubspot/actions/update-workflow/update-workflow.mjs b/components/hubspot/actions/update-workflow/update-workflow.mjs deleted file mode 100644 index 304df617c8e80..0000000000000 --- a/components/hubspot/actions/update-workflow/update-workflow.mjs +++ /dev/null @@ -1,82 +0,0 @@ -import { parseObject } from "../../common/utils.mjs"; -import hubspot from "../../hubspot.app.mjs"; - -export default { - key: "hubspot-update-workflow", - name: "Update a Workflow", - description: "Update an existing workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/automation-automation-v4-v4/workflows/put-automation-v4-flows-flowId)", - version: "0.0.1", - type: "action", - props: { - hubspot, - workflowId: { - propDefinition: [ - hubspot, - "workflow", - ], - description: "The ID of the workflow to update", - }, - name: { - type: "string", - label: "Workflow Name", - description: "The new name of the workflow", - optional: true, - }, - type: { - propDefinition: [ - hubspot, - "type", - ], - }, - isEnabled: { - propDefinition: [ - hubspot, - "isEnabled", - ], - }, - actions: { - propDefinition: [ - hubspot, - "actions", - ], - }, - enrollmentCriteria: { - propDefinition: [ - hubspot, - "enrollmentCriteria", - ], - }, - revisionId: { - type: "integer", - label: "Revision ID", - description: "The revision ID of the workflow", - optional: true, - }, - }, - async run({ $ }) { - const data = {}; - - if (this.name) data.name = this.name; - if (this.type) data.type = this.type; - if (Object.hasOwn(this, "isEnabled")) data.isEnabled = this.isEnabled; - if (this.actions) data.actions = parseObject(this.actions); - if (this.enrollmentCriteria) data.enrollmentCriteria = parseObject(this.enrollmentCriteria); - if (!this.revisionId) { - const workflow = await this.hubspot.getWorkflowDetails({ - workflowId: this.workflowId, - }); - data.revisionId = workflow.revisionId + 1; - } else { - data.revisionId = this.revisionId; - } - - const response = await this.hubspot.updateWorkflow({ - workflowId: this.workflowId, - data, - $, - }); - - $.export("$summary", `Successfully updated workflow ${this.workflowId}`); - return response; - }, -}; diff --git a/components/hubspot/common/constants.mjs b/components/hubspot/common/constants.mjs index b08b8469d9c83..bd9701078a1e8 100644 --- a/components/hubspot/common/constants.mjs +++ b/components/hubspot/common/constants.mjs @@ -20,6 +20,7 @@ const API_PATH = { CRMV4: "/crm/v4", CMS: "/cms/v3", AUTOMATION: "/automation/v2", + AUTOMATIONV3: "/automation/v3", AUTOMATIONV4: "/automation/v4", DEAL: "/deals/v1", BUSINESS_UNITS: "/business-units/v3", diff --git a/components/hubspot/hubspot.app.mjs b/components/hubspot/hubspot.app.mjs index 081798806cc3c..fc827ae9b0a9a 100644 --- a/components/hubspot/hubspot.app.mjs +++ b/components/hubspot/hubspot.app.mjs @@ -343,9 +343,10 @@ export default { label: "Workflow", description: "The ID of the workflow you wish to see metadata for.", async options() { - const { results } = await this.listWorkflows(); + const { workflows } = await this.listWorkflows(); + return { - options: results.map(({ + options: workflows.map(({ name: label, id: value, }) => ({ label, @@ -682,32 +683,25 @@ export default { description: "The type of workflow to create", options: [ { - label: "Contact-based Workflow", - value: "CONTACT_FLOW", + label: "Drip Delay", + value: "DRIP_DELAY", + }, + { + label: "Static Anchor", + value: "STATIC_ANCHOR", }, { - label: "All other workflow types (e.g., deal-based, goal-based, etc.)", - value: "PLATFORM_FLOW", + label: "Property Anchor", + value: "PROPERTY_ANCHOR", }, ], }, - isEnabled: { - type: "boolean", - label: "Is Enabled", - description: "Whether the workflow is enabled", - }, actions: { type: "string[]", label: "Actions", description: "A list of objects representing the workflow actions. [See the documentation](https://developers.hubspot.com/docs/api-reference/automation-automation-v4-v4/guide#action-types) for more information.", optional: true, }, - enrollmentCriteria: { - type: "object", - label: "Enrollment Criteria", - description: "The enrollment criteria of the workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/automation-automation-v4-v4/guide#enrollment-criteria) for more information.", - optional: true, - }, }, methods: { _getHeaders() { @@ -1240,8 +1234,8 @@ export default { }, listWorkflows(opts = {}) { return this.makeRequest({ - api: API_PATH.AUTOMATIONV4, - endpoint: "/flows", + api: API_PATH["AUTOMATIONV3"], + endpoint: "/workflows", ...opts, }); }, @@ -1266,26 +1260,16 @@ export default { workflowId, ...opts }) { return this.makeRequest({ - api: API_PATH.AUTOMATIONV4, - endpoint: `/flows/${workflowId}`, + api: API_PATH.AUTOMATIONV3, + endpoint: `/workflows/${workflowId}`, ...opts, }); }, createWorkflow(opts = {}) { return this.makeRequest({ method: "POST", - api: API_PATH.AUTOMATIONV4, - endpoint: "/flows", - ...opts, - }); - }, - updateWorkflow({ - workflowId, ...opts - }) { - return this.makeRequest({ - method: "PUT", - api: API_PATH.AUTOMATIONV4, - endpoint: `/flows/${workflowId}`, + api: API_PATH.AUTOMATIONV3, + endpoint: "/workflows", ...opts, }); }, @@ -1294,8 +1278,8 @@ export default { }) { return this.makeRequest({ method: "DELETE", - api: API_PATH.AUTOMATIONV4, - endpoint: `/flows/${workflowId}`, + api: API_PATH.AUTOMATIONV3, + endpoint: `/workflows/${workflowId}`, ...opts, }); }, diff --git a/components/hubspot/sources/delete-blog-article/delete-blog-article.mjs b/components/hubspot/sources/delete-blog-article/delete-blog-article.mjs index 6df5df5054b01..296202dcecc34 100644 --- a/components/hubspot/sources/delete-blog-article/delete-blog-article.mjs +++ b/components/hubspot/sources/delete-blog-article/delete-blog-article.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-delete-blog-article", name: "Deleted Blog Posts", description: "Emit new event for each deleted blog post.", - version: "0.0.28", + version: "0.0.29", dedupe: "unique", type: "source", methods: { diff --git a/components/hubspot/sources/new-company-property-change/new-company-property-change.mjs b/components/hubspot/sources/new-company-property-change/new-company-property-change.mjs index fdd06978c51e2..6da7cff635a67 100644 --- a/components/hubspot/sources/new-company-property-change/new-company-property-change.mjs +++ b/components/hubspot/sources/new-company-property-change/new-company-property-change.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-company-property-change", name: "New Company Property Change", description: "Emit new event when a specified property is provided or updated on a company. [See the documentation](https://developers.hubspot.com/docs/api/crm/companies)", - version: "0.0.21", + version: "0.0.22", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-contact-property-change/new-contact-property-change.mjs b/components/hubspot/sources/new-contact-property-change/new-contact-property-change.mjs index 35dfac6b2d71b..2707105399906 100644 --- a/components/hubspot/sources/new-contact-property-change/new-contact-property-change.mjs +++ b/components/hubspot/sources/new-contact-property-change/new-contact-property-change.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-contact-property-change", name: "New Contact Property Change", description: "Emit new event when a specified property is provided or updated on a contact. [See the documentation](https://developers.hubspot.com/docs/api/crm/contacts)", - version: "0.0.23", + version: "0.0.24", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-custom-object-property-change/new-custom-object-property-change.mjs b/components/hubspot/sources/new-custom-object-property-change/new-custom-object-property-change.mjs index 61d7c5cf8ce6c..03a4192a71df5 100644 --- a/components/hubspot/sources/new-custom-object-property-change/new-custom-object-property-change.mjs +++ b/components/hubspot/sources/new-custom-object-property-change/new-custom-object-property-change.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-new-custom-object-property-change", name: "New Custom Object Property Change", description: "Emit new event when a specified property is provided or updated on a custom object.", - version: "0.0.13", + version: "0.0.14", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-deal-in-stage/new-deal-in-stage.mjs b/components/hubspot/sources/new-deal-in-stage/new-deal-in-stage.mjs index 3fdbb80172419..61917ba73725f 100644 --- a/components/hubspot/sources/new-deal-in-stage/new-deal-in-stage.mjs +++ b/components/hubspot/sources/new-deal-in-stage/new-deal-in-stage.mjs @@ -11,7 +11,7 @@ export default { key: "hubspot-new-deal-in-stage", name: "New Deal In Stage", description: "Emit new event for each new deal in a stage.", - version: "0.0.34", + version: "0.0.35", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-deal-property-change/new-deal-property-change.mjs b/components/hubspot/sources/new-deal-property-change/new-deal-property-change.mjs index 0f5ee2b0894e4..706f55d93fb18 100644 --- a/components/hubspot/sources/new-deal-property-change/new-deal-property-change.mjs +++ b/components/hubspot/sources/new-deal-property-change/new-deal-property-change.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-deal-property-change", name: "New Deal Property Change", description: "Emit new event when a specified property is provided or updated on a deal. [See the documentation](https://developers.hubspot.com/docs/api/crm/deals)", - version: "0.0.22", + version: "0.0.23", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-email-event/new-email-event.mjs b/components/hubspot/sources/new-email-event/new-email-event.mjs index 6d16adbafe85e..c4137f7da8889 100644 --- a/components/hubspot/sources/new-email-event/new-email-event.mjs +++ b/components/hubspot/sources/new-email-event/new-email-event.mjs @@ -8,7 +8,7 @@ export default { key: "hubspot-new-email-event", name: "New Email Event", description: "Emit new event for each new Hubspot email event.", - version: "0.0.31", + version: "0.0.32", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-email-subscriptions-timeline/new-email-subscriptions-timeline.mjs b/components/hubspot/sources/new-email-subscriptions-timeline/new-email-subscriptions-timeline.mjs index 6fab02050f1b1..0345b36b664ab 100644 --- a/components/hubspot/sources/new-email-subscriptions-timeline/new-email-subscriptions-timeline.mjs +++ b/components/hubspot/sources/new-email-subscriptions-timeline/new-email-subscriptions-timeline.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-new-email-subscriptions-timeline", name: "New Email Subscriptions Timeline", description: "Emit new event when a new email timeline subscription is added for the portal.", - version: "0.0.28", + version: "0.0.29", dedupe: "unique", type: "source", methods: { diff --git a/components/hubspot/sources/new-engagement/new-engagement.mjs b/components/hubspot/sources/new-engagement/new-engagement.mjs index 15568c3a2b7a3..decb0d421f16c 100644 --- a/components/hubspot/sources/new-engagement/new-engagement.mjs +++ b/components/hubspot/sources/new-engagement/new-engagement.mjs @@ -8,7 +8,7 @@ export default { key: "hubspot-new-engagement", name: "New Engagement", description: "Emit new event for each new engagement created. This action returns a maximum of 5000 records at a time, make sure you set a correct time range so you don't miss any events", - version: "0.0.33", + version: "0.0.34", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-event/new-event.mjs b/components/hubspot/sources/new-event/new-event.mjs index 3a89f6b53b08e..75eeaae45faa2 100644 --- a/components/hubspot/sources/new-event/new-event.mjs +++ b/components/hubspot/sources/new-event/new-event.mjs @@ -8,7 +8,7 @@ export default { key: "hubspot-new-event", name: "New Events", description: "Emit new event for each new Hubspot event. Note: Only available for Marketing Hub Enterprise, Sales Hub Enterprise, Service Hub Enterprise, or CMS Hub Enterprise accounts", - version: "0.0.32", + version: "0.0.33", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-form-submission/new-form-submission.mjs b/components/hubspot/sources/new-form-submission/new-form-submission.mjs index b3fe863b02ff1..7be00798effd4 100644 --- a/components/hubspot/sources/new-form-submission/new-form-submission.mjs +++ b/components/hubspot/sources/new-form-submission/new-form-submission.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-new-form-submission", name: "New Form Submission", description: "Emit new event for each new submission of a form.", - version: "0.0.33", + version: "0.0.34", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-note/new-note.mjs b/components/hubspot/sources/new-note/new-note.mjs index 9ad0f2f457c47..70beb99f2f757 100644 --- a/components/hubspot/sources/new-note/new-note.mjs +++ b/components/hubspot/sources/new-note/new-note.mjs @@ -8,7 +8,7 @@ export default { key: "hubspot-new-note", name: "New Note Created", description: "Emit new event for each new note created. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/engagements/notes#get-%2Fcrm%2Fv3%2Fobjects%2Fnotes)", - version: "1.0.9", + version: "1.0.10", type: "source", dedupe: "unique", methods: { diff --git a/components/hubspot/sources/new-or-updated-blog-article/new-or-updated-blog-article.mjs b/components/hubspot/sources/new-or-updated-blog-article/new-or-updated-blog-article.mjs index 702d599935cbb..cda945566ff76 100644 --- a/components/hubspot/sources/new-or-updated-blog-article/new-or-updated-blog-article.mjs +++ b/components/hubspot/sources/new-or-updated-blog-article/new-or-updated-blog-article.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-or-updated-blog-article", name: "New or Updated Blog Post", description: "Emit new event for each new or updated blog post in Hubspot.", - version: "0.0.15", + version: "0.0.16", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-company/new-or-updated-company.mjs b/components/hubspot/sources/new-or-updated-company/new-or-updated-company.mjs index 7e7367aa11283..3c934c44fb3f2 100644 --- a/components/hubspot/sources/new-or-updated-company/new-or-updated-company.mjs +++ b/components/hubspot/sources/new-or-updated-company/new-or-updated-company.mjs @@ -10,7 +10,7 @@ export default { key: "hubspot-new-or-updated-company", name: "New or Updated Company", description: "Emit new event for each new or updated company in Hubspot.", - version: "0.0.15", + version: "0.0.16", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-contact/new-or-updated-contact.mjs b/components/hubspot/sources/new-or-updated-contact/new-or-updated-contact.mjs index 56ea8e17311a4..e2a89562cd52c 100644 --- a/components/hubspot/sources/new-or-updated-contact/new-or-updated-contact.mjs +++ b/components/hubspot/sources/new-or-updated-contact/new-or-updated-contact.mjs @@ -10,7 +10,7 @@ export default { key: "hubspot-new-or-updated-contact", name: "New or Updated Contact", description: "Emit new event for each new or updated contact in Hubspot.", - version: "0.0.16", + version: "0.0.17", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-crm-object/new-or-updated-crm-object.mjs b/components/hubspot/sources/new-or-updated-crm-object/new-or-updated-crm-object.mjs index 3d4a9c48982fd..eaff4e654e852 100644 --- a/components/hubspot/sources/new-or-updated-crm-object/new-or-updated-crm-object.mjs +++ b/components/hubspot/sources/new-or-updated-crm-object/new-or-updated-crm-object.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-or-updated-crm-object", name: "New or Updated CRM Object", description: "Emit new event each time a CRM Object of the specified object type is updated.", - version: "0.0.28", + version: "0.0.29", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-custom-object/new-or-updated-custom-object.mjs b/components/hubspot/sources/new-or-updated-custom-object/new-or-updated-custom-object.mjs index 2c5f690460d12..549457486dd41 100644 --- a/components/hubspot/sources/new-or-updated-custom-object/new-or-updated-custom-object.mjs +++ b/components/hubspot/sources/new-or-updated-custom-object/new-or-updated-custom-object.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-or-updated-custom-object", name: "New or Updated Custom Object", description: "Emit new event each time a Custom Object of the specified schema is updated.", - version: "0.0.17", + version: "0.0.18", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-deal/new-or-updated-deal.mjs b/components/hubspot/sources/new-or-updated-deal/new-or-updated-deal.mjs index c0a4848aabbae..5e6f4a54fdafa 100644 --- a/components/hubspot/sources/new-or-updated-deal/new-or-updated-deal.mjs +++ b/components/hubspot/sources/new-or-updated-deal/new-or-updated-deal.mjs @@ -10,7 +10,7 @@ export default { key: "hubspot-new-or-updated-deal", name: "New or Updated Deal", description: "Emit new event for each new or updated deal in Hubspot", - version: "0.0.15", + version: "0.0.16", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-line-item/new-or-updated-line-item.mjs b/components/hubspot/sources/new-or-updated-line-item/new-or-updated-line-item.mjs index ff0391a095242..171631da6b8fd 100644 --- a/components/hubspot/sources/new-or-updated-line-item/new-or-updated-line-item.mjs +++ b/components/hubspot/sources/new-or-updated-line-item/new-or-updated-line-item.mjs @@ -9,7 +9,7 @@ export default { key: "hubspot-new-or-updated-line-item", name: "New or Updated Line Item", description: "Emit new event for each new line item added or updated in Hubspot.", - version: "0.0.15", + version: "0.0.16", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-product/new-or-updated-product.mjs b/components/hubspot/sources/new-or-updated-product/new-or-updated-product.mjs index 1fb6cdec7e791..35392430d454e 100644 --- a/components/hubspot/sources/new-or-updated-product/new-or-updated-product.mjs +++ b/components/hubspot/sources/new-or-updated-product/new-or-updated-product.mjs @@ -9,7 +9,7 @@ export default { key: "hubspot-new-or-updated-product", name: "New or Updated Product", description: "Emit new event for each new or updated product in Hubspot.", - version: "0.0.15", + version: "0.0.16", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-social-media-message/new-social-media-message.mjs b/components/hubspot/sources/new-social-media-message/new-social-media-message.mjs index ee46f6c5a3be5..ea63816cad15c 100644 --- a/components/hubspot/sources/new-social-media-message/new-social-media-message.mjs +++ b/components/hubspot/sources/new-social-media-message/new-social-media-message.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-new-social-media-message", name: "New Social Media Message", description: "Emit new event when a message is posted from HubSpot to the specified social media channel. Note: Only available for Marketing Hub Enterprise accounts", - version: "0.0.28", + version: "0.0.29", type: "source", dedupe: "unique", props: { diff --git a/components/hubspot/sources/new-task/new-task.mjs b/components/hubspot/sources/new-task/new-task.mjs index 5aba5bb8779a6..68c6162544586 100644 --- a/components/hubspot/sources/new-task/new-task.mjs +++ b/components/hubspot/sources/new-task/new-task.mjs @@ -8,7 +8,7 @@ export default { key: "hubspot-new-task", name: "New Task Created", description: "Emit new event for each new task created. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/engagements/tasks#get-%2Fcrm%2Fv3%2Fobjects%2Ftasks)", - version: "1.0.9", + version: "1.0.10", type: "source", dedupe: "unique", methods: { diff --git a/components/hubspot/sources/new-ticket-property-change/new-ticket-property-change.mjs b/components/hubspot/sources/new-ticket-property-change/new-ticket-property-change.mjs index e6c7ac9297d0a..ffc91db0322f8 100644 --- a/components/hubspot/sources/new-ticket-property-change/new-ticket-property-change.mjs +++ b/components/hubspot/sources/new-ticket-property-change/new-ticket-property-change.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-ticket-property-change", name: "New Ticket Property Change", description: "Emit new event when a specified property is provided or updated on a ticket. [See the documentation](https://developers.hubspot.com/docs/api/crm/tickets)", - version: "0.0.22", + version: "0.0.23", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-ticket/new-ticket.mjs b/components/hubspot/sources/new-ticket/new-ticket.mjs index bd32f8a60d190..8d337f5c81d0d 100644 --- a/components/hubspot/sources/new-ticket/new-ticket.mjs +++ b/components/hubspot/sources/new-ticket/new-ticket.mjs @@ -9,7 +9,7 @@ export default { key: "hubspot-new-ticket", name: "New Ticket", description: "Emit new event for each new ticket created.", - version: "0.0.28", + version: "0.0.29", dedupe: "unique", type: "source", props: { From aba42643b938b9848edd8e2ff41e00c12a429ee4 Mon Sep 17 00:00:00 2001 From: Luan Cazarine Date: Wed, 10 Sep 2025 09:48:43 -0300 Subject: [PATCH 07/11] Update versions for multiple HubSpot action and source components to maintain compatibility with the latest API changes. --- .../hubspot/actions/add-contact-to-list/add-contact-to-list.mjs | 2 +- .../actions/batch-create-companies/batch-create-companies.mjs | 2 +- .../batch-create-or-update-contact.mjs | 2 +- .../actions/batch-update-companies/batch-update-companies.mjs | 2 +- components/hubspot/actions/clone-email/clone-email.mjs | 2 +- components/hubspot/actions/clone-site-page/clone-site-page.mjs | 2 +- .../hubspot/actions/create-associations/create-associations.mjs | 2 +- .../actions/create-communication/create-communication.mjs | 2 +- components/hubspot/actions/create-company/create-company.mjs | 2 +- .../actions/create-contact-workflow/create-contact-workflow.mjs | 2 +- .../actions/create-custom-object/create-custom-object.mjs | 2 +- components/hubspot/actions/create-deal/create-deal.mjs | 2 +- components/hubspot/actions/create-email/create-email.mjs | 2 +- .../hubspot/actions/create-engagement/create-engagement.mjs | 2 +- components/hubspot/actions/create-form/create-form.mjs | 2 +- .../hubspot/actions/create-landing-page/create-landing-page.mjs | 2 +- components/hubspot/actions/create-lead/create-lead.mjs | 2 +- components/hubspot/actions/create-meeting/create-meeting.mjs | 2 +- components/hubspot/actions/create-note/create-note.mjs | 2 +- .../create-or-update-contact/create-or-update-contact.mjs | 2 +- components/hubspot/actions/create-page/create-page.mjs | 2 +- components/hubspot/actions/create-task/create-task.mjs | 2 +- components/hubspot/actions/create-ticket/create-ticket.mjs | 2 +- .../enroll-contact-into-workflow.mjs | 2 +- .../actions/get-associated-emails/get-associated-emails.mjs | 2 +- .../actions/get-associated-meetings/get-associated-meetings.mjs | 2 +- components/hubspot/actions/get-company/get-company.mjs | 2 +- components/hubspot/actions/get-contact/get-contact.mjs | 2 +- components/hubspot/actions/get-deal/get-deal.mjs | 2 +- .../hubspot/actions/get-file-public-url/get-file-public-url.mjs | 2 +- components/hubspot/actions/get-meeting/get-meeting.mjs | 2 +- .../get-subscription-preferences.mjs | 2 +- components/hubspot/actions/list-blog-posts/list-blog-posts.mjs | 2 +- components/hubspot/actions/list-campaigns/list-campaigns.mjs | 2 +- components/hubspot/actions/list-forms/list-forms.mjs | 2 +- .../actions/list-marketing-emails/list-marketing-emails.mjs | 2 +- .../actions/list-marketing-events/list-marketing-events.mjs | 2 +- components/hubspot/actions/list-pages/list-pages.mjs | 2 +- components/hubspot/actions/list-templates/list-templates.mjs | 2 +- components/hubspot/actions/search-crm/search-crm.mjs | 2 +- components/hubspot/actions/update-company/update-company.mjs | 2 +- components/hubspot/actions/update-contact/update-contact.mjs | 2 +- .../actions/update-custom-object/update-custom-object.mjs | 2 +- components/hubspot/actions/update-deal/update-deal.mjs | 2 +- .../update-fields-on-the-form/update-fields-on-the-form.mjs | 2 +- .../hubspot/actions/update-landing-page/update-landing-page.mjs | 2 +- components/hubspot/actions/update-lead/update-lead.mjs | 2 +- components/hubspot/actions/update-page/update-page.mjs | 2 +- .../hubspot/sources/delete-blog-article/delete-blog-article.mjs | 2 +- .../new-contact-added-to-list/new-contact-added-to-list.mjs | 2 +- .../new-custom-object-property-change.mjs | 2 +- .../hubspot/sources/new-deal-in-stage/new-deal-in-stage.mjs | 2 +- components/hubspot/sources/new-email-event/new-email-event.mjs | 2 +- .../hubspot/sources/new-form-submission/new-form-submission.mjs | 2 +- components/hubspot/sources/new-note/new-note.mjs | 2 +- .../new-or-updated-blog-article/new-or-updated-blog-article.mjs | 2 +- .../sources/new-or-updated-company/new-or-updated-company.mjs | 2 +- .../sources/new-or-updated-contact/new-or-updated-contact.mjs | 2 +- .../hubspot/sources/new-or-updated-deal/new-or-updated-deal.mjs | 2 +- .../sources/new-or-updated-product/new-or-updated-product.mjs | 2 +- .../new-social-media-message/new-social-media-message.mjs | 2 +- components/hubspot/sources/new-task/new-task.mjs | 2 +- .../new-ticket-property-change/new-ticket-property-change.mjs | 2 +- components/hubspot/sources/new-ticket/new-ticket.mjs | 2 +- 64 files changed, 64 insertions(+), 64 deletions(-) diff --git a/components/hubspot/actions/add-contact-to-list/add-contact-to-list.mjs b/components/hubspot/actions/add-contact-to-list/add-contact-to-list.mjs index dbe619d2e6a79..67ab271fbac32 100644 --- a/components/hubspot/actions/add-contact-to-list/add-contact-to-list.mjs +++ b/components/hubspot/actions/add-contact-to-list/add-contact-to-list.mjs @@ -5,7 +5,7 @@ export default { name: "Add Contact to List", description: "Adds a contact to a specific static list. [See the documentation](https://legacydocs.hubspot.com/docs/methods/lists/add_contact_to_list)", - version: "0.0.23", + version: "0.0.24", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/batch-create-companies/batch-create-companies.mjs b/components/hubspot/actions/batch-create-companies/batch-create-companies.mjs index a49540822501a..88f97a290a7a6 100644 --- a/components/hubspot/actions/batch-create-companies/batch-create-companies.mjs +++ b/components/hubspot/actions/batch-create-companies/batch-create-companies.mjs @@ -8,7 +8,7 @@ export default { name: "Batch Create Companies", description: "Create a batch of companies in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/objects/companies#post-%2Fcrm%2Fv3%2Fobjects%2Fcompanies%2Fbatch%2Fcreate)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/batch-create-or-update-contact/batch-create-or-update-contact.mjs b/components/hubspot/actions/batch-create-or-update-contact/batch-create-or-update-contact.mjs index 2548bf1781126..1ea8195af6ba7 100644 --- a/components/hubspot/actions/batch-create-or-update-contact/batch-create-or-update-contact.mjs +++ b/components/hubspot/actions/batch-create-or-update-contact/batch-create-or-update-contact.mjs @@ -5,7 +5,7 @@ export default { name: "Batch Create or Update Contact", description: "Create or update a batch of contacts by its ID or email. [See the documentation](https://developers.hubspot.com/docs/api/crm/contacts)", - version: "0.0.20", + version: "0.0.21", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/batch-update-companies/batch-update-companies.mjs b/components/hubspot/actions/batch-update-companies/batch-update-companies.mjs index 4fa4c37ac95fa..e1c84dfe28984 100644 --- a/components/hubspot/actions/batch-update-companies/batch-update-companies.mjs +++ b/components/hubspot/actions/batch-update-companies/batch-update-companies.mjs @@ -8,7 +8,7 @@ export default { name: "Batch Update Companies", description: "Update a batch of companies in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/objects/companies#post-%2Fcrm%2Fv3%2Fobjects%2Fcompanies%2Fbatch%2Fupdate)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/clone-email/clone-email.mjs b/components/hubspot/actions/clone-email/clone-email.mjs index b5a79c5c33446..f4b1f21569872 100644 --- a/components/hubspot/actions/clone-email/clone-email.mjs +++ b/components/hubspot/actions/clone-email/clone-email.mjs @@ -6,7 +6,7 @@ export default { name: "Clone Marketing Email", description: "Clone a marketing email in HubSpot. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/emails/marketing-emails#post-%2Fmarketing%2Fv3%2Femails%2Fclone)", - version: "0.0.4", + version: "0.0.5", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/clone-site-page/clone-site-page.mjs b/components/hubspot/actions/clone-site-page/clone-site-page.mjs index 6a6bd4c562d46..44c7bb6b4e5a7 100644 --- a/components/hubspot/actions/clone-site-page/clone-site-page.mjs +++ b/components/hubspot/actions/clone-site-page/clone-site-page.mjs @@ -5,7 +5,7 @@ export default { name: "Clone Site Page", description: "Clone a site page in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/pages#post-%2Fcms%2Fv3%2Fpages%2Fsite-pages%2Fclone)", - version: "0.0.4", + version: "0.0.5", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/create-associations/create-associations.mjs b/components/hubspot/actions/create-associations/create-associations.mjs index 630985abed061..d77240f50284b 100644 --- a/components/hubspot/actions/create-associations/create-associations.mjs +++ b/components/hubspot/actions/create-associations/create-associations.mjs @@ -6,7 +6,7 @@ export default { name: "Create Associations", description: "Create associations between objects. [See the documentation](https://developers.hubspot.com/docs/api/crm/associations#endpoint?spec=POST-/crm/v3/associations/{fromObjectType}/{toObjectType}/batch/create)", - version: "1.0.9", + version: "1.0.10", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/create-communication/create-communication.mjs b/components/hubspot/actions/create-communication/create-communication.mjs index 9347933c3853e..29e945e3f55ba 100644 --- a/components/hubspot/actions/create-communication/create-communication.mjs +++ b/components/hubspot/actions/create-communication/create-communication.mjs @@ -9,7 +9,7 @@ export default { name: "Create Communication", description: "Create a WhatsApp, LinkedIn, or SMS message. [See the documentation](https://developers.hubspot.com/beta-docs/reference/api/crm/engagements/communications/v3#post-%2Fcrm%2Fv3%2Fobjects%2Fcommunications)", - version: "0.0.16", + version: "0.0.17", type: "action", props: { ...appProp.props, diff --git a/components/hubspot/actions/create-company/create-company.mjs b/components/hubspot/actions/create-company/create-company.mjs index 2a555e202c7ea..337310d0a7836 100644 --- a/components/hubspot/actions/create-company/create-company.mjs +++ b/components/hubspot/actions/create-company/create-company.mjs @@ -7,7 +7,7 @@ export default { name: "Create Company", description: "Create a company in Hubspot. [See the documentation](https://developers.hubspot.com/docs/api/crm/companies#endpoint?spec=POST-/crm/v3/objects/companies)", - version: "0.0.27", + version: "0.0.28", type: "action", methods: { ...common.methods, diff --git a/components/hubspot/actions/create-contact-workflow/create-contact-workflow.mjs b/components/hubspot/actions/create-contact-workflow/create-contact-workflow.mjs index 3da4b1bb29f04..7798cfebe7dab 100644 --- a/components/hubspot/actions/create-contact-workflow/create-contact-workflow.mjs +++ b/components/hubspot/actions/create-contact-workflow/create-contact-workflow.mjs @@ -6,7 +6,7 @@ export default { name: "Create Contact Workflow", description: "Create a contact workflow in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/automation/create-manage-workflows#post-%2Fautomation%2Fv4%2Fflows)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/create-custom-object/create-custom-object.mjs b/components/hubspot/actions/create-custom-object/create-custom-object.mjs index 8d28bd245a304..4d39639a5b860 100644 --- a/components/hubspot/actions/create-custom-object/create-custom-object.mjs +++ b/components/hubspot/actions/create-custom-object/create-custom-object.mjs @@ -7,7 +7,7 @@ export default { name: "Create Custom Object", description: "Create a new custom object in Hubspot. [See the documentation](https://developers.hubspot.com/beta-docs/guides/api/crm/objects/custom-objects#create-a-custom-object)", - version: "1.0.9", + version: "1.0.10", type: "action", props: { ...appProp.props, diff --git a/components/hubspot/actions/create-deal/create-deal.mjs b/components/hubspot/actions/create-deal/create-deal.mjs index c62ccb391d5a4..f0a92fe3f7f38 100644 --- a/components/hubspot/actions/create-deal/create-deal.mjs +++ b/components/hubspot/actions/create-deal/create-deal.mjs @@ -7,7 +7,7 @@ export default { name: "Create Deal", description: "Create a deal in Hubspot. [See the documentation](https://developers.hubspot.com/docs/api/crm/deals#endpoint?spec=POST-/crm/v3/objects/deals)", - version: "0.0.27", + version: "0.0.28", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/create-email/create-email.mjs b/components/hubspot/actions/create-email/create-email.mjs index 5e34df4abef15..8d29994e56af4 100644 --- a/components/hubspot/actions/create-email/create-email.mjs +++ b/components/hubspot/actions/create-email/create-email.mjs @@ -10,7 +10,7 @@ export default { name: "Create Marketing Email", description: "Create a marketing email in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/emails/marketing-emails#post-%2Fmarketing%2Fv3%2Femails%2F)", - version: "0.0.4", + version: "0.0.5", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/create-engagement/create-engagement.mjs b/components/hubspot/actions/create-engagement/create-engagement.mjs index a18502863dc43..449e1d2a0a04f 100644 --- a/components/hubspot/actions/create-engagement/create-engagement.mjs +++ b/components/hubspot/actions/create-engagement/create-engagement.mjs @@ -11,7 +11,7 @@ export default { name: "Create Engagement", description: "Create a new engagement for a contact. [See the documentation](https://developers.hubspot.com/docs/api/crm/engagements)", - version: "0.0.26", + version: "0.0.27", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/create-form/create-form.mjs b/components/hubspot/actions/create-form/create-form.mjs index 01d81499c0b6f..569368b82e0d9 100644 --- a/components/hubspot/actions/create-form/create-form.mjs +++ b/components/hubspot/actions/create-form/create-form.mjs @@ -10,7 +10,7 @@ export default { name: "Create Form", description: "Create a form in HubSpot. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/forms#post-%2Fmarketing%2Fv3%2Fforms%2F)", - version: "0.0.4", + version: "0.0.5", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/create-landing-page/create-landing-page.mjs b/components/hubspot/actions/create-landing-page/create-landing-page.mjs index 71013eafe223a..e83b642ec7804 100644 --- a/components/hubspot/actions/create-landing-page/create-landing-page.mjs +++ b/components/hubspot/actions/create-landing-page/create-landing-page.mjs @@ -7,7 +7,7 @@ export default { name: "Create Landing Page", description: "Create a landing page in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/pages#post-%2Fcms%2Fv3%2Fpages%2Flanding-pages)", - version: "0.0.4", + version: "0.0.5", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/create-lead/create-lead.mjs b/components/hubspot/actions/create-lead/create-lead.mjs index 03ff7e73983e0..cedf06d47fbac 100644 --- a/components/hubspot/actions/create-lead/create-lead.mjs +++ b/components/hubspot/actions/create-lead/create-lead.mjs @@ -10,7 +10,7 @@ export default { name: "Create Lead", description: "Create a lead in Hubspot. [See the documentation](https://developers.hubspot.com/beta-docs/guides/api/crm/objects/leads#create-leads)", - version: "0.0.15", + version: "0.0.16", type: "action", props: { ...appProp.props, diff --git a/components/hubspot/actions/create-meeting/create-meeting.mjs b/components/hubspot/actions/create-meeting/create-meeting.mjs index 2c4bbfd18a111..35b7c1313aee1 100644 --- a/components/hubspot/actions/create-meeting/create-meeting.mjs +++ b/components/hubspot/actions/create-meeting/create-meeting.mjs @@ -11,7 +11,7 @@ export default { name: "Create Meeting", description: "Creates a new meeting with optional associations to other objects. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/engagements/meetings#post-%2Fcrm%2Fv3%2Fobjects%2Fmeetings)", - version: "0.0.8", + version: "0.0.9", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/create-note/create-note.mjs b/components/hubspot/actions/create-note/create-note.mjs index 1740ee13568c7..e11f01bb7a568 100644 --- a/components/hubspot/actions/create-note/create-note.mjs +++ b/components/hubspot/actions/create-note/create-note.mjs @@ -8,7 +8,7 @@ export default { name: "Create Note", description: "Create a new note. [See the documentation](https://developers.hubspot.com/docs/api/crm/engagements)", - version: "0.0.7", + version: "0.0.8", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/create-or-update-contact/create-or-update-contact.mjs b/components/hubspot/actions/create-or-update-contact/create-or-update-contact.mjs index 8ce619b9fca36..91ae9c32d4561 100644 --- a/components/hubspot/actions/create-or-update-contact/create-or-update-contact.mjs +++ b/components/hubspot/actions/create-or-update-contact/create-or-update-contact.mjs @@ -7,7 +7,7 @@ export default { name: "Create or Update Contact", description: "Create or update a contact in Hubspot. [See the documentation](https://developers.hubspot.com/docs/api/crm/contacts#endpoint?spec=POST-/crm/v3/objects/contacts)", - version: "0.0.25", + version: "0.0.26", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/create-page/create-page.mjs b/components/hubspot/actions/create-page/create-page.mjs index 525a215cf4052..cd3ef2c43e819 100644 --- a/components/hubspot/actions/create-page/create-page.mjs +++ b/components/hubspot/actions/create-page/create-page.mjs @@ -7,7 +7,7 @@ export default { name: "Create Page", description: "Create a page in HubSpot. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/pages#post-%2Fcms%2Fv3%2Fpages%2Fsite-pages)", - version: "0.0.4", + version: "0.0.5", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/create-task/create-task.mjs b/components/hubspot/actions/create-task/create-task.mjs index 8cb724d934cde..6a6e2efd517a9 100644 --- a/components/hubspot/actions/create-task/create-task.mjs +++ b/components/hubspot/actions/create-task/create-task.mjs @@ -8,7 +8,7 @@ export default { name: "Create Task", description: "Create a new task. [See the documentation](https://developers.hubspot.com/docs/api/crm/engagements)", - version: "0.0.8", + version: "0.0.9", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/create-ticket/create-ticket.mjs b/components/hubspot/actions/create-ticket/create-ticket.mjs index 51becf7d6b393..3ff83727a0888 100644 --- a/components/hubspot/actions/create-ticket/create-ticket.mjs +++ b/components/hubspot/actions/create-ticket/create-ticket.mjs @@ -7,7 +7,7 @@ export default { name: "Create Ticket", description: "Create a ticket in Hubspot. [See the documentation](https://developers.hubspot.com/docs/api/crm/tickets)", - version: "0.0.18", + version: "0.0.19", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/enroll-contact-into-workflow/enroll-contact-into-workflow.mjs b/components/hubspot/actions/enroll-contact-into-workflow/enroll-contact-into-workflow.mjs index fae5fbb1d8f5e..61e4221e01389 100644 --- a/components/hubspot/actions/enroll-contact-into-workflow/enroll-contact-into-workflow.mjs +++ b/components/hubspot/actions/enroll-contact-into-workflow/enroll-contact-into-workflow.mjs @@ -5,7 +5,7 @@ export default { name: "Enroll Contact Into Workflow", description: "Add a contact to a workflow. Note: The Workflows API currently only supports contact-based workflows and is only available for Marketing Hub Enterprise accounts. [See the documentation](https://legacydocs.hubspot.com/docs/methods/workflows/add_contact)", - version: "0.0.23", + version: "0.0.24", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/get-associated-emails/get-associated-emails.mjs b/components/hubspot/actions/get-associated-emails/get-associated-emails.mjs index 9834686b87a7f..fe514323eedd1 100644 --- a/components/hubspot/actions/get-associated-emails/get-associated-emails.mjs +++ b/components/hubspot/actions/get-associated-emails/get-associated-emails.mjs @@ -6,7 +6,7 @@ export default { name: "Get Associated Emails", description: "Retrieves emails associated with a specific object (contact, company, or deal). [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/search)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/get-associated-meetings/get-associated-meetings.mjs b/components/hubspot/actions/get-associated-meetings/get-associated-meetings.mjs index bfa3ec6e05d2d..dd7611765d77d 100644 --- a/components/hubspot/actions/get-associated-meetings/get-associated-meetings.mjs +++ b/components/hubspot/actions/get-associated-meetings/get-associated-meetings.mjs @@ -7,7 +7,7 @@ export default { name: "Get Associated Meetings", description: "Retrieves meetings associated with a specific object (contact, company, or deal) with optional time filtering. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/associations/association-details#get-%2Fcrm%2Fv4%2Fobjects%2F%7Bobjecttype%7D%2F%7Bobjectid%7D%2Fassociations%2F%7Btoobjecttype%7D)", - version: "0.0.8", + version: "0.0.9", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/get-company/get-company.mjs b/components/hubspot/actions/get-company/get-company.mjs index 5625f498e5348..7a101e85a3e54 100644 --- a/components/hubspot/actions/get-company/get-company.mjs +++ b/components/hubspot/actions/get-company/get-company.mjs @@ -7,7 +7,7 @@ export default { name: "Get Company", description: "Gets a company. [See the documentation](https://developers.hubspot.com/docs/api/crm/companies#endpoint?spec=GET-/crm/v3/objects/companies/{companyId})", - version: "0.0.23", + version: "0.0.24", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/get-contact/get-contact.mjs b/components/hubspot/actions/get-contact/get-contact.mjs index 5c2d758b564a1..9b80bedfd78b8 100644 --- a/components/hubspot/actions/get-contact/get-contact.mjs +++ b/components/hubspot/actions/get-contact/get-contact.mjs @@ -7,7 +7,7 @@ export default { name: "Get Contact", description: "Gets a contact. [See the documentation](https://developers.hubspot.com/docs/api/crm/contacts#endpoint?spec=GET-/crm/v3/objects/contacts/{contactId})", - version: "0.0.23", + version: "0.0.24", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/get-deal/get-deal.mjs b/components/hubspot/actions/get-deal/get-deal.mjs index cdb8a687cdc87..c0f627c16fed3 100644 --- a/components/hubspot/actions/get-deal/get-deal.mjs +++ b/components/hubspot/actions/get-deal/get-deal.mjs @@ -7,7 +7,7 @@ export default { name: "Get Deal", description: "Gets a deal. [See the documentation](https://developers.hubspot.com/docs/api/crm/deals#endpoint?spec=GET-/crm/v3/objects/deals/{dealId})", - version: "0.0.23", + version: "0.0.24", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/get-file-public-url/get-file-public-url.mjs b/components/hubspot/actions/get-file-public-url/get-file-public-url.mjs index 5ce7e09d551e5..95ae571c9054e 100644 --- a/components/hubspot/actions/get-file-public-url/get-file-public-url.mjs +++ b/components/hubspot/actions/get-file-public-url/get-file-public-url.mjs @@ -5,7 +5,7 @@ export default { name: "Get File Public URL", description: "Get a publicly available URL for a file that was uploaded using a Hubspot form. [See the documentation](https://developers.hubspot.com/docs/api/files/files#endpoint?spec=GET-/files/v3/files/{fileId}/signed-url)", - version: "0.0.23", + version: "0.0.24", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/get-meeting/get-meeting.mjs b/components/hubspot/actions/get-meeting/get-meeting.mjs index b580848363c97..6471453cecb3d 100644 --- a/components/hubspot/actions/get-meeting/get-meeting.mjs +++ b/components/hubspot/actions/get-meeting/get-meeting.mjs @@ -7,7 +7,7 @@ export default { name: "Get Meeting", description: "Retrieves a specific meeting by its ID. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/engagements/meetings#get-%2Fcrm%2Fv3%2Fobjects%2Fmeetings%2F%7Bmeetingid%7D)", - version: "0.0.8", + version: "0.0.9", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/get-subscription-preferences/get-subscription-preferences.mjs b/components/hubspot/actions/get-subscription-preferences/get-subscription-preferences.mjs index 10e2bf4229c58..e55ebbe0d6500 100644 --- a/components/hubspot/actions/get-subscription-preferences/get-subscription-preferences.mjs +++ b/components/hubspot/actions/get-subscription-preferences/get-subscription-preferences.mjs @@ -5,7 +5,7 @@ export default { name: "Get Subscription Preferences", description: "Retrieves the subscription preferences for a contact. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/subscriptions#get-%2Fcommunication-preferences%2Fv4%2Fstatuses%2F%7Bsubscriberidstring%7D)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/list-blog-posts/list-blog-posts.mjs b/components/hubspot/actions/list-blog-posts/list-blog-posts.mjs index cfeeaf388d3ea..80e31b5f1fb35 100644 --- a/components/hubspot/actions/list-blog-posts/list-blog-posts.mjs +++ b/components/hubspot/actions/list-blog-posts/list-blog-posts.mjs @@ -5,7 +5,7 @@ export default { name: "List Blog Posts", description: "Retrieves a list of blog posts. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/blogs/blog-posts)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/list-campaigns/list-campaigns.mjs b/components/hubspot/actions/list-campaigns/list-campaigns.mjs index f893ac00e4c81..1a03d9db80125 100644 --- a/components/hubspot/actions/list-campaigns/list-campaigns.mjs +++ b/components/hubspot/actions/list-campaigns/list-campaigns.mjs @@ -5,7 +5,7 @@ export default { name: "List Campaigns", description: "Retrieves a list of campaigns. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/campaigns#get-%2Fmarketing%2Fv3%2Fcampaigns%2F)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/list-forms/list-forms.mjs b/components/hubspot/actions/list-forms/list-forms.mjs index 82390292feeeb..78d9e646b1a00 100644 --- a/components/hubspot/actions/list-forms/list-forms.mjs +++ b/components/hubspot/actions/list-forms/list-forms.mjs @@ -5,7 +5,7 @@ export default { name: "List Forms", description: "Retrieves a list of forms. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/forms#get-%2Fmarketing%2Fv3%2Fforms%2F)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/list-marketing-emails/list-marketing-emails.mjs b/components/hubspot/actions/list-marketing-emails/list-marketing-emails.mjs index 5e24f1ca7eb38..10fb4298a4a1f 100644 --- a/components/hubspot/actions/list-marketing-emails/list-marketing-emails.mjs +++ b/components/hubspot/actions/list-marketing-emails/list-marketing-emails.mjs @@ -5,7 +5,7 @@ export default { name: "List Marketing Emails", description: "Retrieves a list of marketing emails. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/emails/marketing-emails#get-%2Fmarketing%2Fv3%2Femails%2F)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/list-marketing-events/list-marketing-events.mjs b/components/hubspot/actions/list-marketing-events/list-marketing-events.mjs index 2cb1eba1d2fa5..d077ab17b75ef 100644 --- a/components/hubspot/actions/list-marketing-events/list-marketing-events.mjs +++ b/components/hubspot/actions/list-marketing-events/list-marketing-events.mjs @@ -5,7 +5,7 @@ export default { name: "List Marketing Events", description: "Retrieves a list of marketing events. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/marketing-events#get-%2Fmarketing%2Fv3%2Fmarketing-events%2F)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/list-pages/list-pages.mjs b/components/hubspot/actions/list-pages/list-pages.mjs index 2ea70ba1ca8c1..8d6d28e8a1fb3 100644 --- a/components/hubspot/actions/list-pages/list-pages.mjs +++ b/components/hubspot/actions/list-pages/list-pages.mjs @@ -5,7 +5,7 @@ export default { name: "List Pages", description: "Retrieves a list of site pages. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/pages)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/list-templates/list-templates.mjs b/components/hubspot/actions/list-templates/list-templates.mjs index f856231d3d17e..69298e988459c 100644 --- a/components/hubspot/actions/list-templates/list-templates.mjs +++ b/components/hubspot/actions/list-templates/list-templates.mjs @@ -5,7 +5,7 @@ export default { name: "List Templates", description: "Retrieves a list of templates. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/templates)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/search-crm/search-crm.mjs b/components/hubspot/actions/search-crm/search-crm.mjs index 0888c902e45d7..848361b10ced4 100644 --- a/components/hubspot/actions/search-crm/search-crm.mjs +++ b/components/hubspot/actions/search-crm/search-crm.mjs @@ -18,7 +18,7 @@ export default { name: "Search CRM", description: "Search companies, contacts, deals, feedback submissions, products, tickets, line-items, quotes, leads, or custom objects. [See the documentation](https://developers.hubspot.com/docs/api/crm/search)", - version: "1.0.10", + version: "1.0.11", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/update-company/update-company.mjs b/components/hubspot/actions/update-company/update-company.mjs index e3e68a1f615f4..b5574608e10f8 100644 --- a/components/hubspot/actions/update-company/update-company.mjs +++ b/components/hubspot/actions/update-company/update-company.mjs @@ -8,7 +8,7 @@ export default { name: "Update Company", description: "Update a company in Hubspot. [See the documentation](https://developers.hubspot.com/docs/api/crm/companies)", - version: "0.0.23", + version: "0.0.24", type: "action", methods: { ...common.methods, diff --git a/components/hubspot/actions/update-contact/update-contact.mjs b/components/hubspot/actions/update-contact/update-contact.mjs index b8eb3ebd0d8d4..0668f7be8230e 100644 --- a/components/hubspot/actions/update-contact/update-contact.mjs +++ b/components/hubspot/actions/update-contact/update-contact.mjs @@ -8,7 +8,7 @@ export default { name: "Update Contact", description: "Update a contact in Hubspot. [See the documentation](https://developers.hubspot.com/docs/api/crm/contacts#endpoint?spec=POST-/crm/v3/objects/contacts)", - version: "0.0.24", + version: "0.0.25", type: "action", methods: { ...common.methods, diff --git a/components/hubspot/actions/update-custom-object/update-custom-object.mjs b/components/hubspot/actions/update-custom-object/update-custom-object.mjs index acb462b4ea264..c639fb1a50c22 100644 --- a/components/hubspot/actions/update-custom-object/update-custom-object.mjs +++ b/components/hubspot/actions/update-custom-object/update-custom-object.mjs @@ -7,7 +7,7 @@ export default { name: "Update Custom Object", description: "Update a custom object in Hubspot. [See the documentation](https://developers.hubspot.com/beta-docs/guides/api/crm/objects/custom-objects#update-existing-custom-objects)", - version: "1.0.9", + version: "1.0.10", type: "action", methods: { ...common.methods, diff --git a/components/hubspot/actions/update-deal/update-deal.mjs b/components/hubspot/actions/update-deal/update-deal.mjs index 6889cfdb80a47..abc881b0b8685 100644 --- a/components/hubspot/actions/update-deal/update-deal.mjs +++ b/components/hubspot/actions/update-deal/update-deal.mjs @@ -8,7 +8,7 @@ export default { name: "Update Deal", description: "Update a deal in Hubspot. [See the documentation](https://developers.hubspot.com/beta-docs/guides/api/crm/objects/deals#update-deals)", - version: "0.0.14", + version: "0.0.15", type: "action", methods: { ...common.methods, diff --git a/components/hubspot/actions/update-fields-on-the-form/update-fields-on-the-form.mjs b/components/hubspot/actions/update-fields-on-the-form/update-fields-on-the-form.mjs index 534afa62a16b0..66ab37002ae6e 100644 --- a/components/hubspot/actions/update-fields-on-the-form/update-fields-on-the-form.mjs +++ b/components/hubspot/actions/update-fields-on-the-form/update-fields-on-the-form.mjs @@ -10,7 +10,7 @@ export default { name: "Update Fields on the Form", description: "Update some of the form definition components. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/forms#patch-%2Fmarketing%2Fv3%2Fforms%2F%7Bformid%7D)", - version: "0.0.4", + version: "0.0.5", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/update-landing-page/update-landing-page.mjs b/components/hubspot/actions/update-landing-page/update-landing-page.mjs index 8a49edb8fbd78..40115c02b3916 100644 --- a/components/hubspot/actions/update-landing-page/update-landing-page.mjs +++ b/components/hubspot/actions/update-landing-page/update-landing-page.mjs @@ -7,7 +7,7 @@ export default { name: "Update Landing Page", description: "Update a landing page in HubSpot. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/pages#patch-%2Fcms%2Fv3%2Fpages%2Flanding-pages%2F%7Bobjectid%7D)", - version: "0.0.4", + version: "0.0.5", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/update-lead/update-lead.mjs b/components/hubspot/actions/update-lead/update-lead.mjs index e8893787cf41f..ee6140e240ce4 100644 --- a/components/hubspot/actions/update-lead/update-lead.mjs +++ b/components/hubspot/actions/update-lead/update-lead.mjs @@ -8,7 +8,7 @@ export default { name: "Update Lead", description: "Update a lead in Hubspot. [See the documentation](https://developers.hubspot.com/beta-docs/guides/api/crm/objects/leads#update-leads)", - version: "0.0.15", + version: "0.0.16", type: "action", methods: { ...common.methods, diff --git a/components/hubspot/actions/update-page/update-page.mjs b/components/hubspot/actions/update-page/update-page.mjs index 494af8a602d1a..6a1fccf41c120 100644 --- a/components/hubspot/actions/update-page/update-page.mjs +++ b/components/hubspot/actions/update-page/update-page.mjs @@ -7,7 +7,7 @@ export default { name: "Update Page", description: "Update a page in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/pages#patch-%2Fcms%2Fv3%2Fpages%2Fsite-pages%2F%7Bobjectid%7D)", - version: "0.0.4", + version: "0.0.5", type: "action", props: { hubspot, diff --git a/components/hubspot/sources/delete-blog-article/delete-blog-article.mjs b/components/hubspot/sources/delete-blog-article/delete-blog-article.mjs index aa5837adc3a93..8fe616ad72754 100644 --- a/components/hubspot/sources/delete-blog-article/delete-blog-article.mjs +++ b/components/hubspot/sources/delete-blog-article/delete-blog-article.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-delete-blog-article", name: "Deleted Blog Posts", description: "Emit new event for each deleted blog post.", - version: "0.0.29", + version: "0.0.30", dedupe: "unique", type: "source", methods: { diff --git a/components/hubspot/sources/new-contact-added-to-list/new-contact-added-to-list.mjs b/components/hubspot/sources/new-contact-added-to-list/new-contact-added-to-list.mjs index 239797a0c6c5f..aa091409cbe75 100644 --- a/components/hubspot/sources/new-contact-added-to-list/new-contact-added-to-list.mjs +++ b/components/hubspot/sources/new-contact-added-to-list/new-contact-added-to-list.mjs @@ -12,7 +12,7 @@ export default { name: "New Contact Added to List", description: "Emit new event when a contact is added to a HubSpot list. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/lists#get-%2Fcrm%2Fv3%2Flists%2F%7Blistid%7D%2Fmemberships%2Fjoin-order)", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", props: { diff --git a/components/hubspot/sources/new-custom-object-property-change/new-custom-object-property-change.mjs b/components/hubspot/sources/new-custom-object-property-change/new-custom-object-property-change.mjs index 49da904ba1049..69c4653df924d 100644 --- a/components/hubspot/sources/new-custom-object-property-change/new-custom-object-property-change.mjs +++ b/components/hubspot/sources/new-custom-object-property-change/new-custom-object-property-change.mjs @@ -7,7 +7,7 @@ export default { name: "New Custom Object Property Change", description: "Emit new event when a specified property is provided or updated on a custom object.", - version: "0.0.14", + version: "0.0.15", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-deal-in-stage/new-deal-in-stage.mjs b/components/hubspot/sources/new-deal-in-stage/new-deal-in-stage.mjs index 9ed00e01bed42..ca55e15821489 100644 --- a/components/hubspot/sources/new-deal-in-stage/new-deal-in-stage.mjs +++ b/components/hubspot/sources/new-deal-in-stage/new-deal-in-stage.mjs @@ -11,7 +11,7 @@ export default { key: "hubspot-new-deal-in-stage", name: "New Deal In Stage", description: "Emit new event for each new deal in a stage.", - version: "0.0.35", + version: "0.0.36", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-email-event/new-email-event.mjs b/components/hubspot/sources/new-email-event/new-email-event.mjs index 32e7c112e5e68..d7d852e58f6a2 100644 --- a/components/hubspot/sources/new-email-event/new-email-event.mjs +++ b/components/hubspot/sources/new-email-event/new-email-event.mjs @@ -8,7 +8,7 @@ export default { key: "hubspot-new-email-event", name: "New Email Event", description: "Emit new event for each new Hubspot email event.", - version: "0.0.32", + version: "0.0.33", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-form-submission/new-form-submission.mjs b/components/hubspot/sources/new-form-submission/new-form-submission.mjs index 7be00798effd4..50c028593ccd3 100644 --- a/components/hubspot/sources/new-form-submission/new-form-submission.mjs +++ b/components/hubspot/sources/new-form-submission/new-form-submission.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-new-form-submission", name: "New Form Submission", description: "Emit new event for each new submission of a form.", - version: "0.0.34", + version: "0.0.35", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-note/new-note.mjs b/components/hubspot/sources/new-note/new-note.mjs index 70beb99f2f757..6f1be782e40d3 100644 --- a/components/hubspot/sources/new-note/new-note.mjs +++ b/components/hubspot/sources/new-note/new-note.mjs @@ -8,7 +8,7 @@ export default { key: "hubspot-new-note", name: "New Note Created", description: "Emit new event for each new note created. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/engagements/notes#get-%2Fcrm%2Fv3%2Fobjects%2Fnotes)", - version: "1.0.10", + version: "1.0.11", type: "source", dedupe: "unique", methods: { diff --git a/components/hubspot/sources/new-or-updated-blog-article/new-or-updated-blog-article.mjs b/components/hubspot/sources/new-or-updated-blog-article/new-or-updated-blog-article.mjs index 136c748b5a45a..6ea5be3ea2915 100644 --- a/components/hubspot/sources/new-or-updated-blog-article/new-or-updated-blog-article.mjs +++ b/components/hubspot/sources/new-or-updated-blog-article/new-or-updated-blog-article.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-or-updated-blog-article", name: "New or Updated Blog Post", description: "Emit new event for each new or updated blog post in Hubspot.", - version: "0.0.16", + version: "0.0.17", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-company/new-or-updated-company.mjs b/components/hubspot/sources/new-or-updated-company/new-or-updated-company.mjs index a0925a0acb961..5a8e4ab788bd2 100644 --- a/components/hubspot/sources/new-or-updated-company/new-or-updated-company.mjs +++ b/components/hubspot/sources/new-or-updated-company/new-or-updated-company.mjs @@ -10,7 +10,7 @@ export default { key: "hubspot-new-or-updated-company", name: "New or Updated Company", description: "Emit new event for each new or updated company in Hubspot.", - version: "0.0.16", + version: "0.0.17", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-contact/new-or-updated-contact.mjs b/components/hubspot/sources/new-or-updated-contact/new-or-updated-contact.mjs index e2a89562cd52c..417e98705ca75 100644 --- a/components/hubspot/sources/new-or-updated-contact/new-or-updated-contact.mjs +++ b/components/hubspot/sources/new-or-updated-contact/new-or-updated-contact.mjs @@ -10,7 +10,7 @@ export default { key: "hubspot-new-or-updated-contact", name: "New or Updated Contact", description: "Emit new event for each new or updated contact in Hubspot.", - version: "0.0.17", + version: "0.0.18", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-deal/new-or-updated-deal.mjs b/components/hubspot/sources/new-or-updated-deal/new-or-updated-deal.mjs index 1398f76528aa3..91191ce9d214f 100644 --- a/components/hubspot/sources/new-or-updated-deal/new-or-updated-deal.mjs +++ b/components/hubspot/sources/new-or-updated-deal/new-or-updated-deal.mjs @@ -10,7 +10,7 @@ export default { key: "hubspot-new-or-updated-deal", name: "New or Updated Deal", description: "Emit new event for each new or updated deal in Hubspot", - version: "0.0.16", + version: "0.0.17", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-product/new-or-updated-product.mjs b/components/hubspot/sources/new-or-updated-product/new-or-updated-product.mjs index 3ec83022a5a32..1f7924d79c4e9 100644 --- a/components/hubspot/sources/new-or-updated-product/new-or-updated-product.mjs +++ b/components/hubspot/sources/new-or-updated-product/new-or-updated-product.mjs @@ -10,7 +10,7 @@ export default { key: "hubspot-new-or-updated-product", name: "New or Updated Product", description: "Emit new event for each new or updated product in Hubspot.", - version: "0.0.16", + version: "0.0.17", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-social-media-message/new-social-media-message.mjs b/components/hubspot/sources/new-social-media-message/new-social-media-message.mjs index 33332bc052699..95b2b7298c96a 100644 --- a/components/hubspot/sources/new-social-media-message/new-social-media-message.mjs +++ b/components/hubspot/sources/new-social-media-message/new-social-media-message.mjs @@ -7,7 +7,7 @@ export default { name: "New Social Media Message", description: "Emit new event when a message is posted from HubSpot to the specified social media channel. Note: Only available for Marketing Hub Enterprise accounts", - version: "0.0.29", + version: "0.0.30", type: "source", dedupe: "unique", props: { diff --git a/components/hubspot/sources/new-task/new-task.mjs b/components/hubspot/sources/new-task/new-task.mjs index dabdf8cda7892..6b3f432059a75 100644 --- a/components/hubspot/sources/new-task/new-task.mjs +++ b/components/hubspot/sources/new-task/new-task.mjs @@ -9,7 +9,7 @@ export default { name: "New Task Created", description: "Emit new event for each new task created. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/engagements/tasks#get-%2Fcrm%2Fv3%2Fobjects%2Ftasks)", - version: "1.0.10", + version: "1.0.11", type: "source", dedupe: "unique", methods: { diff --git a/components/hubspot/sources/new-ticket-property-change/new-ticket-property-change.mjs b/components/hubspot/sources/new-ticket-property-change/new-ticket-property-change.mjs index 2288b15cb6f29..ee6e1c8598b9a 100644 --- a/components/hubspot/sources/new-ticket-property-change/new-ticket-property-change.mjs +++ b/components/hubspot/sources/new-ticket-property-change/new-ticket-property-change.mjs @@ -8,7 +8,7 @@ export default { name: "New Ticket Property Change", description: "Emit new event when a specified property is provided or updated on a ticket. [See the documentation](https://developers.hubspot.com/docs/api/crm/tickets)", - version: "0.0.23", + version: "0.0.24", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-ticket/new-ticket.mjs b/components/hubspot/sources/new-ticket/new-ticket.mjs index 2f6b128650f88..3dfdcae0fc3a3 100644 --- a/components/hubspot/sources/new-ticket/new-ticket.mjs +++ b/components/hubspot/sources/new-ticket/new-ticket.mjs @@ -10,7 +10,7 @@ export default { key: "hubspot-new-ticket", name: "New Ticket", description: "Emit new event for each new ticket created.", - version: "0.0.29", + version: "0.0.30", dedupe: "unique", type: "source", props: { From 8d0ee1bb5b2b9503df7b2e4abbd07857237a13f4 Mon Sep 17 00:00:00 2001 From: Luan Cazarine Date: Wed, 10 Sep 2025 09:54:03 -0300 Subject: [PATCH 08/11] Update version numbers for HubSpot source components to ensure compatibility with the latest API changes. --- components/hubspot/package.json | 2 +- .../new-company-property-change/new-company-property-change.mjs | 2 +- .../new-contact-property-change/new-contact-property-change.mjs | 2 +- .../new-deal-property-change/new-deal-property-change.mjs | 2 +- .../new-email-subscriptions-timeline.mjs | 2 +- components/hubspot/sources/new-engagement/new-engagement.mjs | 2 +- components/hubspot/sources/new-event/new-event.mjs | 2 +- .../new-or-updated-crm-object/new-or-updated-crm-object.mjs | 2 +- .../new-or-updated-custom-object.mjs | 2 +- .../new-or-updated-line-item/new-or-updated-line-item.mjs | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/components/hubspot/package.json b/components/hubspot/package.json index cf0e6b86ce2ff..afa33b8390937 100644 --- a/components/hubspot/package.json +++ b/components/hubspot/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/hubspot", - "version": "1.7.0", + "version": "1.7.1", "description": "Pipedream Hubspot Components", "main": "hubspot.app.mjs", "keywords": [ diff --git a/components/hubspot/sources/new-company-property-change/new-company-property-change.mjs b/components/hubspot/sources/new-company-property-change/new-company-property-change.mjs index 404da91753f67..948b9725a77c8 100644 --- a/components/hubspot/sources/new-company-property-change/new-company-property-change.mjs +++ b/components/hubspot/sources/new-company-property-change/new-company-property-change.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-company-property-change", name: "New Company Property Change", description: "Emit new event when a specified property is provided or updated on a company. [See the documentation](https://developers.hubspot.com/docs/api/crm/companies)", - version: "0.0.22", + version: "0.0.23", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-contact-property-change/new-contact-property-change.mjs b/components/hubspot/sources/new-contact-property-change/new-contact-property-change.mjs index 6300cbce01841..0ae07d5095d5f 100644 --- a/components/hubspot/sources/new-contact-property-change/new-contact-property-change.mjs +++ b/components/hubspot/sources/new-contact-property-change/new-contact-property-change.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-contact-property-change", name: "New Contact Property Change", description: "Emit new event when a specified property is provided or updated on a contact. [See the documentation](https://developers.hubspot.com/docs/api/crm/contacts)", - version: "0.0.24", + version: "0.0.25", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-deal-property-change/new-deal-property-change.mjs b/components/hubspot/sources/new-deal-property-change/new-deal-property-change.mjs index 360cfd52892ab..36c2b6556a28f 100644 --- a/components/hubspot/sources/new-deal-property-change/new-deal-property-change.mjs +++ b/components/hubspot/sources/new-deal-property-change/new-deal-property-change.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-deal-property-change", name: "New Deal Property Change", description: "Emit new event when a specified property is provided or updated on a deal. [See the documentation](https://developers.hubspot.com/docs/api/crm/deals)", - version: "0.0.23", + version: "0.0.24", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-email-subscriptions-timeline/new-email-subscriptions-timeline.mjs b/components/hubspot/sources/new-email-subscriptions-timeline/new-email-subscriptions-timeline.mjs index 0345b36b664ab..bafd36389eb8b 100644 --- a/components/hubspot/sources/new-email-subscriptions-timeline/new-email-subscriptions-timeline.mjs +++ b/components/hubspot/sources/new-email-subscriptions-timeline/new-email-subscriptions-timeline.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-new-email-subscriptions-timeline", name: "New Email Subscriptions Timeline", description: "Emit new event when a new email timeline subscription is added for the portal.", - version: "0.0.29", + version: "0.0.30", dedupe: "unique", type: "source", methods: { diff --git a/components/hubspot/sources/new-engagement/new-engagement.mjs b/components/hubspot/sources/new-engagement/new-engagement.mjs index d1954a1a5c6b7..8b5c5cc02106e 100644 --- a/components/hubspot/sources/new-engagement/new-engagement.mjs +++ b/components/hubspot/sources/new-engagement/new-engagement.mjs @@ -8,7 +8,7 @@ export default { key: "hubspot-new-engagement", name: "New Engagement", description: "Emit new event for each new engagement created. This action returns a maximum of 5000 records at a time, make sure you set a correct time range so you don't miss any events", - version: "0.0.34", + version: "0.0.35", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-event/new-event.mjs b/components/hubspot/sources/new-event/new-event.mjs index 3ba9d1b848328..86697c4a8c901 100644 --- a/components/hubspot/sources/new-event/new-event.mjs +++ b/components/hubspot/sources/new-event/new-event.mjs @@ -8,7 +8,7 @@ export default { key: "hubspot-new-event", name: "New Events", description: "Emit new event for each new Hubspot event. Note: Only available for Marketing Hub Enterprise, Sales Hub Enterprise, Service Hub Enterprise, or CMS Hub Enterprise accounts", - version: "0.0.33", + version: "0.0.34", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-crm-object/new-or-updated-crm-object.mjs b/components/hubspot/sources/new-or-updated-crm-object/new-or-updated-crm-object.mjs index 428260c2fd890..92362415b042c 100644 --- a/components/hubspot/sources/new-or-updated-crm-object/new-or-updated-crm-object.mjs +++ b/components/hubspot/sources/new-or-updated-crm-object/new-or-updated-crm-object.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-or-updated-crm-object", name: "New or Updated CRM Object", description: "Emit new event each time a CRM Object of the specified object type is updated.", - version: "0.0.29", + version: "0.0.30", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-custom-object/new-or-updated-custom-object.mjs b/components/hubspot/sources/new-or-updated-custom-object/new-or-updated-custom-object.mjs index 549457486dd41..9942cbcf35bb2 100644 --- a/components/hubspot/sources/new-or-updated-custom-object/new-or-updated-custom-object.mjs +++ b/components/hubspot/sources/new-or-updated-custom-object/new-or-updated-custom-object.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-or-updated-custom-object", name: "New or Updated Custom Object", description: "Emit new event each time a Custom Object of the specified schema is updated.", - version: "0.0.18", + version: "0.0.19", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-line-item/new-or-updated-line-item.mjs b/components/hubspot/sources/new-or-updated-line-item/new-or-updated-line-item.mjs index ab3cf40a41814..298c7d57af3c9 100644 --- a/components/hubspot/sources/new-or-updated-line-item/new-or-updated-line-item.mjs +++ b/components/hubspot/sources/new-or-updated-line-item/new-or-updated-line-item.mjs @@ -10,7 +10,7 @@ export default { key: "hubspot-new-or-updated-line-item", name: "New or Updated Line Item", description: "Emit new event for each new line item added or updated in Hubspot.", - version: "0.0.16", + version: "0.0.17", dedupe: "unique", type: "source", props: { From ad02968ab8cc1c0250f4f6cd14d8925363f61097 Mon Sep 17 00:00:00 2001 From: Luan Cazarine Date: Thu, 11 Sep 2025 14:50:40 -0300 Subject: [PATCH 09/11] bump fix --- .../hubspot/actions/add-contact-to-list/add-contact-to-list.mjs | 2 +- .../actions/batch-create-companies/batch-create-companies.mjs | 2 +- .../batch-create-or-update-contact.mjs | 2 +- .../actions/batch-update-companies/batch-update-companies.mjs | 2 +- .../actions/batch-upsert-companies/batch-upsert-companies.mjs | 2 +- components/hubspot/actions/clone-email/clone-email.mjs | 2 +- components/hubspot/actions/clone-site-page/clone-site-page.mjs | 2 +- .../hubspot/actions/create-associations/create-associations.mjs | 2 +- .../actions/create-communication/create-communication.mjs | 2 +- components/hubspot/actions/create-company/create-company.mjs | 2 +- .../actions/create-contact-workflow/create-contact-workflow.mjs | 2 +- .../actions/create-custom-object/create-custom-object.mjs | 2 +- components/hubspot/actions/create-deal/create-deal.mjs | 2 +- components/hubspot/actions/create-email/create-email.mjs | 2 +- .../hubspot/actions/create-engagement/create-engagement.mjs | 2 +- components/hubspot/actions/create-form/create-form.mjs | 2 +- .../hubspot/actions/create-landing-page/create-landing-page.mjs | 2 +- components/hubspot/actions/create-lead/create-lead.mjs | 2 +- components/hubspot/actions/create-meeting/create-meeting.mjs | 2 +- components/hubspot/actions/create-note/create-note.mjs | 2 +- .../create-or-update-contact/create-or-update-contact.mjs | 2 +- components/hubspot/actions/create-page/create-page.mjs | 2 +- components/hubspot/actions/create-task/create-task.mjs | 2 +- components/hubspot/actions/create-ticket/create-ticket.mjs | 2 +- components/hubspot/actions/create-workflow/create-workflow.mjs | 2 +- components/hubspot/actions/delete-workflow/delete-workflow.mjs | 2 +- .../enroll-contact-into-workflow.mjs | 2 +- .../actions/get-associated-emails/get-associated-emails.mjs | 2 +- .../actions/get-associated-meetings/get-associated-meetings.mjs | 2 +- components/hubspot/actions/get-company/get-company.mjs | 2 +- components/hubspot/actions/get-contact/get-contact.mjs | 2 +- components/hubspot/actions/get-deal/get-deal.mjs | 2 +- .../hubspot/actions/get-file-public-url/get-file-public-url.mjs | 2 +- components/hubspot/actions/get-meeting/get-meeting.mjs | 2 +- .../get-subscription-preferences.mjs | 2 +- components/hubspot/actions/list-blog-posts/list-blog-posts.mjs | 2 +- components/hubspot/actions/list-campaigns/list-campaigns.mjs | 2 +- components/hubspot/actions/list-forms/list-forms.mjs | 2 +- .../actions/list-marketing-emails/list-marketing-emails.mjs | 2 +- .../actions/list-marketing-events/list-marketing-events.mjs | 2 +- components/hubspot/actions/list-pages/list-pages.mjs | 2 +- components/hubspot/actions/list-templates/list-templates.mjs | 2 +- .../retrieve-migrated-workflow-mappings.mjs | 2 +- .../retrieve-workflow-details/retrieve-workflow-details.mjs | 2 +- .../retrieve-workflow-emails/retrieve-workflow-emails.mjs | 2 +- .../hubspot/actions/retrieve-workflows/retrieve-workflows.mjs | 2 +- components/hubspot/actions/search-crm/search-crm.mjs | 2 +- components/hubspot/actions/update-company/update-company.mjs | 2 +- components/hubspot/actions/update-contact/update-contact.mjs | 2 +- .../actions/update-custom-object/update-custom-object.mjs | 2 +- components/hubspot/actions/update-deal/update-deal.mjs | 2 +- .../update-fields-on-the-form/update-fields-on-the-form.mjs | 2 +- .../hubspot/actions/update-landing-page/update-landing-page.mjs | 2 +- components/hubspot/actions/update-lead/update-lead.mjs | 2 +- components/hubspot/actions/update-page/update-page.mjs | 2 +- components/hubspot/package.json | 2 +- .../hubspot/sources/delete-blog-article/delete-blog-article.mjs | 2 +- .../new-company-property-change/new-company-property-change.mjs | 2 +- .../new-contact-added-to-list/new-contact-added-to-list.mjs | 2 +- .../new-contact-property-change/new-contact-property-change.mjs | 2 +- .../new-custom-object-property-change.mjs | 2 +- .../hubspot/sources/new-deal-in-stage/new-deal-in-stage.mjs | 2 +- .../new-deal-property-change/new-deal-property-change.mjs | 2 +- components/hubspot/sources/new-email-event/new-email-event.mjs | 2 +- .../new-email-subscriptions-timeline.mjs | 2 +- components/hubspot/sources/new-engagement/new-engagement.mjs | 2 +- components/hubspot/sources/new-event/new-event.mjs | 2 +- .../hubspot/sources/new-form-submission/new-form-submission.mjs | 2 +- components/hubspot/sources/new-note/new-note.mjs | 2 +- .../new-or-updated-blog-article/new-or-updated-blog-article.mjs | 2 +- .../sources/new-or-updated-company/new-or-updated-company.mjs | 2 +- .../sources/new-or-updated-contact/new-or-updated-contact.mjs | 2 +- .../new-or-updated-crm-object/new-or-updated-crm-object.mjs | 2 +- .../new-or-updated-custom-object.mjs | 2 +- .../hubspot/sources/new-or-updated-deal/new-or-updated-deal.mjs | 2 +- .../new-or-updated-line-item/new-or-updated-line-item.mjs | 2 +- .../sources/new-or-updated-product/new-or-updated-product.mjs | 2 +- .../new-social-media-message/new-social-media-message.mjs | 2 +- components/hubspot/sources/new-task/new-task.mjs | 2 +- .../new-ticket-property-change/new-ticket-property-change.mjs | 2 +- components/hubspot/sources/new-ticket/new-ticket.mjs | 2 +- 81 files changed, 81 insertions(+), 81 deletions(-) diff --git a/components/hubspot/actions/add-contact-to-list/add-contact-to-list.mjs b/components/hubspot/actions/add-contact-to-list/add-contact-to-list.mjs index 67ab271fbac32..1b3f20fb5f2b4 100644 --- a/components/hubspot/actions/add-contact-to-list/add-contact-to-list.mjs +++ b/components/hubspot/actions/add-contact-to-list/add-contact-to-list.mjs @@ -5,7 +5,7 @@ export default { name: "Add Contact to List", description: "Adds a contact to a specific static list. [See the documentation](https://legacydocs.hubspot.com/docs/methods/lists/add_contact_to_list)", - version: "0.0.24", + version: "0.0.25", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/batch-create-companies/batch-create-companies.mjs b/components/hubspot/actions/batch-create-companies/batch-create-companies.mjs index 88f97a290a7a6..a511232756048 100644 --- a/components/hubspot/actions/batch-create-companies/batch-create-companies.mjs +++ b/components/hubspot/actions/batch-create-companies/batch-create-companies.mjs @@ -8,7 +8,7 @@ export default { name: "Batch Create Companies", description: "Create a batch of companies in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/objects/companies#post-%2Fcrm%2Fv3%2Fobjects%2Fcompanies%2Fbatch%2Fcreate)", - version: "0.0.7", + version: "0.0.8", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/batch-create-or-update-contact/batch-create-or-update-contact.mjs b/components/hubspot/actions/batch-create-or-update-contact/batch-create-or-update-contact.mjs index 1ea8195af6ba7..e9d30b1315a8f 100644 --- a/components/hubspot/actions/batch-create-or-update-contact/batch-create-or-update-contact.mjs +++ b/components/hubspot/actions/batch-create-or-update-contact/batch-create-or-update-contact.mjs @@ -5,7 +5,7 @@ export default { name: "Batch Create or Update Contact", description: "Create or update a batch of contacts by its ID or email. [See the documentation](https://developers.hubspot.com/docs/api/crm/contacts)", - version: "0.0.21", + version: "0.0.22", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/batch-update-companies/batch-update-companies.mjs b/components/hubspot/actions/batch-update-companies/batch-update-companies.mjs index e1c84dfe28984..d908a8cab4f74 100644 --- a/components/hubspot/actions/batch-update-companies/batch-update-companies.mjs +++ b/components/hubspot/actions/batch-update-companies/batch-update-companies.mjs @@ -8,7 +8,7 @@ export default { name: "Batch Update Companies", description: "Update a batch of companies in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/objects/companies#post-%2Fcrm%2Fv3%2Fobjects%2Fcompanies%2Fbatch%2Fupdate)", - version: "0.0.7", + version: "0.0.8", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/batch-upsert-companies/batch-upsert-companies.mjs b/components/hubspot/actions/batch-upsert-companies/batch-upsert-companies.mjs index d58293df8aa71..cd45688bbb19a 100644 --- a/components/hubspot/actions/batch-upsert-companies/batch-upsert-companies.mjs +++ b/components/hubspot/actions/batch-upsert-companies/batch-upsert-companies.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-batch-upsert-companies", name: "Batch Upsert Companies", description: "Upsert a batch of companies in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/objects/companies#post-%2Fcrm%2Fv3%2Fobjects%2Fcompanies%2Fbatch%2Fupsert)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/clone-email/clone-email.mjs b/components/hubspot/actions/clone-email/clone-email.mjs index f4b1f21569872..af89d66f961a4 100644 --- a/components/hubspot/actions/clone-email/clone-email.mjs +++ b/components/hubspot/actions/clone-email/clone-email.mjs @@ -6,7 +6,7 @@ export default { name: "Clone Marketing Email", description: "Clone a marketing email in HubSpot. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/emails/marketing-emails#post-%2Fmarketing%2Fv3%2Femails%2Fclone)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/clone-site-page/clone-site-page.mjs b/components/hubspot/actions/clone-site-page/clone-site-page.mjs index 44c7bb6b4e5a7..cc5bcd3764eae 100644 --- a/components/hubspot/actions/clone-site-page/clone-site-page.mjs +++ b/components/hubspot/actions/clone-site-page/clone-site-page.mjs @@ -5,7 +5,7 @@ export default { name: "Clone Site Page", description: "Clone a site page in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/pages#post-%2Fcms%2Fv3%2Fpages%2Fsite-pages%2Fclone)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/create-associations/create-associations.mjs b/components/hubspot/actions/create-associations/create-associations.mjs index d77240f50284b..6408d395a8baa 100644 --- a/components/hubspot/actions/create-associations/create-associations.mjs +++ b/components/hubspot/actions/create-associations/create-associations.mjs @@ -6,7 +6,7 @@ export default { name: "Create Associations", description: "Create associations between objects. [See the documentation](https://developers.hubspot.com/docs/api/crm/associations#endpoint?spec=POST-/crm/v3/associations/{fromObjectType}/{toObjectType}/batch/create)", - version: "1.0.10", + version: "1.0.11", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/create-communication/create-communication.mjs b/components/hubspot/actions/create-communication/create-communication.mjs index 29e945e3f55ba..6b40e135ad5df 100644 --- a/components/hubspot/actions/create-communication/create-communication.mjs +++ b/components/hubspot/actions/create-communication/create-communication.mjs @@ -9,7 +9,7 @@ export default { name: "Create Communication", description: "Create a WhatsApp, LinkedIn, or SMS message. [See the documentation](https://developers.hubspot.com/beta-docs/reference/api/crm/engagements/communications/v3#post-%2Fcrm%2Fv3%2Fobjects%2Fcommunications)", - version: "0.0.17", + version: "0.0.18", type: "action", props: { ...appProp.props, diff --git a/components/hubspot/actions/create-company/create-company.mjs b/components/hubspot/actions/create-company/create-company.mjs index 337310d0a7836..977f1cae35a51 100644 --- a/components/hubspot/actions/create-company/create-company.mjs +++ b/components/hubspot/actions/create-company/create-company.mjs @@ -7,7 +7,7 @@ export default { name: "Create Company", description: "Create a company in Hubspot. [See the documentation](https://developers.hubspot.com/docs/api/crm/companies#endpoint?spec=POST-/crm/v3/objects/companies)", - version: "0.0.28", + version: "0.0.29", type: "action", methods: { ...common.methods, diff --git a/components/hubspot/actions/create-contact-workflow/create-contact-workflow.mjs b/components/hubspot/actions/create-contact-workflow/create-contact-workflow.mjs index 7798cfebe7dab..7db17827aea34 100644 --- a/components/hubspot/actions/create-contact-workflow/create-contact-workflow.mjs +++ b/components/hubspot/actions/create-contact-workflow/create-contact-workflow.mjs @@ -6,7 +6,7 @@ export default { name: "Create Contact Workflow", description: "Create a contact workflow in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/automation/create-manage-workflows#post-%2Fautomation%2Fv4%2Fflows)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/create-custom-object/create-custom-object.mjs b/components/hubspot/actions/create-custom-object/create-custom-object.mjs index 4d39639a5b860..9dea0893e71bc 100644 --- a/components/hubspot/actions/create-custom-object/create-custom-object.mjs +++ b/components/hubspot/actions/create-custom-object/create-custom-object.mjs @@ -7,7 +7,7 @@ export default { name: "Create Custom Object", description: "Create a new custom object in Hubspot. [See the documentation](https://developers.hubspot.com/beta-docs/guides/api/crm/objects/custom-objects#create-a-custom-object)", - version: "1.0.10", + version: "1.0.11", type: "action", props: { ...appProp.props, diff --git a/components/hubspot/actions/create-deal/create-deal.mjs b/components/hubspot/actions/create-deal/create-deal.mjs index f0a92fe3f7f38..68672257d7c20 100644 --- a/components/hubspot/actions/create-deal/create-deal.mjs +++ b/components/hubspot/actions/create-deal/create-deal.mjs @@ -7,7 +7,7 @@ export default { name: "Create Deal", description: "Create a deal in Hubspot. [See the documentation](https://developers.hubspot.com/docs/api/crm/deals#endpoint?spec=POST-/crm/v3/objects/deals)", - version: "0.0.28", + version: "0.0.29", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/create-email/create-email.mjs b/components/hubspot/actions/create-email/create-email.mjs index 8d29994e56af4..8feaa5963767a 100644 --- a/components/hubspot/actions/create-email/create-email.mjs +++ b/components/hubspot/actions/create-email/create-email.mjs @@ -10,7 +10,7 @@ export default { name: "Create Marketing Email", description: "Create a marketing email in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/emails/marketing-emails#post-%2Fmarketing%2Fv3%2Femails%2F)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/create-engagement/create-engagement.mjs b/components/hubspot/actions/create-engagement/create-engagement.mjs index 449e1d2a0a04f..ca3b0e6cc571c 100644 --- a/components/hubspot/actions/create-engagement/create-engagement.mjs +++ b/components/hubspot/actions/create-engagement/create-engagement.mjs @@ -11,7 +11,7 @@ export default { name: "Create Engagement", description: "Create a new engagement for a contact. [See the documentation](https://developers.hubspot.com/docs/api/crm/engagements)", - version: "0.0.27", + version: "0.0.28", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/create-form/create-form.mjs b/components/hubspot/actions/create-form/create-form.mjs index 569368b82e0d9..14e553da842e7 100644 --- a/components/hubspot/actions/create-form/create-form.mjs +++ b/components/hubspot/actions/create-form/create-form.mjs @@ -10,7 +10,7 @@ export default { name: "Create Form", description: "Create a form in HubSpot. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/forms#post-%2Fmarketing%2Fv3%2Fforms%2F)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/create-landing-page/create-landing-page.mjs b/components/hubspot/actions/create-landing-page/create-landing-page.mjs index e83b642ec7804..76403a6d84c1f 100644 --- a/components/hubspot/actions/create-landing-page/create-landing-page.mjs +++ b/components/hubspot/actions/create-landing-page/create-landing-page.mjs @@ -7,7 +7,7 @@ export default { name: "Create Landing Page", description: "Create a landing page in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/pages#post-%2Fcms%2Fv3%2Fpages%2Flanding-pages)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/create-lead/create-lead.mjs b/components/hubspot/actions/create-lead/create-lead.mjs index cedf06d47fbac..7706141053a37 100644 --- a/components/hubspot/actions/create-lead/create-lead.mjs +++ b/components/hubspot/actions/create-lead/create-lead.mjs @@ -10,7 +10,7 @@ export default { name: "Create Lead", description: "Create a lead in Hubspot. [See the documentation](https://developers.hubspot.com/beta-docs/guides/api/crm/objects/leads#create-leads)", - version: "0.0.16", + version: "0.0.17", type: "action", props: { ...appProp.props, diff --git a/components/hubspot/actions/create-meeting/create-meeting.mjs b/components/hubspot/actions/create-meeting/create-meeting.mjs index 35b7c1313aee1..c7d35df3db4df 100644 --- a/components/hubspot/actions/create-meeting/create-meeting.mjs +++ b/components/hubspot/actions/create-meeting/create-meeting.mjs @@ -11,7 +11,7 @@ export default { name: "Create Meeting", description: "Creates a new meeting with optional associations to other objects. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/engagements/meetings#post-%2Fcrm%2Fv3%2Fobjects%2Fmeetings)", - version: "0.0.9", + version: "0.0.10", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/create-note/create-note.mjs b/components/hubspot/actions/create-note/create-note.mjs index e11f01bb7a568..4af134ccaa982 100644 --- a/components/hubspot/actions/create-note/create-note.mjs +++ b/components/hubspot/actions/create-note/create-note.mjs @@ -8,7 +8,7 @@ export default { name: "Create Note", description: "Create a new note. [See the documentation](https://developers.hubspot.com/docs/api/crm/engagements)", - version: "0.0.8", + version: "0.0.9", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/create-or-update-contact/create-or-update-contact.mjs b/components/hubspot/actions/create-or-update-contact/create-or-update-contact.mjs index 91ae9c32d4561..dd640ee850f0a 100644 --- a/components/hubspot/actions/create-or-update-contact/create-or-update-contact.mjs +++ b/components/hubspot/actions/create-or-update-contact/create-or-update-contact.mjs @@ -7,7 +7,7 @@ export default { name: "Create or Update Contact", description: "Create or update a contact in Hubspot. [See the documentation](https://developers.hubspot.com/docs/api/crm/contacts#endpoint?spec=POST-/crm/v3/objects/contacts)", - version: "0.0.26", + version: "0.0.27", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/create-page/create-page.mjs b/components/hubspot/actions/create-page/create-page.mjs index cd3ef2c43e819..97979fe74b733 100644 --- a/components/hubspot/actions/create-page/create-page.mjs +++ b/components/hubspot/actions/create-page/create-page.mjs @@ -7,7 +7,7 @@ export default { name: "Create Page", description: "Create a page in HubSpot. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/pages#post-%2Fcms%2Fv3%2Fpages%2Fsite-pages)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/create-task/create-task.mjs b/components/hubspot/actions/create-task/create-task.mjs index 6a6e2efd517a9..78ef82ef2e316 100644 --- a/components/hubspot/actions/create-task/create-task.mjs +++ b/components/hubspot/actions/create-task/create-task.mjs @@ -8,7 +8,7 @@ export default { name: "Create Task", description: "Create a new task. [See the documentation](https://developers.hubspot.com/docs/api/crm/engagements)", - version: "0.0.9", + version: "0.0.10", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/create-ticket/create-ticket.mjs b/components/hubspot/actions/create-ticket/create-ticket.mjs index 3ff83727a0888..51a654b145df2 100644 --- a/components/hubspot/actions/create-ticket/create-ticket.mjs +++ b/components/hubspot/actions/create-ticket/create-ticket.mjs @@ -7,7 +7,7 @@ export default { name: "Create Ticket", description: "Create a ticket in Hubspot. [See the documentation](https://developers.hubspot.com/docs/api/crm/tickets)", - version: "0.0.19", + version: "0.0.20", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/create-workflow/create-workflow.mjs b/components/hubspot/actions/create-workflow/create-workflow.mjs index f22d6df100426..b0181344bf3bb 100644 --- a/components/hubspot/actions/create-workflow/create-workflow.mjs +++ b/components/hubspot/actions/create-workflow/create-workflow.mjs @@ -5,7 +5,7 @@ export default { key: "hubspot-create-workflow", name: "Create a New Workflow", description: "Create a new workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/post-automation-v3-workflows)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/delete-workflow/delete-workflow.mjs b/components/hubspot/actions/delete-workflow/delete-workflow.mjs index b32d5b54e1feb..baef6ae4382a4 100644 --- a/components/hubspot/actions/delete-workflow/delete-workflow.mjs +++ b/components/hubspot/actions/delete-workflow/delete-workflow.mjs @@ -4,7 +4,7 @@ export default { key: "hubspot-delete-workflow", name: "Delete a Workflow", description: "Delete a workflow by ID. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/delete-automation-v3-workflows-workflowId)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/enroll-contact-into-workflow/enroll-contact-into-workflow.mjs b/components/hubspot/actions/enroll-contact-into-workflow/enroll-contact-into-workflow.mjs index 61e4221e01389..467ac29f73c21 100644 --- a/components/hubspot/actions/enroll-contact-into-workflow/enroll-contact-into-workflow.mjs +++ b/components/hubspot/actions/enroll-contact-into-workflow/enroll-contact-into-workflow.mjs @@ -5,7 +5,7 @@ export default { name: "Enroll Contact Into Workflow", description: "Add a contact to a workflow. Note: The Workflows API currently only supports contact-based workflows and is only available for Marketing Hub Enterprise accounts. [See the documentation](https://legacydocs.hubspot.com/docs/methods/workflows/add_contact)", - version: "0.0.24", + version: "0.0.25", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/get-associated-emails/get-associated-emails.mjs b/components/hubspot/actions/get-associated-emails/get-associated-emails.mjs index fe514323eedd1..f7f91c7637d72 100644 --- a/components/hubspot/actions/get-associated-emails/get-associated-emails.mjs +++ b/components/hubspot/actions/get-associated-emails/get-associated-emails.mjs @@ -6,7 +6,7 @@ export default { name: "Get Associated Emails", description: "Retrieves emails associated with a specific object (contact, company, or deal). [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/search)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/get-associated-meetings/get-associated-meetings.mjs b/components/hubspot/actions/get-associated-meetings/get-associated-meetings.mjs index dd7611765d77d..fd93495456d39 100644 --- a/components/hubspot/actions/get-associated-meetings/get-associated-meetings.mjs +++ b/components/hubspot/actions/get-associated-meetings/get-associated-meetings.mjs @@ -7,7 +7,7 @@ export default { name: "Get Associated Meetings", description: "Retrieves meetings associated with a specific object (contact, company, or deal) with optional time filtering. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/associations/association-details#get-%2Fcrm%2Fv4%2Fobjects%2F%7Bobjecttype%7D%2F%7Bobjectid%7D%2Fassociations%2F%7Btoobjecttype%7D)", - version: "0.0.9", + version: "0.0.10", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/get-company/get-company.mjs b/components/hubspot/actions/get-company/get-company.mjs index 7a101e85a3e54..2e1ceba4c3b2f 100644 --- a/components/hubspot/actions/get-company/get-company.mjs +++ b/components/hubspot/actions/get-company/get-company.mjs @@ -7,7 +7,7 @@ export default { name: "Get Company", description: "Gets a company. [See the documentation](https://developers.hubspot.com/docs/api/crm/companies#endpoint?spec=GET-/crm/v3/objects/companies/{companyId})", - version: "0.0.24", + version: "0.0.25", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/get-contact/get-contact.mjs b/components/hubspot/actions/get-contact/get-contact.mjs index 9b80bedfd78b8..8760ca3282570 100644 --- a/components/hubspot/actions/get-contact/get-contact.mjs +++ b/components/hubspot/actions/get-contact/get-contact.mjs @@ -7,7 +7,7 @@ export default { name: "Get Contact", description: "Gets a contact. [See the documentation](https://developers.hubspot.com/docs/api/crm/contacts#endpoint?spec=GET-/crm/v3/objects/contacts/{contactId})", - version: "0.0.24", + version: "0.0.25", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/get-deal/get-deal.mjs b/components/hubspot/actions/get-deal/get-deal.mjs index c0f627c16fed3..4eb46a8c92051 100644 --- a/components/hubspot/actions/get-deal/get-deal.mjs +++ b/components/hubspot/actions/get-deal/get-deal.mjs @@ -7,7 +7,7 @@ export default { name: "Get Deal", description: "Gets a deal. [See the documentation](https://developers.hubspot.com/docs/api/crm/deals#endpoint?spec=GET-/crm/v3/objects/deals/{dealId})", - version: "0.0.24", + version: "0.0.25", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/get-file-public-url/get-file-public-url.mjs b/components/hubspot/actions/get-file-public-url/get-file-public-url.mjs index 95ae571c9054e..08a53878fb311 100644 --- a/components/hubspot/actions/get-file-public-url/get-file-public-url.mjs +++ b/components/hubspot/actions/get-file-public-url/get-file-public-url.mjs @@ -5,7 +5,7 @@ export default { name: "Get File Public URL", description: "Get a publicly available URL for a file that was uploaded using a Hubspot form. [See the documentation](https://developers.hubspot.com/docs/api/files/files#endpoint?spec=GET-/files/v3/files/{fileId}/signed-url)", - version: "0.0.24", + version: "0.0.25", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/get-meeting/get-meeting.mjs b/components/hubspot/actions/get-meeting/get-meeting.mjs index 6471453cecb3d..44b5e98355c78 100644 --- a/components/hubspot/actions/get-meeting/get-meeting.mjs +++ b/components/hubspot/actions/get-meeting/get-meeting.mjs @@ -7,7 +7,7 @@ export default { name: "Get Meeting", description: "Retrieves a specific meeting by its ID. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/engagements/meetings#get-%2Fcrm%2Fv3%2Fobjects%2Fmeetings%2F%7Bmeetingid%7D)", - version: "0.0.9", + version: "0.0.10", type: "action", props: { ...common.props, diff --git a/components/hubspot/actions/get-subscription-preferences/get-subscription-preferences.mjs b/components/hubspot/actions/get-subscription-preferences/get-subscription-preferences.mjs index e55ebbe0d6500..6ba73dd37b9ce 100644 --- a/components/hubspot/actions/get-subscription-preferences/get-subscription-preferences.mjs +++ b/components/hubspot/actions/get-subscription-preferences/get-subscription-preferences.mjs @@ -5,7 +5,7 @@ export default { name: "Get Subscription Preferences", description: "Retrieves the subscription preferences for a contact. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/subscriptions#get-%2Fcommunication-preferences%2Fv4%2Fstatuses%2F%7Bsubscriberidstring%7D)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/list-blog-posts/list-blog-posts.mjs b/components/hubspot/actions/list-blog-posts/list-blog-posts.mjs index 80e31b5f1fb35..0363ca238090d 100644 --- a/components/hubspot/actions/list-blog-posts/list-blog-posts.mjs +++ b/components/hubspot/actions/list-blog-posts/list-blog-posts.mjs @@ -5,7 +5,7 @@ export default { name: "List Blog Posts", description: "Retrieves a list of blog posts. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/blogs/blog-posts)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/list-campaigns/list-campaigns.mjs b/components/hubspot/actions/list-campaigns/list-campaigns.mjs index 1a03d9db80125..48ada05a572cd 100644 --- a/components/hubspot/actions/list-campaigns/list-campaigns.mjs +++ b/components/hubspot/actions/list-campaigns/list-campaigns.mjs @@ -5,7 +5,7 @@ export default { name: "List Campaigns", description: "Retrieves a list of campaigns. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/campaigns#get-%2Fmarketing%2Fv3%2Fcampaigns%2F)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/list-forms/list-forms.mjs b/components/hubspot/actions/list-forms/list-forms.mjs index 78d9e646b1a00..fb6fc608dbbec 100644 --- a/components/hubspot/actions/list-forms/list-forms.mjs +++ b/components/hubspot/actions/list-forms/list-forms.mjs @@ -5,7 +5,7 @@ export default { name: "List Forms", description: "Retrieves a list of forms. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/forms#get-%2Fmarketing%2Fv3%2Fforms%2F)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/list-marketing-emails/list-marketing-emails.mjs b/components/hubspot/actions/list-marketing-emails/list-marketing-emails.mjs index 10fb4298a4a1f..9389dc2d90a5f 100644 --- a/components/hubspot/actions/list-marketing-emails/list-marketing-emails.mjs +++ b/components/hubspot/actions/list-marketing-emails/list-marketing-emails.mjs @@ -5,7 +5,7 @@ export default { name: "List Marketing Emails", description: "Retrieves a list of marketing emails. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/emails/marketing-emails#get-%2Fmarketing%2Fv3%2Femails%2F)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/list-marketing-events/list-marketing-events.mjs b/components/hubspot/actions/list-marketing-events/list-marketing-events.mjs index d077ab17b75ef..205e2882502bb 100644 --- a/components/hubspot/actions/list-marketing-events/list-marketing-events.mjs +++ b/components/hubspot/actions/list-marketing-events/list-marketing-events.mjs @@ -5,7 +5,7 @@ export default { name: "List Marketing Events", description: "Retrieves a list of marketing events. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/marketing-events#get-%2Fmarketing%2Fv3%2Fmarketing-events%2F)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/list-pages/list-pages.mjs b/components/hubspot/actions/list-pages/list-pages.mjs index 8d6d28e8a1fb3..6b59086558983 100644 --- a/components/hubspot/actions/list-pages/list-pages.mjs +++ b/components/hubspot/actions/list-pages/list-pages.mjs @@ -5,7 +5,7 @@ export default { name: "List Pages", description: "Retrieves a list of site pages. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/pages)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/list-templates/list-templates.mjs b/components/hubspot/actions/list-templates/list-templates.mjs index 69298e988459c..8ebb83f544bf2 100644 --- a/components/hubspot/actions/list-templates/list-templates.mjs +++ b/components/hubspot/actions/list-templates/list-templates.mjs @@ -5,7 +5,7 @@ export default { name: "List Templates", description: "Retrieves a list of templates. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/templates)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/retrieve-migrated-workflow-mappings/retrieve-migrated-workflow-mappings.mjs b/components/hubspot/actions/retrieve-migrated-workflow-mappings/retrieve-migrated-workflow-mappings.mjs index 488f9b09978d5..a9090c5949e1f 100644 --- a/components/hubspot/actions/retrieve-migrated-workflow-mappings/retrieve-migrated-workflow-mappings.mjs +++ b/components/hubspot/actions/retrieve-migrated-workflow-mappings/retrieve-migrated-workflow-mappings.mjs @@ -5,7 +5,7 @@ export default { key: "hubspot-retrieve-migrated-workflow-mappings", name: "Retrieve Migrated Workflow Mappings", description: "Retrieve the IDs of v3 workflows that have been migrated to the v4 API. [See the documentation](https://developers.hubspot.com/docs/api-reference/automation-automation-v4-v4/workflow-id-mappings/post-automation-v4-workflow-id-mappings-batch-read)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/retrieve-workflow-details/retrieve-workflow-details.mjs b/components/hubspot/actions/retrieve-workflow-details/retrieve-workflow-details.mjs index 74871bbc1bef7..3efca38d05813 100644 --- a/components/hubspot/actions/retrieve-workflow-details/retrieve-workflow-details.mjs +++ b/components/hubspot/actions/retrieve-workflow-details/retrieve-workflow-details.mjs @@ -4,7 +4,7 @@ export default { key: "hubspot-retrieve-workflow-details", name: "Retrieve Workflow Details", description: "Retrieve detailed information about a specific workflow. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/get-automation-v3-workflows-workflowId)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/retrieve-workflow-emails/retrieve-workflow-emails.mjs b/components/hubspot/actions/retrieve-workflow-emails/retrieve-workflow-emails.mjs index a888ef774b703..3b64b66bdd3ad 100644 --- a/components/hubspot/actions/retrieve-workflow-emails/retrieve-workflow-emails.mjs +++ b/components/hubspot/actions/retrieve-workflow-emails/retrieve-workflow-emails.mjs @@ -4,7 +4,7 @@ export default { key: "hubspot-retrieve-workflow-emails", name: "Retrieve Workflow Emails", description: "Retrieve emails sent by a workflow by ID. [See the documentation](https://developers.hubspot.com/docs/api-reference/automation-automation-v4-v4/email-campaigns/get-automation-v4-flows-email-campaigns)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/retrieve-workflows/retrieve-workflows.mjs b/components/hubspot/actions/retrieve-workflows/retrieve-workflows.mjs index 864d650f04ebf..60b3288ae3359 100644 --- a/components/hubspot/actions/retrieve-workflows/retrieve-workflows.mjs +++ b/components/hubspot/actions/retrieve-workflows/retrieve-workflows.mjs @@ -4,7 +4,7 @@ export default { key: "hubspot-retrieve-workflows", name: "Retrieve Workflows", description: "Retrieve a list of all workflows. [See the documentation](https://developers.hubspot.com/docs/api-reference/legacy/create-manage-workflows-v3/get-automation-v3-workflows)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/search-crm/search-crm.mjs b/components/hubspot/actions/search-crm/search-crm.mjs index 848361b10ced4..a879af3b5a1e1 100644 --- a/components/hubspot/actions/search-crm/search-crm.mjs +++ b/components/hubspot/actions/search-crm/search-crm.mjs @@ -18,7 +18,7 @@ export default { name: "Search CRM", description: "Search companies, contacts, deals, feedback submissions, products, tickets, line-items, quotes, leads, or custom objects. [See the documentation](https://developers.hubspot.com/docs/api/crm/search)", - version: "1.0.11", + version: "1.0.12", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/update-company/update-company.mjs b/components/hubspot/actions/update-company/update-company.mjs index b5574608e10f8..c4529673f06da 100644 --- a/components/hubspot/actions/update-company/update-company.mjs +++ b/components/hubspot/actions/update-company/update-company.mjs @@ -8,7 +8,7 @@ export default { name: "Update Company", description: "Update a company in Hubspot. [See the documentation](https://developers.hubspot.com/docs/api/crm/companies)", - version: "0.0.24", + version: "0.0.25", type: "action", methods: { ...common.methods, diff --git a/components/hubspot/actions/update-contact/update-contact.mjs b/components/hubspot/actions/update-contact/update-contact.mjs index 0668f7be8230e..1b86ff6cfc60d 100644 --- a/components/hubspot/actions/update-contact/update-contact.mjs +++ b/components/hubspot/actions/update-contact/update-contact.mjs @@ -8,7 +8,7 @@ export default { name: "Update Contact", description: "Update a contact in Hubspot. [See the documentation](https://developers.hubspot.com/docs/api/crm/contacts#endpoint?spec=POST-/crm/v3/objects/contacts)", - version: "0.0.25", + version: "0.0.26", type: "action", methods: { ...common.methods, diff --git a/components/hubspot/actions/update-custom-object/update-custom-object.mjs b/components/hubspot/actions/update-custom-object/update-custom-object.mjs index c639fb1a50c22..7e095640b91f5 100644 --- a/components/hubspot/actions/update-custom-object/update-custom-object.mjs +++ b/components/hubspot/actions/update-custom-object/update-custom-object.mjs @@ -7,7 +7,7 @@ export default { name: "Update Custom Object", description: "Update a custom object in Hubspot. [See the documentation](https://developers.hubspot.com/beta-docs/guides/api/crm/objects/custom-objects#update-existing-custom-objects)", - version: "1.0.10", + version: "1.0.11", type: "action", methods: { ...common.methods, diff --git a/components/hubspot/actions/update-deal/update-deal.mjs b/components/hubspot/actions/update-deal/update-deal.mjs index abc881b0b8685..59d42cdcce7a9 100644 --- a/components/hubspot/actions/update-deal/update-deal.mjs +++ b/components/hubspot/actions/update-deal/update-deal.mjs @@ -8,7 +8,7 @@ export default { name: "Update Deal", description: "Update a deal in Hubspot. [See the documentation](https://developers.hubspot.com/beta-docs/guides/api/crm/objects/deals#update-deals)", - version: "0.0.15", + version: "0.0.16", type: "action", methods: { ...common.methods, diff --git a/components/hubspot/actions/update-fields-on-the-form/update-fields-on-the-form.mjs b/components/hubspot/actions/update-fields-on-the-form/update-fields-on-the-form.mjs index 66ab37002ae6e..24719e1ce2b18 100644 --- a/components/hubspot/actions/update-fields-on-the-form/update-fields-on-the-form.mjs +++ b/components/hubspot/actions/update-fields-on-the-form/update-fields-on-the-form.mjs @@ -10,7 +10,7 @@ export default { name: "Update Fields on the Form", description: "Update some of the form definition components. [See the documentation](https://developers.hubspot.com/docs/reference/api/marketing/forms#patch-%2Fmarketing%2Fv3%2Fforms%2F%7Bformid%7D)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/update-landing-page/update-landing-page.mjs b/components/hubspot/actions/update-landing-page/update-landing-page.mjs index 40115c02b3916..60f871da9439e 100644 --- a/components/hubspot/actions/update-landing-page/update-landing-page.mjs +++ b/components/hubspot/actions/update-landing-page/update-landing-page.mjs @@ -7,7 +7,7 @@ export default { name: "Update Landing Page", description: "Update a landing page in HubSpot. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/pages#patch-%2Fcms%2Fv3%2Fpages%2Flanding-pages%2F%7Bobjectid%7D)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { hubspot, diff --git a/components/hubspot/actions/update-lead/update-lead.mjs b/components/hubspot/actions/update-lead/update-lead.mjs index ee6140e240ce4..93589c3246b23 100644 --- a/components/hubspot/actions/update-lead/update-lead.mjs +++ b/components/hubspot/actions/update-lead/update-lead.mjs @@ -8,7 +8,7 @@ export default { name: "Update Lead", description: "Update a lead in Hubspot. [See the documentation](https://developers.hubspot.com/beta-docs/guides/api/crm/objects/leads#update-leads)", - version: "0.0.16", + version: "0.0.17", type: "action", methods: { ...common.methods, diff --git a/components/hubspot/actions/update-page/update-page.mjs b/components/hubspot/actions/update-page/update-page.mjs index 6a1fccf41c120..0e4e6ae011f70 100644 --- a/components/hubspot/actions/update-page/update-page.mjs +++ b/components/hubspot/actions/update-page/update-page.mjs @@ -7,7 +7,7 @@ export default { name: "Update Page", description: "Update a page in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/cms/pages#patch-%2Fcms%2Fv3%2Fpages%2Fsite-pages%2F%7Bobjectid%7D)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { hubspot, diff --git a/components/hubspot/package.json b/components/hubspot/package.json index afa33b8390937..6b42b1bd7dcd5 100644 --- a/components/hubspot/package.json +++ b/components/hubspot/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/hubspot", - "version": "1.7.1", + "version": "1.7.2", "description": "Pipedream Hubspot Components", "main": "hubspot.app.mjs", "keywords": [ diff --git a/components/hubspot/sources/delete-blog-article/delete-blog-article.mjs b/components/hubspot/sources/delete-blog-article/delete-blog-article.mjs index 8fe616ad72754..96662f3330fcc 100644 --- a/components/hubspot/sources/delete-blog-article/delete-blog-article.mjs +++ b/components/hubspot/sources/delete-blog-article/delete-blog-article.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-delete-blog-article", name: "Deleted Blog Posts", description: "Emit new event for each deleted blog post.", - version: "0.0.30", + version: "0.0.31", dedupe: "unique", type: "source", methods: { diff --git a/components/hubspot/sources/new-company-property-change/new-company-property-change.mjs b/components/hubspot/sources/new-company-property-change/new-company-property-change.mjs index 948b9725a77c8..a9821b8e6e23d 100644 --- a/components/hubspot/sources/new-company-property-change/new-company-property-change.mjs +++ b/components/hubspot/sources/new-company-property-change/new-company-property-change.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-company-property-change", name: "New Company Property Change", description: "Emit new event when a specified property is provided or updated on a company. [See the documentation](https://developers.hubspot.com/docs/api/crm/companies)", - version: "0.0.23", + version: "0.0.24", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-contact-added-to-list/new-contact-added-to-list.mjs b/components/hubspot/sources/new-contact-added-to-list/new-contact-added-to-list.mjs index aa091409cbe75..c0ce9be904253 100644 --- a/components/hubspot/sources/new-contact-added-to-list/new-contact-added-to-list.mjs +++ b/components/hubspot/sources/new-contact-added-to-list/new-contact-added-to-list.mjs @@ -12,7 +12,7 @@ export default { name: "New Contact Added to List", description: "Emit new event when a contact is added to a HubSpot list. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/lists#get-%2Fcrm%2Fv3%2Flists%2F%7Blistid%7D%2Fmemberships%2Fjoin-order)", - version: "0.0.2", + version: "0.0.3", type: "source", dedupe: "unique", props: { diff --git a/components/hubspot/sources/new-contact-property-change/new-contact-property-change.mjs b/components/hubspot/sources/new-contact-property-change/new-contact-property-change.mjs index 0ae07d5095d5f..e33181d864626 100644 --- a/components/hubspot/sources/new-contact-property-change/new-contact-property-change.mjs +++ b/components/hubspot/sources/new-contact-property-change/new-contact-property-change.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-contact-property-change", name: "New Contact Property Change", description: "Emit new event when a specified property is provided or updated on a contact. [See the documentation](https://developers.hubspot.com/docs/api/crm/contacts)", - version: "0.0.25", + version: "0.0.26", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-custom-object-property-change/new-custom-object-property-change.mjs b/components/hubspot/sources/new-custom-object-property-change/new-custom-object-property-change.mjs index 69c4653df924d..b77e72356d6e5 100644 --- a/components/hubspot/sources/new-custom-object-property-change/new-custom-object-property-change.mjs +++ b/components/hubspot/sources/new-custom-object-property-change/new-custom-object-property-change.mjs @@ -7,7 +7,7 @@ export default { name: "New Custom Object Property Change", description: "Emit new event when a specified property is provided or updated on a custom object.", - version: "0.0.15", + version: "0.0.16", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-deal-in-stage/new-deal-in-stage.mjs b/components/hubspot/sources/new-deal-in-stage/new-deal-in-stage.mjs index ca55e15821489..276172657d396 100644 --- a/components/hubspot/sources/new-deal-in-stage/new-deal-in-stage.mjs +++ b/components/hubspot/sources/new-deal-in-stage/new-deal-in-stage.mjs @@ -11,7 +11,7 @@ export default { key: "hubspot-new-deal-in-stage", name: "New Deal In Stage", description: "Emit new event for each new deal in a stage.", - version: "0.0.36", + version: "0.0.37", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-deal-property-change/new-deal-property-change.mjs b/components/hubspot/sources/new-deal-property-change/new-deal-property-change.mjs index 36c2b6556a28f..678a83a798e6c 100644 --- a/components/hubspot/sources/new-deal-property-change/new-deal-property-change.mjs +++ b/components/hubspot/sources/new-deal-property-change/new-deal-property-change.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-deal-property-change", name: "New Deal Property Change", description: "Emit new event when a specified property is provided or updated on a deal. [See the documentation](https://developers.hubspot.com/docs/api/crm/deals)", - version: "0.0.24", + version: "0.0.25", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-email-event/new-email-event.mjs b/components/hubspot/sources/new-email-event/new-email-event.mjs index d7d852e58f6a2..38fd9acc1d684 100644 --- a/components/hubspot/sources/new-email-event/new-email-event.mjs +++ b/components/hubspot/sources/new-email-event/new-email-event.mjs @@ -8,7 +8,7 @@ export default { key: "hubspot-new-email-event", name: "New Email Event", description: "Emit new event for each new Hubspot email event.", - version: "0.0.33", + version: "0.0.34", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-email-subscriptions-timeline/new-email-subscriptions-timeline.mjs b/components/hubspot/sources/new-email-subscriptions-timeline/new-email-subscriptions-timeline.mjs index bafd36389eb8b..6bad1f0fbb0e9 100644 --- a/components/hubspot/sources/new-email-subscriptions-timeline/new-email-subscriptions-timeline.mjs +++ b/components/hubspot/sources/new-email-subscriptions-timeline/new-email-subscriptions-timeline.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-new-email-subscriptions-timeline", name: "New Email Subscriptions Timeline", description: "Emit new event when a new email timeline subscription is added for the portal.", - version: "0.0.30", + version: "0.0.31", dedupe: "unique", type: "source", methods: { diff --git a/components/hubspot/sources/new-engagement/new-engagement.mjs b/components/hubspot/sources/new-engagement/new-engagement.mjs index 8b5c5cc02106e..13ae395bb4035 100644 --- a/components/hubspot/sources/new-engagement/new-engagement.mjs +++ b/components/hubspot/sources/new-engagement/new-engagement.mjs @@ -8,7 +8,7 @@ export default { key: "hubspot-new-engagement", name: "New Engagement", description: "Emit new event for each new engagement created. This action returns a maximum of 5000 records at a time, make sure you set a correct time range so you don't miss any events", - version: "0.0.35", + version: "0.0.36", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-event/new-event.mjs b/components/hubspot/sources/new-event/new-event.mjs index 86697c4a8c901..5a842d4b20456 100644 --- a/components/hubspot/sources/new-event/new-event.mjs +++ b/components/hubspot/sources/new-event/new-event.mjs @@ -8,7 +8,7 @@ export default { key: "hubspot-new-event", name: "New Events", description: "Emit new event for each new Hubspot event. Note: Only available for Marketing Hub Enterprise, Sales Hub Enterprise, Service Hub Enterprise, or CMS Hub Enterprise accounts", - version: "0.0.34", + version: "0.0.35", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-form-submission/new-form-submission.mjs b/components/hubspot/sources/new-form-submission/new-form-submission.mjs index 50c028593ccd3..74258487ca3ca 100644 --- a/components/hubspot/sources/new-form-submission/new-form-submission.mjs +++ b/components/hubspot/sources/new-form-submission/new-form-submission.mjs @@ -6,7 +6,7 @@ export default { key: "hubspot-new-form-submission", name: "New Form Submission", description: "Emit new event for each new submission of a form.", - version: "0.0.35", + version: "0.0.36", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-note/new-note.mjs b/components/hubspot/sources/new-note/new-note.mjs index 6f1be782e40d3..fe022c38c0b85 100644 --- a/components/hubspot/sources/new-note/new-note.mjs +++ b/components/hubspot/sources/new-note/new-note.mjs @@ -8,7 +8,7 @@ export default { key: "hubspot-new-note", name: "New Note Created", description: "Emit new event for each new note created. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/engagements/notes#get-%2Fcrm%2Fv3%2Fobjects%2Fnotes)", - version: "1.0.11", + version: "1.0.12", type: "source", dedupe: "unique", methods: { diff --git a/components/hubspot/sources/new-or-updated-blog-article/new-or-updated-blog-article.mjs b/components/hubspot/sources/new-or-updated-blog-article/new-or-updated-blog-article.mjs index 6ea5be3ea2915..398b58348d268 100644 --- a/components/hubspot/sources/new-or-updated-blog-article/new-or-updated-blog-article.mjs +++ b/components/hubspot/sources/new-or-updated-blog-article/new-or-updated-blog-article.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-or-updated-blog-article", name: "New or Updated Blog Post", description: "Emit new event for each new or updated blog post in Hubspot.", - version: "0.0.17", + version: "0.0.18", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-company/new-or-updated-company.mjs b/components/hubspot/sources/new-or-updated-company/new-or-updated-company.mjs index 5a8e4ab788bd2..9f35ccf875930 100644 --- a/components/hubspot/sources/new-or-updated-company/new-or-updated-company.mjs +++ b/components/hubspot/sources/new-or-updated-company/new-or-updated-company.mjs @@ -10,7 +10,7 @@ export default { key: "hubspot-new-or-updated-company", name: "New or Updated Company", description: "Emit new event for each new or updated company in Hubspot.", - version: "0.0.17", + version: "0.0.18", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-contact/new-or-updated-contact.mjs b/components/hubspot/sources/new-or-updated-contact/new-or-updated-contact.mjs index 417e98705ca75..02a7b864267c4 100644 --- a/components/hubspot/sources/new-or-updated-contact/new-or-updated-contact.mjs +++ b/components/hubspot/sources/new-or-updated-contact/new-or-updated-contact.mjs @@ -10,7 +10,7 @@ export default { key: "hubspot-new-or-updated-contact", name: "New or Updated Contact", description: "Emit new event for each new or updated contact in Hubspot.", - version: "0.0.18", + version: "0.0.19", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-crm-object/new-or-updated-crm-object.mjs b/components/hubspot/sources/new-or-updated-crm-object/new-or-updated-crm-object.mjs index 92362415b042c..af790e96a6b8a 100644 --- a/components/hubspot/sources/new-or-updated-crm-object/new-or-updated-crm-object.mjs +++ b/components/hubspot/sources/new-or-updated-crm-object/new-or-updated-crm-object.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-or-updated-crm-object", name: "New or Updated CRM Object", description: "Emit new event each time a CRM Object of the specified object type is updated.", - version: "0.0.30", + version: "0.0.31", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-custom-object/new-or-updated-custom-object.mjs b/components/hubspot/sources/new-or-updated-custom-object/new-or-updated-custom-object.mjs index 9942cbcf35bb2..36270b6ecfaa7 100644 --- a/components/hubspot/sources/new-or-updated-custom-object/new-or-updated-custom-object.mjs +++ b/components/hubspot/sources/new-or-updated-custom-object/new-or-updated-custom-object.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-new-or-updated-custom-object", name: "New or Updated Custom Object", description: "Emit new event each time a Custom Object of the specified schema is updated.", - version: "0.0.19", + version: "0.0.20", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-deal/new-or-updated-deal.mjs b/components/hubspot/sources/new-or-updated-deal/new-or-updated-deal.mjs index 91191ce9d214f..547cf1e42f576 100644 --- a/components/hubspot/sources/new-or-updated-deal/new-or-updated-deal.mjs +++ b/components/hubspot/sources/new-or-updated-deal/new-or-updated-deal.mjs @@ -10,7 +10,7 @@ export default { key: "hubspot-new-or-updated-deal", name: "New or Updated Deal", description: "Emit new event for each new or updated deal in Hubspot", - version: "0.0.17", + version: "0.0.18", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-line-item/new-or-updated-line-item.mjs b/components/hubspot/sources/new-or-updated-line-item/new-or-updated-line-item.mjs index 298c7d57af3c9..dbf83a424ba90 100644 --- a/components/hubspot/sources/new-or-updated-line-item/new-or-updated-line-item.mjs +++ b/components/hubspot/sources/new-or-updated-line-item/new-or-updated-line-item.mjs @@ -10,7 +10,7 @@ export default { key: "hubspot-new-or-updated-line-item", name: "New or Updated Line Item", description: "Emit new event for each new line item added or updated in Hubspot.", - version: "0.0.17", + version: "0.0.18", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-or-updated-product/new-or-updated-product.mjs b/components/hubspot/sources/new-or-updated-product/new-or-updated-product.mjs index 1f7924d79c4e9..765df936d7001 100644 --- a/components/hubspot/sources/new-or-updated-product/new-or-updated-product.mjs +++ b/components/hubspot/sources/new-or-updated-product/new-or-updated-product.mjs @@ -10,7 +10,7 @@ export default { key: "hubspot-new-or-updated-product", name: "New or Updated Product", description: "Emit new event for each new or updated product in Hubspot.", - version: "0.0.17", + version: "0.0.18", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-social-media-message/new-social-media-message.mjs b/components/hubspot/sources/new-social-media-message/new-social-media-message.mjs index 95b2b7298c96a..5bd50a3ca239d 100644 --- a/components/hubspot/sources/new-social-media-message/new-social-media-message.mjs +++ b/components/hubspot/sources/new-social-media-message/new-social-media-message.mjs @@ -7,7 +7,7 @@ export default { name: "New Social Media Message", description: "Emit new event when a message is posted from HubSpot to the specified social media channel. Note: Only available for Marketing Hub Enterprise accounts", - version: "0.0.30", + version: "0.0.31", type: "source", dedupe: "unique", props: { diff --git a/components/hubspot/sources/new-task/new-task.mjs b/components/hubspot/sources/new-task/new-task.mjs index 6b3f432059a75..71dff7d356d1e 100644 --- a/components/hubspot/sources/new-task/new-task.mjs +++ b/components/hubspot/sources/new-task/new-task.mjs @@ -9,7 +9,7 @@ export default { name: "New Task Created", description: "Emit new event for each new task created. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/engagements/tasks#get-%2Fcrm%2Fv3%2Fobjects%2Ftasks)", - version: "1.0.11", + version: "1.0.12", type: "source", dedupe: "unique", methods: { diff --git a/components/hubspot/sources/new-ticket-property-change/new-ticket-property-change.mjs b/components/hubspot/sources/new-ticket-property-change/new-ticket-property-change.mjs index ee6e1c8598b9a..517ccfcdb5904 100644 --- a/components/hubspot/sources/new-ticket-property-change/new-ticket-property-change.mjs +++ b/components/hubspot/sources/new-ticket-property-change/new-ticket-property-change.mjs @@ -8,7 +8,7 @@ export default { name: "New Ticket Property Change", description: "Emit new event when a specified property is provided or updated on a ticket. [See the documentation](https://developers.hubspot.com/docs/api/crm/tickets)", - version: "0.0.24", + version: "0.0.25", dedupe: "unique", type: "source", props: { diff --git a/components/hubspot/sources/new-ticket/new-ticket.mjs b/components/hubspot/sources/new-ticket/new-ticket.mjs index 3dfdcae0fc3a3..09da36ffcfd68 100644 --- a/components/hubspot/sources/new-ticket/new-ticket.mjs +++ b/components/hubspot/sources/new-ticket/new-ticket.mjs @@ -10,7 +10,7 @@ export default { key: "hubspot-new-ticket", name: "New Ticket", description: "Emit new event for each new ticket created.", - version: "0.0.30", + version: "0.0.31", dedupe: "unique", type: "source", props: { From 87d0ed6c2988dfcc51a2ecbe599954c659fef6c1 Mon Sep 17 00:00:00 2001 From: Luan Cazarine Date: Thu, 11 Sep 2025 16:10:12 -0300 Subject: [PATCH 10/11] Bump version of HubSpot Batch Upsert Companies action to 0.0.7 --- .../actions/batch-upsert-companies/batch-upsert-companies.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/hubspot/actions/batch-upsert-companies/batch-upsert-companies.mjs b/components/hubspot/actions/batch-upsert-companies/batch-upsert-companies.mjs index cd45688bbb19a..ced2463127e09 100644 --- a/components/hubspot/actions/batch-upsert-companies/batch-upsert-companies.mjs +++ b/components/hubspot/actions/batch-upsert-companies/batch-upsert-companies.mjs @@ -7,7 +7,7 @@ export default { key: "hubspot-batch-upsert-companies", name: "Batch Upsert Companies", description: "Upsert a batch of companies in Hubspot. [See the documentation](https://developers.hubspot.com/docs/reference/api/crm/objects/companies#post-%2Fcrm%2Fv3%2Fobjects%2Fcompanies%2Fbatch%2Fupsert)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { hubspot, From 49207c9576cea9d000f210ec4d197a44145a9759 Mon Sep 17 00:00:00 2001 From: Luan Cazarine Date: Thu, 11 Sep 2025 16:20:17 -0300 Subject: [PATCH 11/11] Bump version of @pipedream/hubspot package to 1.7.3 --- components/hubspot/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/hubspot/package.json b/components/hubspot/package.json index 6b42b1bd7dcd5..d48ffa29dac04 100644 --- a/components/hubspot/package.json +++ b/components/hubspot/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/hubspot", - "version": "1.7.2", + "version": "1.7.3", "description": "Pipedream Hubspot Components", "main": "hubspot.app.mjs", "keywords": [