mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
🔀 Merge branch 'master' of https://github.com/TySmith17/n8n into TySmith17-master
This commit is contained in:
commit
61a29ef25e
|
@ -170,6 +170,12 @@ export const dealFields = [
|
|||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
displayName: 'Deal Description',
|
||||
name: 'description',
|
||||
type: 'string',
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Deal Name',
|
||||
name: 'dealName',
|
||||
|
|
|
@ -1924,6 +1924,12 @@ export class Hubspot implements INodeType {
|
|||
value: additionalFields.pipeline as string,
|
||||
});
|
||||
}
|
||||
if (additionalFields.description) {
|
||||
body.properties.push({
|
||||
name: 'description',
|
||||
value: additionalFields.description as string,
|
||||
});
|
||||
}
|
||||
if (additionalFields.customPropertiesUi) {
|
||||
const customProperties = (additionalFields.customPropertiesUi as IDataObject).customPropertiesValues as IDataObject[];
|
||||
if (customProperties) {
|
||||
|
@ -1980,6 +1986,12 @@ export class Hubspot implements INodeType {
|
|||
value: updateFields.pipeline as string,
|
||||
});
|
||||
}
|
||||
if (updateFields.description) {
|
||||
body.properties.push({
|
||||
name: 'description',
|
||||
value: updateFields.description as string,
|
||||
});
|
||||
}
|
||||
if (updateFields.customPropertiesUi) {
|
||||
const customProperties = (updateFields.customPropertiesUi as IDataObject).customPropertiesValues as IDataObject[];
|
||||
if (customProperties) {
|
||||
|
|
Loading…
Reference in a new issue