/** * Clearbit Node - Version 1 * Discriminator: resource=company, operation=enrich */ interface Credentials { clearbitApi: CredentialReference; } /** The Company API allows you to look up a company by their domain */ export type ClearbitV1CompanyEnrichParams = { resource: 'company'; operation: 'enrich'; /** * The domain to look up */ domain?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** The name of the company */ companyName?: string | Expression | PlaceholderValue; /** The Facebook URL for the company */ facebook?: string | Expression | PlaceholderValue; /** The LinkedIn URL for the company */ linkedin?: string | Expression | PlaceholderValue; /** The Twitter handle for the company */ twitter?: string | Expression | PlaceholderValue; }; }; export type ClearbitV1CompanyEnrichNode = { type: 'n8n-nodes-base.clearbit'; version: 1; credentials?: Credentials; config: NodeConfig; };