- 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>
35 lines
1.3 KiB
TypeScript
35 lines
1.3 KiB
TypeScript
|
|
import { createPiece } from "@activepieces/pieces-framework";
|
|
import { netlifyAuth } from "./lib/common/auth";
|
|
import { startDeploy } from "./lib/actions/start-deploy";
|
|
import { getSite } from "./lib/actions/get-site";
|
|
import { listSiteDeploys } from "./lib/actions/list-site-deploys";
|
|
import { listFiles } from "./lib/actions/list-files";
|
|
import { newDeployStarted } from "./lib/triggers/new-deploy-started";
|
|
import { newDeploySucceeded } from "./lib/triggers/new-deploy-succeeded";
|
|
import { newDeployFailed } from "./lib/triggers/new-deploy-failed";
|
|
import { newFormSubmission } from "./lib/triggers/new-form-submission";
|
|
import { PieceCategory } from "@activepieces/shared";
|
|
|
|
export const netlify = createPiece({
|
|
displayName: "Netlify",
|
|
auth: netlifyAuth,
|
|
minimumSupportedRelease: '0.36.1',
|
|
description: "Netlify is a platform for building and deploying websites and apps.",
|
|
logoUrl: "https://cdn.activepieces.com/pieces/netlify.png",
|
|
authors: ["sparkybug"],
|
|
categories: [PieceCategory.DEVELOPER_TOOLS],
|
|
actions: [
|
|
startDeploy,
|
|
getSite,
|
|
listSiteDeploys,
|
|
listFiles,
|
|
],
|
|
triggers: [
|
|
newDeployStarted,
|
|
newDeploySucceeded,
|
|
newDeployFailed,
|
|
newFormSubmission,
|
|
],
|
|
});
|
|
|