Skip to content
Open
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
4 changes: 4 additions & 0 deletions packages/core/src/types/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ export interface NodeCredentials {
refreshToken: string
expiresAt: number
}
/** SendGrid API credentials */
sendgrid?: {
apiKey: string
}
}

/**
Expand Down
26 changes: 26 additions & 0 deletions packages/nodes/src/integrations/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -275,3 +275,29 @@ export {
type SlackSearchMatch,
slackCredential,
} from './slack/index.js'

// SendGrid integrations
export {
sendgridSendEmailNode,
SendgridSendEmailInputSchema,
SendgridSendEmailOutputSchema,
type SendgridSendEmailInput,
type SendgridSendEmailOutput,
sendgridCreateContactNode,
SendgridCreateContactInputSchema,
SendgridCreateContactOutputSchema,
type SendgridCreateContactInput,
type SendgridCreateContactOutput,
sendgridGetContactsNode,
SendgridGetContactsInputSchema,
SendgridGetContactsOutputSchema,
type SendgridGetContactsInput,
type SendgridGetContactsOutput,
SendgridContentSchema,
SendgridAttachmentSchema,
SendgridContactSchema,
type SendgridContent,
type SendgridAttachment,
type SendgridContact,
sendgridCredential,
} from './sendgrid/index.js'
Loading