/** * HubSpot Node - Version 1 * Discriminator: resource=company, operation=getRecentlyCreated */ interface Credentials { hubspotApi: CredentialReference; hubspotAppToken: CredentialReference; hubspotOAuth2Api: CredentialReference; } /** Get recently created companies */ export type HubspotV1CompanyGetRecentlyCreatedParams = { resource: 'company'; operation: 'getRecentlyCreated'; authentication?: 'apiKey' | 'appToken' | 'oAuth2' | Expression; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 100 */ limit?: number | Expression; }; export type HubspotV1CompanyGetRecentlyCreatedNode = { type: 'n8n-nodes-base.hubspot'; version: 1; credentials?: Credentials; config: NodeConfig; };