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.

65 lines 1.63 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.aiAppFields = void 0; exports.aiAppFields = [ { displayName: 'App ID', name: 'appId', type: 'string', default: '', displayOptions: { show: { resource: ['aiApp'], operation: ['getAIAppOutputs'], }, }, description: 'ID of the app to get outputs for', }, { displayName: 'Transcript ID', name: 'transcriptId', type: 'string', default: '', displayOptions: { show: { resource: ['aiApp'], operation: ['getAIAppOutputs'], }, }, description: 'ID of the transcript to get app outputs for', }, { displayName: 'Limit', name: 'limit', type: 'number', default: 10, typeOptions: { minValue: 1, maxValue: 10, }, displayOptions: { show: { resource: ['aiApp'], operation: ['getAIAppOutputs'], }, }, description: 'Max number of results to return', }, { displayName: 'Skip', name: 'skip', type: 'number', default: 0, typeOptions: { minValue: 0, }, displayOptions: { show: { resource: ['aiApp'], operation: ['getAIAppOutputs'], }, }, description: 'Number of results to skip', }, ]; //# sourceMappingURL=aiApp.fields.js.map