mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 23:54:07 -08:00
🔀 Merge branch 'master' of github.com:n8n-io/n8n
This commit is contained in:
commit
c152c0f959
|
@ -5,7 +5,7 @@ export class ZoomApi implements ICredentialType {
|
||||||
displayName = 'Zoom API';
|
displayName = 'Zoom API';
|
||||||
properties = [
|
properties = [
|
||||||
{
|
{
|
||||||
displayName: 'JTW Token',
|
displayName: 'JWT Token',
|
||||||
name: 'accessToken',
|
name: 'accessToken',
|
||||||
type: 'string' as NodePropertyTypes,
|
type: 'string' as NodePropertyTypes,
|
||||||
default: ''
|
default: ''
|
||||||
|
|
|
@ -41,12 +41,12 @@ export const issueOperations = [
|
||||||
{
|
{
|
||||||
name: 'Notify',
|
name: 'Notify',
|
||||||
value: 'notify',
|
value: 'notify',
|
||||||
description: 'Creates an email notification for an issue and adds it to the mail queue.',
|
description: 'Create an email notification for an issue and add it to the mail queue',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Status',
|
name: 'Status',
|
||||||
value: 'transitions',
|
value: 'transitions',
|
||||||
description: `Returns either all transitions or a transition that can be performed by the user on an issue, based on the issue's status.`,
|
description: `Return either all transitions or a transition that can be performed by the user on an issue, based on the issue's status`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Delete',
|
name: 'Delete',
|
||||||
|
|
|
@ -63,17 +63,17 @@ export class Postgres implements INodeType {
|
||||||
{
|
{
|
||||||
name: 'Execute Query',
|
name: 'Execute Query',
|
||||||
value: 'executeQuery',
|
value: 'executeQuery',
|
||||||
description: 'Executes a SQL query.',
|
description: 'Execute an SQL query',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Insert',
|
name: 'Insert',
|
||||||
value: 'insert',
|
value: 'insert',
|
||||||
description: 'Insert rows in database.',
|
description: 'Insert rows in database',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Update',
|
name: 'Update',
|
||||||
value: 'update',
|
value: 'update',
|
||||||
description: 'Updates rows in database.',
|
description: 'Update rows in database',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'insert',
|
default: 'insert',
|
||||||
|
|
|
@ -48,15 +48,15 @@ interface IPostMessageBody {
|
||||||
|
|
||||||
export class Rocketchat implements INodeType {
|
export class Rocketchat implements INodeType {
|
||||||
description: INodeTypeDescription = {
|
description: INodeTypeDescription = {
|
||||||
displayName: 'Rocketchat',
|
displayName: 'RocketChat',
|
||||||
name: 'rocketchat',
|
name: 'rocketchat',
|
||||||
icon: 'file:rocketchat.png',
|
icon: 'file:rocketchat.png',
|
||||||
group: ['output'],
|
group: ['output'],
|
||||||
version: 1,
|
version: 1,
|
||||||
subtitle: '={{$parameter["resource"] + ": " + $parameter["operation"]}}',
|
subtitle: '={{$parameter["resource"] + ": " + $parameter["operation"]}}',
|
||||||
description: 'Consume Rocketchat API',
|
description: 'Consume RocketChat API',
|
||||||
defaults: {
|
defaults: {
|
||||||
name: 'Rocketchat',
|
name: 'RocketChat',
|
||||||
color: '#c02428',
|
color: '#c02428',
|
||||||
},
|
},
|
||||||
inputs: ['main'],
|
inputs: ['main'],
|
||||||
|
|
|
@ -29,7 +29,7 @@ export const attachmentOperations = [
|
||||||
{
|
{
|
||||||
name: 'Get',
|
name: 'Get',
|
||||||
value: 'get',
|
value: 'get',
|
||||||
description: 'Get the data of an attachments',
|
description: 'Get the data of an attachment',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Get All',
|
name: 'Get All',
|
||||||
|
|
|
@ -44,17 +44,17 @@ export const checklistOperations = [
|
||||||
{
|
{
|
||||||
name: 'Get Checklist Items',
|
name: 'Get Checklist Items',
|
||||||
value: 'getCheckItem',
|
value: 'getCheckItem',
|
||||||
description: 'Get a specific Checklist on a card',
|
description: 'Get a specific checklist on a card',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Get Completed Checklist Items',
|
name: 'Get Completed Checklist Items',
|
||||||
value: 'completedCheckItems',
|
value: 'completedCheckItems',
|
||||||
description: 'Get the completed Checklist items on a card',
|
description: 'Get the completed checklist items on a card',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Update Checklist Item',
|
name: 'Update Checklist Item',
|
||||||
value: 'updateCheckItem',
|
value: 'updateCheckItem',
|
||||||
description: 'Update an item in a checklist on a card.',
|
description: 'Update an item in a checklist on a card',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'getAll',
|
default: 'getAll',
|
||||||
|
|
|
@ -39,7 +39,7 @@ export const labelOperations = [
|
||||||
{
|
{
|
||||||
name: 'Get All',
|
name: 'Get All',
|
||||||
value: 'getAll',
|
value: 'getAll',
|
||||||
description: 'Returns all label for the board',
|
description: 'Returns all labels for the board',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Remove From Card',
|
name: 'Remove From Card',
|
||||||
|
|
Loading…
Reference in a new issue