UNPKG

@firefliesai/n8n-nodes-fireflies

Version:

An n8n integration for the Fireflies.ai API that enables workflow automation with meeting transcripts, analytics, summaries, and other conversation data from Fireflies.ai's AI meeting assistant.

69 lines 2.01 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.meetingFields = void 0; exports.meetingFields = [ { displayName: 'Meeting Link', name: 'meetingLink', type: 'string', required: true, default: '', displayOptions: { show: { resource: ['meeting'], operation: ['addToLiveMeeting'], }, }, description: 'The URL of the live meeting to join', }, { displayName: 'Additional Fields', name: 'additionalFields', type: 'collection', placeholder: 'Add Field', default: {}, displayOptions: { show: { resource: ['meeting'], operation: ['addToLiveMeeting'], }, }, options: [ { displayName: 'Duration', name: 'duration', type: 'number', typeOptions: { minValue: 1, }, default: 60, description: 'Meeting duration in minutes', }, { displayName: 'Language', name: 'language', type: 'string', default: '', description: 'Language for transcription (e.g., en-US)', }, { displayName: 'Meeting Password', name: 'meetingPassword', type: 'string', typeOptions: { password: true, }, default: '', description: 'Password for the meeting if required', }, { displayName: 'Title', name: 'title', type: 'string', default: '', description: 'Title for the meeting recording', }, ], }, ]; //# sourceMappingURL=meeting.fields.js.map