@andresaya/n8n-nodes-edgetts
Version:
n8n node for Edge TTS - Text-to-Speech using Microsoft Edge capabilities
33 lines • 1.11 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.edgeTTSNodeProperties = void 0;
const voice_operations_1 = require("./voice.operations");
const voice_fields_1 = require("./voice.fields");
const synthesize_operations_1 = require("./synthesize.operations");
const synthesize_fields_1 = require("./synthesize.fields");
exports.edgeTTSNodeProperties = [
{
displayName: 'Resource',
name: 'resource',
type: 'options',
noDataExpression: true,
options: [
{
name: 'Synthesize',
value: 'synthesize',
description: 'Convert text to speech',
},
{
name: 'Voice',
value: 'voice',
description: 'Manage and explore available voices',
},
],
default: 'synthesize',
},
...synthesize_operations_1.synthesizeOperations,
...synthesize_fields_1.synthesizeFields,
...voice_operations_1.voiceOperations,
...voice_fields_1.voiceFields,
];
//# sourceMappingURL=index.js.map