mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
b03e358a12
* 👕 Enable `consistent-type-imports` for nodes-base
* 👕 Apply to nodes-base
* ⏪ Undo unrelated changes
* 🚚 Move to `.eslintrc.js` in nodes-base
* ⏪ Revert "Enable `consistent-type-imports` for nodes-base"
This reverts commit 529ad72b05
.
* 👕 Fix severity
75 lines
1.3 KiB
TypeScript
75 lines
1.3 KiB
TypeScript
import type { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const smsOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['sms'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Send',
|
|
value: 'send',
|
|
description: 'Send an SMS message',
|
|
action: 'Send an SMS',
|
|
},
|
|
],
|
|
default: 'send',
|
|
},
|
|
];
|
|
|
|
export const smsFields: INodeProperties[] = [
|
|
// ----------------------------------
|
|
// sms: send
|
|
// ----------------------------------
|
|
{
|
|
displayName: 'From',
|
|
name: 'from',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Plivo Number to send the SMS from',
|
|
placeholder: '+14156667777',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['sms'],
|
|
operation: ['send'],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'To',
|
|
name: 'to',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Phone number to send the message to',
|
|
placeholder: '+14156667778',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['sms'],
|
|
operation: ['send'],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Message',
|
|
name: 'message',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Message to send',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['send'],
|
|
resource: ['sms'],
|
|
},
|
|
},
|
|
},
|
|
];
|