mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
90 lines
1.4 KiB
TypeScript
90 lines
1.4 KiB
TypeScript
|
import {
|
||
|
INodeProperties,
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
export const smsOperations = [
|
||
|
{
|
||
|
displayName: 'Operation',
|
||
|
name: 'operation',
|
||
|
type: 'options',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'sms',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
options: [
|
||
|
{
|
||
|
name: 'Send',
|
||
|
value: 'send',
|
||
|
description: 'Send an SMS message.',
|
||
|
},
|
||
|
],
|
||
|
default: 'send',
|
||
|
description: 'Operation to perform.',
|
||
|
},
|
||
|
] as INodeProperties[];
|
||
|
|
||
|
export const smsFields = [
|
||
|
// ----------------------------------
|
||
|
// 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',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
] as INodeProperties[];
|