2022-08-17 08:50:24 -07:00
import { INodeProperties } from 'n8n-workflow' ;
2022-02-11 23:40:54 -08:00
export const userDescription : INodeProperties [ ] = [
// ----------------------------------
// operations
// ----------------------------------
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
noDataExpression : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'Create a user' ,
2022-07-10 13:50:51 -07:00
action : 'Create a user' ,
2022-02-11 23:40:54 -08:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete a user' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a user' ,
2022-02-11 23:40:54 -08:00
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Retrieve a user' ,
2022-07-10 13:50:51 -07:00
action : 'Get a user' ,
2022-02-11 23:40:54 -08:00
} ,
{
2022-09-07 07:51:14 -07:00
name : 'Get Many' ,
2022-02-11 23:40:54 -08:00
value : 'getAll' ,
2022-09-13 03:36:36 -07:00
description : 'Retrieve many users' ,
2022-09-08 08:10:13 -07:00
action : 'Get many users' ,
2022-02-11 23:40:54 -08:00
} ,
{
name : 'Get Self' ,
value : 'getSelf' ,
description : 'Retrieve currently logged-in user' ,
2022-07-10 13:50:51 -07:00
action : 'Get currently logged-in user' ,
2022-02-11 23:40:54 -08:00
} ,
{
name : 'Update' ,
value : 'update' ,
description : 'Update a user' ,
2022-07-10 13:50:51 -07:00
action : 'Update a user' ,
2022-02-11 23:40:54 -08:00
} ,
] ,
default : 'create' ,
} ,
// ----------------------------------
// fields
// ----------------------------------
{
displayName : 'First Name' ,
name : 'firstname' ,
type : 'string' ,
default : '' ,
placeholder : 'John' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'create' ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
} ,
{
displayName : 'Last Name' ,
name : 'lastname' ,
type : 'string' ,
default : '' ,
placeholder : 'Smith' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'create' ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
} ,
{
displayName : 'User ID' ,
name : 'id' ,
type : 'string' ,
2022-08-17 08:50:24 -07:00
description :
'User to update. Specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2022-02-11 23:40:54 -08:00
default : '' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'update' ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
} ,
{
displayName : 'User ID' ,
name : 'id' ,
type : 'string' ,
2022-08-17 08:50:24 -07:00
description :
'User to delete. Specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2022-02-11 23:40:54 -08:00
default : '' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'delete' ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
} ,
{
displayName : 'User ID' ,
name : 'id' ,
type : 'string' ,
2022-08-17 08:50:24 -07:00
description :
'User to retrieve. Specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2022-02-11 23:40:54 -08:00
default : '' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'get' ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'create' ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
default : { } ,
placeholder : 'Add Field' ,
options : [
{
displayName : 'Active' ,
name : 'active' ,
type : 'boolean' ,
default : true ,
} ,
{
displayName : 'Address' ,
name : 'addressUi' ,
type : 'fixedCollection' ,
placeholder : 'Add Address' ,
default : { } ,
options : [
{
displayName : 'Address Details' ,
name : 'addressDetails' ,
values : [
{
displayName : 'City' ,
name : 'city' ,
type : 'string' ,
default : '' ,
placeholder : 'Berlin' ,
} ,
{
displayName : 'Country' ,
name : 'country' ,
type : 'string' ,
default : '' ,
placeholder : 'Germany' ,
} ,
{
displayName : 'Street & Number' ,
name : 'address' ,
type : 'string' ,
default : '' ,
placeholder : 'Borsigstr. 27' ,
} ,
{
displayName : 'Zip Code' ,
name : 'zip' ,
type : 'string' ,
default : '' ,
placeholder : '10115' ,
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Custom Fields' ,
name : 'customFieldsUi' ,
type : 'fixedCollection' ,
2022-04-22 09:29:51 -07:00
default : { } ,
2022-02-11 23:40:54 -08:00
placeholder : 'Add Custom Field' ,
typeOptions : {
multipleValues : true ,
} ,
options : [
{
name : 'customFieldPairs' ,
displayName : 'Custom Field' ,
values : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Field Name or ID' ,
2022-02-11 23:40:54 -08:00
name : 'name' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'loadUserCustomFields' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'Name of the custom field to set. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2022-02-11 23:40:54 -08:00
} ,
{
displayName : 'Field Value' ,
name : 'value' ,
type : 'string' ,
default : '' ,
description : 'Value to set on the custom field' ,
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Department' ,
name : 'department' ,
type : 'string' ,
default : '' ,
placeholder : 'Finance' ,
} ,
{
displayName : 'Email Address' ,
name : 'email' ,
type : 'string' ,
2022-06-20 07:54:01 -07:00
placeholder : 'name@email.com' ,
2022-02-11 23:40:54 -08:00
default : '' ,
} ,
{
displayName : 'Fax' ,
name : 'fax' ,
type : 'string' ,
default : '' ,
placeholder : '+49 30 901820' ,
} ,
{
displayName : 'Notes' ,
name : 'note' ,
type : 'string' ,
default : '' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Organization Name or ID' ,
2022-02-11 23:40:54 -08:00
name : 'organization' ,
type : 'options' ,
2022-08-17 08:50:24 -07:00
description :
'Name of the organization to assign to the user. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2022-02-11 23:40:54 -08:00
default : '' ,
typeOptions : {
loadOptionsMethod : 'loadOrganizations' ,
} ,
} ,
{
displayName : 'Phone (Landline)' ,
name : 'phone' ,
type : 'string' ,
default : '' ,
placeholder : '+49 30 901820' ,
} ,
{
displayName : 'Phone (Mobile)' ,
name : 'mobile' ,
type : 'string' ,
default : '' ,
placeholder : '+49 1522 3433333' ,
} ,
{
displayName : 'Verified' ,
name : 'verified' ,
type : 'boolean' ,
default : false ,
description : 'Whether the user has been verified' ,
} ,
{
displayName : 'VIP' ,
name : 'vip' ,
type : 'boolean' ,
default : false ,
description : 'Whether the user is a Very Important Person' ,
} ,
{
displayName : 'Website' ,
name : 'web' ,
type : 'string' ,
default : '' ,
placeholder : 'https://n8n.io' ,
} ,
] ,
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'update' ] ,
resource : [ 'user' ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
default : { } ,
placeholder : 'Add Field' ,
options : [
{
displayName : 'Active' ,
name : 'active' ,
type : 'boolean' ,
default : true ,
} ,
{
displayName : 'Address' ,
name : 'addressUi' ,
type : 'fixedCollection' ,
placeholder : 'Add Address' ,
default : { } ,
options : [
{
displayName : 'Address Details' ,
name : 'addressDetails' ,
values : [
{
displayName : 'City' ,
name : 'city' ,
type : 'string' ,
default : '' ,
placeholder : 'Berlin' ,
} ,
{
displayName : 'Country' ,
name : 'country' ,
type : 'string' ,
default : '' ,
placeholder : 'Germany' ,
} ,
{
displayName : 'Street & Number' ,
name : 'address' ,
type : 'string' ,
default : '' ,
placeholder : 'Borsigstr. 27' ,
} ,
{
displayName : 'Zip Code' ,
name : 'zip' ,
type : 'string' ,
default : '' ,
placeholder : '10115' ,
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Custom Fields' ,
name : 'customFieldsUi' ,
type : 'fixedCollection' ,
2022-04-22 09:29:51 -07:00
default : { } ,
2022-02-11 23:40:54 -08:00
placeholder : 'Add Custom Field' ,
typeOptions : {
multipleValues : true ,
} ,
options : [
{
name : 'customFieldPairs' ,
displayName : 'Custom Field' ,
values : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Field Name or ID' ,
2022-02-11 23:40:54 -08:00
name : 'name' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'loadUserCustomFields' ,
} ,
default : '' ,
2022-08-17 08:50:24 -07:00
description :
'Name of the custom field to set. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2022-02-11 23:40:54 -08:00
} ,
{
displayName : 'Field Value' ,
name : 'value' ,
type : 'string' ,
default : '' ,
description : 'Value to set on the custom field' ,
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Department' ,
name : 'department' ,
type : 'string' ,
default : '' ,
placeholder : 'Finance' ,
} ,
{
displayName : 'Email Address' ,
name : 'email' ,
type : 'string' ,
default : '' ,
placeholder : 'hello@n8n.io' ,
} ,
{
displayName : 'Fax' ,
name : 'fax' ,
type : 'string' ,
default : '' ,
placeholder : '+49 30 901820' ,
} ,
{
displayName : 'First Name' ,
name : 'firstname' ,
type : 'string' ,
default : '' ,
placeholder : 'John' ,
} ,
{
displayName : 'Last Name' ,
name : 'lastname' ,
type : 'string' ,
default : '' ,
placeholder : 'Smith' ,
} ,
{
displayName : 'Notes' ,
name : 'note' ,
type : 'string' ,
default : '' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Organization Name or ID' ,
2022-02-11 23:40:54 -08:00
name : 'organization' ,
type : 'options' ,
2022-08-17 08:50:24 -07:00
description :
'Name of the organization to assign to the user. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2022-02-11 23:40:54 -08:00
default : '' ,
typeOptions : {
loadOptionsMethod : 'loadOrganizationNames' ,
} ,
} ,
{
displayName : 'Phone (Landline)' ,
name : 'phone' ,
type : 'string' ,
default : '' ,
placeholder : '+49 30 901820' ,
} ,
{
displayName : 'Phone (Mobile)' ,
name : 'mobile' ,
type : 'string' ,
default : '' ,
placeholder : '+49 1522 3433333' ,
} ,
{
displayName : 'Verified' ,
name : 'verified' ,
type : 'boolean' ,
default : false ,
description : 'Whether the user has been verified' ,
} ,
{
displayName : 'VIP' ,
name : 'vip' ,
type : 'boolean' ,
default : false ,
description : 'Whether the user is a Very Important Person' ,
} ,
{
displayName : 'Website' ,
name : 'web' ,
type : 'string' ,
default : '' ,
placeholder : 'https://n8n.io' ,
} ,
] ,
} ,
{
displayName : 'Query' ,
name : 'query' ,
type : 'string' ,
default : '' ,
required : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'search' ] ,
resource : [ 'user' ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
default : 50 ,
typeOptions : {
minValue : 1 ,
} ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'search' ] ,
resource : [ 'user' ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
description : 'Max number of results to return' ,
} ,
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
default : false ,
description : 'Whether to return all results or only up to a given limit' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'getAll' ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
default : 50 ,
description : 'Max number of results to return' ,
typeOptions : {
minValue : 1 ,
} ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'getAll' ] ,
returnAll : [ false ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
} ,
{
displayName : 'Filters' ,
name : 'filters' ,
type : 'collection' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'getAll' ] ,
2022-02-11 23:40:54 -08:00
} ,
} ,
default : { } ,
placeholder : 'Add Filter' ,
options : [
{
displayName : 'Query' ,
name : 'query' ,
type : 'string' ,
default : '' ,
description : 'Query to filter results by' ,
placeholder : 'user.firstname:john' ,
} ,
{
displayName : 'Sort' ,
name : 'sortUi' ,
type : 'fixedCollection' ,
placeholder : 'Add Sort Options' ,
default : { } ,
options : [
{
displayName : 'Sort Options' ,
name : 'sortDetails' ,
values : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Sort Key Name or ID' ,
2022-02-11 23:40:54 -08:00
name : 'sort_by' ,
type : 'options' ,
2022-08-17 08:50:24 -07:00
description :
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>' ,
2022-02-11 23:40:54 -08:00
typeOptions : {
loadOptionsMethod : 'loadUserFields' ,
} ,
default : '' ,
} ,
{
displayName : 'Sort Order' ,
name : 'order_by' ,
type : 'options' ,
options : [
{
name : 'Ascending' ,
value : 'asc' ,
} ,
{
name : 'Descending' ,
value : 'desc' ,
} ,
] ,
default : 'asc' ,
} ,
] ,
} ,
] ,
} ,
] ,
} ,
] ;