- 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>
33 lines
944 B
TypeScript
33 lines
944 B
TypeScript
import { createPiece, PieceAuth } from '@activepieces/pieces-framework';
|
|
import { extractText } from './lib/actions/extract-text';
|
|
import { convertToImage } from './lib/actions/convert-to-image';
|
|
import { textToPdf } from './lib/actions/text-to-pdf';
|
|
import { imageToPdf } from './lib/actions/image-to-pdf';
|
|
import { pdfPageCount } from './lib/actions/pdf-page-count';
|
|
import { extractPdfPages } from './lib/actions/extract-pdf-pages';
|
|
import { mergePdfs } from './lib/actions/merge-pdfs';
|
|
|
|
export const PDF = createPiece({
|
|
displayName: 'PDF',
|
|
auth: PieceAuth.None(),
|
|
minimumSupportedRelease: '0.34.2',
|
|
logoUrl: 'https://cdn.activepieces.com/pieces/pdf.svg',
|
|
authors: [
|
|
'nyamkamunhjin',
|
|
'abuaboud',
|
|
'AbdulTheActivepiecer',
|
|
'jmgb27',
|
|
'danielpoonwj',
|
|
],
|
|
actions: [
|
|
extractText,
|
|
convertToImage,
|
|
textToPdf,
|
|
imageToPdf,
|
|
pdfPageCount,
|
|
extractPdfPages,
|
|
mergePdfs,
|
|
],
|
|
triggers: [],
|
|
});
|