- Add Activepieces fork with SmoothSchedule custom piece - Create integrations app with Activepieces service layer - Add embed token endpoint for iframe integration - Create Automations page with embedded workflow builder - Add sidebar visibility fix for embed mode - Add list inactive customers endpoint to Public API - Include SmoothSchedule triggers: event created/updated/cancelled - Include SmoothSchedule actions: create/update/cancel events, list resources/services/customers 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
40 lines
1.5 KiB
TypeScript
40 lines
1.5 KiB
TypeScript
import { createPiece, PieceAuth } from '@activepieces/pieces-framework';
|
|
import { PieceCategory } from '@activepieces/shared';
|
|
|
|
import { findMeetingByIdAction } from './lib/actions/find-meeting-by-id';
|
|
import { findRecentMeetingAction } from './lib/actions/find-recent-meeting';
|
|
import { findMeetingByQueryAction } from './lib/actions/find-meeting-by-query';
|
|
import { uploadAudioAction } from './lib/actions/upload-audio';
|
|
import { getUserDetailsAction } from './lib/actions/get-user-details';
|
|
import { newTranscriptionCompletedTrigger } from './lib/triggers/new-transcription-complete';
|
|
|
|
const markdownDescription = `
|
|
To use Fireflies.ai, you need to get an API key:
|
|
1. Login to your account at https://fireflies.ai.
|
|
2. Navigate to Settings > Developer Settings in the left sidebar.
|
|
3. Copy the API key from the API Key section.
|
|
`;
|
|
|
|
export const firefliesAiAuth = PieceAuth.SecretText({
|
|
displayName: 'API Key',
|
|
description: markdownDescription,
|
|
required: true,
|
|
});
|
|
|
|
export const firefliesAi = createPiece({
|
|
displayName: 'Fireflies.ai',
|
|
description: 'Meeting assistant that automatically records, transcribes, and analyzes conversations',
|
|
logoUrl: 'https://cdn.activepieces.com/pieces/fireflies-ai.png',
|
|
authors: ['AnkitSharmaOnGithub'],
|
|
auth: firefliesAiAuth,
|
|
actions: [
|
|
findMeetingByIdAction,
|
|
findRecentMeetingAction,
|
|
findMeetingByQueryAction,
|
|
uploadAudioAction,
|
|
getUserDetailsAction
|
|
],
|
|
triggers: [newTranscriptionCompletedTrigger],
|
|
categories: [PieceCategory.PRODUCTIVITY],
|
|
});
|