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
}
/** Hunter.io API credentials */
hunter?: {
apiKey: string
}
}

/**
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,
// Hunter
hunterDomainSearchNode,
HunterDomainSearchInputSchema,
HunterDomainSearchOutputSchema,
hunterEmailFinderNode,
HunterEmailFinderInputSchema,
HunterEmailFinderOutputSchema,
hunterEmailVerifierNode,
HunterEmailVerifierInputSchema,
HunterEmailVerifierOutputSchema,
hunterCredential,
} from './integrations/index.js'

export type {
Expand Down Expand Up @@ -276,6 +287,13 @@ export type {
ReadOutput,
UpdateInput,
UpdateOutput,
// Hunter
HunterDomainSearchInput,
HunterDomainSearchOutput,
HunterEmailFinderInput,
HunterEmailFinderOutput,
HunterEmailVerifierInput,
HunterEmailVerifierOutput,
} from './integrations/index.js'

// AI nodes
Expand Down Expand Up @@ -348,6 +366,9 @@ import {
googleSheetsClearNode,
googleSheetsReadNode,
googleSheetsUpdateNode,
hunterDomainSearchNode as hunterDomainSearchNode_,
hunterEmailFinderNode as hunterEmailFinderNode_,
hunterEmailVerifierNode as hunterEmailVerifierNode_,
} from './integrations/index.js'
import {
socialKeywordGeneratorNode,
Expand Down Expand Up @@ -407,6 +428,10 @@ export const builtInNodes = [
googleSheetsClearNode,
googleSheetsReadNode,
googleSheetsUpdateNode,
// Hunter
hunterDomainSearchNode_,
hunterEmailFinderNode_,
hunterEmailVerifierNode_,
// AI
socialKeywordGeneratorNode,
draftEmailsNode,
Expand Down
Loading