Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion packages/pieces/community/alai/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@activepieces/piece-alai",
"version": "0.1.5",
"version": "0.1.6",
"type": "commonjs",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { presentationId } from '../common/props';
export const addSlide = createAction({
auth: alaiAuth,
name: 'addSlide',
classification: 'WRITE',
displayName: 'Add Slide',
description: 'Add a new slide to an existing presentation.',
audience: 'both',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { alaiAuth } from '../common/auth';
export const deletePresentation = createAction({
auth: alaiAuth,
name: 'deletePresentation',
classification: 'DESTRUCTIVE',
displayName: 'Delete Presentation',
description: 'Delete a presentation by its ID.',
audience: 'both',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));
export const exportPresentation = createAction({
auth: alaiAuth,
name: 'exportPresentation',
classification: 'WRITE',
displayName: 'Export Presentation',
description: 'Export a presentation in the specified formats.',
audience: 'both',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));
export const generatePresentation = createAction({
auth: alaiAuth,
name: 'generatePresentation',
classification: 'WRITE',
displayName: 'Generate Presentation',
description: 'Create a new AI-generated presentation from text.',
audience: 'both',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { alaiAuth } from '../common/auth';
export const getGeneration = createAction({
auth: alaiAuth,
name: 'getGeneration',
classification: 'READ',
displayName: 'Get Generation',
description: 'Fetch the status and result of a generation job.',
audience: 'both',
Expand Down
2 changes: 1 addition & 1 deletion packages/pieces/community/algolia/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@activepieces/piece-algolia",
"version": "0.0.5",
"version": "0.0.6",
"type": "commonjs",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { parseRequiredString } from '../common/utils';
export const browseRecordsAction = createAction({
auth: algoliaAuth,
name: 'browse-records',
classification: 'SEARCH',
displayName: 'Browse Records',
description: 'Retrieves records from an Algolia index.',
audience: 'both',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { parseRequiredString, parseStringArray } from '../common/utils';
export const deleteRecordsAction = createAction({
auth: algoliaAuth,
name: 'delete-records',
classification: 'DESTRUCTIVE',
displayName: 'Delete Records',
description: 'Deletes records from an Algolia index by objectID.',
audience: 'both',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { parseAlgoliaRecordArray, parseRequiredString } from '../common/utils';
export const saveRecordsAction = createAction({
auth: algoliaAuth,
name: 'save-records',
classification: 'WRITE',
displayName: 'Save Records',
description: 'Adds or updates records in an Algolia index.',
audience: 'both',
Expand Down
2 changes: 1 addition & 1 deletion packages/pieces/community/alt-text-ai/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@activepieces/piece-alt-text-ai",
"version": "0.1.7",
"version": "0.1.8",
"type": "commonjs",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { BASE_URL } from "../common/constants";

export const generateAltTextAction = createAction({
name: 'generate-alt-text',
classification: 'READ',
auth: altTextAiAuth,
displayName: 'Generate Alt Text',
description: 'Generates a descriptive alt text for a given image.',
Expand Down
2 changes: 1 addition & 1 deletion packages/pieces/community/alttextify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@activepieces/piece-alttextify",
"version": "0.1.7",
"version": "0.1.8",
"type": "commonjs",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import mime from 'mime-types';

export const generateAltTextAction = createAction({
name: 'generate-alt-text',
classification: 'READ',
auth: alttextifyAuth,
displayName: 'Generate Image Alt Text',
description: 'Generates alt text for specified image.',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@activepieces/piece-amazon-secrets-manager",
"version": "0.1.2",
"version": "0.1.3",
"type": "commonjs",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { resolveSecretsManagerClient } from '../common/client';
export const createSecret = createAction({
auth: awsSecretsManagerCombinedAuth,
name: 'createSecret',
classification: 'WRITE',
displayName: 'Create Secret',
description: 'Creates a new secret.',
audience: 'both',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { secretIdDropdown } from '../common/props';
export const deleteSecret = createAction({
auth: awsSecretsManagerCombinedAuth,
name: 'deleteSecret',
classification: 'DESTRUCTIVE',
displayName: 'Delete Secret',
description: 'Deletes an existing secret.',
audience: 'both',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { resolveSecretsManagerClient } from '../common/client';
export const findSecret = createAction({
auth: awsSecretsManagerCombinedAuth,
name: 'findSecret',
classification: 'SEARCH',
displayName: 'Find Secret',
description: 'Finds an existing secret using filters.',
audience: 'both',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { resolveSecretsManagerClient } from '../common/client';
export const getARandomPassword = createAction({
auth: awsSecretsManagerCombinedAuth,
name: 'getARandomPassword',
classification: 'READ',
displayName: 'Generate Random Password',
description: 'Generates a random password using AWS Secrets Manager.',
audience: 'both',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { secretIdDropdown } from '../common/props';
export const getSecretValue = createAction({
auth: awsSecretsManagerCombinedAuth,
name: 'getSecretValue',
classification: 'READ',
displayName: 'Get Secret Value',
description: 'Retrieves a secret value.',
audience: 'both',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { secretIdDropdown } from '../common/props';
export const updateSecret = createAction({
auth: awsSecretsManagerCombinedAuth,
name: 'updateSecret',
classification: 'WRITE',
displayName: 'Update Secret',
description: 'Updates an existing secret.',
audience: 'both',
Expand Down
2 changes: 1 addition & 1 deletion packages/pieces/community/amazon-ses/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@activepieces/piece-amazon-ses",
"version": "0.1.6",
"version": "0.1.7",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"dependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import {
export const createCustomVerificationEmailTemplate = createAction({
auth: amazonSesAuth,
name: 'create_custom_verification_email_template',
classification: 'WRITE',
displayName: 'Create Custom Verification Email Template',
description: 'Create custom email template for identity verification',
audience: 'both',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import {
export const createEmailTemplate = createAction({
auth: amazonSesAuth,
name: 'create_email_template',
classification: 'WRITE',
displayName: 'Create Email Template',
description: 'Create a reusable HTML or text email template with variables',
audience: 'both',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import {
export const sendCustomVerificationEmail = createAction({
auth: amazonSesAuth,
name: 'send_custom_verification_email',
classification: 'WRITE',
displayName: 'Send Custom Verification Email',
description:
'Send verification email to add an email address to SES identities',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import {
export const sendEmail = createAction({
auth: amazonSesAuth,
name: 'send_email',
classification: 'WRITE',
displayName: 'Send Email',
description:
'Send a customizable email via Amazon SES with verified sender addresses',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import {
export const sendTemplatedEmail = createAction({
auth: amazonSesAuth,
name: 'send_templated_email',
classification: 'WRITE',
displayName: 'Send Templated Email',
description: 'Send personalized emails using pre-created templates',
audience: 'both',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import {
export const updateCustomVerificationEmailTemplate = createAction({
auth: amazonSesAuth,
name: 'update_custom_verification_email_template',
classification: 'WRITE',
displayName: 'Update Custom Verification Email Template',
description: 'Modify an existing custom verification email template',
audience: 'both',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import {
export const updateEmailTemplate = createAction({
auth: amazonSesAuth,
name: 'update_email_template',
classification: 'WRITE',
displayName: 'Update Email Template',
description: 'Modify an existing email template with new content',
audience: 'both',
Expand Down
2 changes: 1 addition & 1 deletion packages/pieces/community/amazon-sns/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@activepieces/piece-amazon-sns",
"version": "0.1.6",
"version": "0.1.7",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"dependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { ListTopicsCommand, PublishCommand } from "@aws-sdk/client-sns";
export const sendMessageAction = createAction({
auth: amazonSnsAuth,
name: 'send-message',
classification: 'WRITE',
displayName: 'Send Message',
description: 'Sends a message to an Amazon SNS topic.',
audience: 'both',
Expand Down
2 changes: 1 addition & 1 deletion packages/pieces/community/amazon-sqs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@activepieces/piece-amazon-sqs",
"version": "0.1.6",
"version": "0.1.7",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"dependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { SQS } from '@aws-sdk/client-sqs';

export const sendMessage = createAction({
name: 'sendMessage',
classification: 'WRITE',
displayName: 'Send Message',
auth: amazonSqsAuth,
description: '',
Expand Down
2 changes: 1 addition & 1 deletion packages/pieces/community/amazon-textract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@activepieces/piece-amazon-textract",
"version": "0.3.5",
"version": "0.3.6",
"type": "commonjs",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const TIMEOUT_MS = 5 * 60 * 1000;
export const analyzeDocumentAsync = createAction({
auth: amazonTextractAuth,
name: 'analyze-document-async',
classification: 'READ',
displayName: 'Analyze Document from S3 (Multi-Page)',
description:
'Extract text, forms, tables, and signatures from a PDF or TIFF stored in S3. Works with both single-page and multi-page documents. This action waits for processing to finish and returns all results automatically — no extra steps needed.',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import {
export const analyzeDocument = createAction({
auth: amazonTextractAuth,
name: 'analyze-document',
classification: 'READ',
displayName: 'Analyze Document',
description:
'Extract text, forms (key-value pairs), tables, and signatures from a document. Supports JPEG and PNG via direct upload; PDF and TIFF via S3 only. For multi-page PDFs, use Start Document Analysis instead.',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {
export const analyzeExpense = createAction({
auth: amazonTextractAuth,
name: 'analyze-expense',
classification: 'READ',
displayName: 'Analyze Expense',
description:
'Extract structured data from receipts and invoices: vendor name, totals, tax, line items, and more. Works best with clearly formatted receipts and invoices.',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {
export const analyzeId = createAction({
auth: amazonTextractAuth,
name: 'analyze-id',
classification: 'READ',
displayName: 'Analyze ID Document',
description:
'Extract structured data from identity documents such as driver\'s licenses and passports. Returns fields like name, date of birth, ID number, and expiry date.',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {
export const detectDocumentText = createAction({
auth: amazonTextractAuth,
name: 'detect-document-text',
classification: 'READ',
displayName: 'Detect Document Text',
description:
'Extract plain text from a document. Faster and cheaper than Analyze Document — use this when you only need the text content without forms or tables. Supports JPEG and PNG via direct upload; PDF and TIFF via S3 only.',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {
export const getDocumentAnalysis = createAction({
auth: amazonTextractAuth,
name: 'get-document-analysis',
classification: 'READ',
displayName: 'Get Document Analysis Results',
description:
'Retrieve the results of an asynchronous document analysis job started with "Start Document Analysis". If the job is still running, the status will be IN_PROGRESS. For very large documents, results may be paginated — use the returned nextToken to fetch the next page.',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { createTextractClient, formatTextractError } from '../common';
export const startDocumentAnalysis = createAction({
auth: amazonTextractAuth,
name: 'start-document-analysis',
classification: 'READ',
displayName: 'Start Document Analysis',
description:
'Start an asynchronous analysis job for a multi-page document stored in S3. Returns a job ID that you can pass to the "Get Document Analysis Results" action to retrieve the extracted data once the job completes.',
Expand Down
2 changes: 1 addition & 1 deletion packages/pieces/community/aminos/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@activepieces/piece-aminos",
"version": "0.1.6",
"version": "0.1.7",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export const createUser = createAction({
// auth: check https://www.activepieces.com/docs/developers/piece-reference/authentication,
auth: aminosAuth,
name: 'createUser',
classification: 'WRITE',
displayName: 'Create User on Aminos One',
description: 'Create a user and plan in Aminos One Panel',
audience: 'both',
Expand Down
2 changes: 1 addition & 1 deletion packages/pieces/community/anyhook-graphql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@activepieces/piece-anyhook-graphql",
"version": "0.1.6",
"version": "0.1.7",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { graphqlCommon } from '../common/common';
export const graphqlSubscriptionTrigger = createTrigger({
auth: graphqlCommon.auth,
name: 'graphql_subscription_trigger',
classification: 'READ',
displayName: 'New GraphQL Subscription Event',
description: 'Triggers on a new GraphQL subscription event',
aiMetadata: {
Expand Down
2 changes: 1 addition & 1 deletion packages/pieces/community/anyhook-websocket/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@activepieces/piece-anyhook-websocket",
"version": "0.1.6",
"version": "0.1.7",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { websocketCommon } from '../common/common';
export const websocketSubscriptionTrigger = createTrigger({
auth: websocketCommon.auth,
name: 'websocket_subscription_trigger',
classification: 'READ',
displayName: 'New Websocket Subscription Event',
description: 'Triggers on a new Websocket subscription event',
aiMetadata: {
Expand Down
2 changes: 1 addition & 1 deletion packages/pieces/community/apitable/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@activepieces/piece-apitable",
"version": "0.1.7",
"version": "0.1.8",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { APITableAuth } from '../auth';
export const createRecordAction = createAction({
auth: APITableAuth,
name: 'apitable_create_record',
classification: 'WRITE',
displayName: 'Create Record',
description: 'Creates a new record in datasheet.',
audience: 'both',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { prepareQuery } from '../common/client';
export const findRecordAction = createAction({
auth: APITableAuth,
name: 'apitable_find_record',
classification: 'SEARCH',
displayName: 'Find Records',
description: 'Finds records in datasheet.',
audience: 'both',
Expand Down
Loading
Loading