- 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>
53 lines
1.5 KiB
TypeScript
53 lines
1.5 KiB
TypeScript
import {
|
|
PieceAuth,
|
|
Property,
|
|
createPiece,
|
|
} from '@activepieces/pieces-framework';
|
|
import { PieceCategory } from '@activepieces/shared';
|
|
import actions from './lib/actions';
|
|
|
|
export const mysqlAuth = PieceAuth.CustomAuth({
|
|
props: {
|
|
host: Property.ShortText({
|
|
displayName: 'Host',
|
|
required: true,
|
|
description: 'The hostname or address of the mysql server',
|
|
}),
|
|
port: Property.Number({
|
|
displayName: 'Port',
|
|
defaultValue: 3306,
|
|
description: 'The port to use for connecting to the mysql server',
|
|
required: true,
|
|
}),
|
|
user: Property.ShortText({
|
|
displayName: 'Username',
|
|
required: true,
|
|
description: 'The username to use for connecting to the mysql server',
|
|
}),
|
|
password: PieceAuth.SecretText({
|
|
displayName: 'Password',
|
|
description: 'The password to use to identify at the mysql server',
|
|
required: true,
|
|
}),
|
|
database: Property.ShortText({
|
|
displayName: 'Database',
|
|
description: 'The name of the database to use. Required if you are not using the "Execute Query" Action',
|
|
required: false,
|
|
}),
|
|
},
|
|
required: true,
|
|
});
|
|
|
|
export const mysql = createPiece({
|
|
displayName: 'MySQL',
|
|
description: "The world's most popular open-source database",
|
|
|
|
minimumSupportedRelease: '0.30.0',
|
|
logoUrl: 'https://cdn.activepieces.com/pieces/mysql.png',
|
|
categories: [PieceCategory.DEVELOPER_TOOLS],
|
|
authors: ["JanHolger","kishanprmr","khaledmashaly","abuaboud"],
|
|
auth: mysqlAuth,
|
|
actions,
|
|
triggers: [],
|
|
});
|