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
5 changes: 4 additions & 1 deletion bots/hit-looper/bot.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ export default new sdk.BotDefinition({
},
})
.addPlugin(hitl, {
configuration: { flowOnHitlStopped: false },
configuration: {
useHumanAgentInfo: false,
flowOnHitlStopped: false,
},
interfaces: {
hitl: {
id: zendesk.id,
Expand Down
2 changes: 1 addition & 1 deletion integrations/sendgrid/integration.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
export default new IntegrationDefinition({
name: 'sendgrid',
title: 'SendGrid',
version: '0.1.6',
version: '0.1.7',
readme: 'hub.md',
icon: 'icon.svg',
description: 'Send markdown rich-text emails using the SendGrid email service.',
Expand Down
4 changes: 2 additions & 2 deletions integrations/sendgrid/src/actions/send-mail.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ export const sendMail: bp.IntegrationProps['actions']['sendMail'] = async ({ ctx
personalizations: [
{
to: input.to,
cc: input.cc,
bcc: input.bcc,
},
],
from: input.from,
cc: input.cc,
bcc: input.bcc,
replyTo: input.replyTo,
subject: input.subject,
html: markdownToHtml(input.body),
Expand Down
Loading