mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
add missing file
This commit is contained in:
@@ -1880,6 +1880,12 @@ export class Hubspot implements INodeType {
|
|||||||
value: additionalFields.pipeline as string,
|
value: additionalFields.pipeline as string,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
if (additionalFields.description) {
|
||||||
|
body.properties.push({
|
||||||
|
name: 'description',
|
||||||
|
value: additionalFields.description as string,
|
||||||
|
});
|
||||||
|
}
|
||||||
if (additionalFields.customPropertiesUi) {
|
if (additionalFields.customPropertiesUi) {
|
||||||
const customProperties = (additionalFields.customPropertiesUi as IDataObject).customPropertiesValues as IDataObject[];
|
const customProperties = (additionalFields.customPropertiesUi as IDataObject).customPropertiesValues as IDataObject[];
|
||||||
if (customProperties) {
|
if (customProperties) {
|
||||||
@@ -1936,6 +1942,12 @@ export class Hubspot implements INodeType {
|
|||||||
value: updateFields.pipeline as string,
|
value: updateFields.pipeline as string,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
if (updateFields.description) {
|
||||||
|
body.properties.push({
|
||||||
|
name: 'description',
|
||||||
|
value: updateFields.description as string,
|
||||||
|
});
|
||||||
|
}
|
||||||
if (updateFields.customPropertiesUi) {
|
if (updateFields.customPropertiesUi) {
|
||||||
const customProperties = (updateFields.customPropertiesUi as IDataObject).customPropertiesValues as IDataObject[];
|
const customProperties = (updateFields.customPropertiesUi as IDataObject).customPropertiesValues as IDataObject[];
|
||||||
if (customProperties) {
|
if (customProperties) {
|
||||||
|
|||||||
Reference in New Issue
Block a user