- 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>
32 lines
1.3 KiB
TypeScript
32 lines
1.3 KiB
TypeScript
import { createPiece, PieceAuth } from '@activepieces/pieces-framework';
|
|
import { createSpace } from './lib/actions/create-space';
|
|
import { listSpaces } from './lib/actions/list-spaces';
|
|
import { addSpaceRecord } from './lib/actions/add-space-record';
|
|
import { askSpace } from './lib/actions/ask-space';
|
|
import { deleteSpace } from './lib/actions/delete-space';
|
|
import { renameSpace } from './lib/actions/rename-space';
|
|
import { PieceCategory } from '@activepieces/shared';
|
|
|
|
export const medullarAuth = PieceAuth.SecretText({
|
|
displayName: 'API Key',
|
|
required: true,
|
|
description: 'Please use your personal **API KEY**. You can generate one in your [Medullar account profile](https://my.medullar.com/my-account), under the **API Keys** section.',
|
|
});
|
|
|
|
export const medullar = createPiece({
|
|
displayName: 'Medullar',
|
|
description:
|
|
'AI-powered discovery & insight platform that acts as your extended digital mind',
|
|
auth: medullarAuth,
|
|
minimumSupportedRelease: '0.36.1',
|
|
logoUrl:
|
|
'https://cdn.activepieces.com/pieces/medullar.png',
|
|
authors: ['mllopart'],
|
|
actions: [createSpace, listSpaces, addSpaceRecord, askSpace, deleteSpace, renameSpace],
|
|
triggers: [],
|
|
categories: [
|
|
PieceCategory.ARTIFICIAL_INTELLIGENCE,
|
|
PieceCategory.PRODUCTIVITY,
|
|
],
|
|
});
|