Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
87 lines
1.6 KiB
TypeScript
87 lines
1.6 KiB
TypeScript
import type { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const mmsOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['mms'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Send',
|
|
value: 'send',
|
|
description: 'Send an MMS message (US/Canada only)',
|
|
action: 'Send an MMS',
|
|
},
|
|
],
|
|
default: 'send',
|
|
},
|
|
];
|
|
|
|
export const mmsFields: INodeProperties[] = [
|
|
// ----------------------------------
|
|
// 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',
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['mms'],
|
|
operation: ['send'],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Media URLs',
|
|
name: 'media_urls',
|
|
type: 'string',
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['mms'],
|
|
operation: ['send'],
|
|
},
|
|
},
|
|
description: 'Comma-separated list of media URLs of the files from your file server',
|
|
},
|
|
];
|