2023-01-27 03:22:44 -08:00
import type { INodeProperties } from 'n8n-workflow' ;
2021-09-28 11:50:15 -07:00
export const userOperations : INodeProperties [ ] = [
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
noDataExpression : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
2021-09-28 11:50:15 -07:00
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'Create an user' ,
2022-07-10 13:50:51 -07:00
action : 'Create a user' ,
2021-09-28 11:50:15 -07:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete an user' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a user' ,
2021-09-28 11:50:15 -07:00
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Retrieve an user' ,
2022-07-10 13:50:51 -07:00
action : 'Get a user' ,
2021-09-28 11:50:15 -07:00
} ,
{
2022-09-07 07:51:14 -07:00
name : 'Get Many' ,
2021-09-28 11:50:15 -07: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' ,
2021-09-28 11:50:15 -07:00
} ,
{
name : 'Update' ,
value : 'update' ,
description : 'Update an user' ,
2022-07-10 13:50:51 -07:00
action : 'Update a user' ,
2021-09-28 11:50:15 -07:00
} ,
] ,
default : 'create' ,
} ,
] ;
export const userFields : INodeProperties [ ] = [
// ----------------------------------------
// user: create
// ----------------------------------------
{
displayName : 'Name' ,
name : 'name' ,
description : 'Login name of the user' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'create' ] ,
2021-09-28 11:50:15 -07:00
} ,
} ,
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Role Names or IDs' ,
2021-09-28 11:50:15 -07:00
name : 'roles' ,
type : 'multiOptions' ,
2022-08-17 08:50:24 -07:00
description :
'Comma-separated list of roles to assign to the user. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-09-28 11:50:15 -07:00
required : true ,
default : [ ] ,
typeOptions : {
loadOptionsMethod : 'getRoles' ,
} ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'create' ] ,
2021-09-28 11:50:15 -07:00
} ,
} ,
} ,
{
displayName : 'Password' ,
name : 'password' ,
type : 'string' ,
2022-09-12 00:36:50 -07:00
typeOptions : { password : true } ,
2021-09-28 11:50:15 -07:00
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'create' ] ,
2021-09-28 11:50:15 -07:00
} ,
} ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'create' ] ,
2021-09-28 11:50:15 -07:00
} ,
} ,
options : [
{
displayName : 'Email' ,
name : 'email' ,
type : 'string' ,
2022-06-20 07:54:01 -07:00
placeholder : 'name@email.com' ,
2021-09-28 11:50:15 -07:00
default : '' ,
} ,
{
displayName : 'Full Name' ,
name : 'realname' ,
type : 'string' ,
default : '' ,
description : 'Full name of the user' ,
} ,
] ,
} ,
// ----------------------------------------
// user: delete
// ----------------------------------------
{
displayName : 'User ID' ,
name : 'userId' ,
description : 'ID of the user to delete' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'delete' ] ,
2021-09-28 11:50:15 -07:00
} ,
} ,
} ,
// ----------------------------------------
// user: get
// ----------------------------------------
{
displayName : 'User ID' ,
name : 'userId' ,
description : 'ID of the user to retrieve' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'get' ] ,
2021-09-28 11:50:15 -07:00
} ,
} ,
} ,
// ----------------------------------------
// user: getAll
// ----------------------------------------
2022-08-17 08:50:24 -07:00
{
2021-09-28 11:50:15 -07:00
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' ] ,
2021-09-28 11:50:15 -07: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 ] ,
2021-09-28 11:50:15 -07:00
} ,
} ,
} ,
// ----------------------------------------
// user: update
// ----------------------------------------
{
displayName : 'User ID' ,
name : 'userId' ,
description : 'ID of the user to update' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'update' ] ,
2021-09-28 11:50:15 -07:00
} ,
} ,
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'user' ] ,
operation : [ 'update' ] ,
2021-09-28 11:50:15 -07:00
} ,
} ,
options : [
{
displayName : 'Email' ,
name : 'email' ,
type : 'string' ,
2022-06-20 07:54:01 -07:00
placeholder : 'name@email.com' ,
2021-09-28 11:50:15 -07:00
default : '' ,
} ,
{
displayName : 'Full Name' ,
name : 'realname' ,
type : 'string' ,
default : '' ,
description : 'Full name of the user' ,
} ,
{
displayName : 'Password' ,
name : 'password' ,
type : 'string' ,
2022-09-12 00:36:50 -07:00
typeOptions : { password : true } ,
2021-09-28 11:50:15 -07:00
default : '' ,
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Role Names or IDs' ,
2021-09-28 11:50:15 -07:00
name : 'roles' ,
type : 'multiOptions' ,
2022-08-17 08:50:24 -07:00
description :
'Comma-separated list of roles to assign to the user. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-09-28 11:50:15 -07:00
default : [ ] ,
typeOptions : {
loadOptionsMethod : 'getRoles' ,
} ,
} ,
] ,
} ,
] ;