Minor improvements to Pushbullet-Node

This commit is contained in:
Jan Oberhauser 2020-10-27 20:15:29 +01:00
parent d0fc7209bf
commit 805c89be17
2 changed files with 13 additions and 13 deletions

View file

@ -53,7 +53,7 @@ export class Pushbullet implements INodeType {
},
],
default: 'push',
description: 'The resource to operate on.'
description: 'The resource to operate on.',
},
{
displayName: 'Operation',
@ -89,7 +89,7 @@ export class Pushbullet implements INodeType {
},
],
default: 'create',
description: 'The resource to operate on.'
description: 'The operation to perform.',
},
{
displayName: 'Type',
@ -137,12 +137,12 @@ export class Pushbullet implements INodeType {
],
type: [
'note',
'link'
'link',
],
},
},
default: '',
description: `Title of the push, used for all types of pushes`
description: `Title of the push.`,
},
{
displayName: 'Body',
@ -165,7 +165,7 @@ export class Pushbullet implements INodeType {
},
},
default: '',
description: `Body of the push, used for all types of pushes`
description: `Body of the push.`,
},
{
displayName: 'URL',
@ -186,7 +186,7 @@ export class Pushbullet implements INodeType {
},
},
default: '',
description: `Body of the push, used for all types of pushes`
description: `URL of the push.`,
},
{
displayName: 'Binary Property',
@ -248,7 +248,7 @@ export class Pushbullet implements INodeType {
},
},
default: 'default',
description: 'Define the medium that will be used to send the push',
description: 'Define the medium that will be used to send the push.',
},
{
displayName: 'Value',
@ -380,14 +380,14 @@ export class Pushbullet implements INodeType {
name: 'active',
type: 'boolean',
default: false,
description: `Don't return deleted pushes`,
description: `Don't return deleted pushes.`,
},
{
displayName: 'Modified After',
name: 'modified_after',
type: 'dateTime',
default: '',
description: `Request pushes modified after this timestamp`,
description: `Request pushes modified after this timestamp.`,
},
],
},