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:
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"extends": [
|
||||
"../../../../.eslintrc.base.json"
|
||||
],
|
||||
"ignorePatterns": [
|
||||
"!**/*"
|
||||
],
|
||||
"overrides": [
|
||||
{
|
||||
"files": [
|
||||
"*.ts",
|
||||
"*.tsx",
|
||||
"*.js",
|
||||
"*.jsx"
|
||||
],
|
||||
"rules": {}
|
||||
},
|
||||
{
|
||||
"files": [
|
||||
"*.ts",
|
||||
"*.tsx"
|
||||
],
|
||||
"rules": {}
|
||||
},
|
||||
{
|
||||
"files": [
|
||||
"*.js",
|
||||
"*.jsx"
|
||||
],
|
||||
"rules": {}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
# pieces-hastewire
|
||||
|
||||
This library was generated with [Nx](https://nx.dev).
|
||||
|
||||
## Building
|
||||
|
||||
Run `nx build pieces-hastewire` to build the library.
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"name": "@activepieces/piece-hastewire",
|
||||
"version": "0.0.1",
|
||||
"type": "commonjs",
|
||||
"main": "./src/index.js",
|
||||
"types": "./src/index.d.ts",
|
||||
"dependencies": {
|
||||
"tslib": "^2.3.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,65 @@
|
||||
{
|
||||
"name": "pieces-hastewire",
|
||||
"$schema": "../../../../node_modules/nx/schemas/project-schema.json",
|
||||
"sourceRoot": "packages/pieces/community/hastewire/src",
|
||||
"projectType": "library",
|
||||
"release": {
|
||||
"version": {
|
||||
"manifestRootsToUpdate": [
|
||||
"dist/{projectRoot}"
|
||||
],
|
||||
"currentVersionResolver": "git-tag",
|
||||
"fallbackCurrentVersionResolver": "disk"
|
||||
}
|
||||
},
|
||||
"tags": [],
|
||||
"targets": {
|
||||
"build": {
|
||||
"executor": "@nx/js:tsc",
|
||||
"outputs": [
|
||||
"{options.outputPath}"
|
||||
],
|
||||
"options": {
|
||||
"outputPath": "dist/packages/pieces/community/hastewire",
|
||||
"tsConfig": "packages/pieces/community/hastewire/tsconfig.lib.json",
|
||||
"packageJson": "packages/pieces/community/hastewire/package.json",
|
||||
"main": "packages/pieces/community/hastewire/src/index.ts",
|
||||
"assets": [
|
||||
"packages/pieces/community/hastewire/*.md",
|
||||
{
|
||||
"input": "packages/pieces/community/hastewire/src/i18n",
|
||||
"output": "./src/i18n",
|
||||
"glob": "**/!(i18n.json)"
|
||||
}
|
||||
],
|
||||
"buildableProjectDepsInPackageJsonType": "dependencies",
|
||||
"updateBuildableProjectDepsInPackageJson": true
|
||||
},
|
||||
"dependsOn": [
|
||||
"prebuild",
|
||||
"^build"
|
||||
]
|
||||
},
|
||||
"nx-release-publish": {
|
||||
"options": {
|
||||
"packageRoot": "dist/{projectRoot}"
|
||||
}
|
||||
},
|
||||
"prebuild": {
|
||||
"dependsOn": [
|
||||
"^build"
|
||||
],
|
||||
"executor": "nx:run-commands",
|
||||
"options": {
|
||||
"cwd": "packages/pieces/community/hastewire",
|
||||
"command": "bun install --no-save --silent"
|
||||
}
|
||||
},
|
||||
"lint": {
|
||||
"executor": "@nx/eslint:lint",
|
||||
"outputs": [
|
||||
"{options.outputFile}"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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: [],
|
||||
});
|
||||
@@ -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;
|
||||
}
|
||||
})
|
||||
@@ -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;
|
||||
}
|
||||
})
|
||||
@@ -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).`
|
||||
})
|
||||
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"extends": "../../../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"strict": true,
|
||||
"importHelpers": true,
|
||||
"noImplicitOverride": true,
|
||||
"noImplicitReturns": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noPropertyAccessFromIndexSignature": true
|
||||
},
|
||||
"files": [],
|
||||
"include": [],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.lib.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "../../../../dist/out-tsc",
|
||||
"declaration": true,
|
||||
"types": ["node"]
|
||||
},
|
||||
"include": ["src/**/*.ts"]
|
||||
}
|
||||
Reference in New Issue
Block a user