mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 04:04:06 -08:00
Minor fixes for docs compatibility (#955)
* ⚡ Add documentationUrls for several nodes * ⚡ Minor Updates - Updated Paddle documentationUrl - Updated CrateDB description - Updated Monday.com description - Fixed Nextcloud branding - Updated Redis description
This commit is contained in:
parent
ae343b9f79
commit
a27278a427
|
@ -6,6 +6,7 @@ import {
|
|||
export class PaddleApi implements ICredentialType {
|
||||
name = 'paddleApi';
|
||||
displayName = 'Paddle API';
|
||||
documentationUrl = 'paddle';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'Vendor Auth Code',
|
||||
|
|
|
@ -21,7 +21,7 @@ export class CrateDb implements INodeType {
|
|||
icon: 'file:cratedb.png',
|
||||
group: ['input'],
|
||||
version: 1,
|
||||
description: 'Gets, add and update data in CrateDB.',
|
||||
description: 'Add and update data in CrateDB.',
|
||||
defaults: {
|
||||
name: 'CrateDB',
|
||||
color: '#47889f',
|
||||
|
@ -43,17 +43,17 @@ export class CrateDb 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',
|
||||
|
|
|
@ -28,7 +28,7 @@ export const boardGroupOperations = [
|
|||
{
|
||||
name: 'Get All',
|
||||
value: 'getAll',
|
||||
description: `Get board's groups`,
|
||||
description: `Get list of groups in a board`,
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
|
|
|
@ -48,7 +48,7 @@ export const boardItemOperations = [
|
|||
{
|
||||
name: 'Get All',
|
||||
value: 'getAll',
|
||||
description: 'Get all item',
|
||||
description: 'Get all items',
|
||||
},
|
||||
{
|
||||
name: 'Get By Column Value',
|
||||
|
|
|
@ -20,15 +20,15 @@ import {
|
|||
|
||||
export class NextCloud implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'NextCloud',
|
||||
displayName: 'Nextcloud',
|
||||
name: 'nextCloud',
|
||||
icon: 'file:nextcloud.png',
|
||||
group: ['input'],
|
||||
version: 1,
|
||||
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
||||
description: 'Access data on NextCloud',
|
||||
description: 'Access data on Nextcloud',
|
||||
defaults: {
|
||||
name: 'NextCloud',
|
||||
name: 'Nextcloud',
|
||||
color: '#1cafff',
|
||||
},
|
||||
inputs: ['main'],
|
||||
|
@ -170,7 +170,7 @@ export class NextCloud implements INodeType {
|
|||
{
|
||||
name: 'List',
|
||||
value: 'list',
|
||||
description: 'Return the files and folders in a given folder',
|
||||
description: 'Return the contents of a given folder',
|
||||
},
|
||||
{
|
||||
name: 'Move',
|
||||
|
|
|
@ -19,7 +19,7 @@ export class Redis implements INodeType {
|
|||
icon: 'file:redis.png',
|
||||
group: ['input'],
|
||||
version: 1,
|
||||
description: 'Gets, sends data to Redis and receives generic information.',
|
||||
description: 'Get, send and update data in Redis.',
|
||||
defaults: {
|
||||
name: 'Redis',
|
||||
color: '#0033AA',
|
||||
|
@ -41,12 +41,12 @@ export class Redis implements INodeType {
|
|||
{
|
||||
name: 'Delete',
|
||||
value: 'delete',
|
||||
description: 'Deletes a key from Redis.',
|
||||
description: 'Delete a key from Redis.',
|
||||
},
|
||||
{
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
description: 'Returns the value of a key from Redis.',
|
||||
description: 'Get the value of a key from Redis.',
|
||||
},
|
||||
{
|
||||
name: 'Info',
|
||||
|
@ -61,7 +61,7 @@ export class Redis implements INodeType {
|
|||
{
|
||||
name: 'Set',
|
||||
value: 'set',
|
||||
description: 'Sets the value of a key in redis.',
|
||||
description: 'Set the value of a key in redis.',
|
||||
},
|
||||
],
|
||||
default: 'info',
|
||||
|
|
Loading…
Reference in a new issue