UNPKG

@andresaya/n8n-nodes-edgetts

Version:

n8n node for Edge TTS - Text-to-Speech using Microsoft Edge capabilities

38 lines 1.13 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.voiceOperations = void 0; exports.voiceOperations = [ { displayName: 'Operation', name: 'operation', type: 'options', noDataExpression: true, displayOptions: { show: { resource: ['voice'], }, }, options: [ { name: 'List All', value: 'listAll', description: 'Get all available voices', action: 'List all voices', }, { name: 'Filter by Language', value: 'filterByLanguage', description: 'Get voices for a specific language', action: 'Filter voices by language', }, { name: 'Filter by Gender', value: 'filterByGender', description: 'Get voices by gender', action: 'Filter voices by gender', }, ], default: 'listAll', }, ]; //# sourceMappingURL=voice.operations.js.map