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:
@@ -0,0 +1,50 @@
|
||||
import { createPiece, PieceAuth } from '@activepieces/pieces-framework';
|
||||
import { PieceCategory } from '@activepieces/shared';
|
||||
|
||||
// People actions
|
||||
import { getPersonPaths } from './lib/actions/people/get-person-paths';
|
||||
import { sortPeople } from './lib/actions/people/sort-people';
|
||||
import { enrichEmail } from './lib/actions/people/enrich-email';
|
||||
import { enrichPersonBasic } from './lib/actions/people/enrich-person-basic';
|
||||
import { enrichPersonBasicBulk } from './lib/actions/people/enrich-person-basic-bulk';
|
||||
import { enrichEmailsBulk } from './lib/actions/people/enrich-emails-bulk';
|
||||
|
||||
// Company actions
|
||||
import { getCompanyPaths } from './lib/actions/companies/get-company-paths';
|
||||
import { sortCompanies } from './lib/actions/companies/sort-companies';
|
||||
import { enrichCompanyBasic } from './lib/actions/companies/enrich-company-basic';
|
||||
import { enrichCompanyBasicBulk } from './lib/actions/companies/enrich-company-basic-bulk';
|
||||
|
||||
export const villageAuth = PieceAuth.SecretText({
|
||||
displayName: 'API Key',
|
||||
required: true,
|
||||
description: 'Your Village API Key',
|
||||
});
|
||||
|
||||
export const village = createPiece({
|
||||
displayName: 'Village',
|
||||
description: 'The Social Capital API',
|
||||
auth: villageAuth,
|
||||
minimumSupportedRelease: '0.30.0',
|
||||
logoUrl: 'https://cdn.activepieces.com/pieces/village.png',
|
||||
categories: [
|
||||
PieceCategory.PRODUCTIVITY,
|
||||
PieceCategory.SALES_AND_CRM,
|
||||
],
|
||||
authors: ['rafaelmuttoni'],
|
||||
actions: [
|
||||
// People actions
|
||||
getPersonPaths,
|
||||
sortPeople,
|
||||
enrichEmail,
|
||||
enrichPersonBasic,
|
||||
enrichPersonBasicBulk,
|
||||
enrichEmailsBulk,
|
||||
// Company actions
|
||||
getCompanyPaths,
|
||||
sortCompanies,
|
||||
enrichCompanyBasic,
|
||||
enrichCompanyBasicBulk,
|
||||
],
|
||||
triggers: [],
|
||||
});
|
||||
Reference in New Issue
Block a user