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 @@ -41,6 +41,10 @@ export interface NodeCredentials {
forumScout?: {
apiKey: string
}
/** Clearbit API credentials (for person and company enrichment) */
clearbit?: {
apiKey: string
}
/** DataForSEO API credentials */
dataForSeo?: {
/** Base64 encoded login:password */
Expand Down
25 changes: 25 additions & 0 deletions packages/nodes/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,17 @@ export {
readOutputSchema,
updateInputSchema,
updateOutputSchema,
// Clearbit
clearbitCredential,
clearbitEnrichPersonNode,
ClearbitEnrichPersonInputSchema,
ClearbitEnrichPersonOutputSchema,
clearbitEnrichCompanyNode,
ClearbitEnrichCompanyInputSchema,
ClearbitEnrichCompanyOutputSchema,
clearbitCompanyAutocompleteNode,
ClearbitCompanyAutocompleteInputSchema,
ClearbitCompanyAutocompleteOutputSchema,
} from './integrations/index.js'

export type {
Expand Down Expand Up @@ -276,6 +287,13 @@ export type {
ReadOutput,
UpdateInput,
UpdateOutput,
// Clearbit
ClearbitEnrichPersonInput,
ClearbitEnrichPersonOutput,
ClearbitEnrichCompanyInput,
ClearbitEnrichCompanyOutput,
ClearbitCompanyAutocompleteInput,
ClearbitCompanyAutocompleteOutput,
} from './integrations/index.js'

// AI nodes
Expand Down Expand Up @@ -348,6 +366,9 @@ import {
googleSheetsClearNode,
googleSheetsReadNode,
googleSheetsUpdateNode,
clearbitEnrichPersonNode as clearbitEnrichPersonNode_,
clearbitEnrichCompanyNode as clearbitEnrichCompanyNode_,
clearbitCompanyAutocompleteNode as clearbitCompanyAutocompleteNode_,
} from './integrations/index.js'
import {
socialKeywordGeneratorNode,
Expand Down Expand Up @@ -407,6 +428,10 @@ export const builtInNodes = [
googleSheetsClearNode,
googleSheetsReadNode,
googleSheetsUpdateNode,
// Clearbit
clearbitEnrichPersonNode_,
clearbitEnrichCompanyNode_,
clearbitCompanyAutocompleteNode_,
// AI
socialKeywordGeneratorNode,
draftEmailsNode,
Expand Down
Loading