mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
✨ Add Plivo Node (#1563)
* add Plivo Node * fixed package.json * added Git user in CLI to validate CLA * 🎨 Replace PNG with SVG icon * ⚡ Ajust per codebase conventions * 🔨 Fix operation ID * ✏️ Specify geo-restriction for MMS * ⚡ Improvements * ⚡ Fix node name and operation order Co-authored-by: Nixon <nixon@Nixons-MacBook-Pro.local> Co-authored-by: Nixon <nixon@plivo.com> Co-authored-by: ricardo <ricardoespinoza105@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
107
packages/nodes-base/nodes/Plivo/MmsDescription.ts
Normal file
107
packages/nodes-base/nodes/Plivo/MmsDescription.ts
Normal file
@@ -0,0 +1,107 @@
|
||||
import {
|
||||
INodeProperties,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export const mmsOperations = [
|
||||
{
|
||||
displayName: 'Operation',
|
||||
name: 'operation',
|
||||
type: 'options',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'mms',
|
||||
],
|
||||
},
|
||||
},
|
||||
options: [
|
||||
{
|
||||
name: 'Send',
|
||||
value: 'send',
|
||||
description: 'Send an MMS message (US/Canada only)',
|
||||
},
|
||||
],
|
||||
default: 'send',
|
||||
description: 'Operation to perform.',
|
||||
},
|
||||
] as INodeProperties[];
|
||||
|
||||
export const mmsFields = [
|
||||
// ----------------------------------
|
||||
// mms: send
|
||||
// ----------------------------------
|
||||
{
|
||||
displayName: 'From',
|
||||
name: 'from',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Plivo Number to send the MMS from.',
|
||||
placeholder: '+14156667777',
|
||||
required: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'mms',
|
||||
],
|
||||
operation: [
|
||||
'send',
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'To',
|
||||
name: 'to',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Phone number to send the MMS to.',
|
||||
placeholder: '+14156667778',
|
||||
required: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: [
|
||||
'send',
|
||||
],
|
||||
resource: [
|
||||
'mms',
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Message',
|
||||
name: 'message',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Message to send.',
|
||||
required: false,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'mms',
|
||||
],
|
||||
operation: [
|
||||
'send',
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
displayName: 'Media URLs',
|
||||
name: 'media_urls',
|
||||
type: 'string',
|
||||
default: '',
|
||||
required: false,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'mms',
|
||||
],
|
||||
operation: [
|
||||
'send',
|
||||
],
|
||||
},
|
||||
},
|
||||
description: 'Comma-separated list of media URLs of the files from your file server.',
|
||||
},
|
||||
] as INodeProperties[];
|
||||
Reference in New Issue
Block a user