Add Activepieces integration for workflow automation

- 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>
This commit is contained in:
poduck
2025-12-18 22:59:37 -05:00
parent 9848268d34
commit 3aa7199503
16292 changed files with 1284892 additions and 4708 deletions

View File

@@ -0,0 +1,17 @@
import { createPiece } from "@activepieces/pieces-framework";
import { hastewireAuth } from "./lib/common/auth";
import { PieceCategory } from "@activepieces/shared";
import { detectTextAction } from "./lib/actions/detect-text";
import { humanizeTextAction } from "./lib/actions/humanize-text";
export const hastewire = createPiece({
displayName: "Hastewire",
auth: hastewireAuth,
categories: [PieceCategory.ARTIFICIAL_INTELLIGENCE],
minimumSupportedRelease: '0.36.1',
logoUrl: "https://cdn.activepieces.com/pieces/hastewire.png",
authors: ['kishanprmr'],
actions: [detectTextAction,humanizeTextAction],
triggers: [],
});

View File

@@ -0,0 +1,32 @@
import { createAction, Property } from "@activepieces/pieces-framework";
import { hastewireAuth } from "../common/auth";
import {AuthenticationType, httpClient, HttpMethod} from "@activepieces/pieces-common";
export const detectTextAction = createAction({
name:'detect-text',
auth:hastewireAuth,
displayName:'Detect Text',
description:'Analyzes text and returns the likelihood of it being AI-generated or human-written.',
props:{
text:Property.LongText({
displayName:'Input Text',
required:true
})
},
async run(context)
{
const response = await httpClient.sendRequest({
method:HttpMethod.POST,
url:'https://hastewire.com/api/v1/detect',
authentication:{
type:AuthenticationType.BEARER_TOKEN,
token:context.auth.secret_text
},
body:{
text:context.propsValue.text
}
})
return response.body;
}
})

View File

@@ -0,0 +1,45 @@
import { createAction, Property } from "@activepieces/pieces-framework";
import { hastewireAuth } from "../common/auth";
import { AuthenticationType, httpClient, HttpMethod } from "@activepieces/pieces-common";
export const humanizeTextAction = createAction({
name: 'humanize-text',
auth: hastewireAuth,
displayName: 'Humanize Text',
description: 'Rephrases a given AI-generated text to be more human like.',
props: {
text: Property.LongText({
displayName: 'Input Text',
required: true
}),
style: Property.StaticDropdown({
displayName: 'Text Style',
required: false,
description:'The desired writing style for the output.',
options: {
disabled: false,
options: [
{ label: 'formal', value: 'formal' },
{ label: 'standard', value: 'standard' },
{ label: 'academic', value: 'academic' }
]
}
})
},
async run(context) {
const response = await httpClient.sendRequest({
method: HttpMethod.POST,
url: 'https://hastewire.com/api/v1/humanize',
authentication: {
type: AuthenticationType.BEARER_TOKEN,
token: context.auth.secret_text
},
body: {
text: context.propsValue.text,
style:context.propsValue.style
}
})
return response.body;
}
})

View File

@@ -0,0 +1,7 @@
import { PieceAuth } from "@activepieces/pieces-framework";
export const hastewireAuth = PieceAuth.SecretText({
displayName:'API Key',
required:true,
description:`You can obtain API key from [Settings](https://hastewire.com/humanizer/account/api-keys).`
})