- 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>
68 lines
2.0 KiB
TypeScript
68 lines
2.0 KiB
TypeScript
import { createCustomApiCallAction, httpClient, HttpMethod } from '@activepieces/pieces-common';
|
|
import { createPiece, PieceAuth } from '@activepieces/pieces-framework';
|
|
import { PieceCategory } from '@activepieces/shared';
|
|
import { smartScraper } from './lib/actions/smart-scraper';
|
|
import { localScraper } from './lib/actions/local-scraper';
|
|
import { markdownify } from './lib/actions/markdownify';
|
|
|
|
const markdownDescription = `
|
|
Follow these steps to obtain your ScrapeGraphAI API Key:
|
|
|
|
1. Visit [ScrapeGraphAI](https://scrapegraphai.com) and create an account.
|
|
2. Log in and navigate to your dashboard.
|
|
3. Locate and copy your API key from the dashboard.
|
|
`;
|
|
|
|
export const scrapegraphaiAuth = PieceAuth.SecretText({
|
|
description: markdownDescription,
|
|
displayName: 'API Key',
|
|
required: true,
|
|
validate: async ({ auth }) => {
|
|
try {
|
|
await httpClient.sendRequest({
|
|
method: HttpMethod.POST,
|
|
url: 'https://api.scrapegraphai.com/v1/smartscraper',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'SGAI-APIKEY': auth,
|
|
},
|
|
body: {
|
|
user_prompt: 'test',
|
|
website_url: 'https://www.example.com',
|
|
},
|
|
});
|
|
return {
|
|
valid: true,
|
|
};
|
|
} catch (e) {
|
|
return {
|
|
valid: false,
|
|
error: 'Invalid API Key',
|
|
};
|
|
}
|
|
},
|
|
});
|
|
|
|
export const scrapegraphai = createPiece({
|
|
displayName: 'ScrapeGraphAI',
|
|
description: 'AI-powered web scraping and content extraction.',
|
|
minimumSupportedRelease: '0.30.0',
|
|
logoUrl: 'https://cdn.activepieces.com/pieces/scrapegraphai.jpg',
|
|
categories: [PieceCategory.ARTIFICIAL_INTELLIGENCE],
|
|
authors: ["OsamaHaikal"],
|
|
auth: scrapegraphaiAuth,
|
|
actions: [
|
|
smartScraper,
|
|
localScraper,
|
|
markdownify,
|
|
createCustomApiCallAction({
|
|
baseUrl: () => 'https://api.scrapegraphai.com/v1',
|
|
auth: scrapegraphaiAuth,
|
|
authMapping: async (auth) => ({
|
|
'SGAI-APIKEY': `${auth.secret_text}`,
|
|
}),
|
|
}),
|
|
],
|
|
triggers: [],
|
|
});
|
|
|