├── .all-contributorsrc ├── .cursor └── mcp.json ├── .devcontainer ├── Dockerfile ├── codespaces.sh ├── default.cf ├── devcontainer.json ├── docker-compose.yml └── setup.sh ├── .dockerignore ├── .editorconfig ├── .env.example ├── .eslintignore ├── .eslintrc.base.json ├── .eslintrc.json ├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ ├── mcp_bounty.md │ └── piece-request.md ├── pre-release-drafter.yml ├── pull_request_template.md ├── release-drafter.yml ├── stale.yml └── workflows │ ├── automate-deploy.yml │ ├── build-cloud-image.yml │ ├── build-cloud-nx.yml │ ├── closed-issue-reply.yaml │ ├── crowdin.yml │ ├── pre-release-changelog.yml │ ├── release-ap-base.yml │ ├── release-changelog.yml │ ├── release-pieces.yml │ ├── release-rc.yml │ ├── release.yml │ ├── validate-issue-linking.yml │ ├── validate-pr-labels.yml │ ├── validate-pr-title.yml │ └── validate-publishable-packages.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-push ├── .npmrc ├── .nvmrc ├── .nxignore ├── .prettierignore ├── .prettierrc ├── .typos.toml ├── .verdaccio └── config.yml ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── assets └── ap-logo.png ├── commitlint.config.js ├── crowdin.yml ├── deploy └── pulumi │ ├── .gitignore │ ├── Pulumi.activepieces-dev.yaml │ ├── Pulumi.activepieces-prod.yaml │ ├── Pulumi.yaml │ ├── README.md │ ├── autotag.ts │ ├── index.ts │ ├── package.json │ ├── taggable.ts │ └── tsconfig.json ├── depot.json ├── docker-compose.dev.yml ├── docker-compose.test.yml ├── docker-compose.yml ├── docker-entrypoint.sh ├── docs ├── _snippets │ ├── enterprise-feature.mdx │ ├── execution-mode.mdx │ ├── profile │ │ ├── abdulyki.mdx │ │ ├── abood.mdx │ │ ├── aboodzein.mdx │ │ ├── amr.mdx │ │ ├── ash.mdx │ │ ├── ginika.mdx │ │ ├── hazem.mdx │ │ ├── issa.mdx │ │ ├── kareem.mdx │ │ ├── kishan.mdx │ │ ├── mo.mdx │ │ └── sanad.mdx │ └── replace-oauth2-apps.mdx ├── about │ ├── breaking-changes.mdx │ ├── changelog.mdx │ ├── editions.mdx │ ├── i18n.mdx │ ├── license.mdx │ └── telemetry.mdx ├── admin-console │ ├── appearance.mdx │ ├── custom-domain.mdx │ ├── customize-emails.mdx │ ├── manage-ai-providers.mdx │ ├── manage-oauth2.mdx │ ├── manage-pieces.mdx │ ├── manage-projects.mdx │ ├── manage-templates.mdx │ └── overview.mdx ├── ai │ └── mcp.mdx ├── developers │ ├── building-pieces │ │ ├── create-action.mdx │ │ ├── create-trigger.mdx │ │ ├── overview.mdx │ │ ├── piece-authentication.mdx │ │ ├── piece-definition.mdx │ │ ├── setup-fork.mdx │ │ └── start-building.mdx │ ├── development-setup │ │ ├── codespaces.mdx │ │ ├── dev-container.mdx │ │ ├── getting-started.mdx │ │ └── local.mdx │ ├── misc │ │ ├── build-piece.mdx │ │ ├── create-new-ai-provider.mdx │ │ ├── pieces-ci-cd.mdx │ │ ├── private-fork.mdx │ │ └── publish-piece.mdx │ ├── piece-reference │ │ ├── ai-providers.mdx │ │ ├── authentication.mdx │ │ ├── custom-api-calls.mdx │ │ ├── examples.mdx │ │ ├── external-libraries.mdx │ │ ├── files.mdx │ │ ├── flow-control.mdx │ │ ├── i18n.mdx │ │ ├── persistent-storage.mdx │ │ ├── piece-versioning.mdx │ │ ├── properties-validation.mdx │ │ ├── properties.mdx │ │ └── triggers │ │ │ ├── overview.mdx │ │ │ ├── polling-trigger.mdx │ │ │ └── webhook-trigger.mdx │ └── sharing-pieces │ │ ├── community.mdx │ │ ├── contribute.mdx │ │ ├── overview.mdx │ │ └── private.mdx ├── embedding │ ├── customize-pieces.mdx │ ├── embed-builder.mdx │ ├── embed-connections.mdx │ ├── navigation.mdx │ ├── overview.mdx │ ├── predefined-connection.mdx │ ├── provision-users.mdx │ ├── sdk-changelog.mdx │ └── sdk-server-requests.mdx ├── endpoints │ ├── connections │ │ ├── delete.mdx │ │ ├── list.mdx │ │ ├── schema.mdx │ │ └── upsert.mdx │ ├── flow-runs │ │ ├── get.mdx │ │ ├── list.mdx │ │ └── schema.mdx │ ├── flow-templates │ │ ├── create.mdx │ │ ├── delete.mdx │ │ ├── get.mdx │ │ ├── list.mdx │ │ └── schema.mdx │ ├── flows │ │ ├── create.mdx │ │ ├── delete.mdx │ │ ├── get.mdx │ │ ├── list.mdx │ │ ├── schema.mdx │ │ └── update.mdx │ ├── folders │ │ ├── create.mdx │ │ ├── delete.mdx │ │ ├── get.mdx │ │ ├── list.mdx │ │ ├── schema.mdx │ │ └── update.mdx │ ├── git-repos │ │ ├── configure.mdx │ │ └── schema.mdx │ ├── global-connections │ │ ├── delete.mdx │ │ ├── list.mdx │ │ ├── schema.mdx │ │ ├── update.mdx │ │ └── upsert.mdx │ ├── mcp-servers │ │ ├── list.mdx │ │ ├── rotate.mdx │ │ ├── schema.mdx │ │ └── update.mdx │ ├── overview.mdx │ ├── pieces │ │ ├── install.mdx │ │ └── schema.mdx │ ├── project-members │ │ ├── delete.mdx │ │ ├── list.mdx │ │ └── schema.mdx │ ├── project-releases │ │ ├── create.mdx │ │ └── schema.mdx │ ├── projects │ │ ├── create.mdx │ │ ├── list.mdx │ │ ├── schema.mdx │ │ └── update.mdx │ ├── sample-data │ │ └── get.mdx │ ├── user-invitations │ │ ├── delete.mdx │ │ ├── list.mdx │ │ ├── schema.mdx │ │ └── upsert.mdx │ └── users │ │ ├── list.mdx │ │ └── schema.mdx ├── favicon.png ├── favicon.svg ├── flows │ ├── building-flows.mdx │ ├── debugging-runs.mdx │ ├── known-limits.mdx │ ├── passing-data.mdx │ ├── publishing-flows.mdx │ └── versioning.mdx ├── getting-started │ ├── introduction.mdx │ └── principles.mdx ├── handbook │ ├── customer-support │ │ ├── handle-requests.mdx │ │ ├── overview.mdx │ │ ├── pylon.mdx │ │ ├── tone.mdx │ │ └── trial.mdx │ ├── engineering │ │ ├── onboarding │ │ │ ├── downtime-incident.mdx │ │ │ ├── how-we-work.mdx │ │ │ ├── on-call.mdx │ │ │ └── onboarding-check-list.mdx │ │ ├── overview.mdx │ │ └── playbooks │ │ │ ├── bullboard.mdx │ │ │ ├── database-migration.mdx │ │ │ ├── frontend-best-practices.mdx │ │ │ ├── infrastructure.mdx │ │ │ ├── product-announcement.mdx │ │ │ ├── releases.mdx │ │ │ ├── run-ee.mdx │ │ │ └── setup-incident-io.mdx │ ├── hiring │ │ ├── compensation.mdx │ │ ├── hiring.mdx │ │ ├── levels.mdx │ │ └── team.mdx │ ├── overview.mdx │ ├── people │ │ └── time.mdx │ ├── product │ │ └── interface-design.mdx │ └── teams │ │ ├── ai.mdx │ │ ├── content.mdx │ │ ├── developer-experience.mdx │ │ ├── embed-sdk.mdx │ │ ├── flow-builder.mdx │ │ ├── human-in-loop.mdx │ │ ├── management-features.mdx │ │ ├── overview.mdx │ │ ├── pieces.mdx │ │ ├── sales.mdx │ │ └── tables.mdx ├── install │ ├── architecture │ │ ├── engine.mdx │ │ ├── overview.mdx │ │ ├── performance.mdx │ │ ├── stack.mdx │ │ └── workers.mdx │ ├── configuration │ │ ├── environment-variables.mdx │ │ ├── hardware.mdx │ │ ├── overview.mdx │ │ ├── separate-workers.mdx │ │ ├── setup-app-webhooks.mdx │ │ ├── setup-ssl.mdx │ │ └── troubleshooting.mdx │ ├── options │ │ ├── aws.mdx │ │ ├── docker-compose.mdx │ │ ├── docker.mdx │ │ ├── easypanel.mdx │ │ ├── elestio.mdx │ │ └── gcp.mdx │ └── overview.mdx ├── mint.json ├── openapi.json ├── operations │ ├── audit-logs │ │ ├── connection-deleted.mdx │ │ ├── connection-upserted.mdx │ │ ├── flow-created.mdx │ │ ├── flow-deleted.mdx │ │ ├── flow-run-finished.mdx │ │ ├── flow-run-started.mdx │ │ ├── flow-updated.mdx │ │ ├── folder-created.mdx │ │ ├── folder-deleted.mdx │ │ ├── folder-updated.mdx │ │ ├── overview.mdx │ │ ├── signing-key-created.mdx │ │ ├── user-email-verified.mdx │ │ ├── user-password-reset.mdx │ │ ├── user-signed-in.mdx │ │ └── user-signed-up.mdx │ └── git-sync.mdx ├── resources │ ├── architecture.png │ ├── banner.png │ ├── beavers │ │ └── pupil.png │ ├── color-palette.png │ ├── create-action.png │ ├── crowdin-translate-all.png │ ├── crowdin.png │ ├── flow-history.png │ ├── flow-parts.png │ ├── french-webhooks.png │ ├── i18n-pieces.png │ ├── logo │ │ ├── dark.svg │ │ └── light.svg │ ├── passing-data-3steps.mp4 │ ├── passing-data-data-to-insert-panel.mp4 │ ├── passing-data-dynamic-value.mp4 │ ├── passing-data-load-data.mp4 │ ├── passing-data-main-insert-data-example.mp4 │ ├── passing-data-test-step-first.png │ ├── passing-data.gif │ ├── profile │ │ ├── abdulyki.png │ │ ├── abood.webp │ │ ├── aboodzein.png │ │ ├── amr.png │ │ ├── amro.png │ │ ├── ash.png │ │ ├── ginika.png │ │ ├── hazem.jpg │ │ ├── issa.png │ │ ├── kareem.png │ │ ├── khaled.png │ │ ├── kishan.png │ │ ├── mo.png │ │ └── sanad.png │ ├── publish-flow.png │ ├── pylon-board.png │ ├── scale-pieces-cli.gif │ ├── screenshots │ │ ├── .DS_Store │ │ ├── activation-license-key-settings.png │ │ ├── activity-finished.png │ │ ├── activity-started.png │ │ ├── ai-credits-limit.png │ │ ├── appearance.png │ │ ├── audit-logs.png │ │ ├── branch-settings.png │ │ ├── branch.png │ │ ├── branding.png │ │ ├── bullboard-ui.png │ │ ├── code-fullscreen.png │ │ ├── code-settings.png │ │ ├── configure-ai-provider.png │ │ ├── connection-dialog-builder.png │ │ ├── connection-dialog-sdk.png │ │ ├── connections-piece-usage.png │ │ ├── connections-piece.png │ │ ├── connections-table.png │ │ ├── contributing-first-connector.png │ │ ├── create-api-key.png │ │ ├── create-global-connection.png │ │ ├── create-signing-key.png │ │ ├── custom-domain.png │ │ ├── data-to-insert.png │ │ ├── development-setup_codespaces.png │ │ ├── docker-ngrok.png │ │ ├── dynamic-value.png │ │ ├── embedding-example.png │ │ ├── fork-repository.jpg │ │ ├── gelato-action.png │ │ ├── gelato-trigger.png │ │ ├── http-request-settings.png │ │ ├── inside-loop-settings.png │ │ ├── install-piece.png │ │ ├── invite-customer.png │ │ ├── jumpcloud │ │ │ ├── acl-url.png │ │ │ ├── declare-login.png │ │ │ ├── export-metadata.png │ │ │ ├── user-attribute.png │ │ │ └── user-groups.png │ │ ├── loop-custom-path.png │ │ ├── loop-settings.png │ │ ├── loops.png │ │ ├── manage-oauth2.png │ │ ├── manage-pieces-2.png │ │ ├── manage-pieces.png │ │ ├── manage-projects.png │ │ ├── manage-smtp.png │ │ ├── manage-templates.png │ │ ├── multi-tenancy-connection-success.png │ │ ├── new-connection.png │ │ ├── piece-version-screenshot.png │ │ ├── project-settings.png │ │ ├── signing-key-id.png │ │ ├── simple-webhook-flow.png │ │ ├── sso.png │ │ ├── tag-pieces.png │ │ ├── team-screenshot.png │ │ ├── testing-predefined-connections-creation.png │ │ ├── use-ai-provider.png │ │ ├── using-activepieces-code-output.png │ │ ├── using-activepieces-code-params.png │ │ ├── using-activepieces-debugging.png │ │ ├── using-activepieces-json-input.png │ │ ├── using-activepieces-overview-choose-trigger.png │ │ ├── using-activepieces-overview-invalid-settings.png │ │ ├── using-activepieces-overview-main-screen.png │ │ ├── using-activepieces-overview-piece-settings.png │ │ ├── using-activepieces-overview-pieces-panel.png │ │ ├── using-activepieces-step-name.png │ │ ├── using-activepieces-triggers-schedule.png │ │ └── using-activepieces-triggers-webhook.png │ ├── templates.gif │ ├── unified-ai.png │ ├── visual-builder.gif │ ├── worker-token.png │ └── workers.png ├── script.js └── security │ ├── permissions.mdx │ ├── practices.mdx │ └── sso.mdx ├── jest.config.ts ├── jest.preset.js ├── migrations.json ├── nginx.react.conf ├── nx.json ├── package-lock.json ├── package.json ├── packages ├── cli │ ├── .eslintrc.json │ ├── README.md │ ├── assets │ │ └── db.json │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── commands │ │ │ ├── build-piece.ts │ │ │ ├── create-action.ts │ │ │ ├── create-piece.ts │ │ │ ├── create-trigger.ts │ │ │ ├── generate-translation-file-for-piece.ts │ │ │ ├── generate-worker-token.ts │ │ │ ├── publish-piece.ts │ │ │ └── sync-pieces.ts │ │ │ └── utils │ │ │ ├── exec.ts │ │ │ ├── files.ts │ │ │ └── piece-utils.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── ee │ ├── LICENSE │ ├── shared │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── package.json │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── alerts │ │ │ │ ├── alerts-dto.ts │ │ │ │ ├── alerts-requests.ts │ │ │ │ └── index.ts │ │ │ │ ├── api-key │ │ │ │ └── index.ts │ │ │ │ ├── audit-events │ │ │ │ └── index.ts │ │ │ │ ├── authn │ │ │ │ ├── access-control-list.ts │ │ │ │ ├── enterprise-local-authn │ │ │ │ │ ├── index.ts │ │ │ │ │ └── requests.ts │ │ │ │ └── index.ts │ │ │ │ ├── billing │ │ │ │ ├── index.ts │ │ │ │ └── plan-limits.ts │ │ │ │ ├── custom-domains │ │ │ │ └── index.ts │ │ │ │ ├── flow-templates │ │ │ │ └── index.ts │ │ │ │ ├── git-repo │ │ │ │ └── index.ts │ │ │ │ ├── managed-authn │ │ │ │ ├── index.ts │ │ │ │ └── managed-authn-requests.ts │ │ │ │ ├── oauth-apps │ │ │ │ ├── index.ts │ │ │ │ └── oauth-app.ts │ │ │ │ ├── otp │ │ │ │ ├── index.ts │ │ │ │ ├── otp-model.ts │ │ │ │ ├── otp-requests.ts │ │ │ │ └── otp-type.ts │ │ │ │ ├── product-embed │ │ │ │ ├── app-credentials │ │ │ │ │ ├── app-credentials-requests.ts │ │ │ │ │ ├── app-credentials.ts │ │ │ │ │ └── index.ts │ │ │ │ └── connection-keys │ │ │ │ │ ├── connection-key.ts │ │ │ │ │ ├── connection-requests.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── project-members │ │ │ │ ├── project-member-request.ts │ │ │ │ └── project-member.ts │ │ │ │ ├── project │ │ │ │ └── project-requests.ts │ │ │ │ └── signing-key │ │ │ │ ├── index.ts │ │ │ │ ├── signing-key-model.ts │ │ │ │ ├── signing-key-response.ts │ │ │ │ └── signing-key.request.ts │ │ ├── tsconfig.json │ │ └── tsconfig.lib.json │ └── ui │ │ ├── .eslintrc.json │ │ └── embed-sdk │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── package.json │ │ ├── project.json │ │ ├── src │ │ └── index.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── webpack.config.js ├── engine │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── lib │ │ │ ├── core │ │ │ │ └── code │ │ │ │ │ ├── code-sandbox-common.ts │ │ │ │ │ ├── code-sandbox.ts │ │ │ │ │ ├── no-op-code-sandbox.ts │ │ │ │ │ └── v8-isolate-code-sandbox.ts │ │ │ ├── handler │ │ │ │ ├── base-executor.ts │ │ │ │ ├── code-executor.ts │ │ │ │ ├── context │ │ │ │ │ ├── engine-constants.ts │ │ │ │ │ ├── flow-execution-context.ts │ │ │ │ │ ├── step-execution-path.ts │ │ │ │ │ └── test-execution-context.ts │ │ │ │ ├── flow-executor.ts │ │ │ │ ├── loop-executor.ts │ │ │ │ ├── piece-executor.ts │ │ │ │ └── router-executor.ts │ │ │ ├── helper │ │ │ │ ├── error-handling.ts │ │ │ │ ├── execution-errors.ts │ │ │ │ ├── logging-utils.ts │ │ │ │ ├── piece-helper.ts │ │ │ │ ├── piece-loader.ts │ │ │ │ └── trigger-helper.ts │ │ │ ├── operations.ts │ │ │ ├── services │ │ │ │ ├── connections.service.ts │ │ │ │ ├── flows.service.ts │ │ │ │ ├── progress.service.ts │ │ │ │ ├── step-files.service.ts │ │ │ │ └── storage.service.ts │ │ │ ├── utils.ts │ │ │ └── variables │ │ │ │ ├── processors │ │ │ │ ├── array-zipper.ts │ │ │ │ ├── date-time.ts │ │ │ │ ├── file.ts │ │ │ │ ├── index.ts │ │ │ │ ├── json.ts │ │ │ │ ├── number.ts │ │ │ │ ├── object.ts │ │ │ │ ├── text.ts │ │ │ │ └── types.ts │ │ │ │ ├── props-processor.ts │ │ │ │ └── props-resolver.ts │ │ └── main.ts │ ├── test │ │ ├── handler │ │ │ ├── conditions-evaluate.test.ts │ │ │ ├── flow-branching.test.ts │ │ │ ├── flow-codes.test.ts │ │ │ ├── flow-error-handling.test.ts │ │ │ ├── flow-looping.test.ts │ │ │ ├── flow-piece.test.ts │ │ │ ├── flow-rerun.test.ts │ │ │ ├── flow-with-pause.test.ts │ │ │ ├── flow-with-response.test.ts │ │ │ ├── router-branching.test.ts │ │ │ └── test-helper.ts │ │ ├── helper │ │ │ ├── error-handling.test.ts │ │ │ └── logging-utils.test.ts │ │ ├── resources │ │ │ └── codes │ │ │ │ └── flowVersionId │ │ │ │ ├── echo_step │ │ │ │ └── index.js │ │ │ │ ├── echo_step_1 │ │ │ │ └── index.js │ │ │ │ └── runtime │ │ │ │ └── index.js │ │ └── services │ │ │ ├── props-resolver.test.ts │ │ │ └── props-validator.test.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── webpack.config.js ├── pieces │ ├── community │ │ ├── activecampaign │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── accounts │ │ │ │ │ │ ├── create-account.ts │ │ │ │ │ │ └── update-account.ts │ │ │ │ │ └── contacts │ │ │ │ │ │ ├── add-contact-to-account.ts │ │ │ │ │ │ ├── add-tag-to-contact.ts │ │ │ │ │ │ ├── create-contact.ts │ │ │ │ │ │ ├── subscribe-or-unsubscribe-contact-from-list.ts │ │ │ │ │ │ └── update-contact.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── campaign-link-clicked.ts │ │ │ │ │ ├── deal-task-completed.ts │ │ │ │ │ ├── new-campaign-bounce.ts │ │ │ │ │ ├── new-contact-note.ts │ │ │ │ │ ├── new-contact-task.ts │ │ │ │ │ ├── new-deal-added-or-updated.ts │ │ │ │ │ ├── new-deal-note.ts │ │ │ │ │ ├── new-deal-task.ts │ │ │ │ │ ├── new-or-updated-account.ts │ │ │ │ │ ├── tag-added-or-removed-from-contact.ts │ │ │ │ │ └── updated-contact.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── activepieces │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── create-project.ts │ │ │ │ │ ├── list-project.ts │ │ │ │ │ └── update-project.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── actualbudget │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── get-accounts.ts │ │ │ │ │ ├── get-budget.ts │ │ │ │ │ ├── get-categories.ts │ │ │ │ │ ├── import-transaction.ts │ │ │ │ │ └── import-transactions.ts │ │ │ │ │ └── common │ │ │ │ │ ├── common.ts │ │ │ │ │ └── models.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── acuity-scheduling │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-blocked-time.ts │ │ │ │ │ ├── create-appointment.ts │ │ │ │ │ ├── create-client.ts │ │ │ │ │ ├── find-appointments.ts │ │ │ │ │ ├── find-client.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── reschedule-appointment.ts │ │ │ │ │ └── update-client.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── appointment-canceled.ts │ │ │ │ │ ├── appointment-scheduled.ts │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── acumbamail │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-subscriber.ts │ │ │ │ │ ├── create-subscriber-list.ts │ │ │ │ │ ├── delete-subscriber-list.ts │ │ │ │ │ ├── delete-subscriber.ts │ │ │ │ │ ├── duplicate-template.ts │ │ │ │ │ ├── search-subscriber.ts │ │ │ │ │ └── unsubscribe-subscriber.ts │ │ │ │ │ └── common │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── afforai │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── ask-chatbot.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── agent │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── run-agent.ts │ │ │ │ │ ├── agent-executor.ts │ │ │ │ │ ├── agent-mcp.ts │ │ │ │ │ ├── agent-tools.ts │ │ │ │ │ └── common.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── aianswer │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-phone-call.ts │ │ │ │ │ ├── get-call-details.ts │ │ │ │ │ ├── get-call-transcript.ts │ │ │ │ │ ├── gmail-get-list-of-agents.ts │ │ │ │ │ └── schedule-call-agent.ts │ │ │ │ │ └── common │ │ │ │ │ └── models.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── airparser │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── extract-data-from-document.ts │ │ │ │ │ └── upload-document-for-parsing.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── document-parsed.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── airtable │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-record.ts │ │ │ │ │ ├── delete-record.ts │ │ │ │ │ ├── find-record.ts │ │ │ │ │ ├── update-record.ts │ │ │ │ │ └── upload-file-to-column.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ └── models.ts │ │ │ │ │ └── trigger │ │ │ │ │ ├── new-record.trigger.ts │ │ │ │ │ └── update-record.trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── amazon-s3 │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── generate-signed-url.ts │ │ │ │ │ ├── read-file.ts │ │ │ │ │ └── upload-file.ts │ │ │ │ │ ├── common.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-file.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── amazon-sns │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── send-message.ts │ │ │ │ │ └── common.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── amazon-sqs │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── send-message.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── aminos │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── createUser.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── anyhook-graphql │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── common │ │ │ │ │ └── common.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── graphql-subscription-trigger.ts │ │ │ │ │ └── helpers.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── anyhook-websocket │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── common │ │ │ │ │ └── common.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── helpers.ts │ │ │ │ │ └── websocket-subscription-trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── apify │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── get-actors.ts │ │ │ │ │ ├── get-dataset-items.ts │ │ │ │ │ ├── get-last-run.ts │ │ │ │ │ └── start-actor.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── apitable │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-record.ts │ │ │ │ │ ├── find-record.ts │ │ │ │ │ └── update-record.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-record.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── apollo │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── enrich-company.ts │ │ │ │ │ └── match-person.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── approval │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── create-approval-link.ts │ │ │ │ │ └── wait-for-approval.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── asana │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── create-task.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── ashby │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── assemblyai │ │ │ ├── .eslintrc.json │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── assemblyai.env.sample │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── scripts │ │ │ │ ├── generateFromSpec.ts │ │ │ │ └── openapi.overrides.yml │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── custom-api-call.ts │ │ │ │ │ ├── files │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── upload.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── lemur │ │ │ │ │ │ ├── get-lemur-response.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── lemur-task.ts │ │ │ │ │ │ ├── purge-lemur-request-data.ts │ │ │ │ │ │ └── shared-props.ts │ │ │ │ │ └── transcripts │ │ │ │ │ │ ├── delete-transcript.ts │ │ │ │ │ │ ├── get-paragraphs.ts │ │ │ │ │ │ ├── get-redacted-audio.ts │ │ │ │ │ │ ├── get-sentences.ts │ │ │ │ │ │ ├── get-subtitles.ts │ │ │ │ │ │ ├── get-transcript.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── list-transcripts.ts │ │ │ │ │ │ ├── shared-props.ts │ │ │ │ │ │ ├── transcribe.ts │ │ │ │ │ │ └── word-search.ts │ │ │ │ │ ├── auth.ts │ │ │ │ │ ├── client.ts │ │ │ │ │ └── generated │ │ │ │ │ ├── lemur-task │ │ │ │ │ └── props.ts │ │ │ │ │ ├── list-transcript │ │ │ │ │ └── props.ts │ │ │ │ │ └── transcribe │ │ │ │ │ └── props.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── attio │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-entry.ts │ │ │ │ │ ├── create-record.ts │ │ │ │ │ ├── find-list-entry.ts │ │ │ │ │ ├── find-record.ts │ │ │ │ │ ├── update-entry.ts │ │ │ │ │ └── update-record.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── props.ts │ │ │ │ │ └── types.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── list-entry-created.ts │ │ │ │ │ ├── list-entry-updated.ts │ │ │ │ │ ├── record-created.ts │ │ │ │ │ └── record-updated.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── azure-communication-services │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── send-email.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── azure-openai │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── ask-gpt.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── backblaze │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── read-file.ts │ │ │ │ │ └── upload-file.ts │ │ │ │ │ ├── common.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-file.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── bamboohr │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── bannerbear │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── create-image.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── baserow │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-row.ts │ │ │ │ │ ├── delete-row.ts │ │ │ │ │ ├── get-row.ts │ │ │ │ │ ├── list-rows.ts │ │ │ │ │ └── update-row.ts │ │ │ │ │ └── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── beamer │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-comment.ts │ │ │ │ │ ├── create-feature-request.ts │ │ │ │ │ ├── create-posts.ts │ │ │ │ │ └── create-vote.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── trigger │ │ │ │ │ └── new-post.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── beehiiv │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-subscription-to-automation.action.ts │ │ │ │ │ ├── create-subscription.action.ts │ │ │ │ │ ├── list-automations.action.ts │ │ │ │ │ ├── list-posts.action.ts │ │ │ │ │ └── update-subscription.action.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── auth.ts │ │ │ │ │ ├── client.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-post-sent.trigger.ts │ │ │ │ │ ├── new-subscription-confirmed.trigger.ts │ │ │ │ │ └── user-unsubscribes.trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── bettermode │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── assign-badge.ts │ │ │ │ │ ├── create-discussion.ts │ │ │ │ │ ├── create-question.ts │ │ │ │ │ └── revoke-badge.ts │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── auth.ts │ │ │ │ │ └── props.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── binance │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── fetch-pair-price.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── blockscout │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── addresses │ │ │ │ │ ├── address-blocks-validated.ts │ │ │ │ │ ├── address-by-hash.ts │ │ │ │ │ ├── address-coin-balance-history-by-day.ts │ │ │ │ │ ├── address-coin-balance-history.ts │ │ │ │ │ ├── address-counters.ts │ │ │ │ │ ├── address-internal-transactions.ts │ │ │ │ │ ├── address-logs.ts │ │ │ │ │ ├── address-token-balances.ts │ │ │ │ │ ├── address-token-transfers.ts │ │ │ │ │ ├── address-tokens.ts │ │ │ │ │ ├── address-transactions.ts │ │ │ │ │ ├── address-withdrawals.ts │ │ │ │ │ ├── addresses.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── blocks │ │ │ │ │ ├── block-by-hash.ts │ │ │ │ │ ├── block-transactions.ts │ │ │ │ │ ├── block-withdrawals.ts │ │ │ │ │ ├── blocks.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── main-page-blocks.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── search-redirect │ │ │ │ │ ├── check-redirect.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── search │ │ │ │ │ ├── index.ts │ │ │ │ │ └── search.ts │ │ │ │ │ ├── tokens │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── token-by-address.ts │ │ │ │ │ ├── token-counters.ts │ │ │ │ │ ├── token-holders.ts │ │ │ │ │ ├── token-instances.ts │ │ │ │ │ ├── token-transfers.ts │ │ │ │ │ └── tokens.ts │ │ │ │ │ └── transactions │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── main-page-transactions.ts │ │ │ │ │ ├── transaction-by-hash.ts │ │ │ │ │ ├── transaction-internal-transactions.ts │ │ │ │ │ ├── transaction-logs.ts │ │ │ │ │ ├── transaction-raw-trace.ts │ │ │ │ │ ├── transaction-state-changes.ts │ │ │ │ │ ├── transaction-summary.ts │ │ │ │ │ ├── transaction-token-transfers.ts │ │ │ │ │ └── transactions.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── bonjoro │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── add-greet.ts │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── auth.ts │ │ │ │ │ └── props.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── box │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-comment.ts │ │ │ │ │ ├── new-file.ts │ │ │ │ │ └── new-folder.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── brilliant-directories │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── create-new-user.ts │ │ │ │ │ └── common │ │ │ │ │ └── brilliant-directories-common.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── bubble │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-thing.ts │ │ │ │ │ ├── delete-thing.ts │ │ │ │ │ ├── get-thing.ts │ │ │ │ │ ├── list-things.ts │ │ │ │ │ └── update-thing.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── cal-com │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── common.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── index.ts │ │ │ │ │ └── register-webhook.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── calendly │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── trigger │ │ │ │ │ ├── invitee-canceled.trigger.ts │ │ │ │ │ └── invitee-created.trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── call-rounded │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── campaign-monitor │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-subscriber-to-list.ts │ │ │ │ │ ├── find-subscriber.ts │ │ │ │ │ ├── unsubscribe-subscriber.ts │ │ │ │ │ └── update-subscriber-details.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── client.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-client.ts │ │ │ │ │ ├── new-subscriber-added.ts │ │ │ │ │ └── subscriber-unsubscribed.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── captain-data │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── get-job-results.ts │ │ │ │ │ └── launch-workflow.ts │ │ │ │ │ └── common.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── cartloom │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-discount.ts │ │ │ │ │ ├── get-discount.ts │ │ │ │ │ ├── get-discounts.ts │ │ │ │ │ ├── get-order.ts │ │ │ │ │ ├── get-orders-date-email.ts │ │ │ │ │ ├── get-orders-date.ts │ │ │ │ │ └── get-products.ts │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── auth.ts │ │ │ │ │ └── props.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── certopus │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── create-credential.ts │ │ │ │ │ └── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── models │ │ │ │ │ ├── category.ts │ │ │ │ │ ├── event.ts │ │ │ │ │ ├── oranisation.ts │ │ │ │ │ └── recipient-field.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── chainalysis-api │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── check-address-sanction.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── chargekeep │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-or-update-contact-extended.ts │ │ │ │ │ ├── add-or-update-contact.ts │ │ │ │ │ ├── add-or-update-subscription.ts │ │ │ │ │ ├── create-invoice.ts │ │ │ │ │ ├── create-product.ts │ │ │ │ │ └── get-contact-details.ts │ │ │ │ │ ├── common │ │ │ │ │ └── common.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-lead.ts │ │ │ │ │ ├── new-payment.ts │ │ │ │ │ └── new-subscription.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── chatbase │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-chatbot.ts │ │ │ │ │ ├── list-all-chatbots.ts │ │ │ │ │ ├── search-conversations-by-query.ts │ │ │ │ │ └── send-prompt-to-chatbot.ts │ │ │ │ │ └── common │ │ │ │ │ ├── index.ts │ │ │ │ │ └── props.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── circle │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-member-to-space.ts │ │ │ │ │ ├── create-comment.ts │ │ │ │ │ ├── create-post.ts │ │ │ │ │ ├── find-member-by-email.ts │ │ │ │ │ ├── get-member-details.ts │ │ │ │ │ └── get-post-details.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── auth.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-member-added.ts │ │ │ │ │ └── new-post.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── clarifai │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── ask-llm.ts │ │ │ │ │ ├── call-audio-model.ts │ │ │ │ │ ├── call-image-model.ts │ │ │ │ │ ├── call-post-inputs.ts │ │ │ │ │ ├── call-text-model.ts │ │ │ │ │ ├── call-workflow.ts │ │ │ │ │ └── generate-igm.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── claude │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── extract-structured-data.ts │ │ │ │ │ └── send-prompt.ts │ │ │ │ │ └── common │ │ │ │ │ └── common.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── clearout │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── instant-verify.ts │ │ │ │ │ ├── api.ts │ │ │ │ │ └── auth.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── clickup │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── chat │ │ │ │ │ │ ├── create-channel-in-space-folder-list.ts │ │ │ │ │ │ ├── create-channel.ts │ │ │ │ │ │ ├── create-message-reaction.ts │ │ │ │ │ │ ├── create-message-reply.ts │ │ │ │ │ │ ├── create-message.ts │ │ │ │ │ │ ├── delete-message-reaction.ts │ │ │ │ │ │ ├── delete-message.ts │ │ │ │ │ │ ├── get-channel-messages.ts │ │ │ │ │ │ ├── get-channel.ts │ │ │ │ │ │ ├── get-channels.ts │ │ │ │ │ │ ├── get-message-reactions.ts │ │ │ │ │ │ ├── get-message-replies.ts │ │ │ │ │ │ └── update-message.ts │ │ │ │ │ ├── comments │ │ │ │ │ │ ├── create-task-comment.ts │ │ │ │ │ │ └── get-task-comments.ts │ │ │ │ │ ├── custom-fields │ │ │ │ │ │ ├── get-accessible-custom-fields.ts │ │ │ │ │ │ └── set-custom-fields-value.ts │ │ │ │ │ ├── lists │ │ │ │ │ │ ├── create-folderless-list.ts │ │ │ │ │ │ └── get-list.ts │ │ │ │ │ ├── spaces │ │ │ │ │ │ ├── get-space.ts │ │ │ │ │ │ └── get-spaces.ts │ │ │ │ │ └── tasks │ │ │ │ │ │ ├── create-subtask.ts │ │ │ │ │ │ ├── create-task-from-template.ts │ │ │ │ │ │ ├── create-task.ts │ │ │ │ │ │ ├── delete-task.ts │ │ │ │ │ │ ├── filter-workspace-tasks.ts │ │ │ │ │ │ ├── filter-workspace-time-entries.ts │ │ │ │ │ │ ├── get-task-by-name.ts │ │ │ │ │ │ ├── get-task.ts │ │ │ │ │ │ └── update-task.ts │ │ │ │ │ ├── clickup.mdx │ │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ └── models.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── register-trigger.ts │ │ │ │ │ └── task-tag-updated.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── clockify │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-task.ts │ │ │ │ │ ├── create-time-entry.ts │ │ │ │ │ ├── find-running-timer.ts │ │ │ │ │ ├── find-task.ts │ │ │ │ │ ├── find-time-entry.ts │ │ │ │ │ ├── start-timer.ts │ │ │ │ │ └── stop-timer.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── client.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-task.ts │ │ │ │ │ ├── new-time-entry.ts │ │ │ │ │ └── new-timer-started.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── clockodo │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── absence │ │ │ │ │ │ ├── create-absence.ts │ │ │ │ │ │ ├── delete-absence.ts │ │ │ │ │ │ ├── get-absence.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── list-absence.ts │ │ │ │ │ │ └── update-absence.ts │ │ │ │ │ ├── customer │ │ │ │ │ │ ├── create-customer.ts │ │ │ │ │ │ ├── delete-customer.ts │ │ │ │ │ │ ├── get-customer.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── list-customers.ts │ │ │ │ │ │ └── update-customer.ts │ │ │ │ │ ├── entry │ │ │ │ │ │ ├── create-entry.ts │ │ │ │ │ │ ├── delete-entry.ts │ │ │ │ │ │ ├── get-entry.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── list-entries.ts │ │ │ │ │ │ └── update-entry.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── project │ │ │ │ │ │ ├── create-project.ts │ │ │ │ │ │ ├── delete-project.ts │ │ │ │ │ │ ├── get-project.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── list-projects.ts │ │ │ │ │ │ └── update-project.ts │ │ │ │ │ ├── service │ │ │ │ │ │ ├── create-service.ts │ │ │ │ │ │ ├── delete-service.ts │ │ │ │ │ │ ├── get-service.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── list-services.ts │ │ │ │ │ │ └── update-service.ts │ │ │ │ │ ├── team │ │ │ │ │ │ ├── get-team.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── list-teams.ts │ │ │ │ │ └── user │ │ │ │ │ │ ├── create-user.ts │ │ │ │ │ │ ├── delete-user.ts │ │ │ │ │ │ ├── get-user.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── list-users.ts │ │ │ │ │ │ └── update-user.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── models │ │ │ │ │ │ ├── absence.ts │ │ │ │ │ │ ├── common.ts │ │ │ │ │ │ ├── customer.ts │ │ │ │ │ │ ├── entry.ts │ │ │ │ │ │ ├── project.ts │ │ │ │ │ │ ├── service.ts │ │ │ │ │ │ ├── team.ts │ │ │ │ │ │ └── user.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── new-absence-enquiry.ts │ │ │ │ │ └── new-entry.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── close │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-contact.ts │ │ │ │ │ ├── create-lead.ts │ │ │ │ │ ├── create-opportunity.ts │ │ │ │ │ ├── find-contact.ts │ │ │ │ │ └── find-lead.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── props.ts │ │ │ │ │ └── types.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── helpers.ts │ │ │ │ │ ├── new-contact-added.ts │ │ │ │ │ ├── new-lead-added.ts │ │ │ │ │ └── new-opportunity.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── cloutly │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── send-review-invite.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── coda │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-row.ts │ │ │ │ │ ├── find-row.ts │ │ │ │ │ ├── get-row.ts │ │ │ │ │ ├── get-table.ts │ │ │ │ │ ├── list-tables.ts │ │ │ │ │ ├── update-row.ts │ │ │ │ │ └── upsert-row.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── props.ts │ │ │ │ │ └── types.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-row-created.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── cognito-forms │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-entry.ts │ │ │ │ │ ├── delete-entry.ts │ │ │ │ │ ├── get-entry.ts │ │ │ │ │ └── update-entry.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── entry-updated.ts │ │ │ │ │ └── new-entry-submitted.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── comfyicu │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── get-run-outputs.ts │ │ │ │ │ ├── get-run-status.ts │ │ │ │ │ ├── list-workflows.ts │ │ │ │ │ └── submit-workflow-run.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-workflow-created.ts │ │ │ │ │ ├── run-completed.ts │ │ │ │ │ └── run-failed.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── common │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── ai │ │ │ │ │ └── index.ts │ │ │ │ │ ├── authentication │ │ │ │ │ └── index.ts │ │ │ │ │ ├── helpers │ │ │ │ │ └── index.ts │ │ │ │ │ ├── http │ │ │ │ │ ├── axios │ │ │ │ │ │ └── axios-http-client.ts │ │ │ │ │ ├── core │ │ │ │ │ │ ├── base-http-client.ts │ │ │ │ │ │ ├── delegating-authentication-converter.ts │ │ │ │ │ │ ├── http-client.ts │ │ │ │ │ │ ├── http-error.ts │ │ │ │ │ │ ├── http-header.ts │ │ │ │ │ │ ├── http-headers.ts │ │ │ │ │ │ ├── http-message-body.ts │ │ │ │ │ │ ├── http-method.ts │ │ │ │ │ │ ├── http-request-body.ts │ │ │ │ │ │ ├── http-request.ts │ │ │ │ │ │ ├── http-response.ts │ │ │ │ │ │ ├── media-type.ts │ │ │ │ │ │ └── query-params.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── polling │ │ │ │ │ └── index.ts │ │ │ │ │ └── validation │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── confluence │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-page-from-template.ts │ │ │ │ │ └── get-page-content.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-page.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── connections │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── read-connection.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── constant-contact │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── create-or-update-contact.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── contentful │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── index.ts │ │ │ │ │ └── records │ │ │ │ │ │ ├── create-record.ts │ │ │ │ │ │ ├── get-record.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── search-records.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── auth.ts │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── utils.ts │ │ │ │ │ └── properties │ │ │ │ │ ├── content-model.ts │ │ │ │ │ ├── dynamic-fields.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locale.ts │ │ │ │ │ ├── processors.ts │ │ │ │ │ ├── select-fields.ts │ │ │ │ │ └── transformers.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── contiguity │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── send-sms.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── convertkit │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── broadcasts.ts │ │ │ │ │ ├── custom-fields.ts │ │ │ │ │ ├── forms.ts │ │ │ │ │ ├── purchases.ts │ │ │ │ │ ├── sequences.ts │ │ │ │ │ ├── subscribers.ts │ │ │ │ │ ├── tags.ts │ │ │ │ │ └── webhooks.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── broadcasts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── custom-fields │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── forms │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── purchases │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── sequences │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── service.ts │ │ │ │ │ ├── subscribers │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── tags │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── webhooks │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── copy-ai │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── get-workflow-run-outputs.ts │ │ │ │ │ ├── get-workflow-run-status.ts │ │ │ │ │ └── run-workflow.ts │ │ │ │ │ ├── common │ │ │ │ │ └── client.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── workflow-run-completed.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── crisp │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-note-to-conversation.ts │ │ │ │ │ ├── create-conversation.ts │ │ │ │ │ ├── create-or-update-contact.ts │ │ │ │ │ ├── find-conversation.ts │ │ │ │ │ ├── find-user-profile.ts │ │ │ │ │ └── update-conversation-state.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── auth.ts │ │ │ │ │ ├── client.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-contact.ts │ │ │ │ │ └── new-conversation.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── crypto │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── base64-decode.ts │ │ │ │ │ ├── base64-encode.ts │ │ │ │ │ ├── generate-password.ts │ │ │ │ │ ├── hash-text.ts │ │ │ │ │ └── hmac-signature.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── csv │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── convert-csv-to-json.ts │ │ │ │ │ └── convert-json-to-csv.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── customer-io │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── create_event.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── dappier │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── lifestyle-news.ts │ │ │ │ │ ├── real-time-data.ts │ │ │ │ │ ├── sports-news.ts │ │ │ │ │ └── stock-market-data.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── data-mapper │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── advanced-mapping.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── data-summarizer │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── calculate-average.ts │ │ │ │ │ ├── calculate-sum.ts │ │ │ │ │ ├── count-uniques.ts │ │ │ │ │ └── get-min-max.ts │ │ │ │ │ └── common.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── date-helper │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-subtract-date.ts │ │ │ │ │ ├── date-difference.ts │ │ │ │ │ ├── extract-date-parts.ts │ │ │ │ │ ├── format-date.ts │ │ │ │ │ ├── get-current-date.ts │ │ │ │ │ ├── next-day-of-week.ts │ │ │ │ │ └── next-day-of-year.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── datocms │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── deepgram │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── actions │ │ │ │ │ ├── create-summary.ts │ │ │ │ │ ├── create-transcription.ts │ │ │ │ │ ├── list-projects.ts │ │ │ │ │ └── text-to-speech.ts │ │ │ │ ├── common │ │ │ │ │ ├── auth.ts │ │ │ │ │ └── constants.ts │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── deepl │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── translate-text.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── deepseek │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── ask-deepseek.ts │ │ │ │ │ └── common │ │ │ │ │ └── common.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── delay │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── delay-for-action.ts │ │ │ │ │ └── delay-until-action.ts │ │ │ │ │ └── common.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── devin │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── create-session.ts │ │ │ │ │ ├── get-session-details.ts │ │ │ │ │ └── send-message.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── dimo │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── attestation │ │ │ │ │ │ ├── action.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── device-definitions │ │ │ │ │ │ ├── action.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── action.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── telemetry │ │ │ │ │ │ ├── action.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── token-exchange │ │ │ │ │ │ ├── action.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── helpers.ts │ │ │ │ │ ├── props.ts │ │ │ │ │ ├── queries.ts │ │ │ │ │ └── types.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── battery-charging │ │ │ │ │ ├── index.ts │ │ │ │ │ └── trigger.ts │ │ │ │ │ ├── battery-power │ │ │ │ │ ├── index.ts │ │ │ │ │ └── trigger.ts │ │ │ │ │ ├── charge-level │ │ │ │ │ ├── index.ts │ │ │ │ │ └── trigger.ts │ │ │ │ │ ├── fuel-absolute-level │ │ │ │ │ ├── index.ts │ │ │ │ │ └── trigger.ts │ │ │ │ │ ├── fuel-relative-level │ │ │ │ │ ├── index.ts │ │ │ │ │ └── trigger.ts │ │ │ │ │ ├── ignition │ │ │ │ │ ├── index.ts │ │ │ │ │ └── trigger.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── odometer │ │ │ │ │ ├── index.ts │ │ │ │ │ └── trigger.ts │ │ │ │ │ ├── speed │ │ │ │ │ ├── index.ts │ │ │ │ │ └── trigger.ts │ │ │ │ │ └── tire-pressure │ │ │ │ │ ├── index.ts │ │ │ │ │ └── trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── discord │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-role-to-member.ts │ │ │ │ │ ├── ban-a-guild-member.ts │ │ │ │ │ ├── create-channel.ts │ │ │ │ │ ├── create-guild-role.ts │ │ │ │ │ ├── delete-channel.ts │ │ │ │ │ ├── delete-guild-role.ts │ │ │ │ │ ├── find-channel.ts │ │ │ │ │ ├── find-guild-member.ts │ │ │ │ │ ├── remove-ban-from-user.ts │ │ │ │ │ ├── remove-member-from-guild.ts │ │ │ │ │ ├── remove-role-from-member.ts │ │ │ │ │ ├── rename-channel.ts │ │ │ │ │ ├── send-approval-message.ts │ │ │ │ │ ├── send-message-webhook.ts │ │ │ │ │ └── send-message-with-bot.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ └── models.ts │ │ │ │ │ ├── discord.mdx │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-member.ts │ │ │ │ │ └── new-message.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── discourse │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── add-users-to-group.action.ts │ │ │ │ │ ├── change-trust-level.action.ts │ │ │ │ │ ├── create-post.action.ts │ │ │ │ │ ├── create-topic.action.ts │ │ │ │ │ └── send-private-message.action.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── docusign │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── get-document.ts │ │ │ │ │ ├── get-envelope.ts │ │ │ │ │ └── list-envelopes.ts │ │ │ │ │ └── common.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── drip │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-subscriber-to-campaign.action.ts │ │ │ │ │ ├── apply-tag-to-subscriber.action.ts │ │ │ │ │ └── upsert-subscriber.action.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── trigger │ │ │ │ │ ├── new-subscriber.trigger.ts │ │ │ │ │ └── new-tag.trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── dropbox │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── copy-file.ts │ │ │ │ │ ├── copy-folder.ts │ │ │ │ │ ├── create-new-folder.ts │ │ │ │ │ ├── create-new-text-file.ts │ │ │ │ │ ├── delete-file.ts │ │ │ │ │ ├── delete-folder.ts │ │ │ │ │ ├── download-file.ts │ │ │ │ │ ├── get-file-link.ts │ │ │ │ │ ├── list-a-folder.ts │ │ │ │ │ ├── move-file.ts │ │ │ │ │ ├── move-folder.ts │ │ │ │ │ ├── search.ts │ │ │ │ │ └── upload-file.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── dumpling-ai │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── crawl-website.ts │ │ │ │ │ ├── extract-document.ts │ │ │ │ │ ├── generate-image.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── scrape-website.ts │ │ │ │ │ ├── search-news.ts │ │ │ │ │ └── web-search.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── dust │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-fragment-to-conversation.ts │ │ │ │ │ ├── create-conversation.ts │ │ │ │ │ ├── get-conversation.ts │ │ │ │ │ ├── reply-to-conversation.ts │ │ │ │ │ ├── upload-file.ts │ │ │ │ │ └── upsert-document.ts │ │ │ │ │ └── common.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── elevenlabs │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── text-to-speech-action.ts │ │ │ │ │ └── common.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── eth-name-service │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── list-ens-domains.ts │ │ │ │ │ └── common │ │ │ │ │ └── common.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── exa │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── find-similar-links.ts │ │ │ │ │ ├── generate-answer.ts │ │ │ │ │ ├── get-contents.ts │ │ │ │ │ └── perform-search.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── facebook-leads │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-lead.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── facebook-pages │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-photo-post.ts │ │ │ │ │ ├── create-post.ts │ │ │ │ │ └── create-video-post.ts │ │ │ │ │ └── common │ │ │ │ │ └── common.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── figma │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── get-comments-action.ts │ │ │ │ │ ├── get-file-action.ts │ │ │ │ │ └── post-comment-action.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── models.ts │ │ │ │ │ └── utils.ts │ │ │ │ │ └── trigger │ │ │ │ │ └── new-comment.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── file-helper │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── change-file-encoding.ts │ │ │ │ │ ├── check-file-type.ts │ │ │ │ │ ├── create-file.ts │ │ │ │ │ └── read-file.ts │ │ │ │ │ └── common │ │ │ │ │ ├── encodings.ts │ │ │ │ │ └── mimeTypes.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── fillout-forms │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── find-form-by-title.ts │ │ │ │ │ ├── get-form-responses.ts │ │ │ │ │ └── get-single-response.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-form-response.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── firecrawl │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── crawl-results.ts │ │ │ │ │ ├── scrape.ts │ │ │ │ │ └── start-crawl.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── fireflies-ai │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── find-meeting-by-id.ts │ │ │ │ │ ├── find-meeting-by-query.ts │ │ │ │ │ ├── find-recent-meeting.ts │ │ │ │ │ ├── get-user-details.ts │ │ │ │ │ └── upload-audio.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ └── queries.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-transcription-complete.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── fliqr-ai │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── get-account-details.ts │ │ │ │ │ └── get-account-flows.ts │ │ │ │ │ └── common │ │ │ │ │ └── models.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── flow-helper │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── fail-flow.ts │ │ │ │ │ └── get-run-id.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── flowise │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── flowlu │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── accounts │ │ │ │ │ │ ├── create-contact.ts │ │ │ │ │ │ ├── create-organization.ts │ │ │ │ │ │ ├── delete-contact.ts │ │ │ │ │ │ └── update-contact.ts │ │ │ │ │ ├── opportunities │ │ │ │ │ │ ├── create-opportunity.ts │ │ │ │ │ │ ├── delete-opportunity.ts │ │ │ │ │ │ └── update-opportunity.ts │ │ │ │ │ └── tasks │ │ │ │ │ │ ├── create-task.ts │ │ │ │ │ │ ├── delete-task.ts │ │ │ │ │ │ ├── get-task.ts │ │ │ │ │ │ └── update-task.ts │ │ │ │ │ └── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── props.ts │ │ │ │ │ └── types.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── formbricks │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── triggers │ │ │ │ │ ├── index.ts │ │ │ │ │ └── register.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── forms │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── return-response.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── chat-trigger.ts │ │ │ │ │ └── form-trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── frame │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── triggers │ │ │ │ │ ├── index.ts │ │ │ │ │ └── register-trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── framework │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── action │ │ │ │ │ └── action.ts │ │ │ │ │ ├── context.ts │ │ │ │ │ ├── i18n.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── piece-metadata.ts │ │ │ │ │ ├── piece.ts │ │ │ │ │ ├── property │ │ │ │ │ ├── authentication │ │ │ │ │ │ ├── basic-auth-prop.ts │ │ │ │ │ │ ├── common.ts │ │ │ │ │ │ ├── custom-auth-prop.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── oauth2-prop.ts │ │ │ │ │ │ └── secret-text-property.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── input │ │ │ │ │ │ ├── array-property.ts │ │ │ │ │ │ ├── checkbox-property.ts │ │ │ │ │ │ ├── color-property.ts │ │ │ │ │ │ ├── common.ts │ │ │ │ │ │ ├── custom-property.ts │ │ │ │ │ │ ├── date-time-property.ts │ │ │ │ │ │ ├── dropdown │ │ │ │ │ │ ├── common.ts │ │ │ │ │ │ ├── dropdown-prop.ts │ │ │ │ │ │ └── static-dropdown.ts │ │ │ │ │ │ ├── dynamic-prop.ts │ │ │ │ │ │ ├── file-property.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── json-property.ts │ │ │ │ │ │ ├── markdown-property.ts │ │ │ │ │ │ ├── number-property.ts │ │ │ │ │ │ ├── object-property.ts │ │ │ │ │ │ ├── property-type.ts │ │ │ │ │ │ └── text-property.ts │ │ │ │ │ ├── trigger │ │ │ │ │ └── trigger.ts │ │ │ │ │ └── validators │ │ │ │ │ └── index.ts │ │ │ ├── translation-keys.json │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ ├── freshdesk │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── get-all-tickets-by-status.ts │ │ │ │ │ ├── get-contact-from-id.ts │ │ │ │ │ ├── get-contacts.ts │ │ │ │ │ ├── get-ticket-status.ts │ │ │ │ │ └── get-tickets.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── freshsales │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── create-contact.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── gameball │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── send-event.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── gcloud-pubsub │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── action │ │ │ │ │ └── publish-to-topic.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── trigger │ │ │ │ │ └── new-message-in-topic.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── generatebanners │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── renderTemplate.action.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── ghostcms │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-member.ts │ │ │ │ │ ├── create-post.ts │ │ │ │ │ ├── find-member.ts │ │ │ │ │ ├── find-user.ts │ │ │ │ │ └── update-member.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── member-added.ts │ │ │ │ │ ├── member-deleted.ts │ │ │ │ │ ├── member-edited.ts │ │ │ │ │ ├── page-published.ts │ │ │ │ │ ├── post-published.ts │ │ │ │ │ └── post-scheduled.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── gistly │ │ │ ├── .eslintrc.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── get-transcript.ts │ │ │ │ │ └── config.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── github │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-comment-on-a-issue.ts │ │ │ │ │ ├── create-commit-comment.ts │ │ │ │ │ ├── create-discussion-comment.ts │ │ │ │ │ ├── create-issue.ts │ │ │ │ │ ├── create-pull-request-review-comment.ts │ │ │ │ │ ├── get-issue-information.ts │ │ │ │ │ ├── lock-issue.ts │ │ │ │ │ ├── raw-graphql-query.ts │ │ │ │ │ └── unlock-issue.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── trigger │ │ │ │ │ ├── index.ts │ │ │ │ │ └── register-trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── gitlab │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── create-issue-action.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── models.ts │ │ │ │ │ └── trigger │ │ │ │ │ └── issue-event.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── gmail │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── get-mail-action.ts │ │ │ │ │ ├── get-thread-action.ts │ │ │ │ │ ├── search-email-action.ts │ │ │ │ │ └── send-email-action.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── data.ts │ │ │ │ │ ├── models.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-email.ts │ │ │ │ │ └── new-labeled-email.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── google-calendar │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-attendees.action.ts │ │ │ │ │ ├── create-event.ts │ │ │ │ │ ├── create-quick-event.ts │ │ │ │ │ ├── delete-event.action.ts │ │ │ │ │ ├── get-events.ts │ │ │ │ │ └── update-event.action.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── helper.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ │ ├── google-calendar.mdx │ │ │ │ │ └── triggers │ │ │ │ │ └── calendar-event.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── google-contacts │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── action │ │ │ │ │ ├── create-contact.ts │ │ │ │ │ ├── search-contact.ts │ │ │ │ │ └── update-contact.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── trigger │ │ │ │ │ └── new-contact.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── google-docs │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── append-text.ts │ │ │ │ │ ├── create-document-based-on-template.action.ts │ │ │ │ │ ├── create-document.ts │ │ │ │ │ ├── find-document.ts │ │ │ │ │ └── read-document.action.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-document.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── google-drive │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── action │ │ │ │ │ ├── add-permission.action.ts │ │ │ │ │ ├── create-new-folder.ts │ │ │ │ │ ├── create-new-text-file.ts │ │ │ │ │ ├── delete-file.ts │ │ │ │ │ ├── delete-permission.action.ts │ │ │ │ │ ├── duplicate-file.action.ts │ │ │ │ │ ├── get-file-by-id.ts │ │ │ │ │ ├── list-files.action.ts │ │ │ │ │ ├── move-file.ts │ │ │ │ │ ├── read-file.ts │ │ │ │ │ ├── save-file-as-pdf.action.ts │ │ │ │ │ ├── search-folder-or-file.action.ts │ │ │ │ │ ├── send-to-trash.ts │ │ │ │ │ ├── set-public-access.ts │ │ │ │ │ └── upload-file.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── get-file-content.ts │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-file.ts │ │ │ │ │ └── new-folder.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── google-forms │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── common │ │ │ │ │ └── common.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-form-response.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── google-gemini │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── chat-gemini.action.ts │ │ │ │ │ ├── generate-content-from-image.action.ts │ │ │ │ │ └── generate-content.action.ts │ │ │ │ │ └── common │ │ │ │ │ └── common.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── google-my-business │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── create-reply.ts │ │ │ │ │ ├── common │ │ │ │ │ └── common.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-review.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── google-search-console │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-a-site.ts │ │ │ │ │ ├── delete-a-site.ts │ │ │ │ │ ├── list-sitemaps.ts │ │ │ │ │ ├── list-sites.ts │ │ │ │ │ ├── search-analytics.ts │ │ │ │ │ ├── submit-a-sitemap.ts │ │ │ │ │ └── url-inspection.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── google-sheets │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── hi.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── hy.json │ │ │ │ │ ├── id.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── translation.json │ │ │ │ │ ├── uk.json │ │ │ │ │ ├── vi.json │ │ │ │ │ └── zh.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── clear-sheet.ts │ │ │ │ │ ├── copy-worksheet.ts │ │ │ │ │ ├── create-column.ts │ │ │ │ │ ├── create-spreadsheet.ts │ │ │ │ │ ├── create-worksheet.ts │ │ │ │ │ ├── delete-row.action.ts │ │ │ │ │ ├── export-sheet.ts │ │ │ │ │ ├── find-row-by-num.ts │ │ │ │ │ ├── find-rows.ts │ │ │ │ │ ├── find-spreadsheets.ts │ │ │ │ │ ├── find-worksheet.ts │ │ │ │ │ ├── get-rows.ts │ │ │ │ │ ├── insert-multiple-rows.action.ts │ │ │ │ │ ├── insert-row.action.ts │ │ │ │ │ ├── update-multiple-rows.ts │ │ │ │ │ └── update-row.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── common.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── helpers.ts │ │ │ │ │ ├── new-or-updated-row.trigger.ts │ │ │ │ │ ├── new-row-added-webhook.ts │ │ │ │ │ ├── new-spreadsheet.ts │ │ │ │ │ └── new-worksheet.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── google-slides │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── generate-from-template.ts │ │ │ │ │ ├── get-presentation.ts │ │ │ │ │ └── refresh-charts.ts │ │ │ │ │ └── commons │ │ │ │ │ └── common.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── google-tasks │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── new-task.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ ├── google-tasks.mdx │ │ │ │ │ └── triggers │ │ │ │ │ └── new-task.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── gotify │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── send-notification.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── graphql │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── query.ts │ │ │ │ │ └── common │ │ │ │ │ └── props.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── gravityforms │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── triggers │ │ │ │ │ └── new-submission.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── grist │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-record.action.ts │ │ │ │ │ ├── search-record.action.ts │ │ │ │ │ ├── update-record.action.ts │ │ │ │ │ └── upload-attachments-to-document.action.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── helpers.ts │ │ │ │ │ ├── props.ts │ │ │ │ │ └── types.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-record.trigger.ts │ │ │ │ │ └── updated-record.trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── groq │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── ask-groq.ts │ │ │ │ │ ├── transcribe-audio.ts │ │ │ │ │ └── translate-audio.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── hackernews │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── top-stories-in-hacker-news.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── harvest │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── get-clients.ts │ │ │ │ │ ├── get-estimates.ts │ │ │ │ │ ├── get-expenses.ts │ │ │ │ │ ├── get-invoices.ts │ │ │ │ │ ├── get-projects.ts │ │ │ │ │ ├── get-roles.ts │ │ │ │ │ ├── get-tasks.ts │ │ │ │ │ ├── get-time_entries.ts │ │ │ │ │ ├── get-users.ts │ │ │ │ │ └── reports-uninvoiced.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── heartbeat │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── create-user.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── heygen │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-a-video-from-template.ts │ │ │ │ │ ├── retrieve-a-translated-video-status.ts │ │ │ │ │ ├── retrieve-a-video-status.ts │ │ │ │ │ ├── retrieve-shareable-link-for-a-video.ts │ │ │ │ │ ├── translate-a-video.ts │ │ │ │ │ └── upload-an-asset.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── auth.ts │ │ │ │ │ ├── client.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── video-generation-completed.ts │ │ │ │ │ └── video-generation-failed.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── http-oauth2 │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── send-oauth2-http-request.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── http │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── send-http-request-action.ts │ │ │ │ │ └── common │ │ │ │ │ └── props.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── hubspot │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-contact-to-list-action.ts │ │ │ │ │ ├── add-contact-to-workflow.ts │ │ │ │ │ ├── create-associations.ts │ │ │ │ │ ├── create-blog-post.ts │ │ │ │ │ ├── create-company.ts │ │ │ │ │ ├── create-contact.ts │ │ │ │ │ ├── create-custom-object.ts │ │ │ │ │ ├── create-deal.ts │ │ │ │ │ ├── create-line-item.ts │ │ │ │ │ ├── create-or-update-contact.ts │ │ │ │ │ ├── create-page.ts │ │ │ │ │ ├── create-product.ts │ │ │ │ │ ├── create-ticket.ts │ │ │ │ │ ├── delete-page.ts │ │ │ │ │ ├── find-associations.ts │ │ │ │ │ ├── find-company.ts │ │ │ │ │ ├── find-contact.ts │ │ │ │ │ ├── find-custom-object.ts │ │ │ │ │ ├── find-deal.ts │ │ │ │ │ ├── find-line-item.ts │ │ │ │ │ ├── find-product.ts │ │ │ │ │ ├── find-ticket.ts │ │ │ │ │ ├── get-company.ts │ │ │ │ │ ├── get-contact.ts │ │ │ │ │ ├── get-custom-object.ts │ │ │ │ │ ├── get-deal.ts │ │ │ │ │ ├── get-line-item.ts │ │ │ │ │ ├── get-owner-by-email.ts │ │ │ │ │ ├── get-owner-by-id.ts │ │ │ │ │ ├── get-page.ts │ │ │ │ │ ├── get-pipeline-stage-details.ts │ │ │ │ │ ├── get-product.ts │ │ │ │ │ ├── get-ticket.ts │ │ │ │ │ ├── remove-associations.ts │ │ │ │ │ ├── remove-contact-from-list.ts │ │ │ │ │ ├── remove-email-subscription.ts │ │ │ │ │ ├── update-company.ts │ │ │ │ │ ├── update-contact.ts │ │ │ │ │ ├── update-custom-object.ts │ │ │ │ │ ├── update-deal.ts │ │ │ │ │ ├── update-line-item.ts │ │ │ │ │ ├── update-product.ts │ │ │ │ │ ├── update-ticket.ts │ │ │ │ │ └── upload-file.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── props.ts │ │ │ │ │ └── types.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── deal-stage-updated.ts │ │ │ │ │ ├── email-subscriptions-timeline.ts │ │ │ │ │ ├── new-blog-article.ts │ │ │ │ │ ├── new-company-property-change.ts │ │ │ │ │ ├── new-company.ts │ │ │ │ │ ├── new-contact-in-list.ts │ │ │ │ │ ├── new-contact-property-change.ts │ │ │ │ │ ├── new-contact.ts │ │ │ │ │ ├── new-custom-object-property-change.ts │ │ │ │ │ ├── new-custom-object.ts │ │ │ │ │ ├── new-deal-property-change.ts │ │ │ │ │ ├── new-deal.ts │ │ │ │ │ ├── new-email-event.ts │ │ │ │ │ ├── new-engagement.ts │ │ │ │ │ ├── new-form-submission.ts │ │ │ │ │ ├── new-line-item.ts │ │ │ │ │ ├── new-or-updated-company.ts │ │ │ │ │ ├── new-or-updated-contact.ts │ │ │ │ │ ├── new-or-updated-line-item.ts │ │ │ │ │ ├── new-or-updated-product.ts │ │ │ │ │ ├── new-product.ts │ │ │ │ │ ├── new-task.ts │ │ │ │ │ ├── new-ticket-property-change.ts │ │ │ │ │ └── new-ticket.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── image-ai │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── generate-image.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── image-helper │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── compress-image.actions.ts │ │ │ │ │ ├── crop-image.action.ts │ │ │ │ │ ├── get-metadata.action.ts │ │ │ │ │ ├── image-to-base64.action.ts │ │ │ │ │ ├── resize-Image.action.ts │ │ │ │ │ └── rotate-image.action.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── imap │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-email.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── instagram-business │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── upload-photo.ts │ │ │ │ │ └── upload-reel.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── instantly-ai │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-lead-to-campaign.ts │ │ │ │ │ ├── create-campaign.ts │ │ │ │ │ ├── create-lead-list.ts │ │ │ │ │ ├── search-campaigns.ts │ │ │ │ │ └── search-leads.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── client.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── campaign-status-changed.ts │ │ │ │ │ └── new-lead-added.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── instasent │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-or-update-contact.ts │ │ │ │ │ ├── create-event.ts │ │ │ │ │ └── delete-contact.ts │ │ │ │ │ └── common │ │ │ │ │ ├── constants.ts │ │ │ │ │ └── types.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── intercom │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-note-to-conversation.ts │ │ │ │ │ ├── add-note-to-user.ts │ │ │ │ │ ├── add-remove-tag-on-company.ts │ │ │ │ │ ├── add-remove-tag-on-contact.ts │ │ │ │ │ ├── add-remove-tag-on-conversation.ts │ │ │ │ │ ├── create-article.ts │ │ │ │ │ ├── create-conversation.ts │ │ │ │ │ ├── create-ticket.ts │ │ │ │ │ ├── create-update-lead.ts │ │ │ │ │ ├── create-update-user.ts │ │ │ │ │ ├── create-user.ts │ │ │ │ │ ├── find-company.ts │ │ │ │ │ ├── find-conversation.ts │ │ │ │ │ ├── find-lead.ts │ │ │ │ │ ├── find-user.ts │ │ │ │ │ ├── get-conversation.ts │ │ │ │ │ ├── list-all-tags.ts │ │ │ │ │ ├── reply-to-conversation.ts │ │ │ │ │ ├── send-message.action.ts │ │ │ │ │ └── update-ticket.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── contact-replied.ts │ │ │ │ │ ├── contact-updated.ts │ │ │ │ │ ├── conversation-assigned.ts │ │ │ │ │ ├── conversation-closed.ts │ │ │ │ │ ├── conversation-part-tagged.ts │ │ │ │ │ ├── conversation-rated.ts │ │ │ │ │ ├── conversation-snoozed.ts │ │ │ │ │ ├── conversation-unsnoozed.ts │ │ │ │ │ ├── lead-added-email.ts │ │ │ │ │ ├── lead-converted-to-user.ts │ │ │ │ │ ├── new-company.ts │ │ │ │ │ ├── new-conversation-from-user.ts │ │ │ │ │ ├── new-lead.ts │ │ │ │ │ ├── new-ticket.ts │ │ │ │ │ ├── new-user.ts │ │ │ │ │ ├── note-added-to-conversation.ts │ │ │ │ │ ├── reply-from-admin.ts │ │ │ │ │ ├── reply-from-user.ts │ │ │ │ │ ├── tag-added-to-lead.ts │ │ │ │ │ └── tag-added-to-user.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── invoiceninja │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── action-recurring.ts │ │ │ │ │ ├── create-client.ts │ │ │ │ │ ├── create-invoice.ts │ │ │ │ │ ├── create-recurring.ts │ │ │ │ │ ├── create-task.ts │ │ │ │ │ ├── get-client.ts │ │ │ │ │ ├── get-invoices.ts │ │ │ │ │ ├── get-report.ts │ │ │ │ │ └── task-exists.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── jina-ai │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── classify-content.ts │ │ │ │ │ ├── deepsearch-query.ts │ │ │ │ │ ├── extract-webpage-content.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── train-custom-classifier.ts │ │ │ │ │ └── web-search-summarization.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── jira-cloud │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── auth.ts │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-attachment-to-issue.ts │ │ │ │ │ ├── add-comment-to-issue.ts │ │ │ │ │ ├── add-watcher-to-issue.ts │ │ │ │ │ ├── assign-issue.ts │ │ │ │ │ ├── create-issue.ts │ │ │ │ │ ├── delete-issue-comment.ts │ │ │ │ │ ├── find-user.ts │ │ │ │ │ ├── get-issue-attachment.ts │ │ │ │ │ ├── link-issues.ts │ │ │ │ │ ├── list-issue-comments.ts │ │ │ │ │ ├── search-issues.ts │ │ │ │ │ ├── update-issue-comment.ts │ │ │ │ │ └── update-issue.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── props.ts │ │ │ │ │ └── types.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-issue.ts │ │ │ │ │ ├── updated-issue-status.ts │ │ │ │ │ └── updated-issue.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── jotform │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-submission.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── json │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── convert-json-to-text.ts │ │ │ │ │ └── convert-text-to-json.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── kallabot-ai │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── get-call-details.ts │ │ │ │ │ └── make-call.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── call-events.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── kimai │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── create-timesheet.ts │ │ │ │ │ └── common │ │ │ │ │ ├── client.ts │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── kizeo-forms │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-list-item.ts │ │ │ │ │ ├── delete-list-item.ts │ │ │ │ │ ├── download-custom-export-in-its-original-format.ts │ │ │ │ │ ├── download-standard-pdf.ts │ │ │ │ │ ├── edit-list-item.ts │ │ │ │ │ ├── get-all-list-items.ts │ │ │ │ │ ├── get-data-definition.ts │ │ │ │ │ ├── get-list-definition.ts │ │ │ │ │ ├── get-list-item.ts │ │ │ │ │ └── push-data.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ └── models.ts │ │ │ │ │ └── trigger │ │ │ │ │ ├── event-on-data-deleted.ts │ │ │ │ │ ├── event-on-data-finished.ts │ │ │ │ │ ├── event-on-data-pushed.ts │ │ │ │ │ ├── event-on-data-received.ts │ │ │ │ │ ├── event-on-data-updated.ts │ │ │ │ │ └── event-on-data.trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── kommo │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-new-contact.ts │ │ │ │ │ ├── create-new-lead.ts │ │ │ │ │ ├── find-company.ts │ │ │ │ │ ├── find-contact.ts │ │ │ │ │ ├── find-lead.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── update-contact.ts │ │ │ │ │ └── update-lead.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── lead-status-changed.ts │ │ │ │ │ ├── new-contact-added.ts │ │ │ │ │ ├── new-lead-created.ts │ │ │ │ │ └── new-task-created.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── krisp-call │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-contact.ts │ │ │ │ │ ├── delete-contacts.ts │ │ │ │ │ ├── send-mms.ts │ │ │ │ │ └── send-sms.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── lead-connector │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-contact-to-campaign.ts │ │ │ │ │ ├── add-contact-to-workflow.ts │ │ │ │ │ ├── add-note-to-contact.ts │ │ │ │ │ ├── create-contact.ts │ │ │ │ │ ├── create-opportunity.ts │ │ │ │ │ ├── create-task.ts │ │ │ │ │ ├── search-contacts.ts │ │ │ │ │ ├── update-contact.ts │ │ │ │ │ ├── update-opportunity.ts │ │ │ │ │ └── update-task.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── contact-updated.ts │ │ │ │ │ ├── new-contact.ts │ │ │ │ │ ├── new-form-submission.ts │ │ │ │ │ └── new-opportunity.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── lever │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-feedback-to-opportunity.ts │ │ │ │ │ ├── get-opportunity.ts │ │ │ │ │ ├── list-opportunity-feedback.ts │ │ │ │ │ ├── list-opportunity-forms.ts │ │ │ │ │ └── update-opportunity-stage.ts │ │ │ │ │ └── common.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── line │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── push-message.ts │ │ │ │ │ └── trigger │ │ │ │ │ └── new-message.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── linear │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── comments │ │ │ │ │ │ └── create-comment.ts │ │ │ │ │ ├── issues │ │ │ │ │ │ ├── create-issue.ts │ │ │ │ │ │ └── update-issue.ts │ │ │ │ │ ├── projects │ │ │ │ │ │ ├── create-project.ts │ │ │ │ │ │ └── update-project.ts │ │ │ │ │ └── raw-graphql-query.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── client.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-issue.ts │ │ │ │ │ ├── removed-issue.ts │ │ │ │ │ └── updated-issue.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── linka │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-or-update-contact-extended.ts │ │ │ │ │ ├── add-or-update-contact.ts │ │ │ │ │ ├── add-or-update-subscription.ts │ │ │ │ │ ├── create-invoice.ts │ │ │ │ │ ├── create-product.ts │ │ │ │ │ └── get-contact-details.ts │ │ │ │ │ ├── common │ │ │ │ │ └── common.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-lead.ts │ │ │ │ │ ├── new-payment.ts │ │ │ │ │ └── new-subscription.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── linkedin │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-company-update.ts │ │ │ │ │ └── create-share-update.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── llmrails │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── datastore-search.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── localai │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── send-prompt.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── lusha │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── companies │ │ │ │ │ ├── enrich.ts │ │ │ │ │ └── search.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── mailchain │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── get-authenticated-user.ts │ │ │ │ │ └── send-email.ts │ │ │ │ │ └── common │ │ │ │ │ └── common.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── mailchimp │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-member-to-list.ts │ │ │ │ │ ├── add-note-to-subscriber.ts │ │ │ │ │ ├── add-subscriber-to-tag.ts │ │ │ │ │ ├── remove-subscriber-from-tag.ts │ │ │ │ │ └── update-subscriber-status.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── subscribe-trigger.ts │ │ │ │ │ └── unsubscribe-trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── mailer-lite │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ ├── lib │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── add-subscriber-to-group.ts │ │ │ │ │ │ ├── create-or-update-subscription.ts │ │ │ │ │ │ ├── find-subscriber.ts │ │ │ │ │ │ └── remove-subscriber-from-group.ts │ │ │ │ │ └── common │ │ │ │ │ │ └── index.ts │ │ │ │ └── triggers │ │ │ │ │ └── triggers.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── maileroo │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── send-email.ts │ │ │ │ │ ├── send-from-template.ts │ │ │ │ │ └── verify-email.ts │ │ │ │ │ └── common │ │ │ │ │ └── send-utils.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── mailjet │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── send-email.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── manychat │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-tag-to-user.ts │ │ │ │ │ ├── create-subscriber.ts │ │ │ │ │ ├── find-user-by-custom-field.ts │ │ │ │ │ ├── find-user-by-name.ts │ │ │ │ │ ├── remove-tag-from-user.ts │ │ │ │ │ ├── send-content-to-user.ts │ │ │ │ │ └── set-custom-fields.ts │ │ │ │ │ └── common │ │ │ │ │ └── props.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── mastodon │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── post-status.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── math-helper │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── addition.ts │ │ │ │ │ ├── division.ts │ │ │ │ │ ├── generateRandom.ts │ │ │ │ │ ├── modulo.ts │ │ │ │ │ ├── multiplication.ts │ │ │ │ │ └── subtraction.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── matomo │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── add-annotation.ts │ │ │ │ │ ├── api.ts │ │ │ │ │ └── auth.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── matrix │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── send-message.ts │ │ │ │ │ ├── common │ │ │ │ │ └── common.ts │ │ │ │ │ └── matrix.mdx │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── mattermost │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── send-message.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── mautic │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-company.ts │ │ │ │ │ ├── create-contact.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── search-company.ts │ │ │ │ │ ├── search-contact.ts │ │ │ │ │ ├── update-company.ts │ │ │ │ │ └── update-contact.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── helper.ts │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── mcp │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── reply-to-mcp-client.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── mcp-tool.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── medullar │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-space-record.ts │ │ │ │ │ ├── ask-space.ts │ │ │ │ │ ├── create-space.ts │ │ │ │ │ └── list-spaces.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── mem │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-mem.ts │ │ │ │ │ ├── create-note.ts │ │ │ │ │ └── delete-note.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── mempool-space │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── addresses │ │ │ │ │ │ ├── get-address-details.ts │ │ │ │ │ │ ├── get-address-transactions-chain.ts │ │ │ │ │ │ ├── get-address-transactions-mempool.ts │ │ │ │ │ │ ├── get-address-transactions.ts │ │ │ │ │ │ ├── get-address-utxo.ts │ │ │ │ │ │ └── validate-address.ts │ │ │ │ │ ├── blocks │ │ │ │ │ │ ├── get-block-header.ts │ │ │ │ │ │ ├── get-block-height.ts │ │ │ │ │ │ ├── get-block-raw.ts │ │ │ │ │ │ ├── get-block-status.ts │ │ │ │ │ │ ├── get-block-timestamp.ts │ │ │ │ │ │ ├── get-block-tip-hash.ts │ │ │ │ │ │ ├── get-block-tip-height.ts │ │ │ │ │ │ ├── get-block-transaction-id.ts │ │ │ │ │ │ ├── get-block-transaction-ids.ts │ │ │ │ │ │ ├── get-block-transactions.ts │ │ │ │ │ │ ├── get-block.ts │ │ │ │ │ │ └── get-blocks-bulk.ts │ │ │ │ │ ├── fees │ │ │ │ │ │ ├── get-mempool-blocks-fees.ts │ │ │ │ │ │ └── get-recommended-fees.ts │ │ │ │ │ ├── general │ │ │ │ │ │ ├── get-difficulty-adjustment.ts │ │ │ │ │ │ ├── get-historical-price.ts │ │ │ │ │ │ └── get-price.ts │ │ │ │ │ └── transactions │ │ │ │ │ │ ├── get-transaction-hex.ts │ │ │ │ │ │ ├── get-transaction-merkle-proof.ts │ │ │ │ │ │ ├── get-transaction-merkleblock-proof.ts │ │ │ │ │ │ ├── get-transaction-outspend.ts │ │ │ │ │ │ ├── get-transaction-outspends.ts │ │ │ │ │ │ ├── get-transaction-raw.ts │ │ │ │ │ │ ├── get-transaction-rbf-timeline.ts │ │ │ │ │ │ ├── get-transaction-status.ts │ │ │ │ │ │ ├── get-transaction-times.ts │ │ │ │ │ │ ├── get-transaction.ts │ │ │ │ │ │ └── post-transaction.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── messagebird │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── send-sms.action.ts │ │ │ │ │ └── auth.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── metabase │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── get-dashboard.ts │ │ │ │ │ ├── get-graph-question.ts │ │ │ │ │ ├── get-png-rendering.ts │ │ │ │ │ └── get-question.ts │ │ │ │ │ └── common.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── microsoft-dynamics-365-business-central │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-record.action.ts │ │ │ │ │ ├── delete-record.action.ts │ │ │ │ │ ├── get-record.action.ts │ │ │ │ │ ├── search-records.action.ts │ │ │ │ │ └── update-record.action.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── props │ │ │ │ │ │ ├── bankAccounts.entity.ts │ │ │ │ │ │ ├── contacts.entity.ts │ │ │ │ │ │ ├── currencies.entity.ts │ │ │ │ │ │ ├── customers.entity.ts │ │ │ │ │ │ ├── disputeStatus.entity.ts │ │ │ │ │ │ ├── employees.entity.ts │ │ │ │ │ │ ├── itemCategories.entity.ts │ │ │ │ │ │ ├── itemVariants.entity.ts │ │ │ │ │ │ ├── items.entity.ts │ │ │ │ │ │ ├── journals.entity.ts │ │ │ │ │ │ ├── locations.entity.ts │ │ │ │ │ │ ├── paymentMethods.entity.ts │ │ │ │ │ │ ├── paymentTerms.entity.ts │ │ │ │ │ │ ├── projects.entity.ts │ │ │ │ │ │ ├── salesInvoiceLines.entity.ts │ │ │ │ │ │ ├── salesInvoices.entity.ts │ │ │ │ │ │ ├── salesOrderLines.entity.ts │ │ │ │ │ │ ├── salesOrders.entity.ts │ │ │ │ │ │ ├── salesQuoteLines.entity.ts │ │ │ │ │ │ ├── salesQuotes.entity.ts │ │ │ │ │ │ ├── shipmentMethods.entity.ts │ │ │ │ │ │ └── vendors.entity.ts │ │ │ │ │ └── types.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-or-updated-record.trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── microsoft-dynamics-crm │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-record.ts │ │ │ │ │ ├── delete-record.ts │ │ │ │ │ ├── get-record.ts │ │ │ │ │ └── update-record.ts │ │ │ │ │ └── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── microsoft-excel-365 │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-worksheet.ts │ │ │ │ │ ├── append-row.ts │ │ │ │ │ ├── append-table-rows.ts │ │ │ │ │ ├── clear-worksheet.ts │ │ │ │ │ ├── convert-to-range.ts │ │ │ │ │ ├── create-table.ts │ │ │ │ │ ├── delete-table.ts │ │ │ │ │ ├── delete-workbook.ts │ │ │ │ │ ├── delete-worksheet.ts │ │ │ │ │ ├── get-table-columns.ts │ │ │ │ │ ├── get-table-rows.ts │ │ │ │ │ ├── get-workbooks.ts │ │ │ │ │ ├── get-worksheet-rows.ts │ │ │ │ │ ├── get-worksheets.ts │ │ │ │ │ ├── lookup-table-column.ts │ │ │ │ │ └── update-row.ts │ │ │ │ │ ├── common │ │ │ │ │ └── common.ts │ │ │ │ │ └── trigger │ │ │ │ │ └── new-row-added.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── microsoft-onedrive │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── download-file.ts │ │ │ │ │ ├── list-files.ts │ │ │ │ │ ├── list-folders.ts │ │ │ │ │ └── upload-file.ts │ │ │ │ │ ├── common │ │ │ │ │ └── common.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-file.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── microsoft-outlook-calendar │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-event.ts │ │ │ │ │ ├── delete-event.ts │ │ │ │ │ └── list-events.ts │ │ │ │ │ └── common │ │ │ │ │ └── common.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── microsoft-outlook │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── download-email-attachment.ts │ │ │ │ │ ├── reply-email.ts │ │ │ │ │ └── send-email.ts │ │ │ │ │ ├── common │ │ │ │ │ └── auth.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-email.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── microsoft-sharepoint │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-folder.ts │ │ │ │ │ ├── create-list-item.ts │ │ │ │ │ ├── create-list.ts │ │ │ │ │ ├── delete-list-item.ts │ │ │ │ │ ├── search-list-item.ts │ │ │ │ │ ├── update-list-item.ts │ │ │ │ │ └── upload-file.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── microsoft-teams │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-channel.ts │ │ │ │ │ ├── send-channel-message.ts │ │ │ │ │ └── send-chat-message.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-channel-message.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── microsoft-todo │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-task-list.ts │ │ │ │ │ ├── create-task.ts │ │ │ │ │ ├── find-task-by-title.ts │ │ │ │ │ ├── find-task-list-by-name.ts │ │ │ │ │ └── update-task.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-task-created.ts │ │ │ │ │ ├── task-completed.ts │ │ │ │ │ └── task-updated.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── mindee │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── predict-document.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── mixpanel │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── track-event.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── monday │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-column.ts │ │ │ │ │ ├── create-group.ts │ │ │ │ │ ├── create-item.ts │ │ │ │ │ ├── create-update.ts │ │ │ │ │ ├── get-board-values.ts │ │ │ │ │ ├── get-column-values.ts │ │ │ │ │ ├── update-column-values-of-item.ts │ │ │ │ │ ├── update-item-name.ts │ │ │ │ │ └── upload-file-to-column.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── helper.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── models.ts │ │ │ │ │ ├── mutations.ts │ │ │ │ │ └── queries.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-item-in-board.ts │ │ │ │ │ └── specific-column-updated.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── mongodb │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions.ts │ │ │ │ │ ├── actions │ │ │ │ │ ├── aggregate-documents.ts │ │ │ │ │ ├── delete-documents.ts │ │ │ │ │ ├── find-and-replace-documents.ts │ │ │ │ │ ├── find-and-update-documents.ts │ │ │ │ │ ├── find-documents.ts │ │ │ │ │ ├── insert-documents.ts │ │ │ │ │ └── update-documents.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── motion │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-project.ts │ │ │ │ │ ├── create-task.ts │ │ │ │ │ ├── find-task.ts │ │ │ │ │ ├── get-task.ts │ │ │ │ │ ├── move-task.ts │ │ │ │ │ └── update-task.ts │ │ │ │ │ ├── common │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── task-created.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── moxie-crm │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-client.ts │ │ │ │ │ ├── create-project.ts │ │ │ │ │ └── create-task.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── models.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── index.ts │ │ │ │ │ └── register-trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── mysql │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── delete-row.ts │ │ │ │ │ ├── execute-query.ts │ │ │ │ │ ├── find-rows.ts │ │ │ │ │ ├── get-tables.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── insert-row.ts │ │ │ │ │ └── update-row.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── netsuite │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── get-customer.ts │ │ │ │ │ └── get-vendor.ts │ │ │ │ │ └── oauth.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── nifty │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── create-task.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── nocodb │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-record.ts │ │ │ │ │ ├── delete-record.ts │ │ │ │ │ ├── get-record.ts │ │ │ │ │ ├── search-records.ts │ │ │ │ │ └── update-record.ts │ │ │ │ │ └── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── notion │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-comment.ts │ │ │ │ │ ├── append-to-page.ts │ │ │ │ │ ├── archive-database-item.ts │ │ │ │ │ ├── create-database-item.ts │ │ │ │ │ ├── create-page.ts │ │ │ │ │ ├── find-item.ts │ │ │ │ │ ├── find-page.ts │ │ │ │ │ ├── get-page-comments.ts │ │ │ │ │ ├── get-page-or-block-children.ts │ │ │ │ │ ├── restore-database-item.ts │ │ │ │ │ ├── retrieve-database.ts │ │ │ │ │ └── update-database-item.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── models.ts │ │ │ │ │ └── types.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-comment.ts │ │ │ │ │ ├── new-database-item.ts │ │ │ │ │ ├── updated-database-item.ts │ │ │ │ │ └── updated-page.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── ntfy │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── send-notification.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── odoo │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── commom │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── create-company.ts │ │ │ │ │ ├── create-contact.ts │ │ │ │ │ ├── create-record.ts │ │ │ │ │ ├── get-contacts.ts │ │ │ │ │ ├── get-records.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── update-record.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── onfleet │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── clone-task.ts │ │ │ │ │ ├── complete-task.ts │ │ │ │ │ ├── create-admin.ts │ │ │ │ │ ├── create-destination.ts │ │ │ │ │ ├── create-hub.ts │ │ │ │ │ ├── create-recipient.ts │ │ │ │ │ ├── create-task.ts │ │ │ │ │ ├── create-team.ts │ │ │ │ │ ├── create-worker.ts │ │ │ │ │ ├── delete-admin.ts │ │ │ │ │ ├── delete-task.ts │ │ │ │ │ ├── delete-team.ts │ │ │ │ │ ├── delete-worker.ts │ │ │ │ │ ├── get-admins.ts │ │ │ │ │ ├── get-container.ts │ │ │ │ │ ├── get-delegatee-details.ts │ │ │ │ │ ├── get-destination.ts │ │ │ │ │ ├── get-hubs.ts │ │ │ │ │ ├── get-organization.ts │ │ │ │ │ ├── get-recipient.ts │ │ │ │ │ ├── get-task.ts │ │ │ │ │ ├── get-tasks.ts │ │ │ │ │ ├── get-team.ts │ │ │ │ │ ├── get-teams.ts │ │ │ │ │ ├── get-worker-schedule.ts │ │ │ │ │ ├── get-worker.ts │ │ │ │ │ ├── update-admin.ts │ │ │ │ │ ├── update-hub.ts │ │ │ │ │ ├── update-recipient.ts │ │ │ │ │ ├── update-task.ts │ │ │ │ │ ├── update-team.ts │ │ │ │ │ └── update-worker.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── auto-dispatch-completed.ts │ │ │ │ │ ├── sms-recipient-opt-out.ts │ │ │ │ │ ├── sms-recipient-response-missed.ts │ │ │ │ │ ├── task-arrival.ts │ │ │ │ │ ├── task-assigned.ts │ │ │ │ │ ├── task-cloned.ts │ │ │ │ │ ├── task-completed.ts │ │ │ │ │ ├── task-created.ts │ │ │ │ │ ├── task-delayed.ts │ │ │ │ │ ├── task-deleted.ts │ │ │ │ │ ├── task-eta.ts │ │ │ │ │ ├── task-failed.ts │ │ │ │ │ ├── task-started.ts │ │ │ │ │ ├── task-unassigned.ts │ │ │ │ │ ├── task-updated.ts │ │ │ │ │ ├── worker-created.ts │ │ │ │ │ ├── worker-deleted.ts │ │ │ │ │ └── worker-duty-change.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── open-router │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── ask-open-router.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── openai │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── ask-assistant.ts │ │ │ │ │ ├── extract-structure-data.action.ts │ │ │ │ │ ├── generate-image.ts │ │ │ │ │ ├── send-prompt.ts │ │ │ │ │ ├── text-to-speech.ts │ │ │ │ │ ├── transcriptions.ts │ │ │ │ │ ├── translation.ts │ │ │ │ │ └── vision-prompt.ts │ │ │ │ │ └── common │ │ │ │ │ └── common.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── pastebin │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-paste.ts │ │ │ │ │ ├── get-paste-content.ts │ │ │ │ │ └── index.ts │ │ │ │ │ └── common │ │ │ │ │ ├── client.ts │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── pastefy │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-folder.ts │ │ │ │ │ ├── create-paste.ts │ │ │ │ │ ├── delete-folder.ts │ │ │ │ │ ├── delete-paste.ts │ │ │ │ │ ├── edit-paste.ts │ │ │ │ │ ├── get-folder-hierarchy.ts │ │ │ │ │ ├── get-folder.ts │ │ │ │ │ ├── get-paste.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── models │ │ │ │ │ │ ├── common.ts │ │ │ │ │ │ ├── folder.ts │ │ │ │ │ │ ├── paste.ts │ │ │ │ │ │ └── user.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── index.ts │ │ │ │ │ └── paste-changed.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── pdf-co │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-barcode-to-pdf.ts │ │ │ │ │ ├── add-image-to-pdf.ts │ │ │ │ │ ├── add-text-to-pdf.ts │ │ │ │ │ ├── convert-html-to-pdf.ts │ │ │ │ │ ├── convert-pdf-to-structured-format.ts │ │ │ │ │ ├── extract-tables-from-pdf.ts │ │ │ │ │ ├── extract-text-from-pdf.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── search-and-replace-text.ts │ │ │ │ │ └── common │ │ │ │ │ ├── props.ts │ │ │ │ │ └── types.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── pdf │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── convert-to-image.ts │ │ │ │ │ ├── extract-text.ts │ │ │ │ │ ├── image-to-pdf.ts │ │ │ │ │ └── text-to-pdf.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── perplexity-ai │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── create-chat-completion.action.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── personal-ai │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── ai_interaction │ │ │ │ │ ├── create-chatgpt-instruction.ts │ │ │ │ │ └── create-custom-training.ts │ │ │ │ │ ├── documents │ │ │ │ │ ├── get-document.ts │ │ │ │ │ ├── update-document.ts │ │ │ │ │ ├── upload-document.ts │ │ │ │ │ ├── upload-file.ts │ │ │ │ │ └── upload-url.ts │ │ │ │ │ ├── memory │ │ │ │ │ └── create-memory.ts │ │ │ │ │ └── messaging │ │ │ │ │ ├── create-message.ts │ │ │ │ │ └── get-conversation.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── photoroom │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── remove-background.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── pipedrive │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-follower.ts │ │ │ │ │ ├── add-label-to-person.ts │ │ │ │ │ ├── add-product-to-deal.ts │ │ │ │ │ ├── attach-file.ts │ │ │ │ │ ├── create-activity.ts │ │ │ │ │ ├── create-deal.ts │ │ │ │ │ ├── create-lead.ts │ │ │ │ │ ├── create-note.ts │ │ │ │ │ ├── create-organization.ts │ │ │ │ │ ├── create-person.ts │ │ │ │ │ ├── create-product.ts │ │ │ │ │ ├── find-activity.ts │ │ │ │ │ ├── find-deal.ts │ │ │ │ │ ├── find-deals-associated-with-person.ts │ │ │ │ │ ├── find-notes.ts │ │ │ │ │ ├── find-organization.ts │ │ │ │ │ ├── find-person.ts │ │ │ │ │ ├── find-product.ts │ │ │ │ │ ├── find-products.ts │ │ │ │ │ ├── find-user.ts │ │ │ │ │ ├── get-note.ts │ │ │ │ │ ├── get-product.ts │ │ │ │ │ ├── update-activity.ts │ │ │ │ │ ├── update-deal.ts │ │ │ │ │ ├── update-lead.ts │ │ │ │ │ ├── update-organization.ts │ │ │ │ │ └── update-person.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── props.ts │ │ │ │ │ └── types.ts │ │ │ │ │ └── trigger │ │ │ │ │ ├── activity-matching-filter.ts │ │ │ │ │ ├── deal-matching-filter.ts │ │ │ │ │ ├── new-activity.ts │ │ │ │ │ ├── new-deal.ts │ │ │ │ │ ├── new-lead.ts │ │ │ │ │ ├── new-note.ts │ │ │ │ │ ├── new-organization.ts │ │ │ │ │ ├── new-person.ts │ │ │ │ │ ├── organization-matching-filter.ts │ │ │ │ │ ├── person-matching-filter.ts │ │ │ │ │ ├── updated-deal-stage.ts │ │ │ │ │ ├── updated-deal.ts │ │ │ │ │ ├── updated-organization.ts │ │ │ │ │ └── updated-person.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── poper │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── triggers │ │ │ │ │ └── new-lead.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── postgres │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── run-query.ts │ │ │ │ │ ├── common.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-row.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── posthog │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-event.ts │ │ │ │ │ └── create-project.ts │ │ │ │ │ └── common │ │ │ │ │ └── models.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── pushover │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── send-notification.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── pylon │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── qdrant │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-points.ts │ │ │ │ │ ├── delete-collection.ts │ │ │ │ │ ├── delete-points.ts │ │ │ │ │ ├── get-collection-infos.ts │ │ │ │ │ ├── get-collection-list.ts │ │ │ │ │ ├── get-points.ts │ │ │ │ │ └── search-points.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── qrcode │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── output-qrcode-action.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── queue │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── clear-queue.ts │ │ │ │ │ ├── pull-from-queue.ts │ │ │ │ │ └── push-to-queue.ts │ │ │ │ │ └── common.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── quickzu │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── business-settings │ │ │ │ │ │ └── update-business-time.ts │ │ │ │ │ ├── categories │ │ │ │ │ │ ├── create-category.ts │ │ │ │ │ │ ├── delete-category.ts │ │ │ │ │ │ ├── list-categories.ts │ │ │ │ │ │ └── update-category.ts │ │ │ │ │ ├── discounts │ │ │ │ │ │ ├── create-product-discount.ts │ │ │ │ │ │ └── create-promo-code.ts │ │ │ │ │ ├── orders │ │ │ │ │ │ ├── get-order-details.ts │ │ │ │ │ │ ├── list-live-orders.ts │ │ │ │ │ │ ├── list-orders.ts │ │ │ │ │ │ └── update-order-status.ts │ │ │ │ │ └── products │ │ │ │ │ │ ├── create-product.ts │ │ │ │ │ │ ├── delete-product.ts │ │ │ │ │ │ ├── list-products.ts │ │ │ │ │ │ └── update-product.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── order-created.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── rabbitmq │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── send-message-to-exchange.ts │ │ │ │ │ └── send-message-to-queue.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── message-received.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── razorpay │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── create-payment-link.ts │ │ │ │ │ └── common │ │ │ │ │ └── utils.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── reachinbox │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-blocklist.ts │ │ │ │ │ ├── add-email.ts │ │ │ │ │ ├── add-leads.ts │ │ │ │ │ ├── enable-warmup.ts │ │ │ │ │ ├── get-campaign-analytics.ts │ │ │ │ │ ├── get-summary.ts │ │ │ │ │ ├── pause-campaign.ts │ │ │ │ │ ├── pause-warmup.ts │ │ │ │ │ ├── remove-email.ts │ │ │ │ │ ├── set-schedule.ts │ │ │ │ │ ├── start-campaign.ts │ │ │ │ │ └── update-lead.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── campaign-completed.ts │ │ │ │ │ ├── email-bounced.ts │ │ │ │ │ ├── email-opened.ts │ │ │ │ │ ├── email-sent.ts │ │ │ │ │ ├── lead-interested.ts │ │ │ │ │ ├── lead-not-interested.ts │ │ │ │ │ └── reply-received.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── reddit │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── create-reddit-comment.ts │ │ │ │ │ ├── create-reddit-post.ts │ │ │ │ │ ├── delete-reddit-comment.ts │ │ │ │ │ ├── delete-reddit-post.ts │ │ │ │ │ ├── edit-reddit-comment.ts │ │ │ │ │ ├── edit-reddit-post.ts │ │ │ │ │ ├── fetch-post-comments.ts │ │ │ │ │ ├── get-reddit-post-details.ts │ │ │ │ │ └── retrieve-reddit-post.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── reoon-verifier │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── bulk-email-verification-status.ts │ │ │ │ │ ├── bulk-email-verification.ts │ │ │ │ │ └── verify-email.ts │ │ │ │ │ └── common │ │ │ │ │ └── send-util.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── resend │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── send-email.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── respaid │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create_new_campaign.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── stop_collection_client_paid_directly.ts │ │ │ │ │ ├── stop_collection_for_direct_instalment_payment.ts │ │ │ │ │ └── stop_collection_for_direct_partial_payment.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── new_campaign_creation.ts │ │ │ │ │ ├── new_cancelled_case.ts │ │ │ │ │ ├── new_disputed_case.ts │ │ │ │ │ ├── new_payout.ts │ │ │ │ │ ├── new_successful_collection_paid_to_creditor.ts │ │ │ │ │ ├── new_successful_collection_via_legal_officer.ts │ │ │ │ │ ├── new_successful_collection_via_respaid.ts │ │ │ │ │ ├── new_successful_installment_payment_via_respaid.ts │ │ │ │ │ ├── new_successful_partial_payment_to_creditor.ts │ │ │ │ │ └── new_successful_partial_payment_via_respaid.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── retable │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-project.ts │ │ │ │ │ ├── create-workspace.ts │ │ │ │ │ ├── get-all-projects.ts │ │ │ │ │ ├── get-all-retables.ts │ │ │ │ │ ├── get-all-workspaces.ts │ │ │ │ │ └── insert-record.ts │ │ │ │ │ └── common │ │ │ │ │ ├── index.ts │ │ │ │ │ └── models.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── retune │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── ask-chatbot.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── returning-ai │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── react-message.ts │ │ │ │ │ ├── reply-message.ts │ │ │ │ │ └── send-message.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── robolly │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── generate-image.action.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── rss │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── common │ │ │ │ │ ├── getId.ts │ │ │ │ │ ├── props.ts │ │ │ │ │ └── sampleData.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-item-list-triggers.ts │ │ │ │ │ └── new-item-trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── saastic │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-charge.ts │ │ │ │ │ └── create-customer.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── saleor │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── add-note-to-order.ts │ │ │ │ │ ├── get-order.ts │ │ │ │ │ └── raw-graphql-query.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── salesforce │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── action │ │ │ │ │ ├── create-new-object.ts │ │ │ │ │ ├── run-sf-query.ts │ │ │ │ │ ├── update-object-by-id.ts │ │ │ │ │ ├── upsert-by-external-id-bulk.ts │ │ │ │ │ └── upsert-by-external-id.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── trigger │ │ │ │ │ ├── new-record.ts │ │ │ │ │ └── new-updated-record.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── scenario │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── schedule │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── cron-expression.trigger.ts │ │ │ │ │ ├── every-day.trigger.ts │ │ │ │ │ ├── every-hour.trigger.ts │ │ │ │ │ ├── every-month.trigger.ts │ │ │ │ │ ├── every-week.trigger.ts │ │ │ │ │ └── every-x-minutes.trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── scrapegrapghai │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── local-scraper.ts │ │ │ │ │ ├── markdownify.ts │ │ │ │ │ └── smart-scraper.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── segment │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── identify-user.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── sendfox │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── create-contact.ts │ │ │ │ │ ├── create-list.ts │ │ │ │ │ └── unsubscribe-contact.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── sendgrid │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── send-dynamic-template.ts │ │ │ │ │ └── send-email.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── sendinblue │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── create-or-update-contact.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── sendy │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── count-subscriber.ts │ │ │ │ │ ├── create-campaign.ts │ │ │ │ │ ├── delete-subscriber.ts │ │ │ │ │ ├── get-brand-lists.ts │ │ │ │ │ ├── get-brands.ts │ │ │ │ │ ├── get-subscription-status.ts │ │ │ │ │ ├── subscribe-multiple.ts │ │ │ │ │ ├── subscribe.ts │ │ │ │ │ ├── unsubscribe-multiple.ts │ │ │ │ │ └── unsubscribe.ts │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── auth.ts │ │ │ │ │ └── props.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── serp-api │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── google-news-search.ts │ │ │ │ │ ├── google-search.ts │ │ │ │ │ ├── google-trends-search.ts │ │ │ │ │ └── youtube-search.ts │ │ │ │ │ ├── constants │ │ │ │ │ ├── countries.ts │ │ │ │ │ ├── google-domains.ts │ │ │ │ │ └── languages.ts │ │ │ │ │ ├── services │ │ │ │ │ └── serp-api-client.ts │ │ │ │ │ ├── types │ │ │ │ │ └── index.ts │ │ │ │ │ └── utils │ │ │ │ │ └── validators.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── sessions-us │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-event.ts │ │ │ │ │ ├── create-session.ts │ │ │ │ │ └── publish-event.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── booking-created.ts │ │ │ │ │ ├── booking-ended.ts │ │ │ │ │ ├── booking-started.ts │ │ │ │ │ ├── event-created.ts │ │ │ │ │ ├── event-ended.ts │ │ │ │ │ ├── event-new-registration.ts │ │ │ │ │ ├── event-published.ts │ │ │ │ │ ├── event-started.ts │ │ │ │ │ ├── session-created.ts │ │ │ │ │ ├── session-ended.ts │ │ │ │ │ ├── session-started.ts │ │ │ │ │ ├── takeaway-ready.ts │ │ │ │ │ └── transcript-ready.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── seven │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── action │ │ │ │ │ ├── lookup.ts │ │ │ │ │ ├── send-voice-call.ts │ │ │ │ │ └── sms-send.ts │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── trigger │ │ │ │ │ └── sms-inbound.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── sftp │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-file.ts │ │ │ │ │ ├── create-folder.ts │ │ │ │ │ ├── delete-file.ts │ │ │ │ │ ├── delete-folder.ts │ │ │ │ │ ├── list-files.ts │ │ │ │ │ ├── read-file.ts │ │ │ │ │ ├── rename-file-or-folder.ts │ │ │ │ │ └── upload-file.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-modified-file.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── shopify │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── adjust-inventory-level.ts │ │ │ │ │ ├── cancel-order.ts │ │ │ │ │ ├── close-order.ts │ │ │ │ │ ├── create-collect.ts │ │ │ │ │ ├── create-customer.ts │ │ │ │ │ ├── create-draft-order.ts │ │ │ │ │ ├── create-fulfillment-event.ts │ │ │ │ │ ├── create-order.ts │ │ │ │ │ ├── create-product.ts │ │ │ │ │ ├── create-transaction.ts │ │ │ │ │ ├── get-asset.ts │ │ │ │ │ ├── get-customer-orders.ts │ │ │ │ │ ├── get-customer.ts │ │ │ │ │ ├── get-customers.ts │ │ │ │ │ ├── get-fulfillment.ts │ │ │ │ │ ├── get-fulfillments.ts │ │ │ │ │ ├── get-locations.ts │ │ │ │ │ ├── get-product-variant.ts │ │ │ │ │ ├── get-product.ts │ │ │ │ │ ├── get-products.ts │ │ │ │ │ ├── get-transaction.ts │ │ │ │ │ ├── get-transactions.ts │ │ │ │ │ ├── update-customer.ts │ │ │ │ │ ├── update-order.ts │ │ │ │ │ ├── update-product.ts │ │ │ │ │ └── upload-product-image.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── register-webhook.ts │ │ │ │ │ └── types.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-abandoned-checkout.ts │ │ │ │ │ ├── new-cancelled-order.ts │ │ │ │ │ ├── new-customer.ts │ │ │ │ │ ├── new-order.ts │ │ │ │ │ ├── new-paid-order.ts │ │ │ │ │ └── updated-product.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── simplepdf │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── triggers │ │ │ │ │ └── new-submission.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── skyvern │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── cancel-run.ts │ │ │ │ │ ├── find-workflow.ts │ │ │ │ │ ├── get-run.ts │ │ │ │ │ ├── run-agent-task.ts │ │ │ │ │ └── run-workflow.ts │ │ │ │ │ └── common │ │ │ │ │ ├── auth.ts │ │ │ │ │ ├── client.ts │ │ │ │ │ └── props.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── slack │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-reaction-to-message.ts │ │ │ │ │ ├── create-channel.ts │ │ │ │ │ ├── find-user-by-email.ts │ │ │ │ │ ├── find-user-by-handle.ts │ │ │ │ │ ├── find-user-by-id.ts │ │ │ │ │ ├── get-channel-history.ts │ │ │ │ │ ├── get-file.ts │ │ │ │ │ ├── get-message.ts │ │ │ │ │ ├── invite-user-to-channel.ts │ │ │ │ │ ├── markdown-to-slack-format.ts │ │ │ │ │ ├── request-action-direct-message.ts │ │ │ │ │ ├── request-action-message.ts │ │ │ │ │ ├── request-approval-direct-message.ts │ │ │ │ │ ├── request-approval-message.ts │ │ │ │ │ ├── retrieve-thread-messages.ts │ │ │ │ │ ├── search-messages.ts │ │ │ │ │ ├── send-direct-message-action.ts │ │ │ │ │ ├── send-message-action.ts │ │ │ │ │ ├── set-channel-topic.ts │ │ │ │ │ ├── set-user-status.ts │ │ │ │ │ ├── update-message.ts │ │ │ │ │ ├── update-profile.ts │ │ │ │ │ └── upload-file.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── props.ts │ │ │ │ │ ├── request-action.ts │ │ │ │ │ └── utils.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-channel.ts │ │ │ │ │ ├── new-command-in-direct-message.ts │ │ │ │ │ ├── new-command.ts │ │ │ │ │ ├── new-direct-message.ts │ │ │ │ │ ├── new-mention-in-direct-message.ts │ │ │ │ │ ├── new-mention.ts │ │ │ │ │ ├── new-message-in-channel.ts │ │ │ │ │ ├── new-message.ts │ │ │ │ │ ├── new-reaction-added.ts │ │ │ │ │ ├── new-saved-message.ts │ │ │ │ │ ├── new-team-custom-emoji.ts │ │ │ │ │ └── new-user.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── smaily │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── create-or-update-subscriber.action.ts │ │ │ │ │ └── get-subscriber.action.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── smartsheet │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-row-to-sheet.ts │ │ │ │ │ ├── attach-file-to-row.ts │ │ │ │ │ ├── find-attachment-by-row-id.ts │ │ │ │ │ ├── find-rows-by-query.ts │ │ │ │ │ ├── find-sheet-by-name.ts │ │ │ │ │ └── update-row.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-attachment-trigger.ts │ │ │ │ │ ├── new-comment-trigger.ts │ │ │ │ │ ├── new-row-trigger.ts │ │ │ │ │ └── updated-row-trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── smartsuite │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-record.ts │ │ │ │ │ ├── delete-record.ts │ │ │ │ │ ├── find-records.ts │ │ │ │ │ ├── get-record.ts │ │ │ │ │ ├── update-record.ts │ │ │ │ │ └── upload-file.ts │ │ │ │ │ ├── auth.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-record.ts │ │ │ │ │ └── updated-record.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── smtp │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── send-email.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── snowflake │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── insert-row.ts │ │ │ │ │ ├── run-multiple-queries.ts │ │ │ │ │ └── run-query.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── soap │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── call-method.ts │ │ │ │ │ └── shared │ │ │ │ │ └── auth.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── sperse │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-or-update-contact-extended.ts │ │ │ │ │ ├── add-or-update-contact.ts │ │ │ │ │ ├── add-or-update-subscription.ts │ │ │ │ │ ├── create-invoice.ts │ │ │ │ │ ├── create-product.ts │ │ │ │ │ └── get-contact-details.ts │ │ │ │ │ ├── common │ │ │ │ │ └── common.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-lead.ts │ │ │ │ │ ├── new-payment.ts │ │ │ │ │ └── new-subscription.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── spotify │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-playlist-items.ts │ │ │ │ │ ├── create-playlist.ts │ │ │ │ │ ├── get-playback-state.ts │ │ │ │ │ ├── get-playlist-info.ts │ │ │ │ │ ├── get-playlist-items.ts │ │ │ │ │ ├── get-playlists.ts │ │ │ │ │ ├── get-saved-tracks.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── pause.ts │ │ │ │ │ ├── play.ts │ │ │ │ │ ├── remove-playlist-items.ts │ │ │ │ │ ├── reorder-playlist.ts │ │ │ │ │ ├── search.ts │ │ │ │ │ ├── set-volume.ts │ │ │ │ │ └── update-playlist.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── models │ │ │ │ │ │ ├── album.ts │ │ │ │ │ │ ├── artist.ts │ │ │ │ │ │ ├── common.ts │ │ │ │ │ │ ├── playback.ts │ │ │ │ │ │ ├── playlist.ts │ │ │ │ │ │ ├── search.ts │ │ │ │ │ │ ├── track.ts │ │ │ │ │ │ └── user.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── index.ts │ │ │ │ │ └── playlist-items-changed.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── square │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── triggers │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── stability-ai │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── text-to-image.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── stable-diffusion-webui │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── text-to-image.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── store │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── hi.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── hy.json │ │ │ │ │ ├── id.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── translation.json │ │ │ │ │ ├── uk.json │ │ │ │ │ ├── vi.json │ │ │ │ │ └── zh.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── store-add-to-list.ts │ │ │ │ │ ├── store-append-action.ts │ │ │ │ │ ├── store-get-action.ts │ │ │ │ │ ├── store-put-action.ts │ │ │ │ │ ├── store-remove-from-list.ts │ │ │ │ │ └── store-remove-value.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── straico │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── agent-add-rag.ts │ │ │ │ │ ├── agent-create.ts │ │ │ │ │ ├── agent-delete.ts │ │ │ │ │ ├── agent-get.ts │ │ │ │ │ ├── agent-list.ts │ │ │ │ │ ├── agent-prompt-completion.ts │ │ │ │ │ ├── agent-update.ts │ │ │ │ │ ├── file-upload.ts │ │ │ │ │ ├── image-generation.ts │ │ │ │ │ ├── prompt-completion.ts │ │ │ │ │ ├── rag-create.ts │ │ │ │ │ ├── rag-delete.ts │ │ │ │ │ ├── rag-get-by-id.ts │ │ │ │ │ ├── rag-list.ts │ │ │ │ │ ├── rag-prompt-completion.ts │ │ │ │ │ └── rag-update.ts │ │ │ │ │ └── common │ │ │ │ │ ├── common.ts │ │ │ │ │ └── props.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── stripe │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-customer.ts │ │ │ │ │ ├── create-invoice.ts │ │ │ │ │ ├── retrieve-customer.ts │ │ │ │ │ └── search-customer.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── trigger │ │ │ │ │ ├── new-customer.ts │ │ │ │ │ ├── new-payment.ts │ │ │ │ │ ├── new-subscription.ts │ │ │ │ │ └── payment-failed.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── subflows │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── call-flow.ts │ │ │ │ │ └── respond.ts │ │ │ │ │ ├── common.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── callable-flow.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── supabase │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── upload-file.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── supadata │ │ │ ├── .eslintrc.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── get-transcript.ts │ │ │ │ │ └── config.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── surrealdb │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── run-query.ts │ │ │ │ │ ├── common.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-row.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── surveymonkey │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-response.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── tables │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-records.ts │ │ │ │ │ ├── delete-record.ts │ │ │ │ │ ├── find-records.ts │ │ │ │ │ ├── get-record.ts │ │ │ │ │ └── update-record.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── deleted-record.ts │ │ │ │ │ ├── new-record.ts │ │ │ │ │ └── updated-record.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── tags │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── add-tag.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── talkable │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── coupons │ │ │ │ │ └── find-coupon.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── loyalty │ │ │ │ │ └── get-loyalty-redeem-actions.ts │ │ │ │ │ ├── origins │ │ │ │ │ ├── create-event.ts │ │ │ │ │ ├── create-events-batch.ts │ │ │ │ │ ├── create-purchase.ts │ │ │ │ │ ├── create-purchases-batch.ts │ │ │ │ │ └── refund.ts │ │ │ │ │ ├── people │ │ │ │ │ ├── anonymize-person.ts │ │ │ │ │ ├── find-person.ts │ │ │ │ │ ├── unsubscribe-person.ts │ │ │ │ │ └── update-person.ts │ │ │ │ │ ├── referrals │ │ │ │ │ └── update-referral-status.ts │ │ │ │ │ └── rewards │ │ │ │ │ └── claim-offer.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── tally │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── triggers │ │ │ │ │ └── new-submission.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── tarvent │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-audience-group.ts │ │ │ │ │ ├── create-contact-note.ts │ │ │ │ │ ├── create-contact.ts │ │ │ │ │ ├── create-suppression-filter.ts │ │ │ │ │ ├── create-transaction.ts │ │ │ │ │ ├── generate-custom-event.ts │ │ │ │ │ ├── get-audience-groups.ts │ │ │ │ │ ├── get-audiences.ts │ │ │ │ │ ├── get-campaigns.ts │ │ │ │ │ ├── get-contact.ts │ │ │ │ │ ├── get-custom-event.ts │ │ │ │ │ ├── get-journey.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── send-campaign.ts │ │ │ │ │ ├── update-contact-group.ts │ │ │ │ │ ├── update-contact-journey.ts │ │ │ │ │ ├── update-contact-status.ts │ │ │ │ │ ├── update-contact-tag.ts │ │ │ │ │ └── update-journey-status.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── campaign-send-finished.ts │ │ │ │ │ ├── contact-added.ts │ │ │ │ │ ├── contact-bounced.ts │ │ │ │ │ ├── contact-clicked.ts │ │ │ │ │ ├── contact-group-updated.ts │ │ │ │ │ ├── contact-node-added.ts │ │ │ │ │ ├── contact-opened.ts │ │ │ │ │ ├── contact-replied.ts │ │ │ │ │ ├── contact-status-updated.ts │ │ │ │ │ ├── contact-tag-updated.ts │ │ │ │ │ ├── contact-unsubscribed.ts │ │ │ │ │ ├── contact-updated.ts │ │ │ │ │ ├── form-submitted.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── page-performed.ts │ │ │ │ │ ├── survey-submitted.ts │ │ │ │ │ ├── transaction-created.ts │ │ │ │ │ └── transaction-sent.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── taskade │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── complete-task.action.ts │ │ │ │ │ ├── create-task.action.ts │ │ │ │ │ └── delete-task.action.ts │ │ │ │ │ └── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── props.ts │ │ │ │ │ └── types.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── tavily │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── extract.ts │ │ │ │ │ └── search.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── telegram-bot │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── action │ │ │ │ │ ├── create-invite-link.ts │ │ │ │ │ ├── get-chat-member.ts │ │ │ │ │ ├── send-media.action.ts │ │ │ │ │ └── send-text-message.action.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── trigger │ │ │ │ │ └── new-message.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── text-ai │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── ask-ai.ts │ │ │ │ │ └── summarize-text.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── text-helper │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── concat.ts │ │ │ │ │ ├── default-value.ts │ │ │ │ │ ├── find.ts │ │ │ │ │ ├── html-to-markdown.ts │ │ │ │ │ ├── markdown-to-html.ts │ │ │ │ │ ├── replace.ts │ │ │ │ │ ├── slugify.ts │ │ │ │ │ ├── split.ts │ │ │ │ │ └── strip-html.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── thankster │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── send-cards.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── ticktick │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── complete-task.ts │ │ │ │ │ ├── create-task.ts │ │ │ │ │ ├── delete-task.ts │ │ │ │ │ ├── find-task.ts │ │ │ │ │ ├── get-project-by-id.ts │ │ │ │ │ ├── get-task.ts │ │ │ │ │ └── update-task.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-task-created.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── tidycal │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── trigger │ │ │ │ │ ├── cancelled-booking.ts │ │ │ │ │ ├── new-booking.ts │ │ │ │ │ └── new-contacts.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── todoist │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-task-action.ts │ │ │ │ │ ├── find-task.action.ts │ │ │ │ │ ├── mark-task-completed.action.ts │ │ │ │ │ └── update-task.action.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── client │ │ │ │ │ │ ├── rest-client.ts │ │ │ │ │ │ └── sync-client.ts │ │ │ │ │ ├── models.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── task-completed-trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── todos │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-todo-and-wait.ts │ │ │ │ │ ├── create-todo.ts │ │ │ │ │ └── wait-for-approval.ts │ │ │ │ │ └── utils │ │ │ │ │ └── utils.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── totalcms │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── get-blog-post.ts │ │ │ │ │ ├── get-content.ts │ │ │ │ │ ├── save-blog-gallery.ts │ │ │ │ │ ├── save-blog-image.ts │ │ │ │ │ ├── save-blog-post.ts │ │ │ │ │ ├── save-date.ts │ │ │ │ │ ├── save-depot.ts │ │ │ │ │ ├── save-file.ts │ │ │ │ │ ├── save-gallery.ts │ │ │ │ │ ├── save-image.ts │ │ │ │ │ ├── save-text.ts │ │ │ │ │ ├── save-toggle.ts │ │ │ │ │ └── save-video.ts │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── auth.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-blog-post.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── trello │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-card.ts │ │ │ │ │ └── get-card.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── index.ts │ │ │ │ │ └── props │ │ │ │ │ │ └── card.ts │ │ │ │ │ ├── trello.mdx │ │ │ │ │ └── triggers │ │ │ │ │ ├── cardMoved.ts │ │ │ │ │ └── newCard.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── truelayer │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── action │ │ │ │ │ ├── general │ │ │ │ │ │ └── submit-payments-provider-return-parameters.ts │ │ │ │ │ ├── mandates │ │ │ │ │ │ ├── confirm-mandate-funds.ts │ │ │ │ │ │ ├── create-mandate.ts │ │ │ │ │ │ ├── get-constraints.ts │ │ │ │ │ │ ├── get-mandate.ts │ │ │ │ │ │ ├── list-mandate.ts │ │ │ │ │ │ ├── revoke-mandate.ts │ │ │ │ │ │ ├── start-mandate-authorization-flow.ts │ │ │ │ │ │ ├── submit-consent-mandate.ts │ │ │ │ │ │ └── submit-mandate-provider-selection.ts │ │ │ │ │ ├── merchants │ │ │ │ │ │ ├── get-merchant-account-payment-sources.ts │ │ │ │ │ │ ├── get-operating-account.ts │ │ │ │ │ │ ├── list-operating-accounts.ts │ │ │ │ │ │ ├── merchant-account-disable-sweeping.ts │ │ │ │ │ │ ├── merchant-account-get-sweeping.ts │ │ │ │ │ │ ├── merchant-account-get-transactions.ts │ │ │ │ │ │ └── merchant-account-setup-sweeping.ts │ │ │ │ │ ├── payment-links │ │ │ │ │ │ ├── create-payment-link.ts │ │ │ │ │ │ ├── get-payment-link-payments.ts │ │ │ │ │ │ └── get-payment-link.ts │ │ │ │ │ ├── payments-providers │ │ │ │ │ │ ├── get-payment-provider.ts │ │ │ │ │ │ └── search-payment-providers.ts │ │ │ │ │ ├── payments │ │ │ │ │ │ ├── cancel-payment.ts │ │ │ │ │ │ ├── create-payment-refund.ts │ │ │ │ │ │ ├── create-payment.ts │ │ │ │ │ │ ├── get-payment-refund.ts │ │ │ │ │ │ ├── get-payment-refunds.ts │ │ │ │ │ │ ├── get-payment.ts │ │ │ │ │ │ ├── save-user-account-payment.ts │ │ │ │ │ │ ├── start-payment-authorization-flow.ts │ │ │ │ │ │ ├── submit-consent.ts │ │ │ │ │ │ ├── submit-form.ts │ │ │ │ │ │ ├── submit-provider-selection.ts │ │ │ │ │ │ ├── submit-scheme-selection.ts │ │ │ │ │ │ └── submit-user-account-selection.ts │ │ │ │ │ └── payouts │ │ │ │ │ │ ├── create-payout.ts │ │ │ │ │ │ ├── get-payout.ts │ │ │ │ │ │ └── start-payout-authorization-flow.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── twilio │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── action │ │ │ │ │ └── send-sms.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── trigger │ │ │ │ │ └── new-incoming-sms.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── twin-labs │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── start-browsing-task.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── twitter │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-reply.ts │ │ │ │ │ └── create-tweet.ts │ │ │ │ │ └── common │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── typeform │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── trigger │ │ │ │ │ └── new-submission.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── upgradechat │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-or-update-contact-extended.ts │ │ │ │ │ ├── add-or-update-contact.ts │ │ │ │ │ ├── add-or-update-subscription.ts │ │ │ │ │ ├── create-invoice.ts │ │ │ │ │ ├── create-product.ts │ │ │ │ │ └── get-contact-details.ts │ │ │ │ │ ├── common │ │ │ │ │ └── common.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── new-lead.ts │ │ │ │ │ ├── new-payment.ts │ │ │ │ │ └── new-subscription.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── utility-ai │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── check-moderation.ts │ │ │ │ │ ├── classify-text.ts │ │ │ │ │ └── extract-structured-data.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── vbout │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-contact.ts │ │ │ │ │ ├── add-tag-to-contact.ts │ │ │ │ │ ├── create-campaign.ts │ │ │ │ │ ├── create-email-list.ts │ │ │ │ │ ├── create-social-media-message.ts │ │ │ │ │ ├── get-contact-by-email.ts │ │ │ │ │ ├── get-email-list.ts │ │ │ │ │ ├── remove-tag-from-contact.ts │ │ │ │ │ ├── unsubscribe-contact.ts │ │ │ │ │ └── update-contact.ts │ │ │ │ │ └── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── models.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── village │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── fetch-companies-paths.ts │ │ │ │ │ └── fetch-people-paths.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── vtex │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── Brand │ │ │ │ │ │ ├── create-brand.ts │ │ │ │ │ │ ├── delete-brand.ts │ │ │ │ │ │ ├── get-brand-by-id.ts │ │ │ │ │ │ ├── get-brand-list.ts │ │ │ │ │ │ └── update-brand.ts │ │ │ │ │ ├── Category │ │ │ │ │ │ └── get-category-by-id.ts │ │ │ │ │ ├── Client │ │ │ │ │ │ ├── get-client-by-id.ts │ │ │ │ │ │ └── get-client-list.ts │ │ │ │ │ ├── Order │ │ │ │ │ │ ├── get-order-by-id.ts │ │ │ │ │ │ └── get-order-list.ts │ │ │ │ │ ├── Product │ │ │ │ │ │ ├── create-product.ts │ │ │ │ │ │ ├── get-product-by-id.ts │ │ │ │ │ │ └── update-product.ts │ │ │ │ │ ├── SKU-File │ │ │ │ │ │ └── create-sku-file.ts │ │ │ │ │ └── SKU │ │ │ │ │ │ ├── create-sku.ts │ │ │ │ │ │ └── get-sku-by-product-id.ts │ │ │ │ │ └── common │ │ │ │ │ ├── Brand.ts │ │ │ │ │ ├── Category.ts │ │ │ │ │ ├── Client.ts │ │ │ │ │ ├── Order.ts │ │ │ │ │ ├── Product.ts │ │ │ │ │ ├── SKU-File.ts │ │ │ │ │ ├── SKU.ts │ │ │ │ │ └── types │ │ │ │ │ ├── Brand.ts │ │ │ │ │ ├── Category.ts │ │ │ │ │ ├── Product.ts │ │ │ │ │ ├── SKU.ts │ │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── vtiger │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-record.ts │ │ │ │ │ ├── delete-record.ts │ │ │ │ │ ├── get-record.ts │ │ │ │ │ ├── make-api-call.ts │ │ │ │ │ ├── query-records.ts │ │ │ │ │ ├── search-record.ts │ │ │ │ │ └── update-record.ts │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── models.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-or-updated-record.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── webflow │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-collection-item.ts │ │ │ │ │ ├── delete-collection-item.ts │ │ │ │ │ ├── find-collection-item.ts │ │ │ │ │ ├── find-order.ts │ │ │ │ │ ├── fulfill-order.ts │ │ │ │ │ ├── get-collection-item.ts │ │ │ │ │ ├── publish-collection-item.ts │ │ │ │ │ ├── refund-order.ts │ │ │ │ │ ├── unfulfill-order.ts │ │ │ │ │ └── update-collection-item.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── common.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-form-submitted.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── webhook │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── hi.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── hy.json │ │ │ │ │ ├── id.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── translation.json │ │ │ │ │ ├── uk.json │ │ │ │ │ ├── vi.json │ │ │ │ │ └── zh.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── return-response-and-wait-for-next-webhook.ts │ │ │ │ │ └── return-response.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── catch-hook.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── webling │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── get-events-by-id.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── helpers.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── calendar-event.ts │ │ │ │ │ └── on-changed-data.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── wedof │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── add-execution-tag.ts │ │ │ │ │ ├── certification-folder-survey │ │ │ │ │ │ ├── get-certification-folder-survey.ts │ │ │ │ │ │ └── list-certification-folder-surveys.ts │ │ │ │ │ ├── certification-folders │ │ │ │ │ │ ├── abort-certification-folder.ts │ │ │ │ │ │ ├── declare-certification-folder-failed.ts │ │ │ │ │ │ ├── declare-certification-folder-registred.ts │ │ │ │ │ │ ├── declare-certification-folder-success.ts │ │ │ │ │ │ ├── declare-certification-folder-tocontrol.ts │ │ │ │ │ │ ├── declare-certification-folder-toretake.ts │ │ │ │ │ │ ├── declare-certification-folder-totake.ts │ │ │ │ │ │ ├── get-certification-folder.ts │ │ │ │ │ │ ├── list-certification-folder-documents.ts │ │ │ │ │ │ ├── refuse-certification-folder.ts │ │ │ │ │ │ ├── search-certification-folder.ts │ │ │ │ │ │ └── update-certification-folder.ts │ │ │ │ │ ├── certification-partner-audit │ │ │ │ │ │ ├── create-certification-partner-audit.ts │ │ │ │ │ │ └── create-general-audit.ts │ │ │ │ │ ├── certification-partner │ │ │ │ │ │ ├── create-partnership.ts │ │ │ │ │ │ ├── delete-partnership.ts │ │ │ │ │ │ ├── get-partnership.ts │ │ │ │ │ │ ├── list-partnership.ts │ │ │ │ │ │ ├── reset-partnership.ts │ │ │ │ │ │ └── update-partnership.ts │ │ │ │ │ ├── create-activitie.ts │ │ │ │ │ ├── create-task.ts │ │ │ │ │ ├── list-activities-and-tasks.ts │ │ │ │ │ ├── me.ts │ │ │ │ │ ├── my-organism.ts │ │ │ │ │ ├── registration-folders │ │ │ │ │ │ ├── bill-registration-folder.ts │ │ │ │ │ │ ├── cancel-registration-folder.ts │ │ │ │ │ │ ├── declare-registration-folder-intraining.ts │ │ │ │ │ │ ├── declare-registration-folder-servicedone.ts │ │ │ │ │ │ ├── declare-registration-folder-terminated.ts │ │ │ │ │ │ ├── get-minimal-session-dates.ts │ │ │ │ │ │ ├── get-registration-folder.ts │ │ │ │ │ │ ├── list-registration-folder-documents.ts │ │ │ │ │ │ ├── refuse-registration-folder.ts │ │ │ │ │ │ ├── search-registration-folder.ts │ │ │ │ │ │ ├── update-completion-rate.ts │ │ │ │ │ │ ├── update-registration-folder.ts │ │ │ │ │ │ └── validate-registration-folder.ts │ │ │ │ │ └── send-file.ts │ │ │ │ │ ├── common │ │ │ │ │ └── wedof.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── certification-folder-survey │ │ │ │ │ ├── certification-folder-survey-initial-experience-answered.ts │ │ │ │ │ ├── certification-folder-survey-initial-experience-available.ts │ │ │ │ │ ├── certification-folder-survey-long-experience-answered.ts │ │ │ │ │ ├── certification-folder-survey-long-experience-available.ts │ │ │ │ │ ├── certification-folder-survey-six-month-experience-answered.ts │ │ │ │ │ └── certification-folder-survey-six-month-experience-available.ts │ │ │ │ │ ├── certification-folders │ │ │ │ │ ├── certification-folder-registred.ts │ │ │ │ │ ├── certification-folder-selected.ts │ │ │ │ │ ├── certification-folder-success.ts │ │ │ │ │ ├── certification-folder-tocontrol.ts │ │ │ │ │ ├── certification-folder-toretake.ts │ │ │ │ │ ├── certification-folder-totake.ts │ │ │ │ │ ├── certification-folder-updated.ts │ │ │ │ │ └── new-certification-folder-created.ts │ │ │ │ │ ├── certification-partner │ │ │ │ │ ├── certificationPartner-aborted.ts │ │ │ │ │ ├── certificationPartner-active.ts │ │ │ │ │ ├── certificationPartner-processing.ts │ │ │ │ │ ├── certificationPartner-refused.ts │ │ │ │ │ ├── certificationPartner-revoked.ts │ │ │ │ │ └── certificationPartner-suspended.ts │ │ │ │ │ └── registration-folders │ │ │ │ │ ├── new-registration-folder-created.ts │ │ │ │ │ ├── registration-folder-accepted.ts │ │ │ │ │ ├── registration-folder-inTraining.ts │ │ │ │ │ ├── registration-folder-paid.ts │ │ │ │ │ ├── registration-folder-selected.ts │ │ │ │ │ ├── registration-folder-terminated.ts │ │ │ │ │ ├── registration-folder-tobill.ts │ │ │ │ │ └── registration-folder-updated.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── whatsable │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── send-message.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── whatsapp │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── send-from-template.ts │ │ │ │ │ ├── send-media.ts │ │ │ │ │ └── send-message.ts │ │ │ │ │ └── common │ │ │ │ │ └── utils.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── woocommerce │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-coupon.ts │ │ │ │ │ ├── create-customer.ts │ │ │ │ │ ├── create-product.ts │ │ │ │ │ ├── find-coupon.ts │ │ │ │ │ ├── find-customer.ts │ │ │ │ │ └── find-product.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── index.ts │ │ │ │ │ └── register-trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── wootric │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── create-survey.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── wordpress │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-page.action.ts │ │ │ │ │ ├── create-post.action.ts │ │ │ │ │ ├── get-post.action.ts │ │ │ │ │ └── update-post.action.ts │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── trigger │ │ │ │ │ └── new-post.trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── xero │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-contact.ts │ │ │ │ │ └── create-invoice.ts │ │ │ │ │ └── common │ │ │ │ │ └── props.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── xml │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── convert-json-to-xml.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── youtube │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── i18n │ │ │ │ │ └── translation.json │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── common │ │ │ │ │ ├── auth.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-video.trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── zagomail │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-subscriber.ts │ │ │ │ │ ├── get-campaign-details.ts │ │ │ │ │ ├── get-subscriber-details.ts │ │ │ │ │ ├── search-subscriber-by-email.ts │ │ │ │ │ ├── tag-subscriber.ts │ │ │ │ │ ├── unsubscribe-subscriber.ts │ │ │ │ │ └── update-subscriber.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── props.ts │ │ │ │ │ └── request.ts │ │ │ │ │ └── triggers │ │ │ │ │ ├── added-subscriber.ts │ │ │ │ │ ├── tagged-subscriber.ts │ │ │ │ │ └── unsubscribed-subscriber.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── zendesk │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── trigger │ │ │ │ │ └── new-ticket-in-view.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── zerobounce │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ └── validate-email.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── zoho-books │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── zoho-crm │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ └── read-file.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-contact.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── zoho-desk │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-ticket.ts │ │ │ │ │ ├── find-contact.ts │ │ │ │ │ └── list-tickets.ts │ │ │ │ │ └── common │ │ │ │ │ ├── auth.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── props.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── zoho-invoice │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── common │ │ │ │ │ └── index.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-invoice.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── zoho-mail │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── get-email-details.ts │ │ │ │ │ ├── mark-email-as-read.ts │ │ │ │ │ ├── mark-email-as-unread.ts │ │ │ │ │ ├── move-email.ts │ │ │ │ │ └── send-email.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── auth.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── props.ts │ │ │ │ │ └── triggers │ │ │ │ │ └── new-email-received-trigger.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── zoo │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── actions │ │ │ │ │ ├── api-calls │ │ │ │ │ ├── get-async-operation.action.ts │ │ │ │ │ ├── get-org-api-call.action.ts │ │ │ │ │ ├── get-user-api-call.action.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── list-org-api-calls.action.ts │ │ │ │ │ └── list-user-api-calls.action.ts │ │ │ │ │ ├── api-tokens │ │ │ │ │ ├── create-api-token.action.ts │ │ │ │ │ ├── delete-api-token.action.ts │ │ │ │ │ ├── get-api-token.action.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── list-api-tokens.action.ts │ │ │ │ │ ├── file │ │ │ │ │ ├── convert-cad-file.action.ts │ │ │ │ │ ├── get-center-of-mass.action.ts │ │ │ │ │ ├── get-density.action.ts │ │ │ │ │ ├── get-mass.action.ts │ │ │ │ │ ├── get-surface-area.action.ts │ │ │ │ │ ├── get-volume.action.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── meta │ │ │ │ │ ├── get-openapi-schema.action.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── return-pong.action.ts │ │ │ │ │ ├── ml │ │ │ │ │ ├── generate-cad-model.action.ts │ │ │ │ │ ├── get-cad-model.action.ts │ │ │ │ │ ├── give-model-feedback.action.ts │ │ │ │ │ ├── kcl-completions.action.ts │ │ │ │ │ ├── list-cad-models.action.ts │ │ │ │ │ └── text-to-cad-iteration.action.ts │ │ │ │ │ ├── modeling │ │ │ │ │ ├── index.ts │ │ │ │ │ └── send-modeling-command.action.ts │ │ │ │ │ ├── orgs │ │ │ │ │ ├── add-org-member.action.ts │ │ │ │ │ ├── create-org.action.ts │ │ │ │ │ ├── get-org-member.action.ts │ │ │ │ │ ├── get-org.action.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── list-org-members.action.ts │ │ │ │ │ └── update-org.action.ts │ │ │ │ │ ├── payments │ │ │ │ │ ├── create-org-payment.action.ts │ │ │ │ │ ├── create-org-subscription.action.ts │ │ │ │ │ ├── create-user-payment.action.ts │ │ │ │ │ ├── create-user-subscription.action.ts │ │ │ │ │ ├── delete-org-payment.action.ts │ │ │ │ │ ├── delete-user-payment.action.ts │ │ │ │ │ ├── get-org-balance.action.ts │ │ │ │ │ ├── get-org-payment.action.ts │ │ │ │ │ ├── get-org-subscription.action.ts │ │ │ │ │ ├── get-user-balance.action.ts │ │ │ │ │ ├── get-user-payment.action.ts │ │ │ │ │ ├── get-user-subscription.action.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── list-org-invoices.action.ts │ │ │ │ │ ├── list-org-payment-methods.action.ts │ │ │ │ │ ├── list-user-invoices.action.ts │ │ │ │ │ ├── list-user-payment-methods.action.ts │ │ │ │ │ ├── update-org-payment.action.ts │ │ │ │ │ ├── update-org-subscription.action.ts │ │ │ │ │ ├── update-user-payment.action.ts │ │ │ │ │ └── update-user-subscription.action.ts │ │ │ │ │ ├── service-accounts │ │ │ │ │ ├── create-service-account.action.ts │ │ │ │ │ ├── delete-service-account.action.ts │ │ │ │ │ ├── get-service-account.action.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── list-service-accounts.action.ts │ │ │ │ │ ├── shortlinks │ │ │ │ │ ├── create-shortlink.action.ts │ │ │ │ │ ├── delete-shortlink.action.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── list-org-shortlinks.action.ts │ │ │ │ │ ├── list-user-shortlinks.action.ts │ │ │ │ │ └── update-shortlink.action.ts │ │ │ │ │ ├── unit │ │ │ │ │ ├── convert-angle.action.ts │ │ │ │ │ ├── convert-area.action.ts │ │ │ │ │ ├── convert-current.action.ts │ │ │ │ │ ├── convert-energy.action.ts │ │ │ │ │ ├── convert-force.action.ts │ │ │ │ │ ├── convert-frequency.action.ts │ │ │ │ │ ├── convert-length.action.ts │ │ │ │ │ ├── convert-mass.action.ts │ │ │ │ │ ├── convert-power.action.ts │ │ │ │ │ ├── convert-pressure.action.ts │ │ │ │ │ ├── convert-temperature.action.ts │ │ │ │ │ ├── convert-torque.action.ts │ │ │ │ │ ├── convert-volume.action.ts │ │ │ │ │ └── index.ts │ │ │ │ │ └── users │ │ │ │ │ ├── delete-user.action.ts │ │ │ │ │ ├── get-extended-user.action.ts │ │ │ │ │ ├── get-oauth2-providers.action.ts │ │ │ │ │ ├── get-privacy-settings.action.ts │ │ │ │ │ ├── get-user-org.action.ts │ │ │ │ │ ├── get-user-session.action.ts │ │ │ │ │ ├── get-user.action.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── update-privacy-settings.action.ts │ │ │ │ │ └── update-user.action.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ ├── zoom │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── actions │ │ │ │ │ ├── create-meeting-registrant.ts │ │ │ │ │ └── create-meeting.ts │ │ │ │ │ └── common │ │ │ │ │ ├── models.ts │ │ │ │ │ └── props.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ └── zuora │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── actions │ │ │ │ ├── create-invoice.action.ts │ │ │ │ ├── find-account.action.ts │ │ │ │ ├── find-product-rate-plans.action.ts │ │ │ │ └── find-product.action.ts │ │ │ │ └── common │ │ │ │ └── index.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ └── custom │ │ └── README.md ├── react-ui │ ├── .eslintrc.json │ ├── .prettierignore │ ├── i18next-parser.config.js │ ├── index.html │ ├── jest.config.ts │ ├── postcss.config.js │ ├── project.json │ ├── public │ │ └── locales │ │ │ ├── ar │ │ │ └── translation.json │ │ │ ├── bg │ │ │ └── translation.json │ │ │ ├── ca │ │ │ └── translation.json │ │ │ ├── de │ │ │ └── translation.json │ │ │ ├── en │ │ │ └── translation.json │ │ │ ├── es │ │ │ └── translation.json │ │ │ ├── fr │ │ │ └── translation.json │ │ │ ├── hi │ │ │ └── translation.json │ │ │ ├── hu │ │ │ └── translation.json │ │ │ ├── hy │ │ │ └── translation.json │ │ │ ├── id │ │ │ └── translation.json │ │ │ ├── it │ │ │ └── translation.json │ │ │ ├── ja │ │ │ └── translation.json │ │ │ ├── ko │ │ │ └── translation.json │ │ │ ├── nl │ │ │ └── translation.json │ │ │ ├── pl │ │ │ └── translation.json │ │ │ ├── pt │ │ │ └── translation.json │ │ │ ├── ru │ │ │ └── translation.json │ │ │ ├── sv │ │ │ └── translation.json │ │ │ ├── uk │ │ │ └── translation.json │ │ │ ├── vi │ │ │ └── translation.json │ │ │ └── zh │ │ │ └── translation.json │ ├── src │ │ ├── app │ │ │ ├── app.tsx │ │ │ ├── builder │ │ │ │ ├── builder-flow-status-section │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── publish-button.tsx │ │ │ │ │ └── view-draft-or-edit-flow-button.tsx │ │ │ │ ├── builder-header │ │ │ │ │ ├── builder-header.tsx │ │ │ │ │ └── user-avatar-menu.tsx │ │ │ │ ├── builder-hooks.ts │ │ │ │ ├── builder-state-provider.tsx │ │ │ │ ├── copilot │ │ │ │ │ ├── chat-message.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── loading-message.tsx │ │ │ │ │ └── welcome-message.tsx │ │ │ │ ├── data-selector │ │ │ │ │ ├── data-selector-node-content.tsx │ │ │ │ │ ├── data-selector-node.tsx │ │ │ │ │ ├── data-selector-size-togglers.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── test-step-section.tsx │ │ │ │ │ ├── type.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── flow-canvas │ │ │ │ │ ├── bulk-actions.ts │ │ │ │ │ ├── canvas-controls.tsx │ │ │ │ │ ├── context-menu │ │ │ │ │ │ ├── canvas-context-menu-content.tsx │ │ │ │ │ │ └── canvas-context-menu.tsx │ │ │ │ │ ├── edges │ │ │ │ │ │ ├── add-button.tsx │ │ │ │ │ │ ├── branch-label.tsx │ │ │ │ │ │ ├── loop-return-edge.tsx │ │ │ │ │ │ ├── loop-start-edge.tsx │ │ │ │ │ │ ├── router-end-edge.tsx │ │ │ │ │ │ ├── router-start-edge.tsx │ │ │ │ │ │ └── straight-line-edge.tsx │ │ │ │ │ ├── flow-drag-layer.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── nodes │ │ │ │ │ │ ├── big-add-button-node.tsx │ │ │ │ │ │ ├── flow-end-widget-node.tsx │ │ │ │ │ │ ├── loop-return-node.tsx │ │ │ │ │ │ ├── step-node-status.tsx │ │ │ │ │ │ └── step-node.tsx │ │ │ │ │ ├── step-drag-overlay.tsx │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── consts.ts │ │ │ │ │ │ ├── flow-canvas-utils.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── flow-end-widget.tsx │ │ │ │ │ │ ├── incomplete-settings-widget.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── selection-chevron-button.tsx │ │ │ │ │ │ ├── test-flow-widget │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── test-button.tsx │ │ │ │ │ │ └── view-only-widget.tsx │ │ │ │ ├── flow-versions │ │ │ │ │ ├── flow-versions-card.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── piece-properties │ │ │ │ │ ├── action-error-handling.tsx │ │ │ │ │ ├── array-property-in-inline-item-mode.tsx │ │ │ │ │ ├── array-property.tsx │ │ │ │ │ ├── auto-form-field-wrapper.tsx │ │ │ │ │ ├── auto-properties-form.tsx │ │ │ │ │ ├── builder-json-wrapper.tsx │ │ │ │ │ ├── custom-property.tsx │ │ │ │ │ ├── dictionary-property.tsx │ │ │ │ │ ├── dynamic-dropdown-piece-property.tsx │ │ │ │ │ ├── dynamic-piece-properties-error-boundary.tsx │ │ │ │ │ ├── dynamic-piece-property.tsx │ │ │ │ │ └── text-input-with-mentions │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── text-input-utils.ts │ │ │ │ │ │ └── tip-tap.css │ │ │ │ ├── pieces-selector │ │ │ │ │ ├── add-todo-step-dialog.tsx │ │ │ │ │ ├── create-agent-action-item.tsx │ │ │ │ │ ├── custom-piece-selector-items-utils.ts │ │ │ │ │ ├── generic-piece-selector-item.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── no-results-found.tsx │ │ │ │ │ ├── piece-actions-or-triggers-list.tsx │ │ │ │ │ ├── piece-card-item.tsx │ │ │ │ │ ├── piece-selector-intro.tsx │ │ │ │ │ ├── pieces-card-list.tsx │ │ │ │ │ └── run-agent-action-item.tsx │ │ │ │ ├── run-details │ │ │ │ │ ├── flow-step-io │ │ │ │ │ │ ├── flow-step-agent.tsx │ │ │ │ │ │ ├── flow-step-input-output.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── loop-iteration-input.tsx │ │ │ │ │ └── run-step-card-item.tsx │ │ │ │ ├── run-list │ │ │ │ │ ├── flow-run-card.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── sidebar-header.tsx │ │ │ │ ├── step-settings │ │ │ │ │ ├── ask-ai.tsx │ │ │ │ │ ├── branch-settings │ │ │ │ │ │ ├── branch-condition-group.tsx │ │ │ │ │ │ ├── branch-condition-toolbar.tsx │ │ │ │ │ │ ├── branch-single-condition.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── code-settings │ │ │ │ │ │ ├── add-npm-dialog.tsx │ │ │ │ │ │ ├── code-editor.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── edit-agent-inside-flow-builder-button.tsx │ │ │ │ │ ├── editable-step-name.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── loops-settings.tsx │ │ │ │ │ ├── piece-settings │ │ │ │ │ │ ├── connection-select.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── router-settings │ │ │ │ │ │ ├── branches-list.tsx │ │ │ │ │ │ ├── branches-toolbar.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── step-card.tsx │ │ │ │ │ └── step-settings-context.tsx │ │ │ │ └── test-step │ │ │ │ │ ├── custom-test-step │ │ │ │ │ ├── mcp-tool-testing-dialog.tsx │ │ │ │ │ ├── test-agent-dialog.tsx │ │ │ │ │ ├── test-todo-dialog.tsx │ │ │ │ │ └── test-webhook-dialog.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── test-action-section.tsx │ │ │ │ │ ├── test-sample-data-viewer.tsx │ │ │ │ │ ├── test-step-hooks.ts │ │ │ │ │ ├── test-step-tooltip.tsx │ │ │ │ │ ├── test-step-utils.ts │ │ │ │ │ └── test-trigger-section │ │ │ │ │ ├── first-time-testing-section.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── manual-webhook-test-button.tsx │ │ │ │ │ ├── simulation-section.tsx │ │ │ │ │ ├── trigger-event-select.tsx │ │ │ │ │ └── trigger-event-utils.ts │ │ │ ├── components │ │ │ │ ├── allow-logged-in-user-only-guard.tsx │ │ │ │ ├── ap-dashboard-sidebar-header.tsx │ │ │ │ ├── appearance-settings.tsx │ │ │ │ ├── changelog-provider.tsx │ │ │ │ ├── dashboard-container.tsx │ │ │ │ ├── edition-guard.tsx │ │ │ │ ├── embedding-font-loader.tsx │ │ │ │ ├── flag-guard.tsx │ │ │ │ ├── flow-actions-menu.tsx │ │ │ │ ├── help-and-feedback.tsx │ │ │ │ ├── initial-data-guard.tsx │ │ │ │ ├── language-switcher.tsx │ │ │ │ ├── locked-feature-guard.tsx │ │ │ │ ├── page-title.tsx │ │ │ │ ├── platform-admin-container.tsx │ │ │ │ ├── project-settings-dropdown-menu.tsx │ │ │ │ ├── project-settings-layout.tsx │ │ │ │ ├── request-trial.tsx │ │ │ │ └── sidebar │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── sidebar-invite-user.tsx │ │ │ │ │ ├── sidebar-platform-admin.tsx │ │ │ │ │ ├── sidebar-user.tsx │ │ │ │ │ └── usage-limits-button.tsx │ │ │ ├── connections │ │ │ │ ├── basic-secret-connection-settings.tsx │ │ │ │ ├── create-edit-connection-dialog.tsx │ │ │ │ ├── custom-auth-connection-settings.tsx │ │ │ │ ├── new-connection-dialog.tsx │ │ │ │ ├── oauth2-connection-settings.tsx │ │ │ │ ├── reconnect-button-dialog.tsx │ │ │ │ ├── replace-connections-dialog.tsx │ │ │ │ └── secret-text-connection-settings.tsx │ │ │ ├── router │ │ │ │ ├── after-import-flow-redirect.tsx │ │ │ │ ├── default-route.tsx │ │ │ │ ├── flag-route-guard.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── permission-guard.tsx │ │ │ │ └── project-route-wrapper.tsx │ │ │ └── routes │ │ │ │ ├── 404-page.tsx │ │ │ │ ├── agents │ │ │ │ ├── builder │ │ │ │ │ ├── add-field-popover.tsx │ │ │ │ │ ├── agent-settings-output.tsx │ │ │ │ │ ├── agent-settings.tsx │ │ │ │ │ ├── field-type-icon.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── authenticate │ │ │ │ └── index.tsx │ │ │ │ ├── change-password │ │ │ │ └── index.tsx │ │ │ │ ├── chat │ │ │ │ ├── chat-drawer.tsx │ │ │ │ ├── flow-chat.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── connections │ │ │ │ └── index.tsx │ │ │ │ ├── embed │ │ │ │ ├── embedded-connection-dialog.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── flows │ │ │ │ ├── flows-table │ │ │ │ │ ├── columns.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── id │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── issues-table │ │ │ │ │ ├── columns.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── task-limit-alert.tsx │ │ │ │ ├── forget-password │ │ │ │ └── index.tsx │ │ │ │ ├── forms │ │ │ │ └── index.tsx │ │ │ │ ├── mcp-servers │ │ │ │ ├── id │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── mcp-add-tool-actions.tsx │ │ │ │ │ ├── mcp-config │ │ │ │ │ │ ├── empty-tools.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── mcp-config-utils.tsx │ │ │ │ │ │ ├── mcp-flow-tool.tsx │ │ │ │ │ │ ├── mcp-piece-tool.tsx │ │ │ │ │ │ └── mcp-tools-section.tsx │ │ │ │ │ ├── mcp-connect │ │ │ │ │ │ ├── config-display.tsx │ │ │ │ │ │ ├── expose-mcp-note.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── mcp-connect-utils.tsx │ │ │ │ │ │ ├── mcp-server-url-box.tsx │ │ │ │ │ │ ├── security-note.tsx │ │ │ │ │ │ └── step-card.tsx │ │ │ │ │ ├── mcp-flow-tool-dialog │ │ │ │ │ │ ├── create-mcp-flow-button.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── mcp-flow-dialog-content.tsx │ │ │ │ │ │ └── mcp-flow-dialog-utils.tsx │ │ │ │ │ ├── mcp-piece-tool-dialog │ │ │ │ │ │ ├── connection-dropdown.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── mcp-piece-actions.tsx │ │ │ │ │ │ └── mcp-pieces-content.tsx │ │ │ │ │ └── runs │ │ │ │ │ │ ├── mcp-run-details.tsx │ │ │ │ │ │ ├── mcp-run-utils.tsx │ │ │ │ │ │ └── mcp-runs.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── mcp-tools-icon.tsx │ │ │ │ ├── platform │ │ │ │ ├── analytics │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── metrics.tsx │ │ │ │ │ ├── reports.tsx │ │ │ │ │ └── task-usage.tsx │ │ │ │ ├── billing │ │ │ │ │ └── index.tsx │ │ │ │ ├── infra │ │ │ │ │ ├── health │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── workers │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── worker-configs-dialog.tsx │ │ │ │ ├── notifications │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── notifications-hooks.ts │ │ │ │ │ ├── platform-dialog.tsx │ │ │ │ │ └── platform-messages.tsx │ │ │ │ ├── projects │ │ │ │ │ ├── edit-project-dialog.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── new-project-dialog.tsx │ │ │ │ ├── security │ │ │ │ │ ├── api-keys │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── new-api-key-dialog.tsx │ │ │ │ │ ├── audit-logs │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── project-role │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── project-role-dialog.tsx │ │ │ │ │ │ ├── project-role-users-table.tsx │ │ │ │ │ │ └── project-roles-table.tsx │ │ │ │ │ ├── signing-keys │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── sso │ │ │ │ │ │ ├── allowed-domain.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── oauth2-dialog.tsx │ │ │ │ │ │ └── saml-dialog.tsx │ │ │ │ ├── setup │ │ │ │ │ ├── ai │ │ │ │ │ │ ├── copilot │ │ │ │ │ │ │ ├── configure-provider-dialog.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── universal-pieces │ │ │ │ │ │ │ ├── ai-provider-card.tsx │ │ │ │ │ │ │ └── upsert-provider-dialog.tsx │ │ │ │ │ ├── branding │ │ │ │ │ │ ├── add-custom-domain.tsx │ │ │ │ │ │ ├── appearance-section.tsx │ │ │ │ │ │ ├── custom-domain-section.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── smtp-section.tsx │ │ │ │ │ ├── connections │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── license-key │ │ │ │ │ │ ├── activate-license-dialog.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── pieces │ │ │ │ │ │ ├── apply-tags.tsx │ │ │ │ │ │ ├── create-tag-dialog.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── piece-actions.tsx │ │ │ │ │ │ ├── sync-pieces.tsx │ │ │ │ │ │ └── update-oauth2-dialog.tsx │ │ │ │ │ └── templates │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── upsert-template-dialog.tsx │ │ │ │ └── users │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── update-user-dialog.tsx │ │ │ │ ├── project-release │ │ │ │ ├── apply-plan.tsx │ │ │ │ ├── create-release-dialog │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── operation-change.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── push-everything-dialog │ │ │ │ │ └── index.tsx │ │ │ │ ├── selection-dialog.tsx │ │ │ │ ├── selection-release-dialog │ │ │ │ │ └── project-dialog.tsx │ │ │ │ └── view-release.tsx │ │ │ │ ├── redirect.tsx │ │ │ │ ├── runs │ │ │ │ └── id │ │ │ │ │ └── index.tsx │ │ │ │ ├── settings │ │ │ │ ├── alerts │ │ │ │ │ ├── add-alert-email-dialog.tsx │ │ │ │ │ ├── alert-option.tsx │ │ │ │ │ ├── alerts-email-list-card.tsx │ │ │ │ │ ├── alerts-frequency-card.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── environment │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── release-card.tsx │ │ │ │ ├── pieces │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── manage-pieces-dialog.tsx │ │ │ │ └── team │ │ │ │ │ └── index.tsx │ │ │ │ ├── sign-in │ │ │ │ └── index.tsx │ │ │ │ ├── sign-up │ │ │ │ └── index.tsx │ │ │ │ ├── tables │ │ │ │ ├── id │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── react-data-grid.css │ │ │ │ └── index.tsx │ │ │ │ ├── templates │ │ │ │ └── share-template.tsx │ │ │ │ └── todos │ │ │ │ ├── id │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── todo-details │ │ │ │ ├── index.tsx │ │ │ │ ├── todo-comment.tsx │ │ │ │ ├── todo-create-comment.tsx │ │ │ │ ├── todo-details-status.tsx │ │ │ │ ├── todo-textarea.tsx │ │ │ │ ├── todo-timeline-comment-skeleton.tsx │ │ │ │ ├── todo-timeline-status.tsx │ │ │ │ └── todo-timeline.tsx │ │ │ │ └── todos-details-drawer.tsx │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── img │ │ │ │ ├── custom │ │ │ │ ├── ActivepiecesCreateTodoGuide.png │ │ │ │ ├── ActivepiecesTodo.png │ │ │ │ ├── External_Channel_Todo.png │ │ │ │ ├── agents-group.png │ │ │ │ ├── auth │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── google-icon.svg │ │ │ │ │ └── saml.svg │ │ │ │ ├── celeberation.json │ │ │ │ ├── claude.svg │ │ │ │ ├── construction.png │ │ │ │ ├── cursor.svg │ │ │ │ ├── incomplete.png │ │ │ │ ├── link.png │ │ │ │ ├── magic.png │ │ │ │ ├── mcp-dark.svg │ │ │ │ ├── mcp-light.svg │ │ │ │ ├── mcp-with-background.svg │ │ │ │ ├── mcp.tsx │ │ │ │ └── windsurf.svg │ │ │ │ └── piece │ │ │ │ ├── branch.svg │ │ │ │ ├── code.svg │ │ │ │ ├── empty-trigger.svg │ │ │ │ └── loop.svg │ │ ├── components │ │ │ ├── custom │ │ │ │ ├── alert-icon.tsx │ │ │ │ ├── ap-avatar.tsx │ │ │ │ ├── array-input.tsx │ │ │ │ ├── beta-badge.tsx │ │ │ │ ├── button-with-tooltip.tsx │ │ │ │ ├── card-list.tsx │ │ │ │ ├── circular-icon.tsx │ │ │ │ ├── circular-progress.tsx │ │ │ │ ├── clipboard │ │ │ │ │ ├── copy-button.tsx │ │ │ │ │ ├── copy-text-tooltip.tsx │ │ │ │ │ └── copy-to-clipboard.tsx │ │ │ │ ├── download-button.tsx │ │ │ │ ├── input-with-icon.tsx │ │ │ │ ├── json-editor.tsx │ │ │ │ ├── markdown.tsx │ │ │ │ ├── multi-select-piece-property.tsx │ │ │ │ ├── multi-select.tsx │ │ │ │ ├── permission-needed-tooltip.tsx │ │ │ │ ├── searchable-select.tsx │ │ │ │ ├── select-util-button.tsx │ │ │ │ └── table-title.tsx │ │ │ ├── delete-dialog.tsx │ │ │ ├── embed-provider.tsx │ │ │ ├── json-viewer.tsx │ │ │ ├── show-powered-by.tsx │ │ │ ├── simple-json-viewer.tsx │ │ │ ├── socket-provider.tsx │ │ │ ├── telemetry-provider.tsx │ │ │ ├── theme-provider.tsx │ │ │ ├── theme-toggle.tsx │ │ │ └── ui │ │ │ │ ├── accordion.tsx │ │ │ │ ├── alert.tsx │ │ │ │ ├── autocomplete.tsx │ │ │ │ ├── avatar.tsx │ │ │ │ ├── badge.tsx │ │ │ │ ├── breadcrumb.tsx │ │ │ │ ├── button.tsx │ │ │ │ ├── calendar.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── carousel.tsx │ │ │ │ ├── chart.tsx │ │ │ │ ├── chat │ │ │ │ ├── chat-bubble │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── message-loading.tsx │ │ │ │ ├── chat-input │ │ │ │ │ ├── file-input-preview.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── chat-message-list │ │ │ │ │ ├── error-bubble.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── chat-message │ │ │ │ │ ├── file-message.tsx │ │ │ │ │ ├── image-dialog.tsx │ │ │ │ │ ├── image-message.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── text-message.tsx │ │ │ │ ├── checkbox.tsx │ │ │ │ ├── collapsible.tsx │ │ │ │ ├── color-picker.tsx │ │ │ │ ├── command.tsx │ │ │ │ ├── context-menu.tsx │ │ │ │ ├── data-table │ │ │ │ ├── data-table-bulk-actions.tsx │ │ │ │ ├── data-table-column-header.tsx │ │ │ │ ├── data-table-input-popover.tsx │ │ │ │ ├── data-table-options-filter.tsx │ │ │ │ ├── data-table-select-popover.tsx │ │ │ │ ├── data-table-skeleton.tsx │ │ │ │ ├── data-table-toolbar.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── date-time-picker-range.tsx │ │ │ │ ├── dialog.tsx │ │ │ │ ├── dot.tsx │ │ │ │ ├── drawer.tsx │ │ │ │ ├── dropdown-menu.tsx │ │ │ │ ├── editable-text-with-pen.tsx │ │ │ │ ├── editable-text.tsx │ │ │ │ ├── form.tsx │ │ │ │ ├── full-logo.tsx │ │ │ │ ├── home-button.tsx │ │ │ │ ├── image-with-fallback.tsx │ │ │ │ ├── input.tsx │ │ │ │ ├── label.tsx │ │ │ │ ├── loading-screen.tsx │ │ │ │ ├── locked-alert.tsx │ │ │ │ ├── message-tooltip.tsx │ │ │ │ ├── number-input.tsx │ │ │ │ ├── popover.tsx │ │ │ │ ├── progress-circle.tsx │ │ │ │ ├── progress.tsx │ │ │ │ ├── radio-group.tsx │ │ │ │ ├── read-more-description.tsx │ │ │ │ ├── resizable-panel.tsx │ │ │ │ ├── scroll-area.tsx │ │ │ │ ├── search-input.tsx │ │ │ │ ├── select.tsx │ │ │ │ ├── separator.tsx │ │ │ │ ├── sheet.tsx │ │ │ │ ├── shortcut.tsx │ │ │ │ ├── sidebar-shadcn.tsx │ │ │ │ ├── skeleton.tsx │ │ │ │ ├── slider.tsx │ │ │ │ ├── sonner.tsx │ │ │ │ ├── sortable.tsx │ │ │ │ ├── spinner.tsx │ │ │ │ ├── status-icon-with-text.tsx │ │ │ │ ├── switch.tsx │ │ │ │ ├── table.tsx │ │ │ │ ├── tabs.tsx │ │ │ │ ├── tag-input.tsx │ │ │ │ ├── text-with-icon.tsx │ │ │ │ ├── textarea.tsx │ │ │ │ ├── time-period-select.tsx │ │ │ │ ├── time-picker-utils.ts │ │ │ │ ├── time-picker.tsx │ │ │ │ ├── time-unit-input.tsx │ │ │ │ ├── toast.tsx │ │ │ │ ├── toaster.tsx │ │ │ │ ├── toggle.tsx │ │ │ │ ├── tooltip.tsx │ │ │ │ ├── use-toast.tsx │ │ │ │ ├── user-avatar.tsx │ │ │ │ └── virtualized-scroll-area.tsx │ │ ├── features │ │ │ ├── agents │ │ │ │ ├── agent-card-menu.tsx │ │ │ │ ├── agent-card.tsx │ │ │ │ ├── agent-timeline.tsx │ │ │ │ ├── agent-tool-block.tsx │ │ │ │ ├── create-agent-button.tsx │ │ │ │ ├── lib │ │ │ │ │ ├── agent-hooks.ts │ │ │ │ │ └── agents-api.ts │ │ │ │ └── use-agent-button.tsx │ │ │ ├── alerts │ │ │ │ └── lib │ │ │ │ │ ├── alert-hooks.ts │ │ │ │ │ └── api.ts │ │ │ ├── authentication │ │ │ │ ├── components │ │ │ │ │ ├── auth-form-template.tsx │ │ │ │ │ ├── change-password.tsx │ │ │ │ │ ├── check-email-note.tsx │ │ │ │ │ ├── password-validator.tsx │ │ │ │ │ ├── reset-password-form.tsx │ │ │ │ │ ├── sign-in-form.tsx │ │ │ │ │ ├── sign-up-form.tsx │ │ │ │ │ ├── third-party-logins.tsx │ │ │ │ │ └── verify-email.tsx │ │ │ │ └── lib │ │ │ │ │ └── password-validation-utils.ts │ │ │ ├── billing │ │ │ │ ├── components │ │ │ │ │ ├── ai-credit-usage.tsx │ │ │ │ │ ├── business-user-seats.tsx │ │ │ │ │ ├── error.tsx │ │ │ │ │ ├── extra-user-seats-dialog.tsx │ │ │ │ │ ├── manage-plan-dialog.tsx │ │ │ │ │ ├── plan-card.tsx │ │ │ │ │ ├── success.tsx │ │ │ │ │ ├── tasks-usage.tsx │ │ │ │ │ ├── trial-dialog.tsx │ │ │ │ │ ├── upgrade-hook.tsx │ │ │ │ │ └── usage-cards.tsx │ │ │ │ └── lib │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── billing-hooks.ts │ │ │ │ │ └── data.ts │ │ │ ├── chat │ │ │ │ ├── chat-bubble │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── message-loading.tsx │ │ │ │ ├── chat-input │ │ │ │ │ ├── file-input-preview.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── chat-intro.tsx │ │ │ │ ├── chat-message-list │ │ │ │ │ ├── error-bubble.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── chat-message │ │ │ │ │ ├── file-message.tsx │ │ │ │ │ ├── image-dialog.tsx │ │ │ │ │ ├── image-message.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── text-message.tsx │ │ │ ├── connections │ │ │ │ ├── components │ │ │ │ │ ├── assign-global-connection-to-projects.tsx │ │ │ │ │ ├── edit-global-connection-dialog.tsx │ │ │ │ │ └── rename-connection-dialog.tsx │ │ │ │ └── lib │ │ │ │ │ ├── api │ │ │ │ │ ├── app-connections.ts │ │ │ │ │ ├── global-connections.ts │ │ │ │ │ └── oauth-apps.ts │ │ │ │ │ ├── app-connections-hooks.ts │ │ │ │ │ ├── global-connections-hooks.ts │ │ │ │ │ ├── oauth-apps-hooks.ts │ │ │ │ │ └── utils.ts │ │ │ ├── flow-runs │ │ │ │ ├── components │ │ │ │ │ ├── run-details-bar.tsx │ │ │ │ │ ├── runs-table │ │ │ │ │ │ ├── columns.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── step-status-icon.tsx │ │ │ │ └── lib │ │ │ │ │ ├── flow-run-utils.ts │ │ │ │ │ └── flow-runs-api.ts │ │ │ ├── flows │ │ │ │ ├── components │ │ │ │ │ ├── flow-status-toggle.tsx │ │ │ │ │ ├── flow-version-state-dot.tsx │ │ │ │ │ ├── import-flow-dialog.tsx │ │ │ │ │ ├── move-flow-dialog.tsx │ │ │ │ │ ├── rename-flow-dialog.tsx │ │ │ │ │ ├── select-flow-template-dialog.tsx │ │ │ │ │ └── share-template-dialog.tsx │ │ │ │ └── lib │ │ │ │ │ ├── flows-api.tsx │ │ │ │ │ ├── flows-hooks.ts │ │ │ │ │ ├── flows-utils.tsx │ │ │ │ │ ├── sample-data-api.ts │ │ │ │ │ ├── sample-data-hooks.ts │ │ │ │ │ ├── trigger-event-hooks.ts │ │ │ │ │ ├── trigger-events-api.ts │ │ │ │ │ └── use-flows-bulk-actions.tsx │ │ │ ├── folders │ │ │ │ ├── component │ │ │ │ │ ├── create-folder-dialog.tsx │ │ │ │ │ ├── folder-badge.tsx │ │ │ │ │ ├── folder-filter-list.tsx │ │ │ │ │ └── rename-folder-dialog.tsx │ │ │ │ └── lib │ │ │ │ │ ├── folders-api.ts │ │ │ │ │ ├── folders-hooks.ts │ │ │ │ │ └── folders-utils.ts │ │ │ ├── forms │ │ │ │ ├── components │ │ │ │ │ └── ap-form.tsx │ │ │ │ └── lib │ │ │ │ │ └── human-input-api.tsx │ │ │ ├── git-sync │ │ │ │ ├── components │ │ │ │ │ ├── connect-git-dialog.tsx │ │ │ │ │ ├── published-tooltip.tsx │ │ │ │ │ └── push-to-git-dialog.tsx │ │ │ │ └── lib │ │ │ │ │ ├── git-sync-api.ts │ │ │ │ │ └── git-sync-hooks.ts │ │ │ ├── issues │ │ │ │ ├── api │ │ │ │ │ └── issues-api.ts │ │ │ │ └── hooks │ │ │ │ │ └── issue-hooks.tsx │ │ │ ├── mcp │ │ │ │ └── lib │ │ │ │ │ ├── mcp-api.ts │ │ │ │ │ ├── mcp-hooks.ts │ │ │ │ │ └── mcp-run-api.ts │ │ │ ├── pieces │ │ │ │ ├── components │ │ │ │ │ ├── install-piece-dialog.tsx │ │ │ │ │ ├── piece-icon-from-name.tsx │ │ │ │ │ ├── piece-icon-list.tsx │ │ │ │ │ └── piece-icon.tsx │ │ │ │ └── lib │ │ │ │ │ ├── form-utils.tsx │ │ │ │ │ ├── piece-selector-utils.ts │ │ │ │ │ ├── pieces-api.ts │ │ │ │ │ ├── pieces-hooks.ts │ │ │ │ │ ├── step-utils.tsx │ │ │ │ │ └── steps-hooks.ts │ │ │ ├── platform-admin │ │ │ │ ├── components │ │ │ │ │ └── new-signing-key-dialog.tsx │ │ │ │ └── lib │ │ │ │ │ ├── ai-provider-api.ts │ │ │ │ │ ├── analytics-api.ts │ │ │ │ │ ├── api-key-api.ts │ │ │ │ │ ├── audit-events-api.ts │ │ │ │ │ ├── custom-domain-api.ts │ │ │ │ │ ├── pieces-tags.ts │ │ │ │ │ ├── project-role-api.ts │ │ │ │ │ ├── signing-key-api.ts │ │ │ │ │ └── workers-api.ts │ │ │ ├── project-version │ │ │ │ └── lib │ │ │ │ │ └── project-release-api.ts │ │ │ ├── projects │ │ │ │ └── components │ │ │ │ │ └── project-switcher.tsx │ │ │ ├── tables │ │ │ │ ├── components │ │ │ │ │ ├── ap-field-header.tsx │ │ │ │ │ ├── ap-table-actions-menu.tsx │ │ │ │ │ ├── ap-table-footer.tsx │ │ │ │ │ ├── ap-table-header.tsx │ │ │ │ │ ├── ap-table-state-provider.tsx │ │ │ │ │ ├── date-editor.tsx │ │ │ │ │ ├── dropdown-editor.tsx │ │ │ │ │ ├── editable-cell.tsx │ │ │ │ │ ├── field-action-menu-item-renderer.tsx │ │ │ │ │ ├── fields-mapping.tsx │ │ │ │ │ ├── import-csv-dialog.tsx │ │ │ │ │ ├── new-field-popup.tsx │ │ │ │ │ ├── number-editor.tsx │ │ │ │ │ ├── rename-field-popovercontent.tsx │ │ │ │ │ ├── rename-table-dialog.tsx │ │ │ │ │ ├── select-column.tsx │ │ │ │ │ └── text-editor.tsx │ │ │ │ └── lib │ │ │ │ │ ├── fields-api.ts │ │ │ │ │ ├── records-api.ts │ │ │ │ │ ├── store │ │ │ │ │ ├── ap-tables-client-state.tsx │ │ │ │ │ └── ap-tables-server-state.ts │ │ │ │ │ ├── tables-api.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── utils.tsx │ │ │ ├── team │ │ │ │ ├── component │ │ │ │ │ ├── accept-invitation.tsx │ │ │ │ │ ├── edit-role-dialog.tsx │ │ │ │ │ ├── invitation-card.tsx │ │ │ │ │ ├── invite-user-dialog.tsx │ │ │ │ │ ├── platform-role-select.tsx │ │ │ │ │ ├── project-member-card.tsx │ │ │ │ │ └── project-role-select.tsx │ │ │ │ └── lib │ │ │ │ │ ├── project-members-api.ts │ │ │ │ │ ├── project-members-hooks.ts │ │ │ │ │ ├── user-invitation.ts │ │ │ │ │ └── user-invitations-hooks.ts │ │ │ ├── templates │ │ │ │ ├── components │ │ │ │ │ └── share-template.tsx │ │ │ │ └── lib │ │ │ │ │ └── templates-api.ts │ │ │ └── todos │ │ │ │ └── lib │ │ │ │ ├── todo-hook.ts │ │ │ │ ├── todo-utils.ts │ │ │ │ ├── todos-activitiy-api.ts │ │ │ │ ├── todos-activity-hook.ts │ │ │ │ └── todos-api.ts │ │ ├── hooks │ │ │ ├── authorization-hooks.ts │ │ │ ├── flags-hooks.ts │ │ │ ├── platform-hooks.ts │ │ │ ├── platform-user-hooks.ts │ │ │ ├── project-hooks.ts │ │ │ ├── use-mobile.tsx │ │ │ └── user-hooks.ts │ │ ├── i18n.ts │ │ ├── lib │ │ │ ├── ap-browser-storage.ts │ │ │ ├── api.ts │ │ │ ├── authentication-api.ts │ │ │ ├── authentication-session.ts │ │ │ ├── changelog-api.ts │ │ │ ├── color-util.ts │ │ │ ├── compose-refs.ts │ │ │ ├── flags-api.ts │ │ │ ├── managed-auth-api.ts │ │ │ ├── navigation-utils.tsx │ │ │ ├── oauth2-utils.ts │ │ │ ├── platform-user-api.ts │ │ │ ├── platforms-api.ts │ │ │ ├── project-api.ts │ │ │ ├── promise-queue.ts │ │ │ ├── request-trial-api.ts │ │ │ ├── types.ts │ │ │ ├── user-api.ts │ │ │ └── utils.ts │ │ ├── main.tsx │ │ ├── styles.css │ │ └── styles │ │ │ └── globals.css │ ├── tailwind.config.js │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── vite.config.ts ├── server │ ├── .gitignore │ ├── api │ │ ├── .env │ │ ├── .env.tests │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── __mocks__ │ │ │ └── isolated-vm.js │ │ ├── jest.config.ts │ │ ├── jest.setup.js │ │ ├── project.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── agents │ │ │ │ │ ├── agent-controller.ts │ │ │ │ │ ├── agent-entity.ts │ │ │ │ │ ├── agent-module.ts │ │ │ │ │ └── agents-service.ts │ │ │ │ ├── ai │ │ │ │ │ ├── ai-provider-controller.ts │ │ │ │ │ ├── ai-provider-entity.ts │ │ │ │ │ ├── ai-provider-service.ts │ │ │ │ │ ├── ai-provider.module.ts │ │ │ │ │ ├── ai-usage-entity.ts │ │ │ │ │ └── providers │ │ │ │ │ │ ├── anthropic.ts │ │ │ │ │ │ ├── google.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── openai.ts │ │ │ │ │ │ ├── replicate.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ ├── app-connection │ │ │ │ │ ├── app-connection-service │ │ │ │ │ │ ├── app-connection-service.ts │ │ │ │ │ │ ├── app-connection.handler.ts │ │ │ │ │ │ └── oauth2 │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── oauth2-service.ts │ │ │ │ │ │ │ ├── oauth2-util.ts │ │ │ │ │ │ │ └── services │ │ │ │ │ │ │ ├── cloud-oauth2-service.ts │ │ │ │ │ │ │ └── credentials-oauth2-service.ts │ │ │ │ │ ├── app-connection-worker-controller.ts │ │ │ │ │ ├── app-connection.controller.ts │ │ │ │ │ ├── app-connection.entity.ts │ │ │ │ │ └── app-connection.module.ts │ │ │ │ ├── app-event-routing │ │ │ │ │ ├── app-event-routing.entity.ts │ │ │ │ │ ├── app-event-routing.module.ts │ │ │ │ │ └── app-event-routing.service.ts │ │ │ │ ├── app.ts │ │ │ │ ├── authentication │ │ │ │ │ ├── authentication-utils.ts │ │ │ │ │ ├── authentication.controller.ts │ │ │ │ │ ├── authentication.module.ts │ │ │ │ │ ├── authentication.service.ts │ │ │ │ │ ├── authorization.ts │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── access-token-manager.ts │ │ │ │ │ │ └── password-hasher.ts │ │ │ │ │ └── user-identity │ │ │ │ │ │ ├── user-identity-entity.ts │ │ │ │ │ │ └── user-identity-service.ts │ │ │ │ ├── changelog │ │ │ │ │ ├── changelog.controller.ts │ │ │ │ │ ├── changelog.module.ts │ │ │ │ │ └── changelog.service.ts │ │ │ │ ├── copilot │ │ │ │ │ ├── copilot.module.ts │ │ │ │ │ ├── copilot.service.ts │ │ │ │ │ ├── services │ │ │ │ │ │ └── model.service.ts │ │ │ │ │ └── tools │ │ │ │ │ │ └── code │ │ │ │ │ │ ├── code-agent.ts │ │ │ │ │ │ ├── code-generate.ts │ │ │ │ │ │ ├── icon-agent.ts │ │ │ │ │ │ ├── prompts │ │ │ │ │ │ └── code-generation.prompt.ts │ │ │ │ │ │ └── types │ │ │ │ │ │ └── index.ts │ │ │ │ ├── core │ │ │ │ │ ├── db │ │ │ │ │ │ ├── repo-factory.ts │ │ │ │ │ │ └── transaction.ts │ │ │ │ │ ├── request │ │ │ │ │ │ └── request-utils.ts │ │ │ │ │ └── security │ │ │ │ │ │ ├── authn │ │ │ │ │ │ ├── access-token-authn-handler.ts │ │ │ │ │ │ ├── anonymous-authn-handler.ts │ │ │ │ │ │ ├── app-sumo-authn-handler.ts │ │ │ │ │ │ ├── global-api-key-authn-handler.ts │ │ │ │ │ │ └── platform-api-key-authn-handler.ts │ │ │ │ │ │ ├── authz │ │ │ │ │ │ ├── principal-type-authz-handler.ts │ │ │ │ │ │ └── project-authz-handler.ts │ │ │ │ │ │ ├── rate-limit.ts │ │ │ │ │ │ ├── security-handler-chain.ts │ │ │ │ │ │ └── security-handler.ts │ │ │ │ ├── database │ │ │ │ │ ├── database-common.ts │ │ │ │ │ ├── database-connection.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── migration │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── 1696245170061-add-piece-type-and-package-type-to-flow-version.ts │ │ │ │ │ │ │ ├── 1696245170062-add-piece-type-and-package-type-to-flow-template.ts │ │ │ │ │ │ │ ├── 1697969398200-store-code-inside-flow.ts │ │ │ │ │ │ │ ├── 1699818680567-update-user-status-rename-shadow-to-invited.ts │ │ │ │ │ │ │ ├── 1701096458822-add-partial-unique-index-for-email-and-platform-id-is-null.ts │ │ │ │ │ │ │ ├── 1707087022764-add-trigger-test-strategy.ts │ │ │ │ │ │ │ ├── 1709581196563-migrate-webhook.ts │ │ │ │ │ │ │ ├── 1716105958530-RemoveShowActivityLog.ts │ │ │ │ │ │ │ ├── 1716725027424-AddDurationForRuns.ts │ │ │ │ │ │ │ ├── 1723549873495-ChangeEventRoutingConstraint.ts │ │ │ │ │ │ │ ├── 1725570317713-RemoveUniqueConstraintOnStepFile.ts │ │ │ │ │ │ │ ├── 1727130193726-AddUserSessionId.ts │ │ │ │ │ │ │ ├── 1728827704109-AddLicenseKeyIntoPlatform.ts │ │ │ │ │ │ │ ├── 1729098769827-ChangeProjectUniqueConstraintToPartialIndex.ts │ │ │ │ │ │ │ ├── 1731019013340-switch-to-router.ts │ │ │ │ │ │ │ ├── 1747346473001-ChangeExternalIdsForTables.ts │ │ │ │ │ │ │ ├── 1748253670449-UpgradePieceVersionsToLatest.ts │ │ │ │ │ │ │ ├── 1748648340742-DeprecateApproval.ts │ │ │ │ │ │ │ └── 1750712746125-RemoveProjectIdFromIndex.ts │ │ │ │ │ │ ├── postgres │ │ │ │ │ │ │ ├── 1674788714498-FlowAndFileProjectId.ts │ │ │ │ │ │ │ ├── 1676238396411-initialize-schema.ts │ │ │ │ │ │ │ ├── 1676505294811-encrypt-credentials.ts │ │ │ │ │ │ │ ├── 1676649852890-remove-store-action.ts │ │ │ │ │ │ │ ├── 1677286751592-billing.ts │ │ │ │ │ │ │ ├── 1677521257188-add-version-to-piece-steps.ts │ │ │ │ │ │ │ ├── 1677894800372-product-embed.ts │ │ │ │ │ │ │ ├── 1678382946390-add-event-routing.ts │ │ │ │ │ │ │ ├── 1678492809093-removeCollectionVersion.ts │ │ │ │ │ │ │ ├── 1678621361185-addtriggerevents.ts │ │ │ │ │ │ │ ├── 1678928503715-bump-fix-piece-versions.ts │ │ │ │ │ │ │ ├── 1679014156667-migrate-schedule.ts │ │ │ │ │ │ │ ├── 1680563747425-add-notifications-status.ts │ │ │ │ │ │ │ ├── 1680698259291-create-webhook-simulation-schema.ts │ │ │ │ │ │ │ ├── 1680986182074-RemoveCollections.ts │ │ │ │ │ │ │ ├── 1681019096716-StoreAllPeriods.ts │ │ │ │ │ │ │ ├── 1681107443963-AddInputUiInfo.ts │ │ │ │ │ │ │ ├── 1683040965874-allow-nullable-store-entry.ts │ │ │ │ │ │ │ ├── 1683195711242-rename-notifications.ts │ │ │ │ │ │ │ ├── 1683199709317-list-flow-runs-indices.ts │ │ │ │ │ │ │ ├── 1683458275525-project-notify-status-not-null.ts │ │ │ │ │ │ │ ├── 1683552928243-flow-run-pause-metadata.ts │ │ │ │ │ │ │ ├── 1683898241599-ChangeVariableSyntax.ts │ │ │ │ │ │ │ ├── 1685537054805-piece-metadata.ts │ │ │ │ │ │ │ ├── 1686090319016-AddProjectIdToPieceMetadata.ts │ │ │ │ │ │ │ ├── 1686138629812-unifyPieceName.ts │ │ │ │ │ │ │ ├── 1687384796637-AddScheduleOptions.ts │ │ │ │ │ │ │ ├── 1688922241747-AddAuthToPiecesMetadata.ts │ │ │ │ │ │ │ ├── 1689292797727-AddUpdatedByInFlowVersion.ts │ │ │ │ │ │ │ ├── 1689351564290-AddTasksToRun.ts │ │ │ │ │ │ │ ├── 1691703023866-add-app-connection-type-to-top-level.ts │ │ │ │ │ │ │ ├── 1692106375081-AddTagsToRun.ts │ │ │ │ │ │ │ ├── 1693004806926-AddFileToPostgres.ts │ │ │ │ │ │ │ ├── 1693402930301-AddStatusToConnections.ts │ │ │ │ │ │ │ ├── 1693850082449-AddUserMetaInformation.ts │ │ │ │ │ │ │ ├── 1694367186954-fix-piece-metadata-order-bug.ts │ │ │ │ │ │ │ ├── 1694691554696-file-type-compression.ts │ │ │ │ │ │ │ ├── 1694902537040-Chatbot.ts │ │ │ │ │ │ │ ├── 1695719749099-AddVisibilityStatusToChatbot.ts │ │ │ │ │ │ │ ├── 1695992551156-add-piece-type-and-package-type-to-piece-metadata.ts │ │ │ │ │ │ │ ├── 1696950789636-add-archive-id-to-piece-metadata.ts │ │ │ │ │ │ │ ├── 1698065083750-add-platform-to-project.ts │ │ │ │ │ │ │ ├── 1698323987669-AddTerminationReason.ts │ │ │ │ │ │ │ ├── 1698602417745-add-signing-key.ts │ │ │ │ │ │ │ ├── 1698698190965-AddDisplayNameToSigningKey.ts │ │ │ │ │ │ │ ├── 1698700720482-managed-authn-initial.ts │ │ │ │ │ │ │ ├── 1699221414907-AddOAuth2AppEntiity.ts │ │ │ │ │ │ │ ├── 1699281870038-add-filtered-pieces-to-platform.ts │ │ │ │ │ │ │ ├── 1699491705906-AddSmtpAndPrivacyUrlToPlatform.ts │ │ │ │ │ │ │ ├── 1699901161457-add-platform-id-to-user.ts │ │ │ │ │ │ │ ├── 1700132368636-RemoveUnusedFieldsinBilling.ts │ │ │ │ │ │ │ ├── 1700396157624-add-otp-entity.ts │ │ │ │ │ │ │ ├── 1700406308445-AddPlatformDefaultLanguage.ts │ │ │ │ │ │ │ ├── 1700522340280-AddPlatformIdToPieceMetadata.ts │ │ │ │ │ │ │ ├── 1700751925992-MakeStripeCustomerIdNullable.ts │ │ │ │ │ │ │ ├── 1701084418793-add-state-to-otp.ts │ │ │ │ │ │ │ ├── 1701261357197-migrate-ee-users-to-oldest-platform.ts │ │ │ │ │ │ │ ├── 1701647565290-ModifyProjectMembersAndRemoveUserId.ts │ │ │ │ │ │ │ ├── 1701716639135-AddApiKeys.ts │ │ │ │ │ │ │ ├── 1701794452891-AddEmbeddingFeatureToPlatform.ts │ │ │ │ │ │ │ ├── 1701807681821-AddPlatformIdToFile.ts │ │ │ │ │ │ │ ├── 1702379794665-remove-flow-instance.ts │ │ │ │ │ │ │ ├── 1703411318826-AddPlatformIdToFlowTemplates.ts │ │ │ │ │ │ │ ├── 1703711596105-RenameAppNameToPieceName.ts │ │ │ │ │ │ │ ├── 1703769034497-AddVerifiedAndChangeStatus.ts │ │ │ │ │ │ │ ├── 1704503804056-AddGitRepoMigrationPostgres.ts │ │ │ │ │ │ │ ├── 1704636362533-AddGitSyncEnabledToPlatform.ts │ │ │ │ │ │ │ ├── 1704667304953-AddAuthOptionsToPlatform.ts │ │ │ │ │ │ │ ├── 1704797979825-AddEnableEmailAuthToPlatform.ts │ │ │ │ │ │ │ ├── 1705586178452-RemoveUniqueonAppNameAppCredentials.ts │ │ │ │ │ │ │ ├── 1705969874745-MakePlatformNotNullable.ts │ │ │ │ │ │ │ ├── 1707231704973-AddCategoriesToPieceMetadataPostgres.ts │ │ │ │ │ │ │ ├── 1707614902283-AddAuditEvents.ts │ │ │ │ │ │ │ ├── 1708515756040-create-activity-table.ts │ │ │ │ │ │ │ ├── 1708521505204-AddUniqueStoreConstraint.ts │ │ │ │ │ │ │ ├── 1708529586342-add-length-limits-to-activity.ts │ │ │ │ │ │ │ ├── 1708811745694-AddProjectBilling.ts │ │ │ │ │ │ │ ├── 1708861032399-add-show-activity-log-to-platform.ts │ │ │ │ │ │ │ ├── 1709052740378-AddPlatformToPostgres.ts │ │ │ │ │ │ │ ├── 1709151540095-add-slug-to-git-repo.ts │ │ │ │ │ │ │ ├── 1709500213947-add-user-email-to-referral.ts │ │ │ │ │ │ │ ├── 1709500873378-DropUnusedPlatformIndex.ts │ │ │ │ │ │ │ ├── 1709505632771-SetNotNullOnPlatform.ts │ │ │ │ │ │ │ ├── 1709566642531-add-platform-foreign-key-to-project-postgres.ts │ │ │ │ │ │ │ ├── 1709581196564-migrate-webhook-templates.ts │ │ │ │ │ │ │ ├── 1709641016072-set-flow-version-updated-by-to-null-if-user-is-deleted-postgres.ts │ │ │ │ │ │ │ ├── 1709669091258-move-generated-by-from-signing-key-to-audit-event-postgres.ts │ │ │ │ │ │ │ ├── 1709753080714-AddMappingStateToGit.ts │ │ │ │ │ │ │ ├── 1710098373707-AddAuthorsToPieces.ts │ │ │ │ │ │ │ ├── 1710243591721-add-deleted-to-project-postgres.ts │ │ │ │ │ │ │ ├── 1710720610669-cascade-project-delete-app-credentials-and-connection-key.ts │ │ │ │ │ │ │ ├── 1710720610670-cascade-project-delete-activity.ts │ │ │ │ │ │ │ ├── 1711073772867-AddBranchTypeToGit.ts │ │ │ │ │ │ │ ├── 1711411372480-migrateInputUiInfo.ts │ │ │ │ │ │ │ ├── 1711768296861-AddProjectUsageColumnToPiece.ts │ │ │ │ │ │ │ ├── 1712107871405-AddPieceTags.ts │ │ │ │ │ │ │ ├── 1712279318440-PiecesProjectLimits.ts │ │ │ │ │ │ │ ├── 1713221809186-RemoveUniqueEmailOnUser.ts │ │ │ │ │ │ │ ├── 1713302610746-AddPlatformRoleToUser.ts │ │ │ │ │ │ │ ├── 1713643694049-AddUniqueNameToFolder.ts │ │ │ │ │ │ │ ├── 1714145914415-AddFeaturesToPlatform.ts │ │ │ │ │ │ │ ├── 1714249840058-UnifyEnterpriseWithCloud.ts │ │ │ │ │ │ │ ├── 1714904516114-AddIssueEntityPostgres.ts │ │ │ │ │ │ │ ├── 1716989780835-AddAlertsEntityPostgres.ts │ │ │ │ │ │ │ ├── 1717370717678-AddPremiumPiecesColumnPostgres.ts │ │ │ │ │ │ │ ├── 1717960689650-AddUserInvitation.ts │ │ │ │ │ │ │ ├── 1717961669938-ModifyProjectMembers.ts │ │ │ │ │ │ │ ├── 1720101280025-AddWorkerMachine.ts │ │ │ │ │ │ │ ├── 1723489038729-MigrateAuditEventSchema.ts │ │ │ │ │ │ │ ├── 1725113652923-AddAnalyticsToPlatform.ts │ │ │ │ │ │ │ ├── 1725639666232-LogFileRelationWithFlowRun.ts │ │ │ │ │ │ │ ├── 1725699690971-AddLogsFileIdIndex.ts │ │ │ │ │ │ │ ├── 1726364421096-SupportS3Files.ts │ │ │ │ │ │ │ ├── 1726445983043-AddAiProviderTable.ts │ │ │ │ │ │ │ ├── 1726446092010-AddAiTokensForProjectPlan.ts │ │ │ │ │ │ │ ├── 1727865841722-RemovePremiumPieces.ts │ │ │ │ │ │ │ ├── 1729602169179-MigrateSMTPInPlatform.ts │ │ │ │ │ │ │ ├── 1729776414647-AddPinnedPieces.ts │ │ │ │ │ │ │ ├── 1730123432651-AddConnectionOwner.ts │ │ │ │ │ │ │ ├── 1730627612799-AppConnectionsSetNull.ts │ │ │ │ │ │ │ ├── 1730760434336-AddFlowSchemaVersion.ts │ │ │ │ │ │ │ ├── 1731247581852-StoreTriggerEventsInFile.ts │ │ │ │ │ │ │ ├── 1731424289830-CreateProjectRoleTable.ts │ │ │ │ │ │ │ ├── 1731428722977-MigrateConnectionNames.ts │ │ │ │ │ │ │ ├── 1731532843905-AddGlobalConnectionsAndRbacForPlatform.ts │ │ │ │ │ │ │ ├── 1731711188507-AddAuditLogIndicies.ts │ │ │ │ │ │ │ ├── 1732324567513-AddIndiciesToRunAndTriggerData.ts │ │ │ │ │ │ │ ├── 1732790673766-AddProjectRelationInUserInvitation.ts │ │ │ │ │ │ │ ├── 1734355488179-TablesProduct.ts │ │ │ │ │ │ │ ├── 1734418823028-CreateProjectReleaseTable.ts │ │ │ │ │ │ │ ├── 1734439097357-RemoveWorkerType.ts │ │ │ │ │ │ │ ├── 1734479886363-AddCopilotSettings.ts │ │ │ │ │ │ │ ├── 1734969829406-FieldAndRecordAndCell_ProjectId.ts │ │ │ │ │ │ │ ├── 1734971881345-AddPlatformBilling.ts │ │ │ │ │ │ │ ├── 1735057498882-AddCellUniqueIndex.ts │ │ │ │ │ │ │ ├── 1735262417593-AddExternalIdForFlow.ts │ │ │ │ │ │ │ ├── 1735267452262-AddEnvironmentsEnabled.ts │ │ │ │ │ │ │ ├── 1735590074879-AddUserIdentity.ts │ │ │ │ │ │ │ ├── 1736607721367-RemoveUnusedProjectBillingFields.ts │ │ │ │ │ │ │ ├── 1736813103505-RenameGitRepoPermission.ts │ │ │ │ │ │ │ ├── 1739546878775-RestrictPieces.ts │ │ │ │ │ │ │ ├── 1741357285896-ProjectIdNullableInTemplate.ts │ │ │ │ │ │ │ ├── 1741669458075-CreateTableWebhooks.ts │ │ │ │ │ │ │ ├── 1741963410825-UpdateNotifyStatusOnEmbedding.ts │ │ │ │ │ │ │ ├── 1742304857701-AddManualTaskTable.ts │ │ │ │ │ │ │ ├── 1742305104390-AddManualTaskCommentTable.ts │ │ │ │ │ │ │ ├── 1742395892304-AddDataColumnToFieldEntity.ts │ │ │ │ │ │ │ ├── 1742432827826-ChangeManualTasksToTodo.ts │ │ │ │ │ │ │ ├── 1742433144687-ChangeManualTasksCommentsToTodoComments.ts │ │ │ │ │ │ │ ├── 1742991137557-RenameApprovalUrlToResolveUrl.ts │ │ │ │ │ │ │ ├── 1743128816786-AddMCP.ts │ │ │ │ │ │ │ ├── 1743780156664-AddMetadataFields.ts │ │ │ │ │ │ │ ├── 1744053592923-AddLastChangelogDismissed.ts │ │ │ │ │ │ │ ├── 1744187975994-AddRecordIndexForTableIdAndProjectIdAndRecordId.ts │ │ │ │ │ │ │ ├── 1744822233873-AddMcpPiece.ts │ │ │ │ │ │ │ ├── 1745272231418-RenameTodoPostiveVariantName.ts │ │ │ │ │ │ │ ├── 1745530653784-AddConnectionIdsToFlowVersion.ts │ │ │ │ │ │ │ ├── 1746356907629-AddExternalIdForTablesAndFields.ts │ │ │ │ │ │ │ ├── 1746531094548-MakeExternalIdNotNullable.ts │ │ │ │ │ │ │ ├── 1746543299109-ChangeMcpPieceForeignKey.ts │ │ │ │ │ │ │ ├── 1746714836833-AddI18nColumnToPieceMetadata.ts │ │ │ │ │ │ │ ├── 1746848208563-AddHandshakeConfigurationToFlow.ts │ │ │ │ │ │ │ ├── 1747095861746-AddOrderToFolder.ts │ │ │ │ │ │ │ ├── 1747819919988-RenameProjectBillingToPlatformPLan.ts │ │ │ │ │ │ │ ├── 1747921788059-AddLimitsOnPlatformPlan.ts │ │ │ │ │ │ │ ├── 1748352614033-AddMcpToolEntity.ts │ │ │ │ │ │ │ ├── 1748358415599-AddMcpRunEntity.ts │ │ │ │ │ │ │ ├── 1748456786940-AddAgentsModule.ts │ │ │ │ │ │ │ ├── 1748525529096-AddTodoActivity.ts │ │ │ │ │ │ │ ├── 1748549003744-AddPlanNameOnPlatformPlan.ts │ │ │ │ │ │ │ ├── 1748565250553-AddCreatedByUserIdInTodo.ts │ │ │ │ │ │ │ ├── 1748573003639-AddTodoEnvironment.ts │ │ │ │ │ │ │ ├── 1748871900624-AIProviderRedactorPostgres.ts.ts │ │ │ │ │ │ │ ├── 1748996336492-MigrateMcpFlowsToBeTools.ts │ │ │ │ │ │ │ ├── 1749128866314-AddMcpToolFlowCascadeDelete.ts │ │ │ │ │ │ │ ├── 1749405724276-AddAgents.ts │ │ │ │ │ │ │ ├── 1749733527371-removeDefaultLocaleFromPlatform.ts │ │ │ │ │ │ │ ├── 1749859119064-AddAgentOutput.ts │ │ │ │ │ │ │ ├── 1749917984363-AddAgentsLimitToPlatformPlan.ts │ │ │ │ │ │ │ ├── 1750017637712-AddStepToIssuesTable.ts │ │ │ │ │ │ │ ├── 1750025401754-MakeStepNameOptional.ts │ │ │ │ │ │ │ ├── 1750090291551-AIUsagePostgres.ts │ │ │ │ │ │ │ ├── 1750093037011-RemoveUniqueOnFlow.ts │ │ │ │ │ │ │ ├── 1750354589729-ChangeTodoActivityContentFormat.ts │ │ │ │ │ │ │ ├── 1750389164014-RevertDescriptionTodoNaming.ts │ │ │ │ │ │ │ ├── 1750392148590-RegenerateIssuesTable.ts │ │ │ │ │ │ │ ├── 1750526457504-AddPlatformIdToAiUsage.ts │ │ │ │ │ │ │ ├── 1750704192423-addBillingCycleDates.ts │ │ │ │ │ │ │ ├── 1750720173459-replaceTasksLimitWithIncludedTasks.ts │ │ │ │ │ │ │ ├── 1750722071472-renameIncludedTasksToTasksLimit.ts │ │ │ │ │ │ │ ├── 1751021111433-addPaymentMethodToPlatformPlan.ts │ │ │ │ │ │ │ ├── 1751217652277-RevertTodoActivties.ts │ │ │ │ │ │ │ ├── 1751309258332-AddAgentsEnabledToPlatformPlan.ts │ │ │ │ │ │ │ ├── 1751394161203-AddTrialFlagInPlatform.ts │ │ │ │ │ │ │ ├── 1751404517528-update-ai-credits.ts │ │ │ │ │ │ │ ├── 1751466404493-add-ai-overage-state.ts │ │ │ │ │ │ │ ├── 1751728035816-RemoveTerminationReason.ts │ │ │ │ │ │ │ └── 1751927222122-AddFlowVersionToIssue.ts │ │ │ │ │ │ └── sqlite │ │ │ │ │ │ │ ├── 1690195839899-InitialSql3Migration.ts │ │ │ │ │ │ │ ├── 1691706020626-add-app-connection-type-to-top-level.ts │ │ │ │ │ │ │ ├── 1692056190942-AddTagsToRunSqlite.ts │ │ │ │ │ │ │ ├── 1692958076906-AddStepFileSqlite.ts │ │ │ │ │ │ │ ├── 1693402376520-AddStatusToConnectionsSqlite.ts │ │ │ │ │ │ │ ├── 1693774053027-AddImageUrlAndTitleToUser.ts │ │ │ │ │ │ │ ├── 1694695212159-file-type-compression.ts │ │ │ │ │ │ │ ├── 1696016228398-add-piece-type-and-package-type-to-piece-metadata.ts │ │ │ │ │ │ │ ├── 1696029443045-AddChatBotSqlite.ts │ │ │ │ │ │ │ ├── 1696956123632-add-archive-id-to-piece-metadata.ts │ │ │ │ │ │ │ ├── 1698078715730-add-platform-to-project.ts │ │ │ │ │ │ │ ├── 1698323327318-AddTerminationReason.ts │ │ │ │ │ │ │ ├── 1698857968495-AddExternalIdSqlite.ts │ │ │ │ │ │ │ ├── 1700147448410-AddPlatformIdToUserSqlite.ts │ │ │ │ │ │ │ ├── 1700524446967-AddPlatformIdToPieceMetadataSqlite.ts │ │ │ │ │ │ │ ├── 1701808264444-AddPlatformIdToFileSqlite.ts │ │ │ │ │ │ │ ├── 1702412280963-remove-flow-instance-sqlite.ts │ │ │ │ │ │ │ ├── 1703713027818-UpdateStatusInUserSqlite.ts │ │ │ │ │ │ │ ├── 1703713475755-RenameAppNameToPieceNameSqlite.ts │ │ │ │ │ │ │ ├── 1703768553820-AddVerifiedAndChangeStatusSqlite.ts │ │ │ │ │ │ │ ├── 1707229986819-AddCategoriesToPieceMetadata.ts │ │ │ │ │ │ │ ├── 1708527446535-AddUniqueStoreConstraint.ts │ │ │ │ │ │ │ ├── 1709051625110-CreateDefaultPlaformSqlite.ts │ │ │ │ │ │ │ ├── 1709566629593-add-platform-foreign-key-to-project-sqlite.ts │ │ │ │ │ │ │ ├── 1710098009544-AddAuthorsToPieces.ts │ │ │ │ │ │ │ ├── 1710248182409-add-deleted-to-project-sqlite.ts │ │ │ │ │ │ │ ├── 1711412511624-AddMissingInputUiInfoSqlite.ts │ │ │ │ │ │ │ ├── 1711768479150-AddProjectUsageColumnToPieceSqlite.ts │ │ │ │ │ │ │ ├── 1712180673961-AddTagsToPiecesSqlite.ts │ │ │ │ │ │ │ ├── 1713222892743-RemoveUniqueEmailOnUser.ts │ │ │ │ │ │ │ ├── 1713271221154-AddPlatformRole.ts │ │ │ │ │ │ │ ├── 1713645171373-AddUniqueNameToFolderSqlite.ts │ │ │ │ │ │ │ ├── 1714137103728-AddFeatureFlagsToPlatform.ts │ │ │ │ │ │ │ ├── 1714900626443-AddIssueEntitySqlite.ts │ │ │ │ │ │ │ ├── 1717239613259-AddAlertsEntitySqlite.ts │ │ │ │ │ │ │ ├── 1717443603235-AddPremiumPiecesColumnSqlite.ts │ │ │ │ │ │ │ ├── 1717943564437-AddUserInvitationSqlite.ts │ │ │ │ │ │ │ ├── 1720100928449-AddWorkerMachineSqlite.ts │ │ │ │ │ │ │ ├── 1725151368300-AddAnalyticsToPlatformSqlite.ts │ │ │ │ │ │ │ ├── 1725637505836-LogFileRelationWithFlowRunSqlite.ts │ │ │ │ │ │ │ ├── 1725699920020-AddLogsFileIdIndexSqlite.ts │ │ │ │ │ │ │ ├── 1726363932745-SupportS3FilesSqlite.ts │ │ │ │ │ │ │ ├── 1726446345221-AddAiProviderSqlite.ts │ │ │ │ │ │ │ ├── 1727865697005-RemovePremiumPiecesSqlite.ts │ │ │ │ │ │ │ ├── 1729330108485-UpdatePlaformInSqlite.ts │ │ │ │ │ │ │ ├── 1729601402320-MigrateSMTPInPlatformSqlite.ts │ │ │ │ │ │ │ ├── 1729774033945-AddPinnedPiecesSqlite.ts │ │ │ │ │ │ │ ├── 1730121414658-AddConnectionOwnerSqlite.ts │ │ │ │ │ │ │ ├── 1730627777709-AppConnectionsSetNullSqlite.ts │ │ │ │ │ │ │ ├── 1730760312426-AddFlowSchemaVersionSqlite.ts │ │ │ │ │ │ │ ├── 1731247180217-StoreTriggerEventsInFileSqlite.ts │ │ │ │ │ │ │ ├── 1731443310900-MigrateConnectionNamesSqlite.ts │ │ │ │ │ │ │ ├── 1731604290560-AddGlobalConnectionsAndRbacForPlatformSqlite.ts │ │ │ │ │ │ │ ├── 1732324359348-AddIndiciesToTriggerEventSqlite.ts │ │ │ │ │ │ │ ├── 1732324481815-AddIndiciesToRunSqlite.ts │ │ │ │ │ │ │ ├── 1732482844483-CreateProjectRoleTableSqlite.ts │ │ │ │ │ │ │ ├── 1732791068873-AddProjectRelationInUserInvitationSqlite.ts │ │ │ │ │ │ │ ├── 1734354249984-TablesProductSqlite.ts │ │ │ │ │ │ │ ├── 1734439194575-RemoveWorkerTypeSqlite.ts │ │ │ │ │ │ │ ├── 1734479435668-AddCopilotSettingsSqlite.ts │ │ │ │ │ │ │ ├── 1734967659746-FieldAndRecordAndCell_ProjectIdSqlite.ts │ │ │ │ │ │ │ ├── 1735057433052-AddCellUniqueIndexSqlite.ts │ │ │ │ │ │ │ ├── 1735262810939-AddExternalIdForFlowSqlite.ts │ │ │ │ │ │ │ ├── 1735602676499-AddUserIdentitySqlite.ts │ │ │ │ │ │ │ ├── 1737550783153-TableWebhooksSqlite.ts │ │ │ │ │ │ │ ├── 1739544872722-RestrictPiecesSqlite.ts │ │ │ │ │ │ │ ├── 1741668828922-TableWebhooksIsArraySqlite.ts │ │ │ │ │ │ │ ├── 1742304913465-AddManualTaskTable.ts │ │ │ │ │ │ │ ├── 1742390870702-AddDataColumnToFieldEntity.ts │ │ │ │ │ │ │ ├── 1742432169253-ChangeManualTasksToTodoSqlite.ts │ │ │ │ │ │ │ ├── 1742991301509-RenameApprovalUrlToResolveUrl.ts │ │ │ │ │ │ │ ├── 1743127177235-AddMCPSqlite.ts │ │ │ │ │ │ │ ├── 1743780156664-AddMetadataFields.ts │ │ │ │ │ │ │ ├── 1744053922591-AddLastChangelogDismissedSQLITE.ts │ │ │ │ │ │ │ ├── 1744104496262-AddRecordIndexForTableIdAndProjectIdAndRecordId.ts │ │ │ │ │ │ │ ├── 1744822233873-AddMcpPieceSqlite.ts │ │ │ │ │ │ │ ├── 1745269828603-RenameTodoVariantName.ts │ │ │ │ │ │ │ ├── 1745531870426-AddConnectionIdsToFlowVersion.ts │ │ │ │ │ │ │ ├── 1746367601605-AddExternalIdForTablesAndFieldsSQLITE.ts │ │ │ │ │ │ │ ├── 1746529105649-MakeExternalIdNotNullableSqlite.ts │ │ │ │ │ │ │ ├── 1746543346220-ChangeMcpPieceForeignKey.ts │ │ │ │ │ │ │ ├── 1746714949131-AddI18nColumnToPieceMetadata.ts │ │ │ │ │ │ │ ├── 1746845932780-AddHandshakeConfigurationToFlowSqlite.ts │ │ │ │ │ │ │ ├── 1747062679388-AddFolderDisplayOrder.ts │ │ │ │ │ │ │ ├── 1747824740845-RemoveFeatureFlagsFromSqlite.ts │ │ │ │ │ │ │ ├── 1748365593414-AddMcpToolEntitySQLITE.ts │ │ │ │ │ │ │ ├── 1748365786218-AddMcpRunEntitySQLITE.ts │ │ │ │ │ │ │ ├── 1748573768714-AddAgentsSqlite.ts │ │ │ │ │ │ │ ├── 1748824241409-AIProviderRefactorSqlite.ts │ │ │ │ │ │ │ ├── 1749129178686-AddMcpToolFlowCascadeDeleteSqlite.ts │ │ │ │ │ │ │ ├── 1749735242946-removeDefaultLocaleFromPlatform.ts │ │ │ │ │ │ │ ├── 1749953500521-AddAgentsSqlite.ts │ │ │ │ │ │ │ ├── 1750017482244-AddStepToIssuesTableSqlite.ts │ │ │ │ │ │ │ ├── 1750025280435-MakeStepNameOptionalSqlite.ts │ │ │ │ │ │ │ ├── 1750074241300-AIUsageSqlite.ts │ │ │ │ │ │ │ ├── 1750093133906-RemoveUniqueOnFlowSqlite.ts │ │ │ │ │ │ │ ├── 1750364494659-ChangeTodoActivityContentFormatSqlite.ts │ │ │ │ │ │ │ ├── 1750391313307-RevertDescriptionTodoNamingSqlite.ts │ │ │ │ │ │ │ ├── 1750391974657-RegenerateIssuesTable.ts │ │ │ │ │ │ │ ├── 1751217307674-RevertTodoActivtiesSqlite.ts │ │ │ │ │ │ │ ├── 1751727630516-RemoveTerminationReasonSqlite.ts │ │ │ │ │ │ │ └── 1751927149586-AddFlowVersionToIssueSqlite.ts │ │ │ │ │ ├── postgres-connection.ts │ │ │ │ │ ├── redis-connection.ts │ │ │ │ │ ├── seeds │ │ │ │ │ │ ├── data-seed.ts │ │ │ │ │ │ ├── dev-seeds.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── role-seed.ts │ │ │ │ │ └── sqlite-connection.ts │ │ │ │ ├── ee │ │ │ │ │ ├── alerts │ │ │ │ │ │ ├── alerts-controller.ts │ │ │ │ │ │ ├── alerts-entity.ts │ │ │ │ │ │ ├── alerts-handler.ts │ │ │ │ │ │ ├── alerts-module.ts │ │ │ │ │ │ └── alerts-service.ts │ │ │ │ │ ├── analytics │ │ │ │ │ │ ├── analytics.module.ts │ │ │ │ │ │ ├── analytics.service.ts │ │ │ │ │ │ └── pieces-analytics.service.ts │ │ │ │ │ ├── api-keys │ │ │ │ │ │ ├── api-key-entity.ts │ │ │ │ │ │ ├── api-key-module.ts │ │ │ │ │ │ └── api-key-service.ts │ │ │ │ │ ├── app-connections │ │ │ │ │ │ └── platform-oauth2-service.ts │ │ │ │ │ ├── app-credentials │ │ │ │ │ │ ├── app-credentials.entity.ts │ │ │ │ │ │ ├── app-credentials.module.ts │ │ │ │ │ │ └── app-credentials.service.ts │ │ │ │ │ ├── appsumo │ │ │ │ │ │ ├── appsumo.entity.ts │ │ │ │ │ │ ├── appsumo.module.ts │ │ │ │ │ │ └── appsumo.service.ts │ │ │ │ │ ├── audit-logs │ │ │ │ │ │ ├── audit-event-entity.ts │ │ │ │ │ │ ├── audit-event-module.ts │ │ │ │ │ │ └── audit-event-service.ts │ │ │ │ │ ├── authentication │ │ │ │ │ │ ├── ee-authorization.ts │ │ │ │ │ │ ├── enterprise-local-authn │ │ │ │ │ │ │ ├── enterprise-local-authn-controller.ts │ │ │ │ │ │ │ ├── enterprise-local-authn-module.ts │ │ │ │ │ │ │ └── enterprise-local-authn-service.ts │ │ │ │ │ │ ├── federated-authn │ │ │ │ │ │ │ ├── federated-authn-module.ts │ │ │ │ │ │ │ ├── federated-authn-service.ts │ │ │ │ │ │ │ └── google-authn-provider.ts │ │ │ │ │ │ ├── otp │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ └── otp-generator.ts │ │ │ │ │ │ │ ├── otp-controller.ts │ │ │ │ │ │ │ ├── otp-entity.ts │ │ │ │ │ │ │ ├── otp-module.ts │ │ │ │ │ │ │ └── otp-service.ts │ │ │ │ │ │ ├── project-role │ │ │ │ │ │ │ └── rbac-middleware.ts │ │ │ │ │ │ └── saml-authn │ │ │ │ │ │ │ ├── authn-sso-saml-controller.ts │ │ │ │ │ │ │ ├── authn-sso-saml-module.ts │ │ │ │ │ │ │ ├── authn-sso-saml-service.ts │ │ │ │ │ │ │ └── saml-client.ts │ │ │ │ │ ├── connection-keys │ │ │ │ │ │ ├── connection-key.entity.ts │ │ │ │ │ │ ├── connection-key.module.ts │ │ │ │ │ │ └── connection-key.service.ts │ │ │ │ │ ├── custom-domains │ │ │ │ │ │ ├── custom-domain.entity.ts │ │ │ │ │ │ ├── custom-domain.module.ts │ │ │ │ │ │ ├── custom-domain.service.ts │ │ │ │ │ │ └── domain-helper.ts │ │ │ │ │ ├── database │ │ │ │ │ │ └── migrations │ │ │ │ │ │ │ └── postgres │ │ │ │ │ │ │ ├── 1685053959806-MakeStripeSubscriptionNullable.ts │ │ │ │ │ │ │ ├── 1685538145476-addTemplates.ts │ │ │ │ │ │ │ ├── 1685991260335-ChangeToJsonToPeserveKeys.ts │ │ │ │ │ │ │ ├── 1686133672743-AddPinnedAndBlogUrlToTemplates.ts │ │ │ │ │ │ │ ├── 1686154285890-add_pinned_order.ts │ │ │ │ │ │ │ ├── 1688083336934-AddProjectIdToTemplate.ts │ │ │ │ │ │ │ ├── 1688739844617-AddBillingParameters.ts │ │ │ │ │ │ │ ├── 1688943462327-AddAppSumo.ts │ │ │ │ │ │ │ ├── 1689177797092-AddProjectMembers.ts │ │ │ │ │ │ │ ├── 1689336533370-AddTasksPerDays.ts │ │ │ │ │ │ │ ├── 1689806173642-RemoveCalculatedMetrics.ts │ │ │ │ │ │ │ ├── 1690459469381-AddReferral.ts │ │ │ │ │ │ │ ├── 1694379223109-flow-template-add-user-id-and-image-url.ts │ │ │ │ │ │ │ ├── 1694381968985-project-member-relations.ts │ │ │ │ │ │ │ ├── 1694604120205-AddFeaturedDescriptionAndFlagToTemplates.ts │ │ │ │ │ │ │ ├── 1694902537045-ModifyBilling.ts │ │ │ │ │ │ │ ├── 1695916063833-AddDatasourcesLimit.ts │ │ │ │ │ │ │ ├── 1697717995884-add-platform.ts │ │ │ │ │ │ │ ├── 1698077078271-AddCustomDomain.ts │ │ │ │ │ │ │ └── 1744780800000-AddMetadataFieldToFlowTemplates.ts │ │ │ │ │ ├── flags │ │ │ │ │ │ └── enterprise-flags.hooks.ts │ │ │ │ │ ├── flow-template │ │ │ │ │ │ ├── flow-template.entity.ts │ │ │ │ │ │ ├── flow-template.service.ts │ │ │ │ │ │ └── platform-flow-template.module.ts │ │ │ │ │ ├── global-connections │ │ │ │ │ │ └── global-connection-module.ts │ │ │ │ │ ├── helper │ │ │ │ │ │ ├── appearance-helper.ts │ │ │ │ │ │ └── email │ │ │ │ │ │ │ ├── email-sender │ │ │ │ │ │ │ ├── email-sender.ts │ │ │ │ │ │ │ ├── log-email-sender.ts │ │ │ │ │ │ │ └── smtp-email-sender.ts │ │ │ │ │ │ │ └── email-service.ts │ │ │ │ │ ├── license-keys │ │ │ │ │ │ ├── license-keys-controller.ts │ │ │ │ │ │ ├── license-keys-module.ts │ │ │ │ │ │ ├── license-keys-service.ts │ │ │ │ │ │ └── license-keys-trial.service.ts │ │ │ │ │ ├── managed-authn │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── external-token-extractor.ts │ │ │ │ │ │ ├── managed-authn-controller.ts │ │ │ │ │ │ ├── managed-authn-module.ts │ │ │ │ │ │ └── managed-authn-service.ts │ │ │ │ │ ├── oauth-apps │ │ │ │ │ │ ├── oauth-app.entity.ts │ │ │ │ │ │ ├── oauth-app.module.ts │ │ │ │ │ │ └── oauth-app.service.ts │ │ │ │ │ ├── pieces │ │ │ │ │ │ ├── admin-piece-module.ts │ │ │ │ │ │ ├── admin-piece-requests.ee.ts │ │ │ │ │ │ ├── filters │ │ │ │ │ │ │ └── piece-filtering-utils.ts │ │ │ │ │ │ └── platform-piece-module.ts │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── admin │ │ │ │ │ │ │ ├── admin-platform.controller.ts │ │ │ │ │ │ │ └── admin-platform.service.ts │ │ │ │ │ │ ├── platform-plan │ │ │ │ │ │ │ ├── platform-plan-helper.ts │ │ │ │ │ │ │ ├── platform-plan.controller.ts │ │ │ │ │ │ │ ├── platform-plan.entity.ts │ │ │ │ │ │ │ ├── platform-plan.module.ts │ │ │ │ │ │ │ ├── platform-plan.service.ts │ │ │ │ │ │ │ ├── stripe-billing.controller.ts │ │ │ │ │ │ │ └── stripe-helper.ts │ │ │ │ │ │ └── platform-usage-service.ts │ │ │ │ │ ├── projects │ │ │ │ │ │ ├── ee-project-hooks.ts │ │ │ │ │ │ ├── platform-project-controller.ts │ │ │ │ │ │ ├── platform-project-module.ts │ │ │ │ │ │ ├── platform-project-service.ts │ │ │ │ │ │ ├── platform-project-side-effects.ts │ │ │ │ │ │ ├── platform-user-project-controller.ts │ │ │ │ │ │ ├── project-members │ │ │ │ │ │ │ ├── project-member.controller.ts │ │ │ │ │ │ │ ├── project-member.entity.ts │ │ │ │ │ │ │ ├── project-member.module.ts │ │ │ │ │ │ │ └── project-member.service.ts │ │ │ │ │ │ ├── project-plan │ │ │ │ │ │ │ ├── project-plan.entity.ts │ │ │ │ │ │ │ └── project-plan.service.ts │ │ │ │ │ │ ├── project-release │ │ │ │ │ │ │ ├── git-sync │ │ │ │ │ │ │ │ ├── git-helper.ts │ │ │ │ │ │ │ │ ├── git-sync-handler.ts │ │ │ │ │ │ │ │ ├── git-sync-helper.ts │ │ │ │ │ │ │ │ ├── git-sync.entity.ts │ │ │ │ │ │ │ │ ├── git-sync.module.ts │ │ │ │ │ │ │ │ └── git-sync.service.ts │ │ │ │ │ │ │ ├── project-release.controller.ts │ │ │ │ │ │ │ ├── project-release.entity.ts │ │ │ │ │ │ │ ├── project-release.module.ts │ │ │ │ │ │ │ ├── project-release.service.ts │ │ │ │ │ │ │ └── project-state │ │ │ │ │ │ │ │ ├── project-diff.service.ts │ │ │ │ │ │ │ │ ├── project-state-helper.ts │ │ │ │ │ │ │ │ └── project-state.service.ts │ │ │ │ │ │ └── project-role │ │ │ │ │ │ │ ├── project-role.controller.ts │ │ │ │ │ │ │ ├── project-role.entity.ts │ │ │ │ │ │ │ ├── project-role.module.ts │ │ │ │ │ │ │ └── project-role.service.ts │ │ │ │ │ ├── signing-key │ │ │ │ │ │ ├── signing-key-controller.ts │ │ │ │ │ │ ├── signing-key-entity.ts │ │ │ │ │ │ ├── signing-key-generator.ts │ │ │ │ │ │ ├── signing-key-module.ts │ │ │ │ │ │ └── signing-key-service.ts │ │ │ │ │ └── users │ │ │ │ │ │ ├── user.module.ts │ │ │ │ │ │ └── users-controller.ts │ │ │ │ ├── file │ │ │ │ │ ├── file.entity.ts │ │ │ │ │ ├── file.module.ts │ │ │ │ │ ├── file.service.ts │ │ │ │ │ ├── s3-helper.ts │ │ │ │ │ └── step-file │ │ │ │ │ │ ├── step-file-migration.ts │ │ │ │ │ │ ├── step-file.controller.ts │ │ │ │ │ │ └── step-file.service.ts │ │ │ │ ├── flags │ │ │ │ │ ├── flag.entity.ts │ │ │ │ │ ├── flag.module.ts │ │ │ │ │ ├── flag.service.ts │ │ │ │ │ ├── flags.hooks.ts │ │ │ │ │ └── theme.ts │ │ │ │ ├── flow-templates │ │ │ │ │ └── community-flow-template.module.ts │ │ │ │ ├── flows │ │ │ │ │ ├── flow-run │ │ │ │ │ │ ├── flow-run-controller.ts │ │ │ │ │ │ ├── flow-run-entity.ts │ │ │ │ │ │ ├── flow-run-hooks.ts │ │ │ │ │ │ ├── flow-run-module.ts │ │ │ │ │ │ ├── flow-run-service.ts │ │ │ │ │ │ └── flow-run-side-effects.ts │ │ │ │ │ ├── flow-version │ │ │ │ │ │ ├── flow-version-entity.ts │ │ │ │ │ │ ├── flow-version-side-effects.ts │ │ │ │ │ │ ├── flow-version-validator-util.ts │ │ │ │ │ │ └── flow-version.service.ts │ │ │ │ │ ├── flow.module.ts │ │ │ │ │ ├── flow │ │ │ │ │ │ ├── flow-service-side-effects.ts │ │ │ │ │ │ ├── flow-version.controller.ts │ │ │ │ │ │ ├── flow.controller.ts │ │ │ │ │ │ ├── flow.entity.ts │ │ │ │ │ │ ├── flow.repo.ts │ │ │ │ │ │ ├── flow.service.ts │ │ │ │ │ │ └── human-input │ │ │ │ │ │ │ ├── chat-controller.ts │ │ │ │ │ │ │ ├── form-controller.ts │ │ │ │ │ │ │ ├── human-input.module.ts │ │ │ │ │ │ │ └── human-input.service.ts │ │ │ │ │ ├── folder │ │ │ │ │ │ ├── folder.entity.ts │ │ │ │ │ │ ├── folder.module.ts │ │ │ │ │ │ └── folder.service.ts │ │ │ │ │ ├── issues │ │ │ │ │ │ ├── issues-controller.ts │ │ │ │ │ │ ├── issues-entity.ts │ │ │ │ │ │ ├── issues-module.ts │ │ │ │ │ │ └── issues-service.ts │ │ │ │ │ ├── step-run │ │ │ │ │ │ ├── sample-data.controller.ts │ │ │ │ │ │ └── sample-data.service.ts │ │ │ │ │ ├── test-trigger │ │ │ │ │ │ ├── test-trigger-controller.ts │ │ │ │ │ │ └── test-trigger-service.ts │ │ │ │ │ ├── trigger-events │ │ │ │ │ │ ├── trigger-event.entity.ts │ │ │ │ │ │ ├── trigger-event.module.ts │ │ │ │ │ │ └── trigger-event.service.ts │ │ │ │ │ └── trigger │ │ │ │ │ │ ├── dedupe │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── disable-trigger-hook.ts │ │ │ │ │ │ ├── enable-trigger-hook.ts │ │ │ │ │ │ └── trigger-utils.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── health │ │ │ │ │ └── health.module.ts │ │ │ │ ├── helper │ │ │ │ │ ├── application-events │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── dayjs-helper.ts │ │ │ │ │ ├── encryption.ts │ │ │ │ │ ├── error-handler.ts │ │ │ │ │ ├── hooks-factory.ts │ │ │ │ │ ├── json-validator.ts │ │ │ │ │ ├── jwt-utils.ts │ │ │ │ │ ├── keyvalue │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── memory-store.ts │ │ │ │ │ │ ├── redis-store.ts │ │ │ │ │ │ └── store.ts │ │ │ │ │ ├── local-store.ts │ │ │ │ │ ├── lock.ts │ │ │ │ │ ├── openapi │ │ │ │ │ │ ├── openapi.controller.ts │ │ │ │ │ │ └── openapi.module.ts │ │ │ │ │ ├── pagination │ │ │ │ │ │ ├── build-paginator.ts │ │ │ │ │ │ ├── pagination-utils.ts │ │ │ │ │ │ └── paginator.ts │ │ │ │ │ ├── pubsub │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── memory-pubsub.ts │ │ │ │ │ │ └── redis-pubsub.ts │ │ │ │ │ ├── security-helper.ts │ │ │ │ │ ├── system-jobs │ │ │ │ │ │ ├── common.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── job-handlers.ts │ │ │ │ │ │ ├── memory-system-jobs.ts │ │ │ │ │ │ └── redis-system-job.ts │ │ │ │ │ ├── system-validator.ts │ │ │ │ │ ├── system │ │ │ │ │ │ └── system.ts │ │ │ │ │ └── telemetry.utils.ts │ │ │ │ ├── mcp │ │ │ │ │ ├── mcp-entity.ts │ │ │ │ │ ├── mcp-module.ts │ │ │ │ │ ├── mcp-run │ │ │ │ │ │ ├── mcp-run.controller.ts │ │ │ │ │ │ ├── mcp-run.entity.ts │ │ │ │ │ │ └── mcp-run.service.ts │ │ │ │ │ ├── mcp-server-controller.ts │ │ │ │ │ ├── mcp-server │ │ │ │ │ │ ├── mcp-server.ts │ │ │ │ │ │ ├── mcp-session-manager.ts │ │ │ │ │ │ └── mcp-sse-controller.ts │ │ │ │ │ ├── mcp-service.ts │ │ │ │ │ ├── mcp-utils.ts │ │ │ │ │ └── tool │ │ │ │ │ │ └── mcp-tool.entity.ts │ │ │ │ ├── pieces │ │ │ │ │ ├── base-piece-module.ts │ │ │ │ │ ├── community-piece-module.ts │ │ │ │ │ ├── piece-metadata-entity.ts │ │ │ │ │ ├── piece-metadata-service │ │ │ │ │ │ ├── db-piece-metadata-service.ts │ │ │ │ │ │ ├── file-piece-metadata-service.ts │ │ │ │ │ │ ├── helper │ │ │ │ │ │ │ └── local-piece-cache.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── piece-metadata-service.ts │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── piece-searching.ts │ │ │ │ │ │ │ └── piece-sorting.ts │ │ │ │ │ ├── piece-service │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── piece-sync-service.ts │ │ │ │ ├── platform │ │ │ │ │ ├── platform.controller.ts │ │ │ │ │ ├── platform.entity.ts │ │ │ │ │ ├── platform.module.ts │ │ │ │ │ ├── platform.service.ts │ │ │ │ │ └── platform.utils.ts │ │ │ │ ├── project │ │ │ │ │ ├── project-controller.ts │ │ │ │ │ ├── project-entity.ts │ │ │ │ │ ├── project-hooks.ts │ │ │ │ │ ├── project-module.ts │ │ │ │ │ ├── project-service.ts │ │ │ │ │ └── project-worker-controller.ts │ │ │ │ ├── server.ts │ │ │ │ ├── store-entry │ │ │ │ │ ├── store-entry-entity.ts │ │ │ │ │ ├── store-entry.controller.ts │ │ │ │ │ ├── store-entry.module.ts │ │ │ │ │ └── store-entry.service.ts │ │ │ │ ├── tables │ │ │ │ │ ├── field │ │ │ │ │ │ ├── field.controller.ts │ │ │ │ │ │ ├── field.entity.ts │ │ │ │ │ │ └── field.service.ts │ │ │ │ │ ├── record │ │ │ │ │ │ ├── cell.entity.ts │ │ │ │ │ │ ├── record.controller.ts │ │ │ │ │ │ ├── record.entity.ts │ │ │ │ │ │ └── record.service.ts │ │ │ │ │ ├── table │ │ │ │ │ │ ├── table-webhook.entity.ts │ │ │ │ │ │ ├── table.controller.ts │ │ │ │ │ │ ├── table.entity.ts │ │ │ │ │ │ └── table.service.ts │ │ │ │ │ └── tables.module.ts │ │ │ │ ├── tags │ │ │ │ │ ├── pieces │ │ │ │ │ │ ├── piece-tag.entity.ts │ │ │ │ │ │ └── piece-tag.service.ts │ │ │ │ │ ├── tag-entity.ts │ │ │ │ │ ├── tag-service.ts │ │ │ │ │ └── tags-module.ts │ │ │ │ ├── todos │ │ │ │ │ ├── activity │ │ │ │ │ │ ├── todos-activity.controller.ts │ │ │ │ │ │ ├── todos-activity.entity.ts │ │ │ │ │ │ ├── todos-activity.module.ts │ │ │ │ │ │ └── todos-activity.service.ts │ │ │ │ │ ├── todo-side-effects.ts │ │ │ │ │ ├── todo.controller.ts │ │ │ │ │ ├── todo.entity.ts │ │ │ │ │ ├── todo.module.ts │ │ │ │ │ └── todo.service.ts │ │ │ │ ├── user-invitations │ │ │ │ │ ├── user-invitation.entity.ts │ │ │ │ │ ├── user-invitation.module.ts │ │ │ │ │ └── user-invitation.service.ts │ │ │ │ ├── user │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── platform-user-controller.ts │ │ │ │ │ │ └── platform-user-module.ts │ │ │ │ │ ├── user-entity.ts │ │ │ │ │ └── user-service.ts │ │ │ │ ├── webhooks │ │ │ │ │ ├── handshake-handler.ts │ │ │ │ │ ├── webhook-controller.ts │ │ │ │ │ ├── webhook-handler.ts │ │ │ │ │ ├── webhook-module.ts │ │ │ │ │ ├── webhook-simulation │ │ │ │ │ │ ├── webhook-simulation-controller.ts │ │ │ │ │ │ ├── webhook-simulation-entity.ts │ │ │ │ │ │ ├── webhook-simulation-service.ts │ │ │ │ │ │ └── webhook-simulation-side-effects.ts │ │ │ │ │ └── webhook.service.ts │ │ │ │ ├── websockets │ │ │ │ │ └── websockets.service.ts │ │ │ │ ├── worker.ts │ │ │ │ └── workers │ │ │ │ │ ├── consumer │ │ │ │ │ ├── consumer-manager.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── engine-controller.ts │ │ │ │ │ ├── engine-response-watcher.ts │ │ │ │ │ ├── machine │ │ │ │ │ ├── machine-controller.ts │ │ │ │ │ ├── machine-entity.ts │ │ │ │ │ └── machine-service.ts │ │ │ │ │ ├── memory │ │ │ │ │ ├── ap-memory-queue.ts │ │ │ │ │ ├── memory-consumer.ts │ │ │ │ │ └── memory-queue.ts │ │ │ │ │ ├── queue │ │ │ │ │ ├── index.ts │ │ │ │ │ └── queue-manager.ts │ │ │ │ │ ├── redis │ │ │ │ │ ├── redis-bullboard.ts │ │ │ │ │ ├── redis-consumer.ts │ │ │ │ │ ├── redis-migration.ts │ │ │ │ │ ├── redis-queue.ts │ │ │ │ │ └── redis-rate-limiter.ts │ │ │ │ │ ├── user-interaction-watcher.ts │ │ │ │ │ ├── worker-controller.ts │ │ │ │ │ └── worker-module.ts │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ └── multiple-fonts.css │ │ │ │ ├── default.cf │ │ │ │ ├── emails │ │ │ │ │ ├── 1-day-left-on-trial.html │ │ │ │ │ ├── 3-days-left-on-trial.html │ │ │ │ │ ├── 7-days-in-trial.html │ │ │ │ │ ├── footer.html │ │ │ │ │ ├── invitation-email.html │ │ │ │ │ ├── issue-created.html │ │ │ │ │ ├── issues-reminder.html │ │ │ │ │ ├── quota-100.html │ │ │ │ │ ├── quota-50.html │ │ │ │ │ ├── quota-90.html │ │ │ │ │ ├── reset-password.html │ │ │ │ │ ├── trigger-failure.html │ │ │ │ │ ├── verify-email.html │ │ │ │ │ └── wellcome-to-trial.html │ │ │ │ ├── etc │ │ │ │ │ └── resolv.conf │ │ │ │ ├── fonts │ │ │ │ │ ├── 2sDcZG1Wl4LcnbuCJW8zZmW5O7w.woff2 │ │ │ │ │ ├── 2sDcZG1Wl4LcnbuCJW8zaGW5.woff2 │ │ │ │ │ ├── 2sDcZG1Wl4LcnbuCNWgzZmW5O7w.woff2 │ │ │ │ │ ├── 2sDcZG1Wl4LcnbuCNWgzaGW5.woff2 │ │ │ │ │ ├── 2sDfZG1Wl4LcnbuKgE0mV0Q.woff2 │ │ │ │ │ ├── 2sDfZG1Wl4LcnbuKjk0m.woff2 │ │ │ │ │ ├── 4iCp6KVjbNBYlgoKejYHtFyBN4Ffgg.woff2 │ │ │ │ │ ├── 4iCp6KVjbNBYlgoKejYHtFyCN4Ffgg.woff2 │ │ │ │ │ ├── 4iCp6KVjbNBYlgoKejYHtFyDN4Ffgg.woff2 │ │ │ │ │ ├── 4iCp6KVjbNBYlgoKejYHtFyLN4Ffgg.woff2 │ │ │ │ │ ├── 4iCp6KVjbNBYlgoKejYHtFyMN4Ffgg.woff2 │ │ │ │ │ ├── 4iCp6KVjbNBYlgoKejYHtFyPN4E.woff2 │ │ │ │ │ ├── 4iCp6KVjbNBYlgoKejZPslyBN4Ffgg.woff2 │ │ │ │ │ ├── 4iCp6KVjbNBYlgoKejZPslyCN4Ffgg.woff2 │ │ │ │ │ ├── 4iCp6KVjbNBYlgoKejZPslyDN4Ffgg.woff2 │ │ │ │ │ ├── 4iCp6KVjbNBYlgoKejZPslyLN4Ffgg.woff2 │ │ │ │ │ ├── 4iCp6KVjbNBYlgoKejZPslyMN4Ffgg.woff2 │ │ │ │ │ ├── 4iCp6KVjbNBYlgoKejZPslyPN4E.woff2 │ │ │ │ │ ├── 4iCp6KVjbNBYlgoKejZftVyBN4Ffgg.woff2 │ │ │ │ │ ├── 4iCp6KVjbNBYlgoKejZftVyCN4Ffgg.woff2 │ │ │ │ │ ├── 4iCp6KVjbNBYlgoKejZftVyDN4Ffgg.woff2 │ │ │ │ │ ├── 4iCp6KVjbNBYlgoKejZftVyLN4Ffgg.woff2 │ │ │ │ │ ├── 4iCp6KVjbNBYlgoKejZftVyMN4Ffgg.woff2 │ │ │ │ │ ├── 4iCp6KVjbNBYlgoKejZftVyPN4E.woff2 │ │ │ │ │ ├── 4iCs6KVjbNBYlgoKcQ72j00.woff2 │ │ │ │ │ ├── 4iCs6KVjbNBYlgoKcg72j00.woff2 │ │ │ │ │ ├── 4iCs6KVjbNBYlgoKcw72j00.woff2 │ │ │ │ │ ├── 4iCs6KVjbNBYlgoKew72j00.woff2 │ │ │ │ │ ├── 4iCs6KVjbNBYlgoKfA72j00.woff2 │ │ │ │ │ ├── 4iCs6KVjbNBYlgoKfw72.woff2 │ │ │ │ │ ├── 4iCu6KVjbNBYlgoKej70l0k.woff2 │ │ │ │ │ ├── 4iCu6KVjbNBYlgoKej73l0mwFg.woff2 │ │ │ │ │ ├── 4iCu6KVjbNBYlgoKej74l0mwFg.woff2 │ │ │ │ │ ├── 4iCu6KVjbNBYlgoKej75l0mwFg.woff2 │ │ │ │ │ ├── 4iCu6KVjbNBYlgoKej76l0mwFg.woff2 │ │ │ │ │ ├── 4iCu6KVjbNBYlgoKej7wl0mwFg.woff2 │ │ │ │ │ ├── 4iCv6KVjbNBYlgoC1Czjs2yNL4U.woff2 │ │ │ │ │ ├── 4iCv6KVjbNBYlgoC1CzjsGyN.woff2 │ │ │ │ │ ├── 4iCv6KVjbNBYlgoC1CzjtGyNL4U.woff2 │ │ │ │ │ ├── 4iCv6KVjbNBYlgoC1CzjvGyNL4U.woff2 │ │ │ │ │ ├── 4iCv6KVjbNBYlgoC1CzjvWyNL4U.woff2 │ │ │ │ │ ├── 4iCv6KVjbNBYlgoC1CzjvmyNL4U.woff2 │ │ │ │ │ ├── 4iCv6KVjbNBYlgoCjC3js2yNL4U.woff2 │ │ │ │ │ ├── 4iCv6KVjbNBYlgoCjC3jsGyN.woff2 │ │ │ │ │ ├── 4iCv6KVjbNBYlgoCjC3jtGyNL4U.woff2 │ │ │ │ │ ├── 4iCv6KVjbNBYlgoCjC3jvGyNL4U.woff2 │ │ │ │ │ ├── 4iCv6KVjbNBYlgoCjC3jvWyNL4U.woff2 │ │ │ │ │ ├── 4iCv6KVjbNBYlgoCjC3jvmyNL4U.woff2 │ │ │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjs2yNL4U.woff2 │ │ │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjsGy.woff2 │ │ │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjtGyNL4U.woff2 │ │ │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjvGyNL4U.woff2 │ │ │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjvWyNL4U.woff2 │ │ │ │ │ ├── 4iCv6KVjbNBYlgoCxCvjvmyNL4U.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51S7ACc-CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51S7ACc0CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51S7ACc1CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51S7ACc2CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51S7ACc3CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51S7ACc5CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51S7ACc6CsQ.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TLBCc-CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TLBCc0CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TLBCc1CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TLBCc2CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TLBCc3CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TLBCc5CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TLBCc6CsQ.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TjASc-CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TjASc0CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TjASc1CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TjASc2CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TjASc3CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TjASc5CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TjASc6CsQ.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TzBic-CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TzBic0CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TzBic1CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TzBic2CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TzBic3CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TzBic5CsTKlA.woff2 │ │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TzBic6CsQ.woff2 │ │ │ │ │ ├── KFOkCnqEu92Fr1Mu51xEIzIFKw.woff2 │ │ │ │ │ ├── KFOkCnqEu92Fr1Mu51xFIzIFKw.woff2 │ │ │ │ │ ├── KFOkCnqEu92Fr1Mu51xGIzIFKw.woff2 │ │ │ │ │ ├── KFOkCnqEu92Fr1Mu51xHIzIFKw.woff2 │ │ │ │ │ ├── KFOkCnqEu92Fr1Mu51xIIzI.woff2 │ │ │ │ │ ├── KFOkCnqEu92Fr1Mu51xLIzIFKw.woff2 │ │ │ │ │ ├── KFOkCnqEu92Fr1Mu51xMIzIFKw.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmEU9fABc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmEU9fBBc4.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmEU9fBxc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmEU9fCBc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmEU9fCRc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmEU9fChc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmEU9fCxc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fABc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fBBc4.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fBxc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fCBc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fChc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fCxc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfBBc4.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmYUtfABc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmYUtfBBc4.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmYUtfBxc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmYUtfCBc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmYUtfCRc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmYUtfChc4EsA.woff2 │ │ │ │ │ ├── KFOlCnqEu92Fr1MmYUtfCxc4EsA.woff2 │ │ │ │ │ ├── KFOmCnqEu92Fr1Mu4WxKOzY.woff2 │ │ │ │ │ ├── KFOmCnqEu92Fr1Mu4mxK.woff2 │ │ │ │ │ ├── KFOmCnqEu92Fr1Mu5mxKOzY.woff2 │ │ │ │ │ ├── KFOmCnqEu92Fr1Mu72xKOzY.woff2 │ │ │ │ │ ├── KFOmCnqEu92Fr1Mu7GxKOzY.woff2 │ │ │ │ │ ├── KFOmCnqEu92Fr1Mu7WxKOzY.woff2 │ │ │ │ │ ├── KFOmCnqEu92Fr1Mu7mxKOzY.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnFK_eQhf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnFK_eRRf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnFK_eRhf6.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnFK_eSBf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnFK_eSRf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnFK_eShf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnFK_eSxf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnLK3eQhf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnLK3eRRf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnLK3eRhf6.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnLK3eSBf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnLK3eSRf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnLK3eShf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnLK3eSxf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnMK7eQhf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnMK7eRRf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnMK7eRhf6.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnMK7eSBf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnMK7eSRf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnMK7eShf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnMK7eSxf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnPKreQhf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnPKreRRf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnPKreRhf6.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnPKreSBf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnPKreSRf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnPKreShf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnPKreSxf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnSKzeQhf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnSKzeRRf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnSKzeRhf6.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnSKzeSBf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnSKzeSRf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnSKzeShf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnSKzeSxf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnZKveQhf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnZKveRRf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnZKveRhf6.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnZKveSBf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnZKveSRf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnZKveShf6TF0.woff2 │ │ │ │ │ ├── va9B4kDNxMZdWfMOD5VnZKveSxf6TF0.woff2 │ │ │ │ │ ├── va9C4kDNxMZdWfMOD5VvkrjEYTLHdQ.woff2 │ │ │ │ │ ├── va9C4kDNxMZdWfMOD5VvkrjFYTLHdQ.woff2 │ │ │ │ │ ├── va9C4kDNxMZdWfMOD5VvkrjGYTLHdQ.woff2 │ │ │ │ │ ├── va9C4kDNxMZdWfMOD5VvkrjHYTLHdQ.woff2 │ │ │ │ │ ├── va9C4kDNxMZdWfMOD5VvkrjJYTI.woff2 │ │ │ │ │ ├── va9C4kDNxMZdWfMOD5VvkrjKYTLHdQ.woff2 │ │ │ │ │ ├── va9C4kDNxMZdWfMOD5VvkrjNYTLHdQ.woff2 │ │ │ │ │ ├── va9E4kDNxMZdWfMOD5Vvk4jLeTY.woff2 │ │ │ │ │ ├── va9E4kDNxMZdWfMOD5Vvl4jL.woff2 │ │ │ │ │ ├── va9E4kDNxMZdWfMOD5VvlIjLeTY.woff2 │ │ │ │ │ ├── va9E4kDNxMZdWfMOD5Vvm4jLeTY.woff2 │ │ │ │ │ ├── va9E4kDNxMZdWfMOD5VvmIjLeTY.woff2 │ │ │ │ │ ├── va9E4kDNxMZdWfMOD5VvmYjLeTY.woff2 │ │ │ │ │ ├── va9E4kDNxMZdWfMOD5VvmojLeTY.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrA6Qif0VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrA6Qif1VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrA6Qif2VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrA6Qif3VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrA6Qif4VFk.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrA6Qif7VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrA6Qif8VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrAWRSf0VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrAWRSf1VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrAWRSf2VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrAWRSf3VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrAWRSf4VFk.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrAWRSf7VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrAWRSf8VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrBKRif0VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrBKRif1VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrBKRif2VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrBKRif3VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrBKRif4VFk.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrBKRif7VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrBKRif8VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrBiQyf0VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrBiQyf1VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrBiQyf2VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrBiQyf3VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrBiQyf4VFk.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrBiQyf7VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrBiQyf8VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrBuRyf0VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrBuRyf1VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrBuRyf2VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrBuRyf3VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrBuRyf4VFk.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrBuRyf7VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrBuRyf8VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrByRCf0VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrByRCf1VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrByRCf2VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrByRCf3VFn2lg.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrByRCf4VFk.woff2 │ │ │ │ │ ├── va9f4kDNxMZdWfMOD5VvkrByRCf7VFn2lg.woff2 │ │ │ │ │ └── va9f4kDNxMZdWfMOD5VvkrByRCf8VFn2lg.woff2 │ │ │ │ ├── isolate │ │ │ │ └── isolate-arm │ │ │ └── main.ts │ │ ├── test │ │ │ ├── helpers │ │ │ │ ├── auth.ts │ │ │ │ ├── flow-generator.ts │ │ │ │ └── mocks │ │ │ │ │ ├── authn.ts │ │ │ │ │ └── index.ts │ │ │ ├── integration │ │ │ │ ├── ce │ │ │ │ │ ├── authentication │ │ │ │ │ │ ├── authentication.test.ts │ │ │ │ │ │ └── password-hasher.test.ts │ │ │ │ │ ├── flows │ │ │ │ │ │ ├── consumer │ │ │ │ │ │ │ └── flow-consume.test.ts │ │ │ │ │ │ ├── flow-run │ │ │ │ │ │ │ └── list-flow-runs.test.ts │ │ │ │ │ │ ├── flow-worker.test.ts │ │ │ │ │ │ ├── flow.test.ts │ │ │ │ │ │ └── project-worker.test.ts │ │ │ │ │ └── user │ │ │ │ │ │ └── platform-user-community.test.ts │ │ │ │ ├── cloud │ │ │ │ │ ├── api-key │ │ │ │ │ │ └── api-key.test.ts │ │ │ │ │ ├── app-connection │ │ │ │ │ │ └── app-connection.test.ts │ │ │ │ │ ├── app-sumo │ │ │ │ │ │ └── app-sumo.test.ts │ │ │ │ │ ├── audit-event │ │ │ │ │ │ └── audit-event.test.ts │ │ │ │ │ ├── authn │ │ │ │ │ │ ├── cloud-authn.test.ts │ │ │ │ │ │ └── enterprise-local-authn.test.ts │ │ │ │ │ ├── core │ │ │ │ │ │ └── security.test.ts │ │ │ │ │ ├── custom-domain │ │ │ │ │ │ └── custom-domain.test.ts │ │ │ │ │ ├── flow-templates │ │ │ │ │ │ └── flow-templates.test.ts │ │ │ │ │ ├── flow │ │ │ │ │ │ └── flow.test.ts │ │ │ │ │ ├── git-repos │ │ │ │ │ │ └── git-repos.test.ts │ │ │ │ │ ├── global-connection │ │ │ │ │ │ └── global-connection.test.ts │ │ │ │ │ ├── managed-authn │ │ │ │ │ │ └── external-token.test.ts │ │ │ │ │ ├── oauth-app │ │ │ │ │ │ └── oauth-app.test.ts │ │ │ │ │ ├── otp │ │ │ │ │ │ └── otp.test.ts │ │ │ │ │ ├── piece-metadata │ │ │ │ │ │ └── piece-metadata.test.ts │ │ │ │ │ ├── platform │ │ │ │ │ │ └── platform.test.ts │ │ │ │ │ ├── project-members │ │ │ │ │ │ └── project-members.test.ts │ │ │ │ │ ├── project-release │ │ │ │ │ │ └── project-release.test.ts │ │ │ │ │ ├── project-role │ │ │ │ │ │ └── project-role.test.ts │ │ │ │ │ ├── project │ │ │ │ │ │ ├── platform-project-service.test.ts │ │ │ │ │ │ └── project.test.ts │ │ │ │ │ ├── signing-key │ │ │ │ │ │ └── signing-key.test.ts │ │ │ │ │ ├── store-entry │ │ │ │ │ │ └── store-entry-controller.test.ts │ │ │ │ │ ├── user-invitations │ │ │ │ │ │ └── user-invitations.test.ts │ │ │ │ │ └── user │ │ │ │ │ │ └── platform-user.test.ts │ │ │ │ └── ee │ │ │ │ │ └── authn │ │ │ │ │ └── ee-authn.test.ts │ │ │ └── unit │ │ │ │ └── app │ │ │ │ └── ee │ │ │ │ └── git-repos │ │ │ │ └── operations │ │ │ │ └── project-diff.test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ ├── types │ │ │ ├── fastify-xml-body-parser.d.ts │ │ │ ├── fastify.d.ts │ │ │ └── redis-lock.d.ts │ │ └── webpack.config.js │ ├── shared │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── package.json │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── cache │ │ │ │ ├── cache.ts │ │ │ │ └── index.ts │ │ │ │ ├── crypto.ts │ │ │ │ ├── exception-handler.ts │ │ │ │ ├── exec.ts │ │ │ │ ├── file-compressor.ts │ │ │ │ ├── file-system.ts │ │ │ │ ├── job │ │ │ │ ├── index.ts │ │ │ │ └── job-data.ts │ │ │ │ ├── logger │ │ │ │ ├── index.ts │ │ │ │ └── loki-pino.ts │ │ │ │ ├── memory-lock.ts │ │ │ │ ├── network-utils.ts │ │ │ │ ├── pieces │ │ │ │ └── file-pieces-utils.ts │ │ │ │ ├── promise-handler.ts │ │ │ │ ├── semaphore.ts │ │ │ │ ├── system-props.ts │ │ │ │ └── webhook-secrets-util.ts │ │ ├── tsconfig.json │ │ └── tsconfig.lib.json │ └── worker │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── package.json │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── api │ │ │ ├── ap-axios.ts │ │ │ └── server-api.service.ts │ │ │ ├── cache │ │ │ ├── cache-state.ts │ │ │ ├── code-builder.ts │ │ │ ├── engine-installer.ts │ │ │ ├── execution-files.ts │ │ │ └── package-manager.ts │ │ │ ├── executors │ │ │ ├── flow-job-executor.ts │ │ │ ├── repeating-job-executor.ts │ │ │ ├── trigger │ │ │ │ └── hooks │ │ │ │ │ ├── extract-trigger-payload-hooks.ts │ │ │ │ │ ├── renew-trigger-hook.ts │ │ │ │ │ └── trigger-consumer.ts │ │ │ ├── user-interaction-job-executor.ts │ │ │ └── webhook-job-executor.ts │ │ │ ├── flow-worker.ts │ │ │ ├── job-polling.ts │ │ │ ├── piece-manager │ │ │ ├── development │ │ │ │ └── pieces-builder.ts │ │ │ ├── index.ts │ │ │ ├── local-piece-manager.ts │ │ │ ├── piece-manager.ts │ │ │ └── registry-piece-manager.ts │ │ │ ├── runner │ │ │ ├── engine-runner-socket.ts │ │ │ ├── engine-runner-types.ts │ │ │ ├── index.ts │ │ │ └── process │ │ │ │ ├── engine-process-manager.ts │ │ │ │ └── factory │ │ │ │ ├── engine-factory-types.ts │ │ │ │ ├── index.ts │ │ │ │ ├── isolate-sandbox-process.ts │ │ │ │ └── no-sandbox-process.ts │ │ │ └── utils │ │ │ ├── flow-engine-util.ts │ │ │ ├── machine.ts │ │ │ └── webhook-utils.ts │ │ ├── tsconfig.json │ │ └── tsconfig.lib.json ├── shared │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── agents │ │ │ ├── content.ts │ │ │ └── index.ts │ │ │ ├── ai │ │ │ ├── ai-sdk.ts │ │ │ ├── index.ts │ │ │ └── supported-ai-providers.ts │ │ │ ├── analytics │ │ │ └── index.ts │ │ │ ├── app-connection │ │ │ ├── app-connection.ts │ │ │ ├── dto │ │ │ │ ├── read-app-connection-request.ts │ │ │ │ └── upsert-app-connection-request.ts │ │ │ └── oauth2-authorization-method.ts │ │ │ ├── authentication │ │ │ ├── dto │ │ │ │ ├── authentication-response.ts │ │ │ │ ├── sign-in-request.ts │ │ │ │ └── sign-up-request.ts │ │ │ ├── model │ │ │ │ ├── principal-type.ts │ │ │ │ └── principal.ts │ │ │ └── user-identity.ts │ │ │ ├── changelog │ │ │ ├── changelog.request.ts │ │ │ ├── changelog.ts │ │ │ └── index.ts │ │ │ ├── code │ │ │ └── dto │ │ │ │ └── code-request.ts │ │ │ ├── common │ │ │ ├── activepieces-error.ts │ │ │ ├── base-model.ts │ │ │ ├── id-generator.ts │ │ │ ├── index.ts │ │ │ ├── locale.ts │ │ │ ├── metadata.ts │ │ │ ├── multipart-file.ts │ │ │ ├── security │ │ │ │ ├── index.ts │ │ │ │ └── permission.ts │ │ │ ├── seek-page.ts │ │ │ ├── telemetry.ts │ │ │ └── utils │ │ │ │ ├── assertions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── object-utils.ts │ │ │ │ └── utils.ts │ │ │ ├── copilot │ │ │ └── index.ts │ │ │ ├── engine │ │ │ ├── engine-constants.ts │ │ │ ├── engine-operation.ts │ │ │ ├── index.ts │ │ │ └── requests.ts │ │ │ ├── federated-authn │ │ │ ├── authn-provider-name.ts │ │ │ └── index.ts │ │ │ ├── file │ │ │ └── index.ts │ │ │ ├── flag │ │ │ └── flag.ts │ │ │ ├── flow-run │ │ │ ├── dto │ │ │ │ └── list-flow-runs-request.ts │ │ │ ├── execution │ │ │ │ ├── execution-output.ts │ │ │ │ ├── flow-execution.ts │ │ │ │ └── step-output.ts │ │ │ ├── flow-run.ts │ │ │ ├── log-serializer.ts │ │ │ └── test-flow-run-request.ts │ │ │ ├── flows │ │ │ ├── actions │ │ │ │ └── action.ts │ │ │ ├── dto │ │ │ │ ├── count-flows-request.ts │ │ │ │ ├── create-flow-request.ts │ │ │ │ ├── flow-template-request.ts │ │ │ │ └── list-flows-request.ts │ │ │ ├── flow-version.ts │ │ │ ├── flow.ts │ │ │ ├── folders │ │ │ │ ├── folder-requests.ts │ │ │ │ ├── folder.ts │ │ │ │ └── list-folders-response.ts │ │ │ ├── form.ts │ │ │ ├── index.ts │ │ │ ├── operations │ │ │ │ ├── add-action-util.ts │ │ │ │ ├── add-action.ts │ │ │ │ ├── add-branch.ts │ │ │ │ ├── copy-action-operations.ts │ │ │ │ ├── delete-action.ts │ │ │ │ ├── delete-branch.ts │ │ │ │ ├── duplicate-step.ts │ │ │ │ ├── import-flow.ts │ │ │ │ ├── index.ts │ │ │ │ ├── migrations │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── migrate-v0-branch-to-router.ts │ │ │ │ │ └── migrate-v1-connection-ids.ts │ │ │ │ ├── move-action.ts │ │ │ │ ├── move-branch.ts │ │ │ │ ├── paste-operations.ts │ │ │ │ ├── skip-action.ts │ │ │ │ ├── update-action.ts │ │ │ │ └── update-trigger.ts │ │ │ ├── sample-data │ │ │ │ └── index.ts │ │ │ ├── step-file │ │ │ │ └── step-file.ts │ │ │ ├── test-trigger.ts │ │ │ ├── trigger-events │ │ │ │ ├── trigger-event.ts │ │ │ │ └── trigger-events-dto.ts │ │ │ ├── triggers │ │ │ │ └── trigger.ts │ │ │ └── util │ │ │ │ ├── flow-piece-util.ts │ │ │ │ └── flow-structure-util.ts │ │ │ ├── forms │ │ │ └── index.ts │ │ │ ├── invitations │ │ │ └── index.ts │ │ │ ├── issues │ │ │ ├── index.ts │ │ │ ├── issue-dto.ts │ │ │ └── issues-requests.ts │ │ │ ├── license-keys │ │ │ └── index.ts │ │ │ ├── mcp │ │ │ ├── index.ts │ │ │ ├── mcp.request.ts │ │ │ ├── mcp.ts │ │ │ ├── pieces │ │ │ │ └── mcp-piece.ts │ │ │ └── tools │ │ │ │ ├── mcp-tool.ts │ │ │ │ └── run │ │ │ │ ├── mcp-run.request.ts │ │ │ │ └── mcp-run.ts │ │ │ ├── pieces │ │ │ ├── dto │ │ │ │ └── piece-requests.ts │ │ │ ├── index.ts │ │ │ ├── piece.ts │ │ │ └── utils.ts │ │ │ ├── platform │ │ │ ├── index.ts │ │ │ ├── platform.model.ts │ │ │ └── platform.request.ts │ │ │ ├── project-release │ │ │ ├── project-release.request.ts │ │ │ ├── project-release.ts │ │ │ └── project-state.ts │ │ │ ├── project-role │ │ │ ├── project-role.request.ts │ │ │ └── project-role.ts │ │ │ ├── project │ │ │ ├── index.ts │ │ │ ├── project-member.ts │ │ │ └── project.ts │ │ │ ├── property │ │ │ └── markdown │ │ │ │ └── index.ts │ │ │ ├── store-entry │ │ │ ├── dto │ │ │ │ └── store-entry-request.ts │ │ │ └── store-entry.ts │ │ │ ├── support-url.ts │ │ │ ├── tables │ │ │ ├── cell.ts │ │ │ ├── dto │ │ │ │ ├── fields.dto.ts │ │ │ │ ├── records.dto.ts │ │ │ │ └── tables.dto.ts │ │ │ ├── field.ts │ │ │ ├── index.ts │ │ │ ├── record.ts │ │ │ ├── table-webhook.ts │ │ │ └── table.ts │ │ │ ├── tag │ │ │ └── index.ts │ │ │ ├── todos │ │ │ ├── index.ts │ │ │ └── todos-request.ts │ │ │ ├── user │ │ │ ├── index.ts │ │ │ └── user.ts │ │ │ ├── webhook │ │ │ ├── dto.ts │ │ │ ├── index.ts │ │ │ └── webhook-simulation.ts │ │ │ ├── websocket │ │ │ └── index.ts │ │ │ └── workers │ │ │ └── index.ts │ ├── test │ │ └── flow │ │ │ └── flow-helper.test.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json └── tests-e2e │ ├── .env.e2e │ ├── .eslintrc.json │ ├── config.ts │ ├── page │ ├── authentication.ts │ ├── builder.ts │ ├── dashboard.ts │ └── flows.ts │ ├── project.json │ ├── tests │ ├── sign-up.spec.ts │ └── test-flow.spec.ts │ └── tsconfig.json ├── project.json ├── tools ├── deploy.sh ├── reset-dev.sh ├── reset.sh ├── scripts │ ├── move-pieces.js │ ├── pieces │ │ ├── publish-piece.ts │ │ ├── publish-pieces-to-npm.ts │ │ ├── update-authors.ts │ │ └── update-pieces-metadata.ts │ ├── publish.mjs │ ├── utils │ │ ├── exec.ts │ │ ├── files.ts │ │ ├── package-pre-publish-checks.ts │ │ ├── piece-script-utils.ts │ │ └── publish-nx-project.ts │ └── validate-publishable-packages.ts ├── setup-dev.js ├── tsconfig.tools.json └── update.sh └── tsconfig.base.json /.cursor/mcp.json: -------------------------------------------------------------------------------- 1 | { 2 | "mcpServers": { 3 | "nx-mcp": { 4 | "url": "http://localhost:9536/sse" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /.devcontainer/setup.sh: -------------------------------------------------------------------------------- 1 | # exit this file if we are not in Codespaces 2 | if [ -z "${CODESPACES}" ]; then 3 | exit 0 4 | fi 5 | 6 | echo "Running Setup for Codespaces" 7 | 8 | sh .devcontainer/codespaces.sh 9 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | deploy -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | @activepieces:registry=https://registry.npmjs.org/ 2 | //registry.npmjs.org/:_authToken=${NPM_TOKEN} 3 | legacy-peer-deps=true 4 | save-exact=true 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18.19.0 -------------------------------------------------------------------------------- /.nxignore: -------------------------------------------------------------------------------- 1 | deploy/ 2 | dist/ 3 | cache/ 4 | dev/ -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Add files here to ignore them from prettier formatting 2 | 3 | /dist 4 | /coverage 5 | 6 | .angular 7 | 8 | /.nx/cache 9 | /.nx/workspace-data -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } -------------------------------------------------------------------------------- /assets/ap-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/assets/ap-logo.png -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] }; 2 | -------------------------------------------------------------------------------- /deploy/pulumi/README.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | See instruction on https://www.activepieces.com/docs/install/options/aws 4 | -------------------------------------------------------------------------------- /depot.json: -------------------------------------------------------------------------------- 1 | {"id":"du7O4b0e8P"} 2 | -------------------------------------------------------------------------------- /docs/_snippets/enterprise-feature.mdx: -------------------------------------------------------------------------------- 1 | <Tip> 2 | This feature is available in our paid editions. Contact us [here](https://www.activepieces.com/sales), and we'll be delighted to assist you! 3 | </Tip> -------------------------------------------------------------------------------- /docs/_snippets/replace-oauth2-apps.mdx: -------------------------------------------------------------------------------- 1 | <Tip> 2 | If you would like your users to use your own OAuth2 apps, we recommend you check [this](/admin-console/manage-oauth2). 3 | </Tip> -------------------------------------------------------------------------------- /docs/endpoints/connections/delete.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Delete Connection' 3 | openapi: DELETE /v1/app-connections/{id} 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/connections/list.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'List Connections' 3 | openapi: GET /v1/app-connections/ 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/connections/schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Connection Schema' 3 | openapi-schema: app-connection 4 | icon: cube 5 | --- -------------------------------------------------------------------------------- /docs/endpoints/connections/upsert.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Upsert Connection' 3 | openapi: POST /v1/app-connections 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/flow-runs/get.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Get Flow Run' 3 | openapi: GET /v1/flow-runs/{id} 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/flow-runs/list.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'List Flows Runs' 3 | openapi: GET /v1/flow-runs 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/flow-runs/schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Flow Run Schema' 3 | openapi-schema: flow-run 4 | icon: cube 5 | --- -------------------------------------------------------------------------------- /docs/endpoints/flow-templates/create.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Create Flow Template' 3 | openapi: POST /v1/flow-templates 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/flow-templates/delete.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Delete Flow Template' 3 | openapi: DELETE /v1/flow-templates/{id} 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/flow-templates/get.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Get Flow Template' 3 | openapi: GET /v1/flow-templates/{id} 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/flow-templates/list.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'List Flow Templates' 3 | openapi: GET /v1/flow-templates 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/flow-templates/schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Flow Template Schema' 3 | openapi-schema: flow-template 4 | icon: cube 5 | --- -------------------------------------------------------------------------------- /docs/endpoints/flows/create.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Create Flow' 3 | openapi: POST /v1/flows 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/flows/delete.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Delete Flow' 3 | openapi: DELETE /v1/flows/{id} 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/flows/get.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Get Flow' 3 | openapi: GET /v1/flows/{id} 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/flows/list.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'List Flows' 3 | openapi: GET /v1/flows 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/flows/schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Flow Schema' 3 | openapi-schema: flow 4 | icon: cube 5 | --- -------------------------------------------------------------------------------- /docs/endpoints/flows/update.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Apply Flow Operation' 3 | openapi: POST /v1/flows/{id} 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/folders/create.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Create Folder' 3 | openapi: POST /v1/folders 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/folders/delete.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Delete Folder' 3 | openapi: DELETE /v1/folders/{id} 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/folders/get.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Get Folder' 3 | openapi: GET /v1/folders/{id} 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/folders/list.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'List Folders' 3 | openapi: GET /v1/folders 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/folders/schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Folder Schema' 3 | openapi-schema: folder 4 | icon: cube 5 | --- -------------------------------------------------------------------------------- /docs/endpoints/folders/update.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Update Folder' 3 | openapi: POST /v1/folders/{id} 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/git-repos/configure.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Configure' 3 | openapi: POST /v1/git-repos 4 | --- 5 | -------------------------------------------------------------------------------- /docs/endpoints/git-repos/schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Git Repos Schema' 3 | openapi-schema: git-repo 4 | icon: cube 5 | --- -------------------------------------------------------------------------------- /docs/endpoints/global-connections/delete.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Delete Global Connection' 3 | openapi: DELETE /v1/global-connections/{id} 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/global-connections/list.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'List Global Connections' 3 | openapi: GET /v1/global-connections 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /docs/endpoints/global-connections/schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Global Connection Schema' 3 | openapi-schema: global-connection 4 | icon: cube 5 | --- -------------------------------------------------------------------------------- /docs/endpoints/global-connections/update.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Update Global Connection' 3 | openapi: POST /v1/global-connections/{id} 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /docs/endpoints/global-connections/upsert.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Upsert Global Connection' 3 | openapi: POST /v1/global-connections 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /docs/endpoints/mcp-servers/list.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'List MCP servers' 3 | openapi: GET /v1/mcp-servers 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/mcp-servers/rotate.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Rotate MCP server token' 3 | openapi: POST /v1/mcp-servers/{id}/rotate 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/mcp-servers/schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'MCP Server Schema' 3 | openapi-schema: mcp 4 | icon: Cube 5 | --- -------------------------------------------------------------------------------- /docs/endpoints/mcp-servers/update.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Update MCP Server' 3 | openapi: POST /v1/mcp-servers/{id} 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/pieces/install.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Install Piece' 3 | openapi: POST /v1/pieces 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/pieces/schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Piece Schema' 3 | openapi-schema: piece 4 | icon: cube 5 | --- -------------------------------------------------------------------------------- /docs/endpoints/project-members/delete.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Delete Project Member' 3 | openapi: DELETE /v1/project-members/{id} 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/project-members/list.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'List Project Member' 3 | openapi: GET /v1/project-members 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/project-members/schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Project Member Schema' 3 | openapi-schema: project-member 4 | icon: cube 5 | --- -------------------------------------------------------------------------------- /docs/endpoints/project-releases/create.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Create Project Release' 3 | openapi: POST /v1/project-releases 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/project-releases/schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Project Release Schema' 3 | openapi-schema: project-release 4 | icon: cube 5 | --- -------------------------------------------------------------------------------- /docs/endpoints/projects/create.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Create Project' 3 | openapi: POST /v1/projects 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/projects/list.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'List Projects' 3 | openapi: GET /v1/projects 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/projects/schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Project Schema' 3 | openapi-schema: project 4 | icon: cube 5 | --- -------------------------------------------------------------------------------- /docs/endpoints/projects/update.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Update Project' 3 | openapi: POST /v1/projects/{id} 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/sample-data/get.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Get Sample Data' 3 | openapi: GET /v1/sample-data 4 | --- 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /docs/endpoints/user-invitations/delete.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Delete User Invitation' 3 | openapi: DELETE /v1/user-invitations/{id} 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/user-invitations/list.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'List User Invitations' 3 | openapi: GET /v1/user-invitations 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/user-invitations/schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'User Invitation Schema' 3 | openapi-schema: user-invitation 4 | icon: cube 5 | --- -------------------------------------------------------------------------------- /docs/endpoints/user-invitations/upsert.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Send User Invitation (Upsert)' 3 | openapi: POST /v1/user-invitations 4 | --- -------------------------------------------------------------------------------- /docs/endpoints/users/list.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'List Users' 3 | openapi: GET /v1/users 4 | icon: user 5 | --- -------------------------------------------------------------------------------- /docs/endpoints/users/schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'User Schema' 3 | openapi-schema: user 4 | icon: user 5 | --- -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/favicon.png -------------------------------------------------------------------------------- /docs/operations/audit-logs/connection-deleted.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Connection Deleted' 3 | openapi-schema: connection.deleted 4 | icon: link 5 | --- -------------------------------------------------------------------------------- /docs/operations/audit-logs/connection-upserted.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Connection Upserted' 3 | openapi-schema: connection.upserted 4 | icon: link 5 | --- -------------------------------------------------------------------------------- /docs/operations/audit-logs/flow-created.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Flow Created' 3 | openapi-schema: flow.created 4 | icon: bolt 5 | --- -------------------------------------------------------------------------------- /docs/operations/audit-logs/flow-deleted.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Flow Deleted' 3 | openapi-schema: flow.deleted 4 | icon: bolt 5 | --- -------------------------------------------------------------------------------- /docs/operations/audit-logs/flow-run-finished.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Flow Run Finished' 3 | openapi-schema: flow.run.finished 4 | icon: play 5 | --- -------------------------------------------------------------------------------- /docs/operations/audit-logs/flow-run-started.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Flow Run Started' 3 | openapi-schema: flow.run.started 4 | icon: play 5 | --- -------------------------------------------------------------------------------- /docs/operations/audit-logs/flow-updated.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Flow Updated' 3 | openapi-schema: flow.updated 4 | icon: bolt 5 | --- -------------------------------------------------------------------------------- /docs/operations/audit-logs/folder-created.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Folder Created' 3 | openapi-schema: folder.created 4 | icon: folder 5 | --- -------------------------------------------------------------------------------- /docs/operations/audit-logs/folder-deleted.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Folder Deleted' 3 | openapi-schema: folder.deleted 4 | icon: folder 5 | --- -------------------------------------------------------------------------------- /docs/operations/audit-logs/folder-updated.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Folder Updated' 3 | openapi-schema: folder.updated 4 | icon: folder 5 | --- -------------------------------------------------------------------------------- /docs/operations/audit-logs/signing-key-created.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Signing Key Created' 3 | openapi-schema: signing.key.created 4 | icon: key 5 | --- -------------------------------------------------------------------------------- /docs/operations/audit-logs/user-email-verified.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'User Email Verified' 3 | openapi-schema: user.email.verified 4 | icon: lock 5 | --- -------------------------------------------------------------------------------- /docs/operations/audit-logs/user-password-reset.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'User Password Reset' 3 | openapi-schema: user.password.reset 4 | icon: lock 5 | --- -------------------------------------------------------------------------------- /docs/operations/audit-logs/user-signed-in.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'User Signed In' 3 | openapi-schema: user.signed.in 4 | icon: lock 5 | --- -------------------------------------------------------------------------------- /docs/operations/audit-logs/user-signed-up.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'User Signed Up' 3 | openapi-schema: user.signed.up 4 | icon: lock 5 | --- -------------------------------------------------------------------------------- /docs/resources/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/architecture.png -------------------------------------------------------------------------------- /docs/resources/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/banner.png -------------------------------------------------------------------------------- /docs/resources/beavers/pupil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/beavers/pupil.png -------------------------------------------------------------------------------- /docs/resources/color-palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/color-palette.png -------------------------------------------------------------------------------- /docs/resources/create-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/create-action.png -------------------------------------------------------------------------------- /docs/resources/crowdin-translate-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/crowdin-translate-all.png -------------------------------------------------------------------------------- /docs/resources/crowdin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/crowdin.png -------------------------------------------------------------------------------- /docs/resources/flow-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/flow-history.png -------------------------------------------------------------------------------- /docs/resources/flow-parts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/flow-parts.png -------------------------------------------------------------------------------- /docs/resources/french-webhooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/french-webhooks.png -------------------------------------------------------------------------------- /docs/resources/i18n-pieces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/i18n-pieces.png -------------------------------------------------------------------------------- /docs/resources/passing-data-3steps.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/passing-data-3steps.mp4 -------------------------------------------------------------------------------- /docs/resources/passing-data-data-to-insert-panel.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/passing-data-data-to-insert-panel.mp4 -------------------------------------------------------------------------------- /docs/resources/passing-data-dynamic-value.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/passing-data-dynamic-value.mp4 -------------------------------------------------------------------------------- /docs/resources/passing-data-load-data.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/passing-data-load-data.mp4 -------------------------------------------------------------------------------- /docs/resources/passing-data-main-insert-data-example.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/passing-data-main-insert-data-example.mp4 -------------------------------------------------------------------------------- /docs/resources/passing-data-test-step-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/passing-data-test-step-first.png -------------------------------------------------------------------------------- /docs/resources/passing-data.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/passing-data.gif -------------------------------------------------------------------------------- /docs/resources/profile/abdulyki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/profile/abdulyki.png -------------------------------------------------------------------------------- /docs/resources/profile/abood.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/profile/abood.webp -------------------------------------------------------------------------------- /docs/resources/profile/aboodzein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/profile/aboodzein.png -------------------------------------------------------------------------------- /docs/resources/profile/amr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/profile/amr.png -------------------------------------------------------------------------------- /docs/resources/profile/amro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/profile/amro.png -------------------------------------------------------------------------------- /docs/resources/profile/ash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/profile/ash.png -------------------------------------------------------------------------------- /docs/resources/profile/ginika.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/profile/ginika.png -------------------------------------------------------------------------------- /docs/resources/profile/hazem.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/profile/hazem.jpg -------------------------------------------------------------------------------- /docs/resources/profile/issa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/profile/issa.png -------------------------------------------------------------------------------- /docs/resources/profile/kareem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/profile/kareem.png -------------------------------------------------------------------------------- /docs/resources/profile/khaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/profile/khaled.png -------------------------------------------------------------------------------- /docs/resources/profile/kishan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/profile/kishan.png -------------------------------------------------------------------------------- /docs/resources/profile/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/profile/mo.png -------------------------------------------------------------------------------- /docs/resources/profile/sanad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/profile/sanad.png -------------------------------------------------------------------------------- /docs/resources/publish-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/publish-flow.png -------------------------------------------------------------------------------- /docs/resources/pylon-board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/pylon-board.png -------------------------------------------------------------------------------- /docs/resources/scale-pieces-cli.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/scale-pieces-cli.gif -------------------------------------------------------------------------------- /docs/resources/screenshots/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/.DS_Store -------------------------------------------------------------------------------- /docs/resources/screenshots/activity-finished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/activity-finished.png -------------------------------------------------------------------------------- /docs/resources/screenshots/activity-started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/activity-started.png -------------------------------------------------------------------------------- /docs/resources/screenshots/ai-credits-limit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/ai-credits-limit.png -------------------------------------------------------------------------------- /docs/resources/screenshots/appearance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/appearance.png -------------------------------------------------------------------------------- /docs/resources/screenshots/audit-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/audit-logs.png -------------------------------------------------------------------------------- /docs/resources/screenshots/branch-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/branch-settings.png -------------------------------------------------------------------------------- /docs/resources/screenshots/branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/branch.png -------------------------------------------------------------------------------- /docs/resources/screenshots/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/branding.png -------------------------------------------------------------------------------- /docs/resources/screenshots/bullboard-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/bullboard-ui.png -------------------------------------------------------------------------------- /docs/resources/screenshots/code-fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/code-fullscreen.png -------------------------------------------------------------------------------- /docs/resources/screenshots/code-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/code-settings.png -------------------------------------------------------------------------------- /docs/resources/screenshots/configure-ai-provider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/configure-ai-provider.png -------------------------------------------------------------------------------- /docs/resources/screenshots/connection-dialog-builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/connection-dialog-builder.png -------------------------------------------------------------------------------- /docs/resources/screenshots/connection-dialog-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/connection-dialog-sdk.png -------------------------------------------------------------------------------- /docs/resources/screenshots/connections-piece-usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/connections-piece-usage.png -------------------------------------------------------------------------------- /docs/resources/screenshots/connections-piece.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/connections-piece.png -------------------------------------------------------------------------------- /docs/resources/screenshots/connections-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/connections-table.png -------------------------------------------------------------------------------- /docs/resources/screenshots/create-api-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/create-api-key.png -------------------------------------------------------------------------------- /docs/resources/screenshots/create-global-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/create-global-connection.png -------------------------------------------------------------------------------- /docs/resources/screenshots/create-signing-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/create-signing-key.png -------------------------------------------------------------------------------- /docs/resources/screenshots/custom-domain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/custom-domain.png -------------------------------------------------------------------------------- /docs/resources/screenshots/data-to-insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/data-to-insert.png -------------------------------------------------------------------------------- /docs/resources/screenshots/docker-ngrok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/docker-ngrok.png -------------------------------------------------------------------------------- /docs/resources/screenshots/dynamic-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/dynamic-value.png -------------------------------------------------------------------------------- /docs/resources/screenshots/embedding-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/embedding-example.png -------------------------------------------------------------------------------- /docs/resources/screenshots/fork-repository.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/fork-repository.jpg -------------------------------------------------------------------------------- /docs/resources/screenshots/gelato-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/gelato-action.png -------------------------------------------------------------------------------- /docs/resources/screenshots/gelato-trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/gelato-trigger.png -------------------------------------------------------------------------------- /docs/resources/screenshots/http-request-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/http-request-settings.png -------------------------------------------------------------------------------- /docs/resources/screenshots/inside-loop-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/inside-loop-settings.png -------------------------------------------------------------------------------- /docs/resources/screenshots/install-piece.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/install-piece.png -------------------------------------------------------------------------------- /docs/resources/screenshots/invite-customer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/invite-customer.png -------------------------------------------------------------------------------- /docs/resources/screenshots/jumpcloud/acl-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/jumpcloud/acl-url.png -------------------------------------------------------------------------------- /docs/resources/screenshots/jumpcloud/declare-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/jumpcloud/declare-login.png -------------------------------------------------------------------------------- /docs/resources/screenshots/jumpcloud/export-metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/jumpcloud/export-metadata.png -------------------------------------------------------------------------------- /docs/resources/screenshots/jumpcloud/user-attribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/jumpcloud/user-attribute.png -------------------------------------------------------------------------------- /docs/resources/screenshots/jumpcloud/user-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/jumpcloud/user-groups.png -------------------------------------------------------------------------------- /docs/resources/screenshots/loop-custom-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/loop-custom-path.png -------------------------------------------------------------------------------- /docs/resources/screenshots/loop-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/loop-settings.png -------------------------------------------------------------------------------- /docs/resources/screenshots/loops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/loops.png -------------------------------------------------------------------------------- /docs/resources/screenshots/manage-oauth2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/manage-oauth2.png -------------------------------------------------------------------------------- /docs/resources/screenshots/manage-pieces-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/manage-pieces-2.png -------------------------------------------------------------------------------- /docs/resources/screenshots/manage-pieces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/manage-pieces.png -------------------------------------------------------------------------------- /docs/resources/screenshots/manage-projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/manage-projects.png -------------------------------------------------------------------------------- /docs/resources/screenshots/manage-smtp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/manage-smtp.png -------------------------------------------------------------------------------- /docs/resources/screenshots/manage-templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/manage-templates.png -------------------------------------------------------------------------------- /docs/resources/screenshots/new-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/new-connection.png -------------------------------------------------------------------------------- /docs/resources/screenshots/piece-version-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/piece-version-screenshot.png -------------------------------------------------------------------------------- /docs/resources/screenshots/project-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/project-settings.png -------------------------------------------------------------------------------- /docs/resources/screenshots/signing-key-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/signing-key-id.png -------------------------------------------------------------------------------- /docs/resources/screenshots/simple-webhook-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/simple-webhook-flow.png -------------------------------------------------------------------------------- /docs/resources/screenshots/sso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/sso.png -------------------------------------------------------------------------------- /docs/resources/screenshots/tag-pieces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/tag-pieces.png -------------------------------------------------------------------------------- /docs/resources/screenshots/team-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/team-screenshot.png -------------------------------------------------------------------------------- /docs/resources/screenshots/use-ai-provider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/screenshots/use-ai-provider.png -------------------------------------------------------------------------------- /docs/resources/templates.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/templates.gif -------------------------------------------------------------------------------- /docs/resources/unified-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/unified-ai.png -------------------------------------------------------------------------------- /docs/resources/visual-builder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/visual-builder.gif -------------------------------------------------------------------------------- /docs/resources/worker-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/worker-token.png -------------------------------------------------------------------------------- /docs/resources/workers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/docs/resources/workers.png -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- 1 | import { getJestProjectsAsync } from '@nx/jest'; 2 | 3 | export default async () => ({ 4 | projects: await getJestProjectsAsync(), 5 | }); 6 | -------------------------------------------------------------------------------- /packages/cli/README.md: -------------------------------------------------------------------------------- 1 | # cli 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Running unit tests 6 | 7 | Run `nx test cli` to execute the unit tests via [Jest](https://jestjs.io). 8 | -------------------------------------------------------------------------------- /packages/cli/src/lib/utils/exec.ts: -------------------------------------------------------------------------------- 1 | import { exec as execCallback } from 'node:child_process'; 2 | import { promisify } from 'node:util'; 3 | 4 | export const exec = promisify(execCallback); 5 | -------------------------------------------------------------------------------- /packages/ee/shared/README.md: -------------------------------------------------------------------------------- 1 | # ee-shared 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build ee-shared` to build the library. 8 | -------------------------------------------------------------------------------- /packages/ee/shared/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/ee-shared", 3 | "version": "0.0.10", 4 | "type": "commonjs" 5 | } -------------------------------------------------------------------------------- /packages/ee/shared/src/lib/alerts/index.ts: -------------------------------------------------------------------------------- 1 | export * from './alerts-dto' 2 | export * from './alerts-requests' -------------------------------------------------------------------------------- /packages/ee/shared/src/lib/authn/enterprise-local-authn/index.ts: -------------------------------------------------------------------------------- 1 | export * from './requests' 2 | -------------------------------------------------------------------------------- /packages/ee/shared/src/lib/authn/index.ts: -------------------------------------------------------------------------------- 1 | export * from './enterprise-local-authn' 2 | export * from './access-control-list' -------------------------------------------------------------------------------- /packages/ee/shared/src/lib/managed-authn/index.ts: -------------------------------------------------------------------------------- 1 | export * from './managed-authn-requests' 2 | -------------------------------------------------------------------------------- /packages/ee/shared/src/lib/oauth-apps/index.ts: -------------------------------------------------------------------------------- 1 | export * from './oauth-app' -------------------------------------------------------------------------------- /packages/ee/shared/src/lib/otp/index.ts: -------------------------------------------------------------------------------- 1 | export * from './otp-model' 2 | export * from './otp-requests' 3 | export * from './otp-type' 4 | -------------------------------------------------------------------------------- /packages/ee/shared/src/lib/otp/otp-type.ts: -------------------------------------------------------------------------------- 1 | export enum OtpType { 2 | EMAIL_VERIFICATION = 'EMAIL_VERIFICATION', 3 | PASSWORD_RESET = 'PASSWORD_RESET', 4 | } 5 | -------------------------------------------------------------------------------- /packages/ee/shared/src/lib/product-embed/app-credentials/index.ts: -------------------------------------------------------------------------------- 1 | export * from './app-credentials' 2 | export * from './app-credentials-requests' -------------------------------------------------------------------------------- /packages/ee/shared/src/lib/product-embed/connection-keys/index.ts: -------------------------------------------------------------------------------- 1 | export * from './connection-key' 2 | export * from './connection-requests' -------------------------------------------------------------------------------- /packages/ee/shared/src/lib/signing-key/index.ts: -------------------------------------------------------------------------------- 1 | export * from './signing-key-model' 2 | export * from './signing-key-response' 3 | export * from './signing-key.request' 4 | -------------------------------------------------------------------------------- /packages/ee/shared/src/lib/signing-key/signing-key-response.ts: -------------------------------------------------------------------------------- 1 | import { SigningKey } from './signing-key-model' 2 | 3 | export type AddSigningKeyResponse = SigningKey & { 4 | privateKey: string 5 | } 6 | -------------------------------------------------------------------------------- /packages/ee/ui/embed-sdk/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ee-embed-sdk", 3 | "version": "0.5.0", 4 | "type": "commonjs", 5 | "main": "./src/index.js", 6 | "typings": "./src/index.d.ts" 7 | } -------------------------------------------------------------------------------- /packages/ee/ui/embed-sdk/webpack.config.js: -------------------------------------------------------------------------------- 1 | const { composePlugins, withNx } = require('@nx/webpack'); 2 | 3 | module.exports = composePlugins(withNx(), (config) => { 4 | return config; 5 | }); 6 | -------------------------------------------------------------------------------- /packages/engine/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/engine", 3 | "version": "0.7.0", 4 | "type": "commonjs" 5 | } 6 | 7 | -------------------------------------------------------------------------------- /packages/engine/test/resources/codes/flowVersionId/echo_step/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | code: async (params) => { 3 | return params; 4 | } 5 | }; 6 | -------------------------------------------------------------------------------- /packages/engine/test/resources/codes/flowVersionId/echo_step_1/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | code: async (params) => { 3 | return params; 4 | } 5 | }; 6 | -------------------------------------------------------------------------------- /packages/engine/test/resources/codes/flowVersionId/runtime/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | code: async (params) => { 3 | throw new Error('Custom Runtime Error'); 4 | } 5 | }; 6 | -------------------------------------------------------------------------------- /packages/pieces/community/activecampaign/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-activecampaign", 3 | "version": "0.0.3" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/activepieces/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-activepieces", 3 | "version": "0.2.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/acuity-scheduling/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-acuity-scheduling", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/acuity-scheduling/src/lib/triggers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './appointment-scheduled'; 2 | export * from './appointment-canceled' 3 | -------------------------------------------------------------------------------- /packages/pieces/community/acumbamail/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-acumbamail", 3 | "version": "0.1.0" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/afforai/README.md: -------------------------------------------------------------------------------- 1 | # pieces-afforai 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-afforai` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/afforai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-afforai", 3 | "version": "0.0.3" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/agent/README.md: -------------------------------------------------------------------------------- 1 | # pieces-agent 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-agent` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/agent/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-agent", 3 | "version": "0.1.10" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/aianswer/README.md: -------------------------------------------------------------------------------- 1 | # pieces-aianswer 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-aianswer` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/aianswer/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-aianswer", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/aianswer/src/lib/common/models.ts: -------------------------------------------------------------------------------- 1 | export const aiAnswerConfig = { 2 | baseUrl: 'https://backend-development-e8jn.onrender.com', 3 | accessTokenHeaderKey: 'Authorization', 4 | }; -------------------------------------------------------------------------------- /packages/pieces/community/airparser/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-airparser", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/airtable/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-airtable", 3 | "version": "0.4.19" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/amazon-s3/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-amazon-s3", 3 | "version": "0.3.7" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/amazon-sns/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-amazon-sns", 3 | "version": "0.0.2", 4 | "dependencies": { 5 | "@aws-sdk/client-sns": "3.726.1" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /packages/pieces/community/amazon-sqs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-amazon-sqs", 3 | "version": "0.0.3", 4 | "dependencies": { 5 | "@aws-sdk/client-sqs": "^3.806.0" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /packages/pieces/community/aminos/README.md: -------------------------------------------------------------------------------- 1 | # pieces-aminos 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-aminos` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/aminos/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-aminos", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/anyhook-graphql/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-anyhook-graphql", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/anyhook-websocket/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-anyhook-websocket", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/apify/README.md: -------------------------------------------------------------------------------- 1 | # pieces-apify 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-apify` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/apify/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-apify", 3 | "version": "0.0.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/apitable/README.md: -------------------------------------------------------------------------------- 1 | # pieces-apitable 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-apitable` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/apitable/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-apitable", 3 | "version": "0.0.20" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/apollo/README.md: -------------------------------------------------------------------------------- 1 | # pieces-apollo 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-apollo` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/apollo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-apollo", 3 | "version": "0.0.3" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/approval/README.md: -------------------------------------------------------------------------------- 1 | # pieces-approval 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-approval` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/approval/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-approval", 3 | "version": "0.1.9" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/asana/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-asana", 3 | "version": "0.3.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/ashby/README.md: -------------------------------------------------------------------------------- 1 | # pieces-ashby 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-ashby` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/ashby/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-ashby", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/assemblyai/.gitignore: -------------------------------------------------------------------------------- 1 | assemblyai.env -------------------------------------------------------------------------------- /packages/pieces/community/assemblyai/assemblyai.env.sample: -------------------------------------------------------------------------------- 1 | OPENAPI_SPEC_LOCATION=/path/to/spec/openapi.yml -------------------------------------------------------------------------------- /packages/pieces/community/assemblyai/src/lib/actions/files/index.ts: -------------------------------------------------------------------------------- 1 | export { uploadFile } from './upload'; 2 | -------------------------------------------------------------------------------- /packages/pieces/community/attio/README.md: -------------------------------------------------------------------------------- 1 | # pieces-attio 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-attio` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/attio/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-attio", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/azure-communication-services/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-azure-communication-services", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/azure-openai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-azure-openai", 3 | "version": "0.0.8", 4 | "dependencies": { 5 | "tiktoken": "1.0.11" 6 | } 7 | } -------------------------------------------------------------------------------- /packages/pieces/community/backblaze/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-backblaze", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/bamboohr/README.md: -------------------------------------------------------------------------------- 1 | # pieces-bamboohr 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-bamboohr` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/bamboohr/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-bamboohr", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/bannerbear/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-bannerbear", 3 | "version": "0.3.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/baserow/README.md: -------------------------------------------------------------------------------- 1 | # pieces-baserow 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-baserow` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/baserow/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-baserow", 3 | "version": "0.0.6" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/beamer/README.md: -------------------------------------------------------------------------------- 1 | # pieces-beamer 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-beamer` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/beamer/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-beamer", 3 | "version": "0.0.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/beamer/src/lib/common/index.ts: -------------------------------------------------------------------------------- 1 | export const beamerCommon = { 2 | baseUrl: 'https://api.getbeamer.com/v0', 3 | }; 4 | -------------------------------------------------------------------------------- /packages/pieces/community/beehiiv/README.md: -------------------------------------------------------------------------------- 1 | # pieces-beehiiv 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-beehiiv` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/beehiiv/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-beehiiv", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/bettermode/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-bettermode", 3 | "version": "0.0.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/binance/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-binance", 3 | "version": "0.3.3" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/blockscout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-blockscout", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/blockscout/src/lib/actions/search-redirect/index.ts: -------------------------------------------------------------------------------- 1 | export * from './check-redirect'; 2 | -------------------------------------------------------------------------------- /packages/pieces/community/blockscout/src/lib/actions/search/index.ts: -------------------------------------------------------------------------------- 1 | export * from './search'; 2 | -------------------------------------------------------------------------------- /packages/pieces/community/bonjoro/README.md: -------------------------------------------------------------------------------- 1 | # pieces-bonjoro 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-bonjoro` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/bonjoro/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-bonjoro", 3 | "version": "0.0.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/box/README.md: -------------------------------------------------------------------------------- 1 | # pieces-box 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-box` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/box/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-box", 3 | "version": "0.0.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/brilliant-directories/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-brilliant-directories", 3 | "version": "0.0.7" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/bubble/README.md: -------------------------------------------------------------------------------- 1 | # pieces-bubble 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-bubble` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/bubble/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-bubble", 3 | "version": "0.0.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/cal-com/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/cal-com/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-cal-com", 3 | "version": "0.3.3" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/calendly/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/calendly/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-calendly", 3 | "version": "0.3.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/call-rounded/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-rounded-studio", 3 | "version": "0.1.0" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/campaign-monitor/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-campaign-monitor", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/captain-data/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-captain-data", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/cartloom/README.md: -------------------------------------------------------------------------------- 1 | # pieces-cartloom 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-cartloom` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/cartloom/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-cartloom", 3 | "version": "0.0.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/certopus/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-certopus", 3 | "version": "0.1.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/certopus/src/lib/common/models/category.ts: -------------------------------------------------------------------------------- 1 | export interface Category { 2 | id: string; 3 | title: string; 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/certopus/src/lib/common/models/event.ts: -------------------------------------------------------------------------------- 1 | export interface Event { 2 | id: string; 3 | title: string; 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/certopus/src/lib/common/models/oranisation.ts: -------------------------------------------------------------------------------- 1 | export interface Organisation { 2 | id: string; 3 | imageUrl: string; 4 | name: string; 5 | integrationAllowed: boolean; 6 | } 7 | -------------------------------------------------------------------------------- /packages/pieces/community/certopus/src/lib/common/models/recipient-field.ts: -------------------------------------------------------------------------------- 1 | export interface RecipientField { 2 | key: string; 3 | label: string; 4 | type: string; 5 | } 6 | -------------------------------------------------------------------------------- /packages/pieces/community/chainalysis-api/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-chainalysis-api", 3 | "version": "0.0.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/chargekeep/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-chargekeep", 3 | "version": "0.2.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/chatbase/README.md: -------------------------------------------------------------------------------- 1 | # pieces-chatbase 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-chatbase` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/chatbase/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-chatbase", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/circle/README.md: -------------------------------------------------------------------------------- 1 | # pieces-circle 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-circle` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/circle/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-circle", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/clarifai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-clarifai", 3 | "version": "0.2.7", 4 | "dependencies": { 5 | "clarifai-nodejs-grpc": "11.3.3" 6 | } 7 | } -------------------------------------------------------------------------------- /packages/pieces/community/claude/README.md: -------------------------------------------------------------------------------- 1 | # pieces-claude 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-claude` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/claude/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-claude", 3 | "version": "0.1.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/clearout/README.md: -------------------------------------------------------------------------------- 1 | # pieces-clearout 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-clearout` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/clearout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-clearout", 3 | "version": "0.0.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/clickup/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/clickup/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-clickup", 3 | "version": "0.6.0" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/clockify/README.md: -------------------------------------------------------------------------------- 1 | # pieces-clockify 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-clockify` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/clockify/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-clockify", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/clockodo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-clockodo", 3 | "version": "0.1.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/clockodo/src/lib/actions/team/index.ts: -------------------------------------------------------------------------------- 1 | import getAction from './get-team'; 2 | import listAction from './list-teams'; 3 | 4 | export default [getAction, listAction]; 5 | -------------------------------------------------------------------------------- /packages/pieces/community/close/README.md: -------------------------------------------------------------------------------- 1 | # pieces-close 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-close` to build the library. -------------------------------------------------------------------------------- /packages/pieces/community/close/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-close", 3 | "version": "0.0.1" 4 | } 5 | 6 | -------------------------------------------------------------------------------- /packages/pieces/community/cloutly/README.md: -------------------------------------------------------------------------------- 1 | # pieces-cloutly 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-cloutly` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/cloutly/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-cloutly", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/coda/README.md: -------------------------------------------------------------------------------- 1 | # pieces-coda 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-coda` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/coda/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-coda", 3 | "version": "0.0.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/cognito-forms/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-cognito-forms", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/comfyicu/README.md: -------------------------------------------------------------------------------- 1 | # pieces-comfyicu 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-comfyicu` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/comfyicu/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-comfyicu", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/common/README.md: -------------------------------------------------------------------------------- 1 | # pieces-common 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-common` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/common/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/pieces-common", 3 | "version": "0.6.0", 4 | "type": "commonjs" 5 | } 6 | -------------------------------------------------------------------------------- /packages/pieces/community/common/src/lib/http/core/http-headers.ts: -------------------------------------------------------------------------------- 1 | export type HttpHeaders = Record<string, string | string[] | undefined>; 2 | -------------------------------------------------------------------------------- /packages/pieces/community/common/src/lib/http/core/http-message-body.ts: -------------------------------------------------------------------------------- 1 | export type HttpMessageBody = any 2 | -------------------------------------------------------------------------------- /packages/pieces/community/common/src/lib/http/core/http-request-body.ts: -------------------------------------------------------------------------------- 1 | import { HttpMessageBody } from "./http-message-body"; 2 | 3 | export type HttpRequestBody = HttpMessageBody | string; -------------------------------------------------------------------------------- /packages/pieces/community/common/src/lib/http/core/media-type.ts: -------------------------------------------------------------------------------- 1 | export enum MediaType { 2 | APPLICATION_JSON = 'application/json', 3 | TEXT_CSV = 'text/csv', 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/common/src/lib/http/core/query-params.ts: -------------------------------------------------------------------------------- 1 | export type QueryParams = Record<string, string>; 2 | -------------------------------------------------------------------------------- /packages/pieces/community/confluence/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-confluence", 3 | "version": "0.1.3" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/connections/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-connections", 3 | "version": "0.4.1" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/constant-contact/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-constant-contact", 3 | "version": "0.1.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/contentful/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-contentful", 3 | "version": "0.0.8", 4 | "dependencies": { 5 | "contentful-management": "11.48.1" 6 | } 7 | } -------------------------------------------------------------------------------- /packages/pieces/community/contentful/src/lib/actions/index.ts: -------------------------------------------------------------------------------- 1 | export * as RecordActions from './records'; 2 | -------------------------------------------------------------------------------- /packages/pieces/community/contentful/src/lib/actions/records/index.ts: -------------------------------------------------------------------------------- 1 | export * from './create-record'; 2 | export * from './search-records'; 3 | export * from './get-record'; 4 | -------------------------------------------------------------------------------- /packages/pieces/community/contentful/src/lib/common/index.ts: -------------------------------------------------------------------------------- 1 | export * from './auth'; 2 | export * from './client'; 3 | export * from './constants'; 4 | export * from './utils'; 5 | -------------------------------------------------------------------------------- /packages/pieces/community/contiguity/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-contiguity", 3 | "version": "0.1.6" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/convertkit/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-convertkit", 3 | "version": "0.2.1" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/copy-ai/README.md: -------------------------------------------------------------------------------- 1 | # pieces-copy-ai 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Running lint 6 | 7 | Run `nx build pieces-copy-ai` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/copy-ai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-copy-ai", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/crisp/README.md: -------------------------------------------------------------------------------- 1 | # pieces-crisp 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-crisp` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/crypto/README.md: -------------------------------------------------------------------------------- 1 | # pieces-crypto 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-crypto` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/crypto/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-crypto", 3 | "version": "0.0.7" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/csv/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/csv/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-csv", 3 | "version": "0.4.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/customer-io/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-customer-io", 3 | "version": "0.2.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/dappier/README.md: -------------------------------------------------------------------------------- 1 | # pieces-dappier 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-dappier` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/dappier/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-dappier", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/dappier/src/lib/common/index.ts: -------------------------------------------------------------------------------- 1 | export const dappierCommon = { 2 | baseUrl: 'https://api.dappier.com', 3 | }; 4 | -------------------------------------------------------------------------------- /packages/pieces/community/data-mapper/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-data-mapper", 3 | "version": "0.3.6" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/data-summarizer/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-data-summarizer", 3 | "version": "0.0.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/date-helper/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-date-helper", 3 | "version": "0.1.6" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/datocms/README.md: -------------------------------------------------------------------------------- 1 | # pieces-datocms 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-datocms` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/datocms/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-datocms", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/deepgram/README.md: -------------------------------------------------------------------------------- 1 | # pieces-deepgram 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-deepgram` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/deepgram/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-deepgram", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/deepl/README.md: -------------------------------------------------------------------------------- 1 | # pieces-deepl 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-deepl` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/deepl/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-deepl", 3 | "version": "0.0.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/deepseek/README.md: -------------------------------------------------------------------------------- 1 | # pieces-deepseek 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-deepseek` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/deepseek/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-deepseek", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/delay/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-delay", 3 | "version": "0.3.12" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/delay/src/lib/common.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | export const markdownDescription = ` 4 | **Note:** The maximum duration per step is {{pausedFlowTimeoutDays}} days. 5 | ` -------------------------------------------------------------------------------- /packages/pieces/community/devin/README.md: -------------------------------------------------------------------------------- 1 | # pieces-devin 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-devin` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/devin/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-devin", 3 | "version": "0.0.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/dimo/README.md: -------------------------------------------------------------------------------- 1 | # pieces-dimo 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-dimo` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/dimo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-dimo", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/dimo/src/lib/actions/attestation/index.ts: -------------------------------------------------------------------------------- 1 | export * from './action'; 2 | -------------------------------------------------------------------------------- /packages/pieces/community/dimo/src/lib/actions/device-definitions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './action'; 2 | -------------------------------------------------------------------------------- /packages/pieces/community/dimo/src/lib/actions/identity/index.ts: -------------------------------------------------------------------------------- 1 | export * from './action'; -------------------------------------------------------------------------------- /packages/pieces/community/dimo/src/lib/actions/telemetry/index.ts: -------------------------------------------------------------------------------- 1 | export * from './action'; 2 | -------------------------------------------------------------------------------- /packages/pieces/community/dimo/src/lib/actions/token-exchange/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./action" -------------------------------------------------------------------------------- /packages/pieces/community/dimo/src/lib/triggers/battery-charging/index.ts: -------------------------------------------------------------------------------- 1 | export * from './trigger' 2 | -------------------------------------------------------------------------------- /packages/pieces/community/dimo/src/lib/triggers/battery-power/index.ts: -------------------------------------------------------------------------------- 1 | export * from './trigger' 2 | -------------------------------------------------------------------------------- /packages/pieces/community/dimo/src/lib/triggers/charge-level/index.ts: -------------------------------------------------------------------------------- 1 | export * from './trigger' 2 | -------------------------------------------------------------------------------- /packages/pieces/community/dimo/src/lib/triggers/fuel-absolute-level/index.ts: -------------------------------------------------------------------------------- 1 | export * from './trigger' 2 | -------------------------------------------------------------------------------- /packages/pieces/community/dimo/src/lib/triggers/fuel-relative-level/index.ts: -------------------------------------------------------------------------------- 1 | export * from './trigger' 2 | -------------------------------------------------------------------------------- /packages/pieces/community/dimo/src/lib/triggers/ignition/index.ts: -------------------------------------------------------------------------------- 1 | export * from './trigger' 2 | -------------------------------------------------------------------------------- /packages/pieces/community/dimo/src/lib/triggers/odometer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './trigger' 2 | -------------------------------------------------------------------------------- /packages/pieces/community/dimo/src/lib/triggers/speed/index.ts: -------------------------------------------------------------------------------- 1 | export * from './trigger' 2 | -------------------------------------------------------------------------------- /packages/pieces/community/dimo/src/lib/triggers/tire-pressure/index.ts: -------------------------------------------------------------------------------- 1 | export * from './trigger' -------------------------------------------------------------------------------- /packages/pieces/community/discord/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/discord/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-discord", 3 | "version": "0.3.14" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/discourse/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-discourse", 3 | "version": "0.0.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/docusign/README.md: -------------------------------------------------------------------------------- 1 | # pieces-docusign 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-docusign` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/docusign/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-docusign", 3 | "version": "0.0.3" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/drip/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/drip/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-drip", 3 | "version": "0.3.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/dropbox/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/dropbox/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-dropbox", 3 | "version": "0.5.3" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/dumpling-ai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-dumpling-ai", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/dust/README.md: -------------------------------------------------------------------------------- 1 | # pieces-dust 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-dust` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/dust/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-dust", 3 | "version": "0.1.15", 4 | "dependencies": { 5 | "@dust-tt/client": "1.0.57" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /packages/pieces/community/elevenlabs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-elevenlabs", 3 | "version": "0.1.0" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/eth-name-service/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-eth-name-service", 3 | "version": "0.0.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/exa/README.md: -------------------------------------------------------------------------------- 1 | # pieces-exa 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-exa` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/exa/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-exa", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/facebook-leads/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-facebook-leads", 3 | "version": "0.2.0" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/facebook-pages/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-facebook-pages", 3 | "version": "0.1.8" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/figma/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/figma/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-figma", 3 | "version": "0.3.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/file-helper/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-file-helper", 3 | "version": "0.1.5" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/fillout-forms/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-fillout-forms", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/firecrawl/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-firecrawl", 3 | "version": "0.1.0" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/fireflies-ai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-fireflies-ai", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/fireflies-ai/src/lib/common/index.ts: -------------------------------------------------------------------------------- 1 | export const BASE_URL = 'https://api.fireflies.ai/graphql'; 2 | -------------------------------------------------------------------------------- /packages/pieces/community/fliqr-ai/README.md: -------------------------------------------------------------------------------- 1 | # pieces-fliqr-ai 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-fliqr-ai` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/fliqr-ai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-fliqr-ai", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/fliqr-ai/src/lib/common/models.ts: -------------------------------------------------------------------------------- 1 | export const fliqrConfig = { 2 | baseUrl: 'https://app.fliqr.ai/api', 3 | accessTokenHeaderKey: 'X-ACCESS-TOKEN', 4 | }; -------------------------------------------------------------------------------- /packages/pieces/community/flow-helper/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-flow-helper", 3 | "version": "0.0.3" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/flowise/README.md: -------------------------------------------------------------------------------- 1 | # pieces-flowise 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-flowise` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/flowise/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-flowise", 3 | "version": "0.0.5", 4 | "devDependencies": { 5 | "@types/is-url": "^1.2.32" 6 | } 7 | } -------------------------------------------------------------------------------- /packages/pieces/community/flowlu/README.md: -------------------------------------------------------------------------------- 1 | # pieces-flowlu 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-flowlu` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/flowlu/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-flowlu", 3 | "version": "0.0.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/formbricks/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-formbricks", 3 | "version": "0.1.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/forms/README.md: -------------------------------------------------------------------------------- 1 | # pieces-forms 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-forms` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/forms/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-forms", 3 | "version": "0.4.4" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/frame/README.md: -------------------------------------------------------------------------------- 1 | # pieces-frame 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-frame` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/frame/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-frame", 3 | "version": "0.0.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/framework/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/pieces-framework", 3 | "version": "0.15.0", 4 | "type": "commonjs" 5 | } 6 | 7 | -------------------------------------------------------------------------------- /packages/pieces/community/framework/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib'; -------------------------------------------------------------------------------- /packages/pieces/community/framework/src/lib/validators/index.ts: -------------------------------------------------------------------------------- 1 | 2 | export const CONNECTION_REGEX = '{{1}{connections.(.*?)}{1}}' 3 | -------------------------------------------------------------------------------- /packages/pieces/community/freshdesk/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-freshdesk", 3 | "version": "0.1.0" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/freshsales/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/freshsales/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-freshsales", 3 | "version": "0.3.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/gameball/README.md: -------------------------------------------------------------------------------- 1 | # pieces-gameball 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-gameball` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/gameball/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-gameball", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/gcloud-pubsub/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/gcloud-pubsub/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-gcloud-pubsub", 3 | "version": "0.0.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/generatebanners/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-generatebanners", 3 | "version": "0.3.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/ghostcms/README.md: -------------------------------------------------------------------------------- 1 | # pieces-ghostcms 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-ghostcms` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/ghostcms/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-ghostcms", 3 | "version": "0.0.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/gistly/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-gistly", 3 | "version": "0.0.1" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/gistly/src/lib/config.ts: -------------------------------------------------------------------------------- 1 | export const gistlyConfig = { 2 | baseUrl: 'https://api.gist.ly', 3 | accessTokenHeaderKey: 'x-api-key', 4 | }; 5 | -------------------------------------------------------------------------------- /packages/pieces/community/github/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/github/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-github", 3 | "version": "0.5.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/gitlab/README.md: -------------------------------------------------------------------------------- 1 | # pieces-gitlab 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-gitlab` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/gitlab/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-gitlab", 3 | "version": "0.0.6" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/gmail/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/gmail/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-gmail", 3 | "version": "0.8.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/google-calendar/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/google-calendar/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-google-calendar", 3 | "version": "0.5.6" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/google-contacts/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/google-contacts/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-google-contacts", 3 | "version": "0.3.8" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/google-contacts/src/lib/common/index.ts: -------------------------------------------------------------------------------- 1 | export const googleContactsCommon = { 2 | baseUrl: `https://people.googleapis.com/v1/people`, 3 | }; 4 | -------------------------------------------------------------------------------- /packages/pieces/community/google-docs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-google-docs", 3 | "version": "0.2.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/google-drive/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/google-drive/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-google-drive", 3 | "version": "0.5.41" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/google-forms/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-google-forms", 3 | "version": "0.3.6" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/google-gemini/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-google-gemini", 3 | "version": "0.0.11" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/google-my-business/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-google-my-business", 3 | "version": "0.0.7" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/google-search-console/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-google-search-console", 3 | "version": "0.0.3" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/google-sheets/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/google-sheets/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-google-sheets", 3 | "version": "0.12.4" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/google-slides/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-google-slides", 3 | "version": "0.0.3" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/google-tasks/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/google-tasks/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-google-tasks", 3 | "version": "0.3.7" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/gotify/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-gotify", 3 | "version": "0.3.3" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/graphql/README.md: -------------------------------------------------------------------------------- 1 | # pieces-graphql 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-graphql` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/graphql/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-graphql", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/gravityforms/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-gravityforms", 3 | "version": "0.0.8" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/grist/README.md: -------------------------------------------------------------------------------- 1 | # pieces-grist 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-grist` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/grist/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-grist", 3 | "version": "0.0.3" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/groq/README.md: -------------------------------------------------------------------------------- 1 | # pieces-groq 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-groq` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/groq/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-groq", 3 | "version": "0.1.0" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/hackernews/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/hackernews/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-hackernews", 3 | "version": "0.3.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/harvest/README.md: -------------------------------------------------------------------------------- 1 | # pieces-harvest 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-harvest` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/harvest/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-harvest", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/heartbeat/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-heartbeat", 3 | "version": "0.0.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/heygen/README.md: -------------------------------------------------------------------------------- 1 | # pieces-heygen 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-heygen` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/heygen/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-heygen", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/http-oauth2/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-http-oauth2", 3 | "version": "0.1.0" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/http/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/http/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-http", 3 | "version": "0.8.1" 4 | } 5 | 6 | -------------------------------------------------------------------------------- /packages/pieces/community/hubspot/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/hubspot/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-hubspot", 3 | "version": "0.7.2", 4 | "dependencies": { 5 | "@hubspot/api-client": "12.0.1" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /packages/pieces/community/image-ai/README.md: -------------------------------------------------------------------------------- 1 | # pieces-image-ai 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-image-ai` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/image-ai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-image-ai", 3 | "version": "0.2.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/image-helper/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-image-helper", 3 | "version": "0.1.1", 4 | "dependencies": { 5 | "jimp": "^0.22.12" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /packages/pieces/community/imap/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-imap", 3 | "version": "0.2.11" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/instagram-business/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-instagram-business", 3 | "version": "0.1.6" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/instantly-ai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-instantly-ai", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/instasent/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-instasent", 3 | "version": "0.0.3" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/intercom/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-intercom", 3 | "version": "0.5.3" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/invoiceninja/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-invoiceninja", 3 | "version": "0.2.5" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/jina-ai/README.md: -------------------------------------------------------------------------------- 1 | # pieces-jina-ai 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-jina-ai` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/jina-ai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-jina-ai", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/jira-cloud/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-jira-cloud", 3 | "version": "0.1.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/jotform/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-jotform", 3 | "version": "0.1.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/json/README.md: -------------------------------------------------------------------------------- 1 | # pieces-json 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-json` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/json/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-json", 3 | "version": "0.0.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/kallabot-ai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-kallabot-ai", 3 | "version": "0.2.0" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/kimai/README.md: -------------------------------------------------------------------------------- 1 | # pieces-kimai 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-kimai` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/kimai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-kimai", 3 | "version": "0.1.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/kizeo-forms/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-kizeo-forms", 3 | "version": "0.3.11" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/kommo/README.md: -------------------------------------------------------------------------------- 1 | # pieces-kommo 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-kommo` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/kommo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-kommo", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/krisp-call/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-krisp-call", 3 | "version": "0.0.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/lead-connector/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-lead-connector", 3 | "version": "0.1.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/lever/README.md: -------------------------------------------------------------------------------- 1 | # pieces-lever 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-lever` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/lever/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-lever", 3 | "version": "0.0.5" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/line/README.md: -------------------------------------------------------------------------------- 1 | # pieces-line 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-line` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/line/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-line", 3 | "version": "0.0.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/linear/README.md: -------------------------------------------------------------------------------- 1 | # pieces-linear 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-linear` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/linear/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-linear", 3 | "version": "0.1.8", 4 | "dependencies": { 5 | "@linear/sdk": "7.0.1" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /packages/pieces/community/linka/README.md: -------------------------------------------------------------------------------- 1 | # pieces-linka 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-linka` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/linka/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-linka", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/linkedin/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-linkedin", 3 | "version": "0.1.10" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/llmrails/README.md: -------------------------------------------------------------------------------- 1 | # pieces-llmrails 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-llmrails` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/llmrails/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-llmrails", 3 | "version": "0.0.7" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/localai/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/localai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-localai", 3 | "version": "0.0.7" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/lusha/README.md: -------------------------------------------------------------------------------- 1 | # pieces-lusha 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-lusha` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/lusha/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-lusha", 3 | "version": "0.0.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/mailchain/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-mailchain", 3 | "version": "0.0.1", 4 | "dependencies": { 5 | "@mailchain/sdk": "^0.31.0" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /packages/pieces/community/mailchimp/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/mailchimp/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-mailchimp", 3 | "version": "0.3.6" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/mailer-lite/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-mailer-lite", 3 | "version": "0.5.2" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/maileroo/README.md: -------------------------------------------------------------------------------- 1 | # pieces-maileroo 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-maileroo` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/maileroo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-maileroo", 3 | "version": "0.0.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/mailjet/README.md: -------------------------------------------------------------------------------- 1 | # pieces-mailjet 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-mailjet` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/mailjet/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-mailjet", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/manychat/README.md: -------------------------------------------------------------------------------- 1 | # pieces-manychat 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-manychat` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/manychat/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-manychat", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/mastodon/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-mastodon", 3 | "version": "0.4.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/math-helper/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-math-helper", 3 | "version": "0.0.11" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/matomo/README.md: -------------------------------------------------------------------------------- 1 | # pieces-matomo 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-matomo` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/matomo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-matomo", 3 | "version": "0.0.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/matrix/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-matrix", 3 | "version": "0.3.5" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/mattermost/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-mattermost", 3 | "version": "0.3.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/mautic/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-mautic", 3 | "version": "0.4.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/mcp/README.md: -------------------------------------------------------------------------------- 1 | # pieces-mcp 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-mcp` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/mcp/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-mcp", 3 | "version": "0.0.5" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/medullar/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-medullar", 3 | "version": "0.1.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/mem/README.md: -------------------------------------------------------------------------------- 1 | # pieces-mem 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-mem` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/mem/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-mem", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/mempool-space/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-mempool-space", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/mempool-space/src/lib/common/index.ts: -------------------------------------------------------------------------------- 1 | export const MEMPOOL_API_BASE_URL = 'https://mempool.space'; 2 | -------------------------------------------------------------------------------- /packages/pieces/community/messagebird/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-messagebird", 3 | "version": "0.1.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/metabase/README.md: -------------------------------------------------------------------------------- 1 | # pieces-metabase 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-metabase` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/metabase/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-metabase", 3 | "version": "0.1.11" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/microsoft-dynamics-365-business-central/README.md: -------------------------------------------------------------------------------- 1 | # pieces-microsoft-dynamics-365-business-central 2 | 3 | -------------------------------------------------------------------------------- /packages/pieces/community/microsoft-dynamics-365-business-central/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-microsoft-dynamics-365-business-central", 3 | "version": "0.0.6" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/microsoft-dynamics-crm/README.md: -------------------------------------------------------------------------------- 1 | # pieces-microsoft-dynamics-crm 2 | -------------------------------------------------------------------------------- /packages/pieces/community/microsoft-dynamics-crm/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-microsoft-dynamics-crm", 3 | "version": "0.1.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/microsoft-excel-365/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-microsoft-excel-365", 3 | "version": "0.0.7" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/microsoft-onedrive/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-microsoft-onedrive", 3 | "version": "0.0.12" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/microsoft-outlook-calendar/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-microsoft-outlook-calendar", 3 | "version": "0.0.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/microsoft-outlook/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-microsoft-outlook", 3 | "version": "0.1.0" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/microsoft-sharepoint/README.md: -------------------------------------------------------------------------------- 1 | # pieces-microsoft-sharepoint 2 | 3 | -------------------------------------------------------------------------------- /packages/pieces/community/microsoft-sharepoint/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-microsoft-sharepoint", 3 | "version": "0.0.6" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/microsoft-teams/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-microsoft-teams", 3 | "version": "0.1.0" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/microsoft-todo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-microsoft-todo", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/mindee/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-mindee", 3 | "version": "0.1.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/mixpanel/README.md: -------------------------------------------------------------------------------- 1 | # pieces-mixpanel 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-mixpanel` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/mixpanel/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-mixpanel", 3 | "version": "0.0.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/monday/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-monday", 3 | "version": "0.2.12" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/mongodb/README.md: -------------------------------------------------------------------------------- 1 | # pieces-mongodb 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-mongodb` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/mongodb/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-mongodb", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/motion/README.md: -------------------------------------------------------------------------------- 1 | # pieces-motion 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-motion` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/motion/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-motion", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/moxie-crm/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-moxie-crm", 3 | "version": "0.0.9" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/mysql/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-mysql", 3 | "version": "0.1.7" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/netsuite/README.md: -------------------------------------------------------------------------------- 1 | # pieces-netsuite 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-netsuite` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/netsuite/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-netsuite", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/nifty/README.md: -------------------------------------------------------------------------------- 1 | # pieces-nifty 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-nifty` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/nifty/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-nifty", 3 | "version": "0.0.6" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/nocodb/README.md: -------------------------------------------------------------------------------- 1 | # pieces-nocodb 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-nocodb` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/nocodb/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-nocodb", 3 | "version": "0.2.0" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/notion/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-notion", 3 | "version": "0.4.0" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/ntfy/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-ntfy", 3 | "version": "0.1.7" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/odoo/README.md: -------------------------------------------------------------------------------- 1 | # pieces-odoo 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-odoo` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/onfleet/README.md: -------------------------------------------------------------------------------- 1 | # pieces-onfleet 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-onfleet` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/onfleet/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-onfleet", 3 | "version": "0.0.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/open-router/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-open-router", 3 | "version": "0.0.8" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/openai/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/openai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-openai", 3 | "version": "0.4.3", 4 | "dependencies": { 5 | "tiktoken": "1.0.11" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /packages/pieces/community/pastebin/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-pastebin", 3 | "version": "0.1.3" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/pastefy/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-pastefy", 3 | "version": "0.1.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/pastefy/src/lib/triggers/index.ts: -------------------------------------------------------------------------------- 1 | import pasteChanged from './paste-changed'; 2 | 3 | export default [pasteChanged]; 4 | -------------------------------------------------------------------------------- /packages/pieces/community/pdf-co/README.md: -------------------------------------------------------------------------------- 1 | # pieces-pdf-co 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-pdf-co` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/pdf-co/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-pdf-co", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/pdf/README.md: -------------------------------------------------------------------------------- 1 | # pieces-pdf 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-pdf` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/perplexity-ai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-perplexity-ai", 3 | "version": "0.2.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/personal-ai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-personal-ai", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/photoroom/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-photoroom", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/pipedrive/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/pipedrive/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-pipedrive", 3 | "version": "0.6.0" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/poper/README.md: -------------------------------------------------------------------------------- 1 | # pieces-poper 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-poper` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/poper/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-poper", 3 | "version": "0.1.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/postgres/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-postgres", 3 | "version": "0.1.9" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/posthog/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/posthog/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-posthog", 3 | "version": "0.3.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/pushover/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-pushover", 3 | "version": "0.1.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/pylon/README.md: -------------------------------------------------------------------------------- 1 | # pieces-pylon 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-pylon` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/pylon/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-pylon", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/qdrant/README.md: -------------------------------------------------------------------------------- 1 | # pieces-qdrant 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-qdrant` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/qdrant/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-qdrant", 3 | "version": "0.2.0" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/qrcode/README.md: -------------------------------------------------------------------------------- 1 | # pieces-qrcode 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-qrcode` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/qrcode/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-qrcode", 3 | "version": "0.0.1", 4 | "devDependencies": { 5 | "@types/qrcode": "^1.5.5" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /packages/pieces/community/queue/README.md: -------------------------------------------------------------------------------- 1 | # pieces-queue 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-queue` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/queue/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-queue", 3 | "version": "0.0.6" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/quickzu/README.md: -------------------------------------------------------------------------------- 1 | # pieces-quickzu 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-quickzu` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/quickzu/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-quickzu", 3 | "version": "0.0.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/rabbitmq/README.md: -------------------------------------------------------------------------------- 1 | # pieces-rabbitmq 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-rabbitmq` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/razorpay/README.md: -------------------------------------------------------------------------------- 1 | # pieces-razorpay 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-razorpay` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/razorpay/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-razorpay", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/reachinbox/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-reachinbox", 3 | "version": "0.0.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/reddit/README.md: -------------------------------------------------------------------------------- 1 | # pieces-reddit 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-reddit` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/reddit/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-reddit", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/reoon-verifier/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-reoon-verifier", 3 | "version": "0.0.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/resend/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-resend", 3 | "version": "0.1.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/respaid/README.md: -------------------------------------------------------------------------------- 1 | # pieces-respaid 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-respaid` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/respaid/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-respaid", 3 | "version": "0.0.7" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/retable/README.md: -------------------------------------------------------------------------------- 1 | # pieces-retable 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-retable` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/retable/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-retable", 3 | "version": "0.0.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/retune/README.md: -------------------------------------------------------------------------------- 1 | # pieces-retune 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-retune` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/retune/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-retune", 3 | "version": "0.0.6" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/returning-ai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-returning-ai", 3 | "version": "0.0.4" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/robolly/README.md: -------------------------------------------------------------------------------- 1 | # pieces-robolly 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-robolly` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/robolly/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-robolly", 3 | "version": "0.0.6" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/rss/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/rss/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-rss", 3 | "version": "0.4.0" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/saastic/README.md: -------------------------------------------------------------------------------- 1 | # pieces-saastic 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-saastic` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/saastic/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-saastic", 3 | "version": "0.0.7" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/saastic/src/lib/common/index.ts: -------------------------------------------------------------------------------- 1 | export const saasticCommon = { 2 | baseUrl: 'https://api.saastic.com/beacon', 3 | }; 4 | -------------------------------------------------------------------------------- /packages/pieces/community/saleor/README.md: -------------------------------------------------------------------------------- 1 | # pieces-saleor 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-saleor` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/saleor/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-saleor", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/salesforce/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-salesforce", 3 | "version": "0.1.10" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/scenario/README.md: -------------------------------------------------------------------------------- 1 | # pieces-scenario 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-scenario` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/scenario/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-scenario", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/schedule/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-schedule", 3 | "version": "0.1.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/scrapegrapghai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-scrapegrapghai", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/segment/README.md: -------------------------------------------------------------------------------- 1 | # pieces-segment 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-segment` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/segment/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-segment", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/sendfox/README.md: -------------------------------------------------------------------------------- 1 | # pieces-sendfox 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-sendfox` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/sendfox/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-sendfox", 3 | "version": "0.0.7" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/sendgrid/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/sendgrid/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-sendgrid", 3 | "version": "0.3.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/sendgrid/src/lib/common/index.ts: -------------------------------------------------------------------------------- 1 | export const sendgridCommon = { 2 | baseUrl: 'https://api.sendgrid.com/v3', 3 | }; 4 | -------------------------------------------------------------------------------- /packages/pieces/community/sendinblue/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-sendinblue", 3 | "version": "0.1.6" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/sendy/README.md: -------------------------------------------------------------------------------- 1 | # pieces-sendy 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-sendy` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/sendy/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-sendy", 3 | "version": "0.0.10" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/serp-api/README.md: -------------------------------------------------------------------------------- 1 | # pieces-serp-api 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-serp-api` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/serp-api/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-serp-api", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/sessions-us/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-sessions-us", 3 | "version": "0.0.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/seven/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-seven", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/sftp/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-sftp", 3 | "version": "0.3.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/shopify/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-shopify", 3 | "version": "0.1.12" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/simplepdf/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-simplepdf", 3 | "version": "1.0.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/skyvern/README.md: -------------------------------------------------------------------------------- 1 | # pieces-skyvern 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-skyvern` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/skyvern/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-skyvern", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/slack/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-slack", 3 | "version": "0.9.3" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/smaily/README.md: -------------------------------------------------------------------------------- 1 | # pieces-smaily 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-smaily` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/smaily/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-smaily", 3 | "version": "0.0.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/smartsheet/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-smartsheet", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/smartsuite/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-smartsuite", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/smtp/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-smtp", 3 | "version": "0.3.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/snowflake/README.md: -------------------------------------------------------------------------------- 1 | # pieces-snowflake 2 | -------------------------------------------------------------------------------- /packages/pieces/community/snowflake/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-snowflake", 3 | "version": "0.0.10" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/soap/README.md: -------------------------------------------------------------------------------- 1 | # pieces-soap 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-soap` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/soap/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-soap", 3 | "version": "0.0.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/sperse/README.md: -------------------------------------------------------------------------------- 1 | # pieces-sperse 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-sperse` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/sperse/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-sperse", 3 | "version": "0.0.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/spotify/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-spotify", 3 | "version": "0.3.6" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/spotify/src/lib/common/models/album.ts: -------------------------------------------------------------------------------- 1 | export interface Album { 2 | id: string; 3 | name: string; 4 | uri: string; 5 | } 6 | -------------------------------------------------------------------------------- /packages/pieces/community/spotify/src/lib/common/models/artist.ts: -------------------------------------------------------------------------------- 1 | export interface Artist { 2 | id: string; 3 | name: string; 4 | type: 'artist'; 5 | uri: string; 6 | genres: string[]; 7 | } 8 | -------------------------------------------------------------------------------- /packages/pieces/community/spotify/src/lib/common/models/track.ts: -------------------------------------------------------------------------------- 1 | export interface Track { 2 | id: string; 3 | name: string; 4 | uri: string; 5 | } 6 | -------------------------------------------------------------------------------- /packages/pieces/community/spotify/src/lib/triggers/index.ts: -------------------------------------------------------------------------------- 1 | import playlistItemsChanged from './playlist-items-changed'; 2 | 3 | export default [playlistItemsChanged]; 4 | -------------------------------------------------------------------------------- /packages/pieces/community/square/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-square", 3 | "version": "0.3.5" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/stability-ai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-stability-ai", 3 | "version": "0.1.10" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/stable-diffusion-webui/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-stable-diffusion-webui", 3 | "version": "0.0.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/store/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/store/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-store", 3 | "version": "0.6.1" 4 | } 5 | 6 | -------------------------------------------------------------------------------- /packages/pieces/community/straico/README.md: -------------------------------------------------------------------------------- 1 | # pieces-straico 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-straico` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/straico/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-straico", 3 | "version": "0.1.2" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/straico/src/lib/common/common.ts: -------------------------------------------------------------------------------- 1 | export const baseUrlv0 = 'https://api.straico.com/v0'; 2 | export const baseUrlv1 = 'https://api.straico.com/v1'; -------------------------------------------------------------------------------- /packages/pieces/community/stripe/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/stripe/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-stripe", 3 | "version": "0.5.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/subflows/README.md: -------------------------------------------------------------------------------- 1 | # pieces-subflows 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-subflows` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/subflows/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-subflows", 3 | "version": "0.1.3" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/supabase/README.md: -------------------------------------------------------------------------------- 1 | # pieces-supabase 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-supabase` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/supabase/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-supabase", 3 | "version": "0.0.7" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/supadata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-supadata", 3 | "version": "0.0.1" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/supadata/src/lib/config.ts: -------------------------------------------------------------------------------- 1 | export const supadataConfig = { 2 | baseUrl: 'https://api.supadata.ai/v1', 3 | accessTokenHeaderKey: 'x-api-key', 4 | }; 5 | -------------------------------------------------------------------------------- /packages/pieces/community/surrealdb/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-surrealdb", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/surveymonkey/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-surveymonkey", 3 | "version": "0.0.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/tables/README.md: -------------------------------------------------------------------------------- 1 | # pieces-tables 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-tables` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/tables/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-tables", 3 | "version": "0.1.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/tags/README.md: -------------------------------------------------------------------------------- 1 | # pieces-tags 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-tags` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/tags/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-tags", 3 | "version": "0.0.6" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/talkable/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-talkable", 3 | "version": "0.1.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/tally/README.md: -------------------------------------------------------------------------------- 1 | # pieces-tally 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-tally` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/tally/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-tally", 3 | "version": "0.1.3" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/tarvent/README.md: -------------------------------------------------------------------------------- 1 | # pieces-tarvent 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-tarvent` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/tarvent/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-tarvent", 3 | "version": "0.0.4" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/taskade/README.md: -------------------------------------------------------------------------------- 1 | # pieces-taskade 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-taskade` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/taskade/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-taskade", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/tavily/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-tavily", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/telegram-bot/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/telegram-bot/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-telegram-bot", 3 | "version": "0.3.14" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/text-ai/README.md: -------------------------------------------------------------------------------- 1 | # pieces-text-ai 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-text-ai` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/text-ai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-text-ai", 3 | "version": "0.2.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/text-helper/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-text-helper", 3 | "version": "0.4.0" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/thankster/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-thankster", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/ticktick/README.md: -------------------------------------------------------------------------------- 1 | # pieces-ticktick 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-ticktick` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/ticktick/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-ticktick", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/tidycal/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-tidycal", 3 | "version": "0.0.9" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/todoist/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/todoist/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-todoist", 3 | "version": "0.3.10" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/todos/README.md: -------------------------------------------------------------------------------- 1 | # pieces-todos 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-todos` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/todos/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-todos", 3 | "version": "0.0.6" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/totalcms/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-totalcms", 3 | "version": "0.0.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/trello/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-trello", 3 | "version": "0.3.8" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/truelayer/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-truelayer", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/twilio/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/twilio/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-twilio", 3 | "version": "0.3.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/twin-labs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-twin-labs", 3 | "version": "0.0.3" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/twitter/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-twitter", 3 | "version": "0.2.10" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/typeform/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/typeform/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-typeform", 3 | "version": "0.3.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/upgradechat/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-upgradechat", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/utility-ai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-utility-ai", 3 | "version": "0.4.3" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/vbout/README.md: -------------------------------------------------------------------------------- 1 | # pieces-vbout 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-vbout` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/vbout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-vbout", 3 | "version": "0.0.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/village/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-village", 3 | "version": "0.0.3" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/vtex/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-vtex", 3 | "version": "0.1.3" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/vtiger/README.md: -------------------------------------------------------------------------------- 1 | # pieces-vtiger 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-vtiger` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/vtiger/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-vtiger", 3 | "version": "1.1.10" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/webflow/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-webflow", 3 | "version": "0.1.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/webhook/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-webhook", 3 | "version": "0.1.15" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/webling/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-webling", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/wedof/README.md: -------------------------------------------------------------------------------- 1 | # pieces-wedof 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-wedof` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/wedof/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-wedof", 3 | "version": "1.2.8" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/whatsable/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-whatsable", 3 | "version": "0.0.3" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/whatsapp/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-whatsapp", 3 | "version": "0.1.0" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/woocommerce/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-woocommerce", 3 | "version": "0.0.9" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/wootric/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-wootric", 3 | "version": "0.0.3" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/wordpress/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/wordpress/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-wordpress", 3 | "version": "0.3.14" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/xero/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-xero", 3 | "version": "0.4.0" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/xml/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-xml", 3 | "version": "0.1.3" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/youtube/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-youtube", 3 | "version": "0.3.8" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/zagomail/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-zagomail", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/zendesk/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-zendesk", 3 | "version": "0.1.4" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/zerobounce/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-zerobounce", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/zoho-books/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-zoho-books", 3 | "version": "0.0.2" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/zoho-crm/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-zoho-crm", 3 | "version": "0.1.8" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/zoho-desk/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-zoho-desk", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/zoho-invoice/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-zoho-invoice", 3 | "version": "0.0.5" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/zoho-mail/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-zoho-mail", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/zoo/README.md: -------------------------------------------------------------------------------- 1 | # pieces-zoo 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build pieces-zoo` to build the library. 8 | -------------------------------------------------------------------------------- /packages/pieces/community/zoo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-zoo", 3 | "version": "0.0.1" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/community/zoom/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["@nx/js/babel", { "useBuiltIns": "usage" }]] 3 | } 4 | -------------------------------------------------------------------------------- /packages/pieces/community/zoom/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-zoom", 3 | "version": "0.4.0" 4 | } -------------------------------------------------------------------------------- /packages/pieces/community/zuora/README.md: -------------------------------------------------------------------------------- 1 | # pieces-zuora 2 | -------------------------------------------------------------------------------- /packages/pieces/community/zuora/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/piece-zuora", 3 | "version": "0.0.6" 4 | } 5 | -------------------------------------------------------------------------------- /packages/pieces/custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/packages/pieces/custom/README.md -------------------------------------------------------------------------------- /packages/react-ui/.prettierignore: -------------------------------------------------------------------------------- 1 | *.hbs -------------------------------------------------------------------------------- /packages/react-ui/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/packages/react-ui/src/assets/.gitkeep -------------------------------------------------------------------------------- /packages/react-ui/src/assets/img/custom/incomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/packages/react-ui/src/assets/img/custom/incomplete.png -------------------------------------------------------------------------------- /packages/react-ui/src/assets/img/custom/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/packages/react-ui/src/assets/img/custom/link.png -------------------------------------------------------------------------------- /packages/react-ui/src/assets/img/custom/magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/packages/react-ui/src/assets/img/custom/magic.png -------------------------------------------------------------------------------- /packages/server/.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /packages/server/api/README.md: -------------------------------------------------------------------------------- 1 | # Backend 2 | 3 | ## scripts 4 | 5 | ### Generate database migrations 6 | 7 | ```sh 8 | npx nx db-migration server-api -- --name migration-name 9 | ``` 10 | -------------------------------------------------------------------------------- /packages/server/api/__mocks__/isolated-vm.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; // You can export a mock implementation if needed 2 | -------------------------------------------------------------------------------- /packages/server/api/src/app/database/seeds/data-seed.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | export type DataSeed = { 4 | run(): Promise<void> 5 | } -------------------------------------------------------------------------------- /packages/server/api/src/assets/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | nameserver 8.8.8.8 2 | nameserver 8.8.4.4 3 | -------------------------------------------------------------------------------- /packages/server/api/src/assets/isolate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/packages/server/api/src/assets/isolate -------------------------------------------------------------------------------- /packages/server/api/src/assets/isolate-arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activepieces/activepieces/fed547cdec371ab8ddef673d4cdf7c97f1cdbe3a/packages/server/api/src/assets/isolate-arm -------------------------------------------------------------------------------- /packages/server/shared/README.md: -------------------------------------------------------------------------------- 1 | # server-shared 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build server-shared` to build the library. 8 | -------------------------------------------------------------------------------- /packages/server/shared/src/lib/cache/index.ts: -------------------------------------------------------------------------------- 1 | export * from './cache' -------------------------------------------------------------------------------- /packages/server/shared/src/lib/exec.ts: -------------------------------------------------------------------------------- 1 | import { exec as execCallback } from 'node:child_process' 2 | import { promisify } from 'node:util' 3 | 4 | export const execPromise = promisify(execCallback) 5 | -------------------------------------------------------------------------------- /packages/server/worker/README.md: -------------------------------------------------------------------------------- 1 | # server-worker 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build server-worker` to build the library. 8 | -------------------------------------------------------------------------------- /packages/shared/README.md: -------------------------------------------------------------------------------- 1 | # shared 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | 5 | ## Building 6 | 7 | Run `nx build shared` to build the library. 8 | -------------------------------------------------------------------------------- /packages/shared/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@activepieces/shared", 3 | "version": "0.16.0", 4 | "type": "commonjs" 5 | } 6 | -------------------------------------------------------------------------------- /packages/shared/src/lib/changelog/index.ts: -------------------------------------------------------------------------------- 1 | export * from './changelog' 2 | export * from './changelog.request' -------------------------------------------------------------------------------- /packages/shared/src/lib/common/security/index.ts: -------------------------------------------------------------------------------- 1 | export * from './permission' 2 | export const SAFE_STRING_PATTERN = '^[^./]+#39; -------------------------------------------------------------------------------- /packages/shared/src/lib/common/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './object-utils' 2 | export * from './utils' 3 | export * from './assertions' 4 | -------------------------------------------------------------------------------- /packages/shared/src/lib/flows/folders/list-folders-response.ts: -------------------------------------------------------------------------------- 1 | import { Folder } from './folder' 2 | 3 | export type FolderDto = Folder & { numberOfFlows: number } -------------------------------------------------------------------------------- /packages/shared/src/lib/flows/index.ts: -------------------------------------------------------------------------------- 1 | export * from './form' 2 | export * from './step-file/step-file' 3 | export * from './sample-data' 4 | export * from './flow' 5 | export * from './test-trigger' -------------------------------------------------------------------------------- /packages/shared/src/lib/issues/index.ts: -------------------------------------------------------------------------------- 1 | export * from './issues-requests' 2 | export * from './issue-dto' -------------------------------------------------------------------------------- /packages/shared/src/lib/platform/index.ts: -------------------------------------------------------------------------------- 1 | export * from './platform.model' 2 | export * from './platform.request' 3 | -------------------------------------------------------------------------------- /packages/shared/src/lib/project/index.ts: -------------------------------------------------------------------------------- 1 | export * from './project' 2 | export * from './project-member' 3 | -------------------------------------------------------------------------------- /packages/shared/src/lib/project/project-member.ts: -------------------------------------------------------------------------------- 1 | export enum DefaultProjectRole { 2 | ADMIN = 'Admin', 3 | EDITOR = 'Editor', 4 | OPERATOR = 'Operator', 5 | VIEWER = 'Viewer', 6 | } 7 | 8 | -------------------------------------------------------------------------------- /packages/shared/src/lib/property/markdown/index.ts: -------------------------------------------------------------------------------- 1 | export enum MarkdownVariant { 2 | BORDERLESS = 'BORDERLESS', 3 | INFO = 'INFO', 4 | WARNING = 'WARNING', 5 | TIP = 'TIP', 6 | } 7 | -------------------------------------------------------------------------------- /packages/shared/src/lib/support-url.ts: -------------------------------------------------------------------------------- 1 | export const supportUrl = 'https://community.activepieces.com' -------------------------------------------------------------------------------- /packages/shared/src/lib/webhook/index.ts: -------------------------------------------------------------------------------- 1 | export * from './dto' 2 | export * from './webhook-simulation' 3 | -------------------------------------------------------------------------------- /packages/tests-e2e/config.ts: -------------------------------------------------------------------------------- 1 | 2 | export const globalConfig = { 3 | instanceUrl: 'http://localhost:4200', 4 | password: 'Test@1234578', 5 | } -------------------------------------------------------------------------------- /tools/reset.sh: -------------------------------------------------------------------------------- 1 | rm -rf ~/.activepieces 2 | docker compose down 3 | docker volume rm activepieces_redis_data 4 | docker volume rm activepieces_postgres_data 5 | echo "Deleted activepieces dockers and volumes." -------------------------------------------------------------------------------- /tools/scripts/utils/exec.ts: -------------------------------------------------------------------------------- 1 | import { exec as execCallback } from 'node:child_process' 2 | import { promisify } from 'node:util' 3 | 4 | export const exec = promisify(execCallback) 5 | --------------------------------------------------------------------------------