- 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>
25 lines
1.2 KiB
TypeScript
25 lines
1.2 KiB
TypeScript
import { createPiece } from '@activepieces/pieces-framework';
|
||
import { PieceCategory } from '@activepieces/shared';
|
||
import { generateImagesFromExistingImage } from './lib/actions/generate-images-from-existing-image';
|
||
import { generateImagesFromText } from './lib/actions/generate-images-from-text';
|
||
import { generateVideoFromText } from './lib/actions/generate-video-from-text';
|
||
import { imageBackgroundRemoval } from './lib/actions/image-background-removal';
|
||
import { runwareAuth } from './lib/common';
|
||
|
||
export const runware = createPiece({
|
||
displayName: 'Runware',
|
||
description:'Runware.AI is a high-performance, cost-effective AI media generation API specializing in images and videos. Through this integration, workflows can automatically generate visuals via text or image prompts and interact with Runware’s full-featured API.',
|
||
categories: [PieceCategory.ARTIFICIAL_INTELLIGENCE],
|
||
auth: runwareAuth,
|
||
minimumSupportedRelease: '0.36.1',
|
||
logoUrl: 'https://cdn.activepieces.com/pieces/runware.png',
|
||
authors: ['LuizDMM','sanket-a11y'],
|
||
actions: [
|
||
generateImagesFromText,
|
||
generateImagesFromExistingImage,
|
||
generateVideoFromText,
|
||
imageBackgroundRemoval,
|
||
],
|
||
triggers: [],
|
||
});
|