mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -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';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'JTW Token',
|
||||
displayName: 'JWT Token',
|
||||
name: 'accessToken',
|
||||
type: 'string' as NodePropertyTypes,
|
||||
default: ''
|
||||
|
|
|
@ -41,12 +41,12 @@ export const issueOperations = [
|
|||
{
|
||||
name: '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',
|
||||
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',
|
||||
|
|
|
@ -63,17 +63,17 @@ export class Postgres implements INodeType {
|
|||
{
|
||||
name: 'Execute Query',
|
||||
value: 'executeQuery',
|
||||
description: 'Executes a SQL query.',
|
||||
description: 'Execute an SQL query',
|
||||
},
|
||||
{
|
||||
name: 'Insert',
|
||||
value: 'insert',
|
||||
description: 'Insert rows in database.',
|
||||
description: 'Insert rows in database',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
value: 'update',
|
||||
description: 'Updates rows in database.',
|
||||
description: 'Update rows in database',
|
||||
},
|
||||
],
|
||||
default: 'insert',
|
||||
|
|
|
@ -48,15 +48,15 @@ interface IPostMessageBody {
|
|||
|
||||
export class Rocketchat implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Rocketchat',
|
||||
displayName: 'RocketChat',
|
||||
name: 'rocketchat',
|
||||
icon: 'file:rocketchat.png',
|
||||
group: ['output'],
|
||||
version: 1,
|
||||
subtitle: '={{$parameter["resource"] + ": " + $parameter["operation"]}}',
|
||||
description: 'Consume Rocketchat API',
|
||||
description: 'Consume RocketChat API',
|
||||
defaults: {
|
||||
name: 'Rocketchat',
|
||||
name: 'RocketChat',
|
||||
color: '#c02428',
|
||||
},
|
||||
inputs: ['main'],
|
||||
|
|
|
@ -29,7 +29,7 @@ export const attachmentOperations = [
|
|||
{
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
description: 'Get the data of an attachments',
|
||||
description: 'Get the data of an attachment',
|
||||
},
|
||||
{
|
||||
name: 'Get All',
|
||||
|
|
|
@ -44,17 +44,17 @@ export const checklistOperations = [
|
|||
{
|
||||
name: 'Get Checklist Items',
|
||||
value: 'getCheckItem',
|
||||
description: 'Get a specific Checklist on a card',
|
||||
description: 'Get a specific checklist on a card',
|
||||
},
|
||||
{
|
||||
name: 'Get Completed Checklist Items',
|
||||
value: 'completedCheckItems',
|
||||
description: 'Get the completed Checklist items on a card',
|
||||
description: 'Get the completed checklist items on a card',
|
||||
},
|
||||
{
|
||||
name: 'Update Checklist Item',
|
||||
value: 'updateCheckItem',
|
||||
description: 'Update an item in a checklist on a card.',
|
||||
description: 'Update an item in a checklist on a card',
|
||||
},
|
||||
],
|
||||
default: 'getAll',
|
||||
|
|
|
@ -39,7 +39,7 @@ export const labelOperations = [
|
|||
{
|
||||
name: 'Get All',
|
||||
value: 'getAll',
|
||||
description: 'Returns all label for the board',
|
||||
description: 'Returns all labels for the board',
|
||||
},
|
||||
{
|
||||
name: 'Remove From Card',
|
||||
|
|
Loading…
Reference in a new issue