- 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>
48 lines
1.7 KiB
TypeScript
48 lines
1.7 KiB
TypeScript
import { createPiece } from '@activepieces/pieces-framework';
|
|
import { ApitemplateAuth } from './lib/common/auth';
|
|
import { createImage } from './lib/actions/create-image';
|
|
import { createPdf } from './lib/actions/create-pdf';
|
|
import { getAccountInformation } from './lib/actions/get-account-information';
|
|
import { deleteObject } from './lib/actions/delete-object';
|
|
import { listObjects } from './lib/actions/list-objects';
|
|
import { createPdfFromHtml } from './lib/actions/create-pdf-from-html';
|
|
import { createPdfFromUrl } from './lib/actions/create-pdf-from-url';
|
|
import { PieceCategory } from '@activepieces/shared';
|
|
import { createCustomApiCallAction } from '@activepieces/pieces-common';
|
|
import { ApitemplateAuthConfig, ApitemplateRegion, getRegionalBaseUrl } from './lib/common/client';
|
|
|
|
export const apitemplateIo = createPiece({
|
|
displayName: 'APITemplate.io',
|
|
auth: ApitemplateAuth,
|
|
minimumSupportedRelease: '0.36.1',
|
|
logoUrl: 'https://cdn.activepieces.com/pieces/apitemplate-io.png',
|
|
categories: [PieceCategory.CONTENT_AND_FILES, PieceCategory.PRODUCTIVITY],
|
|
authors: ['Sanket6652'],
|
|
actions: [
|
|
createImage,
|
|
createPdfFromHtml,
|
|
createPdfFromUrl,
|
|
createPdf,
|
|
deleteObject,
|
|
getAccountInformation,
|
|
listObjects,
|
|
createCustomApiCallAction({
|
|
auth: ApitemplateAuth,
|
|
baseUrl: (auth) => {
|
|
const authConfig = auth?.props;
|
|
if (!authConfig) {
|
|
return '';
|
|
}
|
|
return getRegionalBaseUrl(authConfig.region as ApitemplateRegion);
|
|
},
|
|
authMapping: async (auth) => {
|
|
const authConfig = auth.props;
|
|
return {
|
|
'X-API-KEY': authConfig.apiKey,
|
|
};
|
|
},
|
|
}),
|
|
],
|
|
triggers: [],
|
|
});
|