Files
2026-07-13 13:34:48 +08:00

70 lines
2.6 KiB
TypeScript

import { z, EventDefinition } from '@botpress/sdk'
const contactCreated = {
title: 'Contact Created',
description: 'A new contact has been created in HubSpot.',
schema: z.object({
contactId: z.string().title('Contact ID').describe('The ID of the created contact'),
name: z.string().optional().title('Name').describe('The name of the created contact'),
email: z.string().optional().title('Email').describe('The email of the created contact'),
phoneNumber: z.string().optional().title('Phone Number').describe('The phone number of the created contact'),
}),
}
const contactDeleted = {
title: 'Contact Deleted',
description: 'A contact has been deleted in HubSpot.',
schema: z.object({
contactId: z.string().title('Contact ID').describe('The ID of the deleted contact'),
}),
}
const companyCreated = {
title: 'Company Created',
description: 'A new company has been created in HubSpot.',
schema: z.object({
companyId: z.string().title('Company ID').describe('The ID of the created company'),
name: z.string().optional().title('Name').describe('The name of the created company'),
domain: z.string().optional().title('Domain').describe('The domain of the created company'),
phoneNumber: z.string().optional().title('Phone Number').describe('The phone number of the created company'),
}),
}
const companyDeleted = {
title: 'Company Deleted',
description: 'A company has been deleted in HubSpot.',
schema: z.object({
companyId: z.string().title('Company ID').describe('The ID of the deleted company'),
}),
}
const ticketCreated = {
title: 'Ticket Created',
description: 'A new ticket has been created in HubSpot.',
schema: z.object({
ticketId: z.string().title('Ticket ID').describe('The ID of the created ticket'),
subject: z.string().optional().title('Subject').describe('The subject of the created ticket'),
priority: z.string().optional().title('Priority').describe('The priority of the created ticket'),
category: z.string().optional().title('Category').describe('The category of the created ticket'),
pipeline: z.string().title('Pipeline').describe('The pipeline of the created ticket'),
stage: z.string().title('Stage').describe('The stage of the created ticket'),
}),
}
const ticketDeleted = {
title: 'Ticket Deleted',
description: 'A ticket has been deleted in HubSpot.',
schema: z.object({
ticketId: z.string().title('Ticket ID').describe('The ID of the deleted ticket'),
}),
}
export const events = {
contactCreated,
contactDeleted,
companyCreated,
companyDeleted,
ticketCreated,
ticketDeleted,
} as const satisfies Record<string, EventDefinition>