@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.
112 lines • 3.53 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.audioFields = void 0;
exports.audioFields = [
{
displayName: 'URL',
name: 'url',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: ['audio'],
operation: ['uploadAudio'],
},
},
description: 'URL of the audio file to upload',
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
displayOptions: {
show: {
resource: ['audio'],
operation: ['uploadAudio'],
},
},
description: 'Title of the audio file',
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: ['audio'],
operation: ['uploadAudio'],
},
},
options: [
{
displayName: 'Attendees',
name: 'attendees',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
},
default: {},
options: [
{
name: 'attendeeValues',
displayName: 'Attendee',
values: [
{
displayName: 'Display Name',
name: 'displayName',
type: 'string',
default: '',
},
{
displayName: 'Email',
name: 'email',
type: 'string',
placeholder: 'example@example.com',
default: '',
},
{
displayName: 'Phone Number',
name: 'phoneNumber',
type: 'string',
default: '',
},
],
},
],
},
{
displayName: 'Client Reference ID',
name: 'client_reference_id',
type: 'string',
default: '',
description: 'Custom identifier for the recording',
},
{
displayName: 'Custom Language',
name: 'custom_language',
type: 'string',
default: '',
description: 'Specify a language for transcription',
},
{
displayName: 'Save Video',
name: 'save_video',
type: 'boolean',
default: false,
description: 'Whether to save the video file',
},
{
displayName: 'Webhook',
name: 'webhook',
type: 'string',
default: '',
description: 'URL to receive webhook notifications',
},
],
},
];
//# sourceMappingURL=audio.fields.js.map