- 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>
28 lines
1.2 KiB
TypeScript
28 lines
1.2 KiB
TypeScript
import { createPiece } from '@activepieces/pieces-framework';
|
|
import { create1stopBooking } from './lib/actions/create-1-stop-booking';
|
|
import { create2stopBooking } from './lib/actions/create-2-stop-booking';
|
|
import { motiontoolsAuth } from './lib/common/auth';
|
|
import { bookingCreated } from './lib/triggers/booking-created';
|
|
import { bookingStatusUpdate } from './lib/triggers/booking-status-update';
|
|
import { bookingStopStatusUpdate } from './lib/triggers/booking-stop-status-update';
|
|
import { packageCreated } from './lib/triggers/package-created';
|
|
import { packageStatusUpdate } from './lib/triggers/package-status-update';
|
|
|
|
export const motiontools = createPiece({
|
|
displayName: 'MotionTools',
|
|
auth: motiontoolsAuth,
|
|
description:
|
|
'Digitize processes, boost efficiency and excite users with MotionTools, the operating system for fleet-based service providers.',
|
|
minimumSupportedRelease: '0.36.1',
|
|
logoUrl: 'https://cdn.activepieces.com/pieces/motiontools.png',
|
|
authors: ['sanket-a11y'],
|
|
actions: [create1stopBooking, create2stopBooking],
|
|
triggers: [
|
|
bookingCreated,
|
|
bookingStatusUpdate,
|
|
bookingStopStatusUpdate,
|
|
packageCreated,
|
|
packageStatusUpdate,
|
|
],
|
|
});
|