2022-08-17 08:50:24 -07:00
|
|
|
import { INodeProperties } from 'n8n-workflow';
|
2022-05-15 10:48:17 -07:00
|
|
|
|
|
|
|
export const boardMemberOperations: INodeProperties[] = [
|
|
|
|
// ----------------------------------
|
|
|
|
// boardMember
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2022-05-15 10:48:17 -07:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
resource: ['boardMember'],
|
2022-05-15 10:48:17 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Add',
|
|
|
|
value: 'add',
|
|
|
|
description: 'Add member to board using member ID',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Add a board member',
|
2022-05-15 10:48:17 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get All',
|
|
|
|
value: 'getAll',
|
|
|
|
description: 'Get all members of a board',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Get all board members',
|
2022-05-15 10:48:17 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Invite',
|
|
|
|
value: 'invite',
|
|
|
|
description: 'Invite a new member to a board via email',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Invite a board member',
|
2022-05-15 10:48:17 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Remove',
|
|
|
|
value: 'remove',
|
|
|
|
description: 'Remove member from board using member ID',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Remove a board member',
|
2022-05-15 10:48:17 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'add',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
export const boardMemberFields: INodeProperties[] = [
|
|
|
|
// ----------------------------------
|
|
|
|
// boardMember:getAll
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Board ID',
|
|
|
|
name: 'id',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
operation: ['getAll'],
|
|
|
|
resource: ['boardMember'],
|
2022-05-15 10:48:17 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The ID of the board to get members from',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Return All',
|
|
|
|
name: 'returnAll',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
operation: ['getAll'],
|
|
|
|
resource: ['boardMember'],
|
2022-05-15 10:48:17 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: false,
|
|
|
|
description: 'Whether to return all results or only up to a given limit',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Limit',
|
|
|
|
name: 'limit',
|
|
|
|
type: 'number',
|
2022-05-20 14:47:24 -07:00
|
|
|
typeOptions: {
|
|
|
|
minValue: 1,
|
|
|
|
},
|
2022-05-15 10:48:17 -07:00
|
|
|
description: 'Max number of results to return',
|
|
|
|
default: 20,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
operation: ['getAll'],
|
|
|
|
resource: ['boardMember'],
|
|
|
|
returnAll: [false],
|
2022-05-15 10:48:17 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// boardMember:add
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Board ID',
|
|
|
|
name: 'id',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
operation: ['add'],
|
|
|
|
resource: ['boardMember'],
|
2022-05-15 10:48:17 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The ID of the board to add member to',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Member ID',
|
|
|
|
name: 'idMember',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
operation: ['add'],
|
|
|
|
resource: ['boardMember'],
|
2022-05-15 10:48:17 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The ID of the member to add to the board',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Type',
|
|
|
|
name: 'type',
|
|
|
|
type: 'options',
|
|
|
|
required: true,
|
|
|
|
default: 'normal',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
operation: ['add'],
|
|
|
|
resource: ['boardMember'],
|
2022-05-15 10:48:17 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Normal',
|
|
|
|
value: 'normal',
|
|
|
|
description: 'Invite as normal member',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Admin',
|
|
|
|
value: 'admin',
|
|
|
|
description: 'Invite as admin',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Observer',
|
|
|
|
value: 'observer',
|
|
|
|
description: 'Invite as observer (Trello premium feature)',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
description: 'Determines the type of membership the user being added should have',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
name: 'additionalFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
operation: ['add'],
|
|
|
|
resource: ['boardMember'],
|
2022-05-15 10:48:17 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Allow Billable Guest',
|
|
|
|
name: 'allowBillableGuest',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
2022-06-20 07:54:01 -07:00
|
|
|
description: 'Whether to allow organization admins to add multi-board guests onto a board',
|
2022-05-15 10:48:17 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// boardMember:invite
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Board ID',
|
|
|
|
name: 'id',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
operation: ['invite'],
|
|
|
|
resource: ['boardMember'],
|
2022-05-15 10:48:17 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The ID of the board to invite member to',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Email',
|
|
|
|
name: 'email',
|
|
|
|
type: 'string',
|
2022-06-20 07:54:01 -07:00
|
|
|
placeholder: 'name@email.com',
|
2022-05-15 10:48:17 -07:00
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
operation: ['invite'],
|
|
|
|
resource: ['boardMember'],
|
2022-05-15 10:48:17 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The ID of the board to update',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
name: 'additionalFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
operation: ['invite'],
|
|
|
|
resource: ['boardMember'],
|
2022-05-15 10:48:17 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Type',
|
|
|
|
name: 'type',
|
|
|
|
type: 'options',
|
|
|
|
default: 'normal',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Normal',
|
|
|
|
value: 'normal',
|
|
|
|
description: 'Invite as normal member',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Admin',
|
|
|
|
value: 'admin',
|
|
|
|
description: 'Invite as admin',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Observer',
|
|
|
|
value: 'observer',
|
|
|
|
description: 'Invite as observer (Trello premium feature)',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
description: 'Determines the type of membership the user being added should have',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Full Name',
|
|
|
|
name: 'fullName',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-08-17 08:50:24 -07:00
|
|
|
description:
|
|
|
|
'The full name of the user to add as a member of the board. Must have a length of at least 1 and cannot begin nor end with a space.',
|
2022-05-15 10:48:17 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// boardMember:remove
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Board ID',
|
|
|
|
name: 'id',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
operation: ['remove'],
|
|
|
|
resource: ['boardMember'],
|
2022-05-15 10:48:17 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The ID of the board to remove member from',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Member ID',
|
|
|
|
name: 'idMember',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
operation: ['remove'],
|
|
|
|
resource: ['boardMember'],
|
2022-05-15 10:48:17 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The ID of the member to remove from the board',
|
|
|
|
},
|
|
|
|
];
|