@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.
90 lines • 2.92 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.transcriptOperations = void 0;
exports.transcriptOperations = {
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['transcript'],
},
},
options: [
{
name: 'Delete',
action: 'Delete a transcript',
description: 'Permanently delete a transcript',
value: 'deleteTranscript',
},
{
name: 'Get',
action: 'Get a transcript',
description: 'Get transcript details',
value: 'getTranscript',
},
{
name: 'Get Analytics',
action: 'Get analytics of a transcript',
description: 'Get analytics for a transcript',
value: 'getTranscriptAnalytics',
},
{
name: 'Get Audio URL',
action: 'Get audio URL of a transcript',
description: 'Get the audio URL for a transcript',
value: 'getTranscriptAudioUrl',
},
{
name: 'Get List',
action: 'Get a list of transcripts',
description: 'Get a list of transcripts with optional filters',
value: 'getTranscriptsList',
},
{
name: 'Get Summary',
action: 'Get a summary of a transcript',
description: 'Get a summary of a transcript',
value: 'getTranscriptSummary',
},
{
name: 'Get Video URL',
action: 'Get video URL of a transcript',
description: 'Get the video URL for a transcript',
value: 'getTranscriptVideoUrl',
},
{
name: 'Revoke Shared Access',
action: 'Revoke shared meeting access',
description: 'Revoke shared access to a meeting',
value: 'revokeSharedMeetingAccess',
},
{
name: 'Share',
action: 'Share a meeting',
description: 'Share a meeting with other users',
value: 'shareMeeting',
},
{
name: 'Update Channel',
action: 'Update meeting channel',
description: 'Move a meeting to a different channel',
value: 'updateMeetingChannel',
},
{
name: 'Update Privacy',
action: 'Update meeting privacy',
description: 'Change the privacy setting of a meeting',
value: 'updateMeetingPrivacy',
},
{
name: 'Update Title',
action: 'Update meeting title',
description: 'Update the title of a meeting',
value: 'updateMeetingTitle',
},
],
default: 'getTranscript',
};
//# sourceMappingURL=transcript.properties.js.map