mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(seven Node): Remove obsolete options and fix typos (#13122)
Co-authored-by: Shireen Missi <94372015+ShireenMissi@users.noreply.github.com>
This commit is contained in:
parent
8a34f027c5
commit
d02c8b0d7d
|
@ -33,7 +33,6 @@ export async function sms77ApiRequest(
|
|||
|
||||
if (Object.keys(body).length) {
|
||||
options.form = body;
|
||||
body.json = 1;
|
||||
}
|
||||
|
||||
const response = await this.helpers.requestWithAuthentication.call(this, 'sms77Api', options);
|
||||
|
|
|
@ -139,7 +139,7 @@ export class Sms77 implements INodeType {
|
|||
displayName: 'Options',
|
||||
name: 'options',
|
||||
type: 'collection',
|
||||
placeholder: 'Add Opton',
|
||||
placeholder: 'Add Option',
|
||||
default: {},
|
||||
displayOptions: {
|
||||
show: {
|
||||
|
@ -148,13 +148,6 @@ export class Sms77 implements INodeType {
|
|||
},
|
||||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Debug',
|
||||
name: 'debug',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether the API returns fake responses like in a sandbox',
|
||||
},
|
||||
{
|
||||
displayName: 'Delay',
|
||||
name: 'delay',
|
||||
|
@ -186,13 +179,6 @@ export class Sms77 implements INodeType {
|
|||
placeholder: 'MyCustomLabel',
|
||||
description: 'Custom label used to group analytics',
|
||||
},
|
||||
{
|
||||
displayName: 'No Reload',
|
||||
name: 'no_reload',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether to disable reload lock to allow sending duplicate messages',
|
||||
},
|
||||
{
|
||||
displayName: 'Performance Tracking',
|
||||
name: 'performance_tracking',
|
||||
|
@ -218,7 +204,7 @@ export class Sms77 implements INodeType {
|
|||
displayName: 'Options',
|
||||
name: 'options',
|
||||
type: 'collection',
|
||||
placeholder: 'Add Opton',
|
||||
placeholder: 'Add Option',
|
||||
default: {},
|
||||
displayOptions: {
|
||||
show: {
|
||||
|
@ -227,13 +213,6 @@ export class Sms77 implements INodeType {
|
|||
},
|
||||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Debug',
|
||||
name: 'debug',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether the API returns fake responses like in a sandbox',
|
||||
},
|
||||
{
|
||||
displayName: 'From',
|
||||
name: 'from',
|
||||
|
@ -243,13 +222,6 @@ export class Sms77 implements INodeType {
|
|||
description:
|
||||
'The caller ID. Please use only verified sender IDs, one of your virtual inbound numbers or one of our shared virtual numbers.',
|
||||
},
|
||||
{
|
||||
displayName: 'XML',
|
||||
name: 'xml',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether the text is in XML format',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue