mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 20:54: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,
|
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) {
|
||||||
|
|
Loading…
Reference in a new issue