2022-08-17 08:50:24 -07:00
import { INodeProperties } from 'n8n-workflow' ;
2021-11-26 04:10:03 -08:00
export const teamMemberOperations : INodeProperties [ ] = [
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
noDataExpression : true ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'teamMember' ] ,
2021-11-26 04:10:03 -08:00
} ,
} ,
options : [
{
name : 'Add' ,
value : 'add' ,
description : 'Add a member to a team' ,
2022-07-10 13:50:51 -07:00
action : 'Add a team member' ,
2021-11-26 04:10:03 -08:00
} ,
{
2022-09-07 07:51:14 -07:00
name : 'Get Many' ,
2021-11-26 04:10:03 -08:00
value : 'getAll' ,
description : 'Retrieve all team members' ,
2022-07-10 13:50:51 -07:00
action : 'Get all team members' ,
2021-11-26 04:10:03 -08:00
} ,
{
name : 'Remove' ,
value : 'remove' ,
description : 'Remove a member from a team' ,
2022-07-10 13:50:51 -07:00
action : 'Remove a team member' ,
2021-11-26 04:10:03 -08:00
} ,
] ,
default : 'add' ,
} ,
] ;
export const teamMemberFields : INodeProperties [ ] = [
// ----------------------------------------
// teamMember: add
// ----------------------------------------
{
displayName : 'User Name or ID' ,
name : 'userId' ,
2022-08-17 08:50:24 -07:00
description :
'User to add to a team. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-11-26 04:10:03 -08:00
type : 'options' ,
required : true ,
default : '' ,
typeOptions : {
loadOptionsMethod : 'getUsers' ,
} ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'teamMember' ] ,
operation : [ 'add' ] ,
2021-11-26 04:10:03 -08:00
} ,
} ,
} ,
{
displayName : 'Team Name or ID' ,
name : 'teamId' ,
2022-08-17 08:50:24 -07:00
description :
'Team to add the user to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-11-26 04:10:03 -08:00
type : 'options' ,
required : true ,
default : '' ,
typeOptions : {
loadOptionsMethod : 'getTeams' ,
} ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'teamMember' ] ,
operation : [ 'add' ] ,
2021-11-26 04:10:03 -08:00
} ,
} ,
} ,
// ----------------------------------------
// teamMember: remove
// ----------------------------------------
{
displayName : 'User Name or ID' ,
name : 'memberId' ,
2022-08-17 08:50:24 -07:00
description :
'User to remove from the team. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-11-26 04:10:03 -08:00
type : 'options' ,
required : true ,
default : '' ,
typeOptions : {
loadOptionsMethod : 'getUsers' ,
} ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'teamMember' ] ,
operation : [ 'remove' ] ,
2021-11-26 04:10:03 -08:00
} ,
} ,
} ,
{
displayName : 'Team Name or ID' ,
name : 'teamId' ,
2022-08-17 08:50:24 -07:00
description :
'Team to remove the user from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-11-26 04:10:03 -08:00
type : 'options' ,
required : true ,
default : '' ,
typeOptions : {
loadOptionsMethod : 'getTeams' ,
} ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'teamMember' ] ,
operation : [ 'remove' ] ,
2021-11-26 04:10:03 -08:00
} ,
} ,
} ,
// ----------------------------------------
// teamMember: getAll
// ----------------------------------------
{
displayName : 'Team Name or ID' ,
name : 'teamId' ,
2022-08-17 08:50:24 -07:00
description :
'Team to retrieve all members from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-11-26 04:10:03 -08:00
typeOptions : {
loadOptionsMethod : 'getTeams' ,
} ,
type : 'options' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'teamMember' ] ,
operation : [ 'getAll' ] ,
2021-11-26 04:10:03 -08: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 : [ 'teamMember' ] ,
operation : [ 'getAll' ] ,
2021-11-26 04:10:03 -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 : [ 'teamMember' ] ,
operation : [ 'getAll' ] ,
returnAll : [ false ] ,
2021-11-26 04:10:03 -08:00
} ,
} ,
} ,
] ;