Basic code cleanup on Intercom Node

This commit is contained in:
Jan Oberhauser
2021-04-24 17:49:52 +02:00
parent 223f0130f0
commit 3904f7d568
4 changed files with 153 additions and 166 deletions

View File

@@ -18,6 +18,11 @@ export const userOpeations = [
value: 'create',
description: 'Create a new user',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a user',
},
{
name: 'Get',
value: 'get',
@@ -33,11 +38,6 @@ export const userOpeations = [
value: 'update',
description: 'Update a user',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a user',
},
],
default: 'create',
description: 'The operation to perform.',
@@ -46,10 +46,9 @@ export const userOpeations = [
export const userFields = [
/* -------------------------------------------------------------------------- */
/* user:delete */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* user:delete */
/* -------------------------------------------------------------------------- */
{
displayName: 'ID',
name: 'id',
@@ -69,10 +68,9 @@ export const userFields = [
description: 'The Intercom defined id representing the Lead',
},
/* -------------------------------------------------------------------------- */
/* user:getAll */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* user:getAll */
/* -------------------------------------------------------------------------- */
{
displayName: 'Return All',
name: 'returnAll',
@@ -145,13 +143,6 @@ export const userFields = [
default: '',
description: 'The email address of the user',
},
{
displayName: 'Tag ID',
name: 'tag_id',
type: 'string',
default: '',
description: 'Tag representing the user',
},
{
displayName: 'Segment ID',
name: 'segment_id',
@@ -159,14 +150,20 @@ export const userFields = [
default: '',
description: 'Segment representing the user',
},
{
displayName: 'Tag ID',
name: 'tag_id',
type: 'string',
default: '',
description: 'Tag representing the user',
},
],
},
/* -------------------------------------------------------------------------- */
/* user:get */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* user:get */
/* -------------------------------------------------------------------------- */
{
displayName: 'Select By',
name: 'selectBy',
@@ -217,10 +214,9 @@ export const userFields = [
description: 'View by value',
},
/* -------------------------------------------------------------------------- */
/* user:update */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* user:update */
/* -------------------------------------------------------------------------- */
{
displayName: 'Update By',
name: 'updateBy',
@@ -275,10 +271,9 @@ export const userFields = [
description: 'Value of the property to identify the user to update',
},
/* -------------------------------------------------------------------------- */
/* user:create */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* user:create */
/* -------------------------------------------------------------------------- */
{
displayName: 'Identifier Type',
name: 'identifierType',
@@ -362,6 +357,23 @@ export const userFields = [
},
},
options: [
{
displayName: 'Avatar',
name: 'avatar',
type: 'string',
default: '',
description: 'An avatar image URL. note: the image url needs to be https.',
},
{
displayName: 'Companies',
name: 'companies',
type: 'multiOptions',
typeOptions: {
loadOptionsMethod: 'getCompanies',
},
default: [],
description: 'Identifies the companies this user belongs to.',
},
{
displayName: 'Email',
name: 'email',
@@ -384,6 +396,29 @@ export const userFields = [
default: '',
description: 'Email of the user',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
placeholder: '',
description: 'Name of the user',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
description: 'The phone number of the user',
},
{
displayName: 'Session Count',
name: 'sessionCount',
type: 'number',
default: false,
options: [],
description: `How many sessions the user has recorded`,
},
{
displayName: 'User ID',
name: 'userId',
@@ -407,21 +442,6 @@ export const userFields = [
default: '',
description: 'Email of the user',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
description: 'The phone number of the user',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
placeholder: '',
description: 'Name of the user',
},
{
displayName: 'Unsubscribed From Emails',
name: 'unsubscribedFromEmails',
@@ -439,36 +459,18 @@ export const userFields = [
description: 'A boolean value, which if true, instructs Intercom to update the users<br />last_request_at value to the current API service time in UTC.',
},
{
displayName: 'Session Count',
name: 'sessionCount',
type: 'number',
default: false,
options: [],
description: `How many sessions the user has recorded`,
},
{
displayName: 'Companies',
name: 'companies',
type: 'multiOptions',
typeOptions: {
loadOptionsMethod: 'getCompanies',
},
default: [],
description: 'Identifies the companies this user belongs to.',
},
{
displayName: 'Avatar',
name: 'avatar',
displayName: 'UTM Campaign',
name: 'utmCampaign',
type: 'string',
default: '',
description: 'An avatar image URL. note: the image url needs to be https.',
description: 'Identifies a specific product promotion or strategic campaign',
},
{
displayName: 'UTM Source',
name: 'utmSource',
displayName: 'UTM Content',
name: 'utmContent',
type: 'string',
default: '',
description: 'An avatar image URL. note: the image url needs to be https.',
description: 'Identifies what specifically was clicked to bring the user to the site',
},
{
displayName: 'UTM Medium',
@@ -478,11 +480,11 @@ export const userFields = [
description: 'Identifies what type of link was used',
},
{
displayName: 'UTM Campaign',
name: 'utmCampaign',
displayName: 'UTM Source',
name: 'utmSource',
type: 'string',
default: '',
description: 'Identifies a specific product promotion or strategic campaign',
description: 'An avatar image URL. note: the image url needs to be https.',
},
{
displayName: 'UTM Term',
@@ -491,13 +493,6 @@ export const userFields = [
default: '',
description: 'Identifies search terms',
},
{
displayName: 'UTM Content',
name: 'utmContent',
type: 'string',
default: '',
description: 'Identifies what specifically was clicked to bring the user to the site',
},
],
},
{