- 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>
56 lines
1.4 KiB
TypeScript
56 lines
1.4 KiB
TypeScript
import { httpClient, HttpMethod } from '@activepieces/pieces-common';
|
|
import { createPiece, PieceAuth } from '@activepieces/pieces-framework';
|
|
import { PieceCategory } from '@activepieces/shared';
|
|
import { searchAction } from './lib/actions/search';
|
|
import { extractAction } from './lib/actions/extract';
|
|
|
|
const markdownDescription = `
|
|
Follow these steps to obtain your Tavily API Key:
|
|
|
|
1. Visit [tavily](https://tavily.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 tavilyAuth = PieceAuth.SecretText({
|
|
description: markdownDescription,
|
|
displayName: 'API Key',
|
|
required: true,
|
|
validate: async ({ auth }) => {
|
|
try {
|
|
await httpClient.sendRequest({
|
|
method: HttpMethod.POST,
|
|
url: 'https://api.tavily.com/search',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: {
|
|
api_key: auth,
|
|
query: 'test',
|
|
search_depth: 'basic',
|
|
},
|
|
});
|
|
return {
|
|
valid: true,
|
|
};
|
|
} catch (e) {
|
|
return {
|
|
valid: false,
|
|
error: 'Invalid API Key',
|
|
};
|
|
}
|
|
},
|
|
});
|
|
|
|
export const tavily = createPiece({
|
|
displayName: 'Tavily',
|
|
description: 'Search engine tailored for AI agents.',
|
|
minimumSupportedRelease: '0.30.0',
|
|
logoUrl: 'https://cdn.activepieces.com/pieces/tavily.jpg',
|
|
categories: [PieceCategory.ARTIFICIAL_INTELLIGENCE],
|
|
authors: ['OsamaHaikal'],
|
|
auth: tavilyAuth,
|
|
actions: [searchAction, extractAction],
|
|
triggers: [],
|
|
});
|