Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions integrations/hubspot/definitions/actions/contact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const contactSchema = z.object({

const searchContact: ActionDefinition = {
title: 'Search Contact',
description: 'Search for a contact in Hubspot',
description: 'Search for a contact in HubSpot',
input: {
schema: z.object({
email: z.string().optional().title('Email').describe('The email of the contact to search for'),
Expand All @@ -27,7 +27,7 @@ const searchContact: ActionDefinition = {

const createContact: ActionDefinition = {
title: 'Create Contact',
description: 'Create a contact in Hubspot',
description: 'Create a contact in HubSpot',
input: {
schema: z.object({
email: z.string().optional().title('Email').describe('The email of the contact'),
Expand Down Expand Up @@ -76,7 +76,7 @@ const createContact: ActionDefinition = {

const getContact: ActionDefinition = {
title: 'Get Contact',
description: 'Get a contact from Hubspot',
description: 'Get a contact from HubSpot',
input: {
schema: z.object({
contactIdOrEmail: z.string().title('Contact ID or Email').describe('The ID or email of the contact to get'),
Expand All @@ -91,7 +91,7 @@ const getContact: ActionDefinition = {

const updateContact: ActionDefinition = {
title: 'Update Contact',
description: 'Update a contact in Hubspot',
description: 'Update a contact in HubSpot',
input: {
schema: z.object({
contactIdOrEmail: z.string().title('Contact ID or Email').describe('The ID or email of the contact to update'),
Expand Down Expand Up @@ -125,7 +125,7 @@ const updateContact: ActionDefinition = {

const deleteContact: ActionDefinition = {
title: 'Delete Contact',
description: 'Delete a contact in Hubspot',
description: 'Delete a contact in HubSpot',
input: {
schema: z.object({
contactId: z.string().title('Contact ID').describe('The ID of the contact to delete'),
Expand All @@ -138,7 +138,7 @@ const deleteContact: ActionDefinition = {

const listContacts: ActionDefinition = {
title: 'List Contacts',
description: 'List contacts in Hubspot',
description: 'List contacts in HubSpot',
input: {
schema: z.object({
meta: z
Expand Down
2 changes: 1 addition & 1 deletion integrations/hubspot/definitions/actions/ticket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const ticketSchema = z.object({

const createTicket: ActionDefinition = {
title: 'Create Ticket',
description: 'Create a ticket in Hubspot',
description: 'Create a ticket in HubSpot',
input: {
schema: z.object({
subject: z.string().title('Ticket name').describe('Short summary of ticket'),
Expand Down
2 changes: 1 addition & 1 deletion integrations/hubspot/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default new IntegrationDefinition({
name: 'hubspot',
title: 'HubSpot',
description: 'Manage contacts, tickets and more from your chatbot.',
version: '6.0.4',
version: '6.0.5',
readme: 'hub.md',
icon: 'icon.svg',
configuration: {
Expand Down
Loading