mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 12:44:07 -08:00
add missing file
This commit is contained in:
parent
2c3e32e358
commit
ddb1f5a22d
|
@ -1880,6 +1880,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) {
|
||||
|
@ -1936,6 +1942,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