mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
👕 Fix lint issue
This commit is contained in:
@@ -173,7 +173,7 @@ export const companyFields = [
|
||||
default: '',
|
||||
description: 'Tag representing the Lead',
|
||||
},
|
||||
]
|
||||
],
|
||||
},
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
@@ -335,7 +335,7 @@ export const companyFields = [
|
||||
default: '',
|
||||
description: `The URL for this company's website. Please note that the value<br />specified here is not validated. Accepts any string.`,
|
||||
},
|
||||
]
|
||||
],
|
||||
},
|
||||
{
|
||||
displayName: 'Custom Attributes',
|
||||
@@ -404,7 +404,7 @@ export const companyFields = [
|
||||
default: '',
|
||||
},
|
||||
],
|
||||
}
|
||||
},
|
||||
],
|
||||
description: 'A hash of key/value pairs to represent custom data you want to attribute to a user.',
|
||||
},
|
||||
|
||||
@@ -26,7 +26,7 @@ export async function intercomApiRequest(this: IHookFunctions | IExecuteFunction
|
||||
qs: query,
|
||||
uri: uri || `https://api.intercom.io${endpoint}`,
|
||||
body,
|
||||
json: true
|
||||
json: true,
|
||||
};
|
||||
|
||||
try {
|
||||
|
||||
@@ -56,7 +56,7 @@ export class Intercom implements INodeType {
|
||||
{
|
||||
name: 'intercomApi',
|
||||
required: true,
|
||||
}
|
||||
},
|
||||
],
|
||||
properties: [
|
||||
{
|
||||
|
||||
@@ -37,7 +37,7 @@ export const leadOpeations = [
|
||||
name: 'Delete',
|
||||
value: 'delete',
|
||||
description: 'Delete a lead',
|
||||
}
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
description: 'The operation to perform.',
|
||||
@@ -235,7 +235,7 @@ export const leadFields = [
|
||||
default: '',
|
||||
description: 'The phone number of the lead',
|
||||
},
|
||||
]
|
||||
],
|
||||
},
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
@@ -445,7 +445,7 @@ export const leadFields = [
|
||||
default: '',
|
||||
description: 'Identifies what specifically was clicked to bring the user to the site',
|
||||
},
|
||||
]
|
||||
],
|
||||
},
|
||||
{
|
||||
displayName: 'Custom Attributes',
|
||||
@@ -514,7 +514,7 @@ export const leadFields = [
|
||||
default: '',
|
||||
},
|
||||
],
|
||||
}
|
||||
},
|
||||
],
|
||||
description: 'A hash of key/value pairs to represent custom data you want to attribute to a user.',
|
||||
},
|
||||
|
||||
@@ -37,7 +37,7 @@ export const userOpeations = [
|
||||
name: 'Delete',
|
||||
value: 'delete',
|
||||
description: 'Delete a user',
|
||||
}
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
description: 'The operation to perform.',
|
||||
@@ -339,7 +339,7 @@ export const userFields = [
|
||||
'update',
|
||||
],
|
||||
resource: [
|
||||
'user'
|
||||
'user',
|
||||
],
|
||||
},
|
||||
},
|
||||
@@ -357,7 +357,7 @@ export const userFields = [
|
||||
'update',
|
||||
],
|
||||
resource: [
|
||||
'user'
|
||||
'user',
|
||||
],
|
||||
},
|
||||
},
|
||||
@@ -371,13 +371,13 @@ export const userFields = [
|
||||
'update',
|
||||
],
|
||||
'/resource': [
|
||||
'user'
|
||||
'user',
|
||||
],
|
||||
},
|
||||
hide: {
|
||||
'/updateBy': [
|
||||
'email',
|
||||
]
|
||||
],
|
||||
},
|
||||
},
|
||||
type: 'string',
|
||||
@@ -393,14 +393,14 @@ export const userFields = [
|
||||
'update',
|
||||
],
|
||||
'/resource': [
|
||||
'user'
|
||||
'user',
|
||||
],
|
||||
},
|
||||
hide: {
|
||||
'/updateBy': [
|
||||
'email',
|
||||
'userId',
|
||||
]
|
||||
],
|
||||
},
|
||||
},
|
||||
type: 'string',
|
||||
@@ -498,7 +498,7 @@ export const userFields = [
|
||||
default: '',
|
||||
description: 'Identifies what specifically was clicked to bring the user to the site',
|
||||
},
|
||||
]
|
||||
],
|
||||
},
|
||||
{
|
||||
displayName: 'Custom Attributes',
|
||||
@@ -567,7 +567,7 @@ export const userFields = [
|
||||
default: '',
|
||||
},
|
||||
],
|
||||
}
|
||||
},
|
||||
],
|
||||
description: 'A hash of key/value pairs to represent custom data you want to attribute to a user.',
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user