Add Activepieces integration for workflow automation

- 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>
This commit is contained in:
poduck
2025-12-18 22:59:37 -05:00
parent 9848268d34
commit 3aa7199503
16292 changed files with 1284892 additions and 4708 deletions

View File

@@ -0,0 +1,137 @@
import { createAction, Property } from '@activepieces/pieces-framework';
import { httpClient, HttpMethod } from '@activepieces/pieces-common';
import { vidlab7Auth } from '../common/auth';
export const createVideo = createAction({
auth: vidlab7Auth,
name: 'createVideo',
displayName: 'Create Video',
description: 'Generate a video using a studio avatar',
props: {
avatarId: Property.ShortText({
displayName: 'Avatar ID',
description: 'The ID of the avatar to be used for the video generation',
required: true,
}),
script: Property.LongText({
displayName: 'Script',
description: 'The script to be used for the video generation',
required: true,
}),
voiceId: Property.ShortText({
displayName: 'Voice ID',
description: 'The ID of the voice to be used for the video generation',
required: true,
}),
webhookUrl: Property.ShortText({
displayName: 'Webhook URL',
description:
'The URL to which the webhook will be sent when video generation is complete',
required: true,
}),
similarity_boost: Property.Number({
displayName: 'Similarity Boost',
description: 'Voice similarity boost setting (0-100)',
required: false,
defaultValue: 50,
}),
use_speaker_boost: Property.Checkbox({
displayName: 'Use Speaker Boost',
description: 'Enable speaker boost for better voice quality',
required: false,
defaultValue: true,
}),
style: Property.Number({
displayName: 'Style',
description: 'Voice style setting',
required: false,
defaultValue: 0,
}),
stability: Property.Number({
displayName: 'Stability',
description: 'Voice stability setting (0-100)',
required: false,
defaultValue: 50,
}),
waitForCompletion: Property.Checkbox({
displayName: 'Wait for Completion',
description:
'Wait for the video generation to complete and return the video URL. If disabled, only returns the video ID.',
required: false,
defaultValue: false,
}),
},
async run(context) {
const {
avatarId,
script,
voiceId,
webhookUrl,
similarity_boost,
use_speaker_boost,
style,
stability,
waitForCompletion,
} = context.propsValue;
const response = await httpClient.sendRequest({
method: HttpMethod.POST,
url: 'https://api-prd.vidlab7.com/api/studio-avatar/generate-video',
headers: {
'Content-Type': 'application/json',
'x-api-key': context.auth.secret_text,
},
body: {
avatarId,
script,
voiceId,
webhookUrl,
voice_settings: {
similarity_boost,
use_speaker_boost,
style,
stability,
},
},
});
const initialResult = response.body as { id: string; status: string };
if (!waitForCompletion) {
return initialResult;
}
const videoId = initialResult.id;
const interval = 5 * 1000;
const maxWait = 300 * 1000;
const startTime = Date.now();
while (Date.now() - startTime < maxWait) {
await new Promise((resolve) => setTimeout(resolve, interval));
const statusResponse = await httpClient.sendRequest({
method: HttpMethod.GET,
url: `https://api-prd.vidlab7.com/api/studio-avatar/generated-video/${videoId}`,
headers: {
'Content-Type': 'application/json',
'x-api-key': context.auth.secret_text,
},
});
const statusData = statusResponse.body as {
success: boolean;
data: { status: string; videoUrl?: string };
};
if (statusData.success && statusData.data.status === 'COMPLETED') {
return statusData.data;
}
if (statusData.data.status === 'FAILED') {
throw new Error('Video generation failed');
}
}
throw new Error(`Video generation timed out after 300 seconds`);
},
});

View File

@@ -0,0 +1,15 @@
import { PieceAuth } from '@activepieces/pieces-framework';
export const vidlab7Auth = PieceAuth.SecretText({
displayName: 'API Key',
description: `
To generate your API key:
1. Log in to [studio.vidlab7.com](https://studio.vidlab7.com/)
2. Click on **API** in the bottom section of the left-hand menu
3. Click the **Generate new key** button at the top right
4. Give your key a descriptive name and click **Generate**
5. Copy and store the key securely (you'll only see it once)
`,
required: true,
});