UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

76 lines (72 loc) 2.48 kB
/** * HubSpot Node - Version 2.1 * Discriminator: resource=deal, operation=update */ interface Credentials { hubspotApi: CredentialReference; hubspotAppToken: CredentialReference; hubspotOAuth2Api: CredentialReference; } /** Update a company */ export type HubspotV21DealUpdateParams = { resource: 'deal'; operation: 'update'; authentication?: 'apiKey' | 'appToken' | 'oAuth2' | Expression<string>; /** * Deal to Update * @default {"mode":"list","value":""} */ dealId?: { __rl: true; mode: 'list' | 'id'; value: string; cachedResultName?: string }; /** * Update Fields * @default {} */ updateFields?: { /** Amount */ amount?: string | Expression<string> | PlaceholderValue; /** When using expressions, the time should be specified in YYYY-MM-DD hh-mm-ss format */ 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; /** The HubSpot user to be assigned to the deal * @default {"mode":"list","value":""} */ dealOwner?: { __rl: true; mode: 'list' | 'id'; value: string; cachedResultName?: string }; /** The deal stage 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>; /** 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 HubspotV21DealUpdateNode = { type: 'n8n-nodes-base.hubspot'; version: 2.1; credentials?: Credentials; config: NodeConfig<HubspotV21DealUpdateParams>; };