UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

76 lines (72 loc) 2.43 kB
/** * HubSpot Node - Version 1 * Discriminator: resource=deal, operation=create */ interface Credentials { hubspotApi: CredentialReference; hubspotAppToken: CredentialReference; hubspotOAuth2Api: CredentialReference; } /** Create a company */ export type HubspotV1DealCreateParams = { resource: 'deal'; operation: 'create'; authentication?: 'apiKey' | 'appToken' | 'oAuth2' | Expression<string>; /** * The dealstage is required when creating a deal. See the CRM Pipelines API for details on managing pipelines and stages. Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;. */ stage?: string | Expression<string>; /** * Additional Fields * @default {} */ additionalFields?: { /** Amount */ amount?: string | Expression<string> | PlaceholderValue; /** Choose from the list, or specify IDs using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt; * @default [] */ associatedCompany?: string[]; /** Choose from the list, or specify IDs using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt; * @default [] */ associatedVids?: string[]; /** Close Date */ closeDate?: string | Expression<string>; /** Custom Properties * @default {} */ customPropertiesUi?: { /** Custom Property */ customPropertiesValues?: Array<{ /** Name of the property. Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;. */ property?: string | Expression<string>; /** Value of the property */ value?: string | Expression<string> | PlaceholderValue; }>; }; /** Deal Description */ description?: string | Expression<string> | PlaceholderValue; /** Deal Name */ dealName?: string | Expression<string> | PlaceholderValue; /** Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt; */ dealType?: string | Expression<string>; /** Pipeline */ pipeline?: string | Expression<string> | PlaceholderValue; }; }; export type HubspotV1DealCreateNode = { type: 'n8n-nodes-base.hubspot'; version: 1; credentials?: Credentials; config: NodeConfig<HubspotV1DealCreateParams>; };