2020-08-24 17:55:57 -07:00
|
|
|
import {
|
|
|
|
INodeProperties,
|
|
|
|
} from 'n8n-workflow';
|
2020-01-24 04:28:05 -08:00
|
|
|
|
|
|
|
export const labelOperations = [
|
|
|
|
// ----------------------------------
|
|
|
|
// label
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'label',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Add to Card',
|
|
|
|
value: 'addLabel',
|
|
|
|
description: 'Add a label to a card.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Create',
|
|
|
|
value: 'create',
|
|
|
|
description: 'Create a new label',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Delete',
|
|
|
|
value: 'delete',
|
|
|
|
description: 'Delete a label',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get',
|
|
|
|
value: 'get',
|
|
|
|
description: 'Get the data of a label',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get All',
|
|
|
|
value: 'getAll',
|
2020-07-09 05:33:05 -07:00
|
|
|
description: 'Returns all labels for the board',
|
2020-01-24 04:28:05 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Remove From Card',
|
|
|
|
value: 'removeLabel',
|
|
|
|
description: 'Remove a label from a card.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Update',
|
|
|
|
value: 'update',
|
|
|
|
description: 'Update a label.',
|
|
|
|
}
|
|
|
|
|
|
|
|
],
|
|
|
|
default: 'getAll',
|
|
|
|
description: 'The operation to perform.',
|
|
|
|
},
|
|
|
|
|
|
|
|
] as INodeProperties[];
|
|
|
|
|
|
|
|
export const labelFields = [
|
|
|
|
// ----------------------------------
|
|
|
|
// label:create
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Board ID',
|
|
|
|
name: 'boardId',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'label',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The ID of the board to create the label on.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Name',
|
|
|
|
name: 'name',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'label',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'Name for the label.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Color',
|
|
|
|
name: 'color',
|
|
|
|
type: 'options',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'label',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'black',
|
|
|
|
value: 'black',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'blue',
|
|
|
|
value: 'blue',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'green',
|
|
|
|
value: 'green'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'orange',
|
|
|
|
value: 'orange',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'lime',
|
|
|
|
value: 'lime',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'null',
|
|
|
|
value: 'null',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'pink',
|
|
|
|
value: 'pink',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'purple',
|
|
|
|
value: 'purple',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'red',
|
|
|
|
value: 'red',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'sky',
|
|
|
|
value: 'sky',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'yellow',
|
|
|
|
value: 'yellow'
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'null',
|
|
|
|
description: 'The color for the label.',
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// label:delete
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Label ID',
|
|
|
|
name: 'id',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'delete',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'label',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The ID of the label to delete.',
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// label:getAll
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Board ID',
|
|
|
|
name: 'boardId',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'getAll',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'label',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The ID of the board to get label.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
name: 'additionalFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'getAll',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'label',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Fields',
|
|
|
|
name: 'fields',
|
|
|
|
type: 'string',
|
|
|
|
default: 'all',
|
|
|
|
description: 'Fields to return. Either "all" or a comma-separated list of fields.',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// label:get
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Label ID',
|
|
|
|
name: 'id',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'get',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'label',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'Get information about a label by ID.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
name: 'additionalFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'get',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'label',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Fields',
|
|
|
|
name: 'fields',
|
|
|
|
type: 'string',
|
|
|
|
default: 'all',
|
|
|
|
description: 'Fields to return. Either "all" or a comma-separated list of fields.',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// label:addLabel
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Card ID',
|
|
|
|
name: 'cardId',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'addLabel',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'label',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The ID of the card to get label.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Label ID',
|
|
|
|
name: 'id',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'addLabel',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'label',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The ID of the label to add.',
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// label:removeLabel
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Card ID',
|
|
|
|
name: 'cardId',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'removeLabel',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'label',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The ID of the card to remove label from.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Label ID',
|
|
|
|
name: 'id',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'removeLabel',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'label',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The ID of the label to remove.',
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// label:update
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Label ID',
|
|
|
|
name: 'id',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'update',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'label',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
description: 'The ID of the label to update.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Update Fields',
|
|
|
|
name: 'updateFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'update',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'label',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Name',
|
|
|
|
name: 'name',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
description: 'Name of the label.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Color',
|
|
|
|
name: 'color',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'black',
|
|
|
|
value: 'black',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'blue',
|
|
|
|
value: 'blue',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'green',
|
|
|
|
value: 'green'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'orange',
|
|
|
|
value: 'orange',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'lime',
|
|
|
|
value: 'lime',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'null',
|
|
|
|
value: 'null',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'pink',
|
|
|
|
value: 'pink',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'purple',
|
|
|
|
value: 'purple',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'red',
|
|
|
|
value: 'red',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'sky',
|
|
|
|
value: 'sky',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'yellow',
|
|
|
|
value: 'yellow'
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'null',
|
|
|
|
description: 'The color for the label.',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
] as INodeProperties[];
|