mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
286 lines
5 KiB
TypeScript
286 lines
5 KiB
TypeScript
|
import {
|
||
|
INodeProperties,
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
export const userOperations: INodeProperties[] = [
|
||
|
{
|
||
|
displayName: 'Operation',
|
||
|
name: 'operation',
|
||
|
type: 'options',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'user',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
noDataExpression: true,
|
||
|
options: [
|
||
|
{
|
||
|
name: 'Create',
|
||
|
value: 'create',
|
||
|
},
|
||
|
{
|
||
|
name: 'Delete',
|
||
|
value: 'delete',
|
||
|
},
|
||
|
{
|
||
|
name: 'Get',
|
||
|
value: 'get',
|
||
|
},
|
||
|
{
|
||
|
name: 'Get All',
|
||
|
value: 'getAll',
|
||
|
},
|
||
|
{
|
||
|
name: 'Update',
|
||
|
value: 'update',
|
||
|
},
|
||
|
],
|
||
|
default: 'create',
|
||
|
},
|
||
|
];
|
||
|
|
||
|
export const userFields: INodeProperties[] = [
|
||
|
// ----------------------------------------
|
||
|
// user: create
|
||
|
// ----------------------------------------
|
||
|
{
|
||
|
displayName: 'Email',
|
||
|
name: 'email',
|
||
|
type: 'string',
|
||
|
required: true,
|
||
|
default: '',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'user',
|
||
|
],
|
||
|
operation: [
|
||
|
'create',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Role ID',
|
||
|
name: 'role_id',
|
||
|
type: 'string',
|
||
|
description: 'Role IDs are available in the MISP dashboard at /roles/index',
|
||
|
required: true,
|
||
|
default: '',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'user',
|
||
|
],
|
||
|
operation: [
|
||
|
'create',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Additional Fields',
|
||
|
name: 'additionalFields',
|
||
|
type: 'collection',
|
||
|
placeholder: 'Add Field',
|
||
|
default: {},
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'user',
|
||
|
],
|
||
|
operation: [
|
||
|
'create',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
options: [
|
||
|
{
|
||
|
displayName: 'GPG Key',
|
||
|
name: 'gpgkey',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Inviter Email/ID',
|
||
|
name: 'invited_by',
|
||
|
type: 'options',
|
||
|
default: '',
|
||
|
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
|
||
|
typeOptions: {
|
||
|
loadOptionsMethod: 'getUsers',
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Organization Name/ID',
|
||
|
name: 'org_id',
|
||
|
type: 'options',
|
||
|
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
|
||
|
default: '',
|
||
|
typeOptions: {
|
||
|
loadOptionsMethod: 'getOrgs',
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
|
||
|
// ----------------------------------------
|
||
|
// user: delete
|
||
|
// ----------------------------------------
|
||
|
{
|
||
|
displayName: 'User ID',
|
||
|
name: 'userId',
|
||
|
description: 'Numeric ID of the user',
|
||
|
type: 'string',
|
||
|
required: true,
|
||
|
default: '',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'user',
|
||
|
],
|
||
|
operation: [
|
||
|
'delete',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
|
||
|
// ----------------------------------------
|
||
|
// user: get
|
||
|
// ----------------------------------------
|
||
|
{
|
||
|
displayName: 'User ID',
|
||
|
name: 'userId',
|
||
|
description: 'Numeric ID of the user',
|
||
|
type: 'string',
|
||
|
required: true,
|
||
|
default: '',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'user',
|
||
|
],
|
||
|
operation: [
|
||
|
'get',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Return All',
|
||
|
name: 'returnAll',
|
||
|
type: 'boolean',
|
||
|
default: false,
|
||
|
description: 'Whether to return all results or only up to a given limit',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'user',
|
||
|
],
|
||
|
operation: [
|
||
|
'getAll',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Limit',
|
||
|
name: 'limit',
|
||
|
type: 'number',
|
||
|
default: 50,
|
||
|
description: 'Max number of results to return',
|
||
|
typeOptions: {
|
||
|
minValue: 1,
|
||
|
},
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'user',
|
||
|
],
|
||
|
operation: [
|
||
|
'getAll',
|
||
|
],
|
||
|
returnAll: [
|
||
|
false,
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
|
||
|
// ----------------------------------------
|
||
|
// user: update
|
||
|
// ----------------------------------------
|
||
|
{
|
||
|
displayName: 'User ID',
|
||
|
name: 'userId',
|
||
|
description: 'ID of the user to update',
|
||
|
type: 'string',
|
||
|
required: true,
|
||
|
default: '',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'user',
|
||
|
],
|
||
|
operation: [
|
||
|
'update',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Update Fields',
|
||
|
name: 'updateFields',
|
||
|
type: 'collection',
|
||
|
placeholder: 'Add Field',
|
||
|
default: {},
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'user',
|
||
|
],
|
||
|
operation: [
|
||
|
'update',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
options: [
|
||
|
{
|
||
|
displayName: 'Email',
|
||
|
name: 'email',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'GPG Key',
|
||
|
name: 'gpgkey',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Inviter Name/ID',
|
||
|
name: 'invited_by',
|
||
|
type: 'options',
|
||
|
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
|
||
|
default: '',
|
||
|
typeOptions: {
|
||
|
loadOptionsMethod: 'getUsers',
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Organization Name/ID',
|
||
|
name: 'org_id',
|
||
|
type: 'options',
|
||
|
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
|
||
|
default: '',
|
||
|
typeOptions: {
|
||
|
loadOptionsMethod: 'getOrgs',
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
];
|