mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
add missing file
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user