- 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>
145 lines
4.5 KiB
TypeScript
145 lines
4.5 KiB
TypeScript
|
|
import { createCustomApiCallAction } from '@activepieces/pieces-common';
|
|
import { PieceAuth, createPiece, Property } from "@activepieces/pieces-framework";
|
|
import { PieceCategory } from '@activepieces/shared';
|
|
import { HttpMethod, httpClient, AuthenticationType } from '@activepieces/pieces-common';
|
|
import { converseWithDocumentAction } from './lib/actions/converse-with-document';
|
|
import { createConversationAction } from './lib/actions/create-conversation';
|
|
import { newConversationTrigger } from './lib/triggers/new-conversation';
|
|
|
|
const markdown = `
|
|
## Instabase AI Hub Connection Setup
|
|
|
|
### Prerequisites
|
|
- Create an AI Hub account at [Instabase](https://www.instabase.com)
|
|
- Generate an API token from your account settings
|
|
- Obtain your organization ID or user ID for the IB-Context header
|
|
|
|
### Authentication Fields
|
|
|
|
**API Token**: Your API token from Instabase (required for Bearer authentication)
|
|
|
|
**IB Context**: Your organization ID or user ID
|
|
- For organization accounts: Use your organization ID
|
|
- For community accounts: Use your user ID or omit this field
|
|
|
|
**API Root URL**: The base URL for API calls
|
|
- For community accounts: \`https://aihub.instabase.com/api\`
|
|
- For organization accounts: \`https://your-organization.instabase.com/api\` (replace with your custom domain)
|
|
`;
|
|
|
|
export const instabaseAuth = PieceAuth.CustomAuth({
|
|
required: true,
|
|
description: markdown,
|
|
props: {
|
|
apiToken: PieceAuth.SecretText({
|
|
displayName: 'API Token',
|
|
description: 'Your Instabase API token',
|
|
required: true,
|
|
}),
|
|
ibContext: Property.ShortText({
|
|
displayName: 'IB Context',
|
|
description: 'Organization ID (for org accounts) or User ID (for community accounts)',
|
|
required: false,
|
|
}),
|
|
apiRoot: Property.ShortText({
|
|
displayName: 'API Root URL',
|
|
description: 'API base URL (e.g., https://aihub.instabase.com/api for community accounts)',
|
|
required: true,
|
|
}),
|
|
},
|
|
validate: async ({ auth }) => {
|
|
try {
|
|
const { apiToken, ibContext, apiRoot } = auth;
|
|
|
|
try {
|
|
const parsedUrl = new URL(apiRoot);
|
|
if (parsedUrl.protocol !== 'https:') {
|
|
return {
|
|
valid: false,
|
|
error: 'API Root URL must use HTTPS protocol'
|
|
};
|
|
}
|
|
if (!parsedUrl.pathname.endsWith('/api')) {
|
|
return {
|
|
valid: false,
|
|
error: 'API Root URL must end with /api'
|
|
};
|
|
}
|
|
} catch {
|
|
return {
|
|
valid: false,
|
|
error: 'Please enter a valid API Root URL'
|
|
};
|
|
}
|
|
|
|
const headers: Record<string, string> = {
|
|
'Authorization': `Bearer ${apiToken}`,
|
|
'Content-Type': 'application/json',
|
|
};
|
|
|
|
if (ibContext) {
|
|
headers['IB-Context'] = ibContext;
|
|
}
|
|
|
|
const response = await httpClient.sendRequest({
|
|
method: HttpMethod.POST,
|
|
url: `${apiRoot}/v2/batches`,
|
|
headers,
|
|
body: { name: 'test-connection' },
|
|
authentication: {
|
|
type: AuthenticationType.BEARER_TOKEN,
|
|
token: apiToken,
|
|
},
|
|
});
|
|
|
|
if (response.status >= 200 && response.status < 300) {
|
|
return {
|
|
valid: true,
|
|
};
|
|
}
|
|
|
|
return {
|
|
valid: false,
|
|
error: `API connection failed with status ${response.status}. Please check your credentials and API root URL.`,
|
|
};
|
|
} catch (error) {
|
|
return {
|
|
valid: false,
|
|
error: `Connection failed: ${error instanceof Error ? error.message : 'Unknown error'}. Please verify your API token and URL.`,
|
|
};
|
|
}
|
|
},
|
|
});
|
|
|
|
export const instabase = createPiece({
|
|
displayName: "Instabase",
|
|
description: "Integrate with Instabase AI Hub to automate document processing and AI workflows",
|
|
auth: instabaseAuth,
|
|
minimumSupportedRelease: '0.36.1',
|
|
logoUrl: "https://cdn.activepieces.com/pieces/instabase.png",
|
|
categories: [PieceCategory.ARTIFICIAL_INTELLIGENCE],
|
|
authors: ["onyedikachi-david"],
|
|
actions: [
|
|
createConversationAction,
|
|
converseWithDocumentAction,
|
|
createCustomApiCallAction({
|
|
baseUrl: (auth) => auth ? auth.props.apiRoot : '',
|
|
auth: instabaseAuth,
|
|
authMapping: async (auth) => {
|
|
const headers: Record<string, string> = {
|
|
'Authorization': `Bearer ${auth.props.apiToken}`,
|
|
};
|
|
const ibContext = auth.props.ibContext;
|
|
if (ibContext) {
|
|
headers['IB-Context'] = ibContext;
|
|
}
|
|
return headers;
|
|
},
|
|
}),
|
|
],
|
|
triggers: [
|
|
newConversationTrigger,
|
|
],
|
|
});
|
|
|