@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.
48 lines • 1.54 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.askfredOperations = void 0;
exports.askfredOperations = {
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['askfred'],
},
},
options: [
{
name: 'Continue Thread',
action: 'Continue an existing ask fred thread',
description: 'Continue an existing conversation thread with a follow-up question',
value: 'continueThread',
},
{
name: 'Create Thread',
action: 'Create a new ask fred thread',
description: 'Create a new conversation thread with a question about meetings',
value: 'createThread',
},
{
name: 'Delete Thread',
action: 'Delete an ask fred thread',
description: 'Delete a conversation thread and all its messages',
value: 'deleteThread',
},
{
name: 'Get Thread',
action: 'Get an ask fred thread',
description: 'Get a specific thread with all its messages',
value: 'getThread',
},
{
name: 'Get Threads',
action: 'Get ask fred threads',
description: 'Get a list of all conversation threads',
value: 'getThreads',
},
],
default: 'getThreads',
};
//# sourceMappingURL=askfred.properties.js.map