├── .github └── workflows │ └── readme-generator.yml ├── .gitignore ├── .jshintrc ├── .phpcs.xml.dist ├── README.md ├── languages └── uncanny-automator.pot ├── license.txt ├── logs ├── .htaccess ├── index.php └── robots.txt ├── readme.txt ├── src ├── assets │ ├── _legacy │ │ └── vendor │ │ │ ├── codemirror │ │ │ ├── css │ │ │ │ └── codemirror.min.css │ │ │ └── js │ │ │ │ ├── autorefresh.js │ │ │ │ ├── codemirror.min.js │ │ │ │ ├── modes │ │ │ │ ├── css │ │ │ │ │ └── css.min.js │ │ │ │ ├── htmlmixed │ │ │ │ │ └── htmlmixed.min.js │ │ │ │ ├── javascript │ │ │ │ │ └── javascript.min.js │ │ │ │ └── xml │ │ │ │ │ └── xml.min.js │ │ │ │ ├── no-newlines.js │ │ │ │ ├── placeholder.js │ │ │ │ ├── search.js │ │ │ │ └── searchcursor.js │ │ │ └── tinymce │ │ │ └── plugins │ │ │ └── fullpage │ │ │ └── plugin.min.js │ └── build │ │ ├── 518.js │ │ ├── 518.js.map │ │ ├── admin-bar-rtl.css │ │ ├── admin-bar.asset.php │ │ ├── admin-bar.css │ │ ├── admin-bar.js │ │ ├── closure.asset.php │ │ ├── closure.js │ │ ├── closure.js.map │ │ ├── fonts │ │ ├── fa-duotone-900.ttf │ │ ├── fa-duotone-900.woff2 │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.ttf │ │ └── fa-solid-900.woff2 │ │ ├── img │ │ ├── ai.svg │ │ ├── arrow-settings.svg │ │ ├── avi.svg │ │ ├── bmp.svg │ │ ├── credits-left-hundred.svg │ │ ├── credits-left-zero.svg │ │ ├── csv.svg │ │ ├── default.svg │ │ ├── delay-banner.svg │ │ ├── delay-or-schedule-actions-2-2x.png │ │ ├── delay-or-schedule-actions-landscape-2-2x.png │ │ ├── dll.svg │ │ ├── doc.svg │ │ ├── docx.svg │ │ ├── dwg.svg │ │ ├── exe.svg │ │ ├── facebook.svg │ │ ├── filter-banner.svg │ │ ├── flv.svg │ │ ├── gif.svg │ │ ├── google.svg │ │ ├── gravatar-user-deleted.svg │ │ ├── happy-face.svg │ │ ├── html.svg │ │ ├── icon.svg │ │ ├── integrations-page-banner-background.png │ │ ├── iso.svg │ │ ├── java.svg │ │ ├── jpg.svg │ │ ├── json.svg │ │ ├── logo-horizontal.svg │ │ ├── mdb.svg │ │ ├── microsoft.svg │ │ ├── mid.svg │ │ ├── mov.svg │ │ ├── mp3.svg │ │ ├── mp4.svg │ │ ├── mpeg.svg │ │ ├── multiple-actions-2-2x.png │ │ ├── multiple-actions-landscape-2-2x.png │ │ ├── multiple-triggers-2-2x.png │ │ ├── multiple-triggers-landscape-2-2x.png │ │ ├── pdf.svg │ │ ├── png.svg │ │ ├── post-loop-banner.svg │ │ ├── ppt.svg │ │ ├── psd.svg │ │ ├── pub.svg │ │ ├── rar.svg │ │ ├── recipe-type-anonymous.svg │ │ ├── recipe-type-user.svg │ │ ├── robot-feedback.svg │ │ ├── robot-site-not-connected.svg │ │ ├── rss.svg │ │ ├── svg.svg │ │ ├── tiff.svg │ │ ├── token-loop-banner.svg │ │ ├── txt.svg │ │ ├── user-loop-banner.svg │ │ ├── user-selector-existing-user.svg │ │ ├── user-selector-new-user.svg │ │ ├── wav.svg │ │ ├── wma.svg │ │ ├── wpforms-automator-icon.png │ │ ├── x-twitter.svg │ │ ├── xls.svg │ │ ├── xml.svg │ │ ├── youtube.svg │ │ └── zip.svg │ │ ├── main-rtl.css │ │ ├── main.asset.php │ │ ├── main.css │ │ ├── main.js │ │ ├── main.js.map │ │ ├── tooltip-notification-rtl.css │ │ ├── tooltip-notification.asset.php │ │ ├── tooltip-notification.css │ │ ├── tooltip-notification.js │ │ ├── tooltip-notification.js.map │ │ ├── wpforms-rtl.css │ │ ├── wpforms.asset.php │ │ ├── wpforms.css │ │ ├── wpforms.js │ │ └── wpforms.js.map ├── class-automator-load.php ├── class-db-tables.php ├── core │ ├── actionify-triggers │ │ ├── class-trigger-arguments.php │ │ ├── class-trigger-engine.php │ │ ├── class-trigger-query.php │ │ └── class-trigger-queue.php │ ├── admin │ │ ├── addons │ │ │ ├── class-addons.php │ │ │ └── view-addons.php │ │ ├── admin-logs │ │ │ ├── admin-logs.php │ │ │ ├── tabs │ │ │ │ ├── action.php │ │ │ │ ├── api.php │ │ │ │ ├── recipe.php │ │ │ │ └── trigger.php │ │ │ └── wp-list-table │ │ │ │ └── class-logs-list-table.php │ │ ├── admin-settings │ │ │ ├── admin-settings.php │ │ │ └── tabs │ │ │ │ ├── addons.php │ │ │ │ ├── advanced-tabs │ │ │ │ ├── automator-cache.php │ │ │ │ └── background-actions.php │ │ │ │ ├── advanced.php │ │ │ │ ├── general-tabs │ │ │ │ ├── improve-automator.php │ │ │ │ ├── license.php │ │ │ │ └── logs.php │ │ │ │ ├── general.php │ │ │ │ └── premium-integrations.php │ │ ├── admin-tools │ │ │ ├── admin-tools.php │ │ │ └── tabs │ │ │ │ ├── debug.php │ │ │ │ ├── debug │ │ │ │ └── debug.php │ │ │ │ ├── status-tabs │ │ │ │ └── status-table.php │ │ │ │ ├── status.php │ │ │ │ ├── tools.php │ │ │ │ └── tools │ │ │ │ └── tools.php │ │ ├── api-log │ │ │ ├── class-api-log-table.php │ │ │ └── class-api-log.php │ │ ├── class-activity-log.php │ │ ├── class-admin-menu.php │ │ ├── class-admin-template-library.php │ │ ├── class-automator-review.php │ │ ├── class-copy-recipe-parts.php │ │ ├── class-export-recipe.php │ │ ├── class-import-recipe.php │ │ ├── class-pricing-plan-resolver.php │ │ ├── class-prune-logs.php │ │ ├── class-wpforms-provider.php │ │ ├── deactivation-survey │ │ │ └── class-automator-deactivation-survey.php │ │ ├── notifications │ │ │ ├── notifications.php │ │ │ └── views │ │ │ │ └── banner.php │ │ ├── pro-upgrade │ │ │ ├── class-pro-upsell.php │ │ │ └── view-pro-upsell.php │ │ ├── setup-wizard │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ └── setup-wizard.css │ │ │ │ └── images │ │ │ │ │ └── logo.svg │ │ │ ├── setup-wizard.php │ │ │ └── src │ │ │ │ └── views │ │ │ │ ├── step-1.php │ │ │ │ ├── step-2.php │ │ │ │ ├── step-3.php │ │ │ │ └── welcome.php │ │ └── tooltip-notification │ │ │ ├── class-tooltip-notification.php │ │ │ ├── tooltips │ │ │ └── class-create-recipe-reminder.php │ │ │ └── trait-tooltip-notification.php │ ├── anon │ │ ├── class-add-anon-recipe-type.php │ │ └── class-automator-handle-anon.php │ ├── automator-post-types │ │ ├── uo-action │ │ │ └── class-actions-post-type.php │ │ ├── uo-closure │ │ │ └── class-closures-post-type.php │ │ ├── uo-recipe │ │ │ ├── class-recipe-post-metabox.php │ │ │ ├── class-recipe-post-rest-api.php │ │ │ ├── class-recipe-post-type.php │ │ │ └── class-recipe-post-utilities.php │ │ ├── uo-taxonomies │ │ │ └── class-automator-taxonomies.php │ │ └── uo-trigger │ │ │ └── class-triggers-post-type.php │ ├── blocks │ │ └── class-blocks.php │ ├── class-automator-db.php │ ├── class-utilities.php │ ├── classes │ │ ├── automator-options │ │ │ ├── array-option-keys.php │ │ │ ├── class-automator-option-formatter.php │ │ │ ├── class-automator-options-cache.php │ │ │ ├── class-automator-options-migration.php │ │ │ └── class-automator-options-query.php │ │ ├── class-actionify-triggers.php │ │ ├── class-add-user-recipe-type.php │ │ ├── class-api-server.php │ │ ├── class-automator-options.php │ │ ├── class-background-actions.php │ │ ├── class-calculation-token.php │ │ ├── class-incoming-webhook.php │ │ ├── class-initialize-automator.php │ │ ├── class-legacy-integrations-files.php │ │ ├── class-populate-from-query.php │ │ ├── class-set-up-automator.php │ │ └── class-usage-reports.php │ ├── deprecated │ │ └── legacy-token-parser.php │ ├── includes │ │ ├── automator-settings.php │ │ ├── pro-items-list.php │ │ └── recipe-logs-view.php │ ├── lib │ │ ├── ai │ │ │ ├── adapters │ │ │ │ ├── api │ │ │ │ │ └── credit-adapter.php │ │ │ │ ├── config │ │ │ │ │ └── integration-config.php │ │ │ │ ├── http │ │ │ │ │ └── integration-http-client.php │ │ │ │ ├── integration │ │ │ │ │ └── ai-settings.php │ │ │ │ └── logger │ │ │ │ │ └── logger.php │ │ │ ├── core │ │ │ │ ├── abstracts │ │ │ │ │ ├── base-ai-provider-abstract.php │ │ │ │ │ └── openai-compatible-provider-abstract.php │ │ │ │ ├── interfaces │ │ │ │ │ ├── config-interface.php │ │ │ │ │ ├── credits-manager-interface.php │ │ │ │ │ ├── http-client-interface.php │ │ │ │ │ ├── logger-interface.php │ │ │ │ │ ├── provider-interface.php │ │ │ │ │ └── settings-interface.php │ │ │ │ └── traits │ │ │ │ │ ├── base-payload-builder-trait.php │ │ │ │ │ ├── base-payload-message-array-builder-trait.php │ │ │ │ │ └── base-provider-trait.php │ │ │ ├── default-providers-loader.php │ │ │ ├── exceptions │ │ │ │ ├── configuration-exception.php │ │ │ │ ├── response-exception.php │ │ │ │ ├── service-exception.php │ │ │ │ └── validation-exception.php │ │ │ ├── factory │ │ │ │ └── provider-factory.php │ │ │ ├── http │ │ │ │ ├── components │ │ │ │ │ ├── body.php │ │ │ │ │ ├── endpoint.php │ │ │ │ │ └── headers.php │ │ │ │ ├── payload.php │ │ │ │ ├── request.php │ │ │ │ └── response.php │ │ │ ├── provider │ │ │ │ ├── claude-provider.php │ │ │ │ ├── cohere-provider.php │ │ │ │ ├── deepseek-provider.php │ │ │ │ ├── gemini-provider.php │ │ │ │ ├── grok-provider.php │ │ │ │ ├── mistral-provider.php │ │ │ │ ├── openai-provider.php │ │ │ │ └── perplexity-provider.php │ │ │ └── views │ │ │ │ ├── settings-html.php │ │ │ │ └── settings.php │ │ ├── app-integrations │ │ │ ├── abstract-api-caller.php │ │ │ ├── abstract-app-helpers.php │ │ │ ├── abstract-app-integration.php │ │ │ └── abstract-app-webhooks.php │ │ ├── auth.php │ │ ├── class-automator-functions.php │ │ ├── class-recipe-template-library.php │ │ ├── helper-functions │ │ │ └── automator-helper-functions.php │ │ ├── helpers │ │ │ ├── class-automator-cache-handler.php │ │ │ ├── class-automator-email-helpers.php │ │ │ ├── class-automator-helpers.php │ │ │ ├── class-automator-recipe-helpers-field.php │ │ │ ├── class-automator-recipe-helpers.php │ │ │ └── class-automator-trigger-condition-helpers.php │ │ ├── process │ │ │ ├── class-automator-action-status.php │ │ │ ├── class-automator-recipe-process-complete.php │ │ │ ├── class-automator-recipe-process-user.php │ │ │ └── class-automator-recipe-process.php │ │ ├── recipe-parts │ │ │ ├── abstract-integration.php │ │ │ ├── actions │ │ │ │ ├── abstract-action.php │ │ │ │ ├── abstract-app-action.php │ │ │ │ ├── trait-action-conditions.php │ │ │ │ ├── trait-action-helpers-email.php │ │ │ │ ├── trait-action-helpers.php │ │ │ │ ├── trait-action-parser.php │ │ │ │ ├── trait-action-process.php │ │ │ │ ├── trait-action-setup.php │ │ │ │ ├── trait-action-tokens.php │ │ │ │ └── trait-properties.php │ │ │ ├── closures │ │ │ │ └── trait-closure-setup.php │ │ │ ├── global-custom-name-field.php │ │ │ ├── tokens │ │ │ │ ├── abstract-token.php │ │ │ │ ├── abstract-universal-token.php │ │ │ │ └── class-automator-tokens.php │ │ │ ├── trait-actions.php │ │ │ ├── trait-closures.php │ │ │ ├── trait-integrations.php │ │ │ ├── trait-trigger-tokens.php │ │ │ ├── trait-webhooks.php │ │ │ └── triggers │ │ │ │ ├── abstract-app-trigger.php │ │ │ │ ├── abstract-trigger.php │ │ │ │ ├── trait-trigger-conditions.php │ │ │ │ ├── trait-trigger-filters.php │ │ │ │ ├── trait-trigger-process.php │ │ │ │ ├── trait-trigger-recipe-filters.php │ │ │ │ ├── trait-trigger-setup.php │ │ │ │ └── trait-triggers.php │ │ ├── settings │ │ │ ├── app-integration-settings.php │ │ │ ├── premium-integration-settings.php │ │ │ ├── trait-app-integration-settings-setup.php │ │ │ ├── trait-oauth-app-integration.php │ │ │ ├── trait-premium-integration-alerts.php │ │ │ ├── trait-premium-integration-items.php │ │ │ ├── trait-premium-integration-rest-processing.php │ │ │ ├── trait-premium-integration-templating-helpers.php │ │ │ ├── trait-premium-integration-templating.php │ │ │ ├── trait-premium-integration-webhook-settings.php │ │ │ ├── trait-premium-integrations.php │ │ │ └── trait-settings-options.php │ │ ├── traits │ │ │ └── singleton.php │ │ ├── utilities │ │ │ ├── class-automator-compression.php │ │ │ ├── class-automator-get-data.php │ │ │ ├── class-automator-http-response-code.php │ │ │ ├── class-automator-input-parser.php │ │ │ ├── class-automator-integrations-status.php │ │ │ ├── class-automator-registration.php │ │ │ ├── class-automator-system-report.php │ │ │ ├── class-automator-translations.php │ │ │ ├── class-automator-user-walkthroughs.php │ │ │ ├── class-automator-utilities.php │ │ │ ├── db │ │ │ │ ├── class-automator-db-handler-actions.php │ │ │ │ ├── class-automator-db-handler-api.php │ │ │ │ ├── class-automator-db-handler-closures.php │ │ │ │ ├── class-automator-db-handler-recipes.php │ │ │ │ ├── class-automator-db-handler-tokens.php │ │ │ │ ├── class-automator-db-handler-triggers.php │ │ │ │ └── class-automator-db-handler.php │ │ │ └── error │ │ │ │ ├── class-automator-error-messages.php │ │ │ │ ├── class-automator-error.php │ │ │ │ ├── class-automator-exception.php │ │ │ │ └── class-automator-wp-error.php │ │ └── webhooks │ │ │ ├── class-automator-send-webhook-ajax-handler.php │ │ │ ├── class-automator-send-webhook-fields.php │ │ │ ├── class-automator-send-webhook.php │ │ │ └── response-validator.php │ ├── migrations │ │ ├── abstract-migration.php │ │ ├── abstract-tokens-migration.php │ │ ├── class-migrate-nested-tokens-pro.php │ │ ├── class-migrate-nested-tokens.php │ │ ├── class-migrate-option-types.php │ │ ├── class-migrate-schedules.php │ │ ├── class-migrate-triggers.php │ │ └── class-sample-migration.php │ ├── services │ │ ├── addons │ │ │ ├── data │ │ │ │ ├── class-calls-to-action.php │ │ │ │ ├── class-external-feed.php │ │ │ │ ├── class-license-summary.php │ │ │ │ └── class-plan-resolver.php │ │ │ ├── lists │ │ │ │ ├── addon-card.php │ │ │ │ ├── page-notice.php │ │ │ │ └── plan-list.php │ │ │ └── plugins │ │ │ │ ├── class-edd-zip-url-exception.php │ │ │ │ ├── class-edd-zip-url.php │ │ │ │ └── class-manager.php │ │ ├── admin-post │ │ │ ├── routes-registry.php │ │ │ ├── routes.php │ │ │ └── routes │ │ │ │ ├── pro-auto-install.php │ │ │ │ └── pro-auto-install │ │ │ │ └── silent-upgrader-skin.php │ │ ├── app-integrations │ │ │ └── action-manager.php │ │ ├── cli │ │ │ └── logs │ │ │ │ └── prune-command.php │ │ ├── dashboard │ │ │ ├── recent-articles.php │ │ │ └── recipe-using-credits-utils.php │ │ ├── email │ │ │ ├── attachment │ │ │ │ ├── handler.php │ │ │ │ └── validator.php │ │ │ └── tester.php │ │ ├── file │ │ │ ├── extensions-support.php │ │ │ └── remote-file-extension-identifier.php │ │ ├── html-partial-renderer.php │ │ ├── integrations │ │ │ ├── fields.php │ │ │ └── structure.php │ │ ├── logger-auto-remove.php │ │ ├── logger-multiple-triggers-restore-failed-logs.php │ │ ├── logger.php │ │ ├── logger │ │ │ ├── action-fields-logger.php │ │ │ ├── async-logger.php │ │ │ ├── db │ │ │ │ └── data-access.php │ │ │ ├── recipe-objects-logger.php │ │ │ ├── singleton │ │ │ │ └── async-action-logger-singleton.php │ │ │ ├── token-logger.php │ │ │ └── trigger-fields-logger.php │ │ ├── loopable │ │ │ ├── action-loopable-token.php │ │ │ ├── action-loopable-token │ │ │ │ └── store.php │ │ │ ├── data-integrations │ │ │ │ ├── array-classifier.php │ │ │ │ ├── array-key-detector.php │ │ │ │ ├── csv-to-json-converter.php │ │ │ │ ├── json-to-array.php │ │ │ │ ├── traits │ │ │ │ │ ├── array-loopable.php │ │ │ │ │ └── token-loopable-hydratable.php │ │ │ │ ├── utils.php │ │ │ │ ├── xml-to-json-converter.php │ │ │ │ └── xml-xpath-generator.php │ │ │ ├── loopable-token-collection.php │ │ │ ├── loopable-token.php │ │ │ ├── trigger-loopable-token.php │ │ │ └── universal-loopable-token.php │ │ ├── markdown │ │ │ └── class-markdown-parser.php │ │ ├── plugin │ │ │ ├── class-info.php │ │ │ ├── class-manager.php │ │ │ ├── trait-manager-translations.php │ │ │ └── trait-manager-verification.php │ │ ├── properties.php │ │ ├── recipe │ │ │ ├── action │ │ │ │ └── token │ │ │ │ │ ├── entity.php │ │ │ │ │ ├── factory.php │ │ │ │ │ ├── hydrator.php │ │ │ │ │ ├── parser.php │ │ │ │ │ ├── registry.php │ │ │ │ │ └── store.php │ │ │ ├── builder │ │ │ │ └── settings │ │ │ │ │ ├── fields │ │ │ │ │ ├── field-collection.php │ │ │ │ │ └── field.php │ │ │ │ │ ├── repository │ │ │ │ │ ├── settings-repository.php │ │ │ │ │ ├── throttle-repository-interface.php │ │ │ │ │ └── throttle-repository.php │ │ │ │ │ └── use-cases │ │ │ │ │ ├── field-collection-manager.php │ │ │ │ │ └── field-manager.php │ │ │ ├── common │ │ │ │ ├── trait-json-serializer.php │ │ │ │ └── trait-setter-getter.php │ │ │ ├── process │ │ │ │ ├── throttle │ │ │ │ │ ├── recipe-throttle-settings-meta-dto.php │ │ │ │ │ ├── recipe-throttle-strategy.php │ │ │ │ │ ├── throttle-strategy-interface.php │ │ │ │ │ ├── time-unit-converter-trait.php │ │ │ │ │ └── user-throttle-strategy.php │ │ │ │ ├── throttler.php │ │ │ │ ├── universal-run-number-threshold.php │ │ │ │ └── user-run-number-threshold.php │ │ │ ├── structure.php │ │ │ └── structure │ │ │ │ ├── actions │ │ │ │ ├── actions.php │ │ │ │ ├── item │ │ │ │ │ ├── action.php │ │ │ │ │ ├── loop.php │ │ │ │ │ ├── loop │ │ │ │ │ │ ├── filters-db.php │ │ │ │ │ │ └── loop-db.php │ │ │ │ │ └── tokens.php │ │ │ │ └── user-selector.php │ │ │ │ ├── closure.php │ │ │ │ ├── fields.php │ │ │ │ ├── miscellaneous.php │ │ │ │ ├── pluggable │ │ │ │ └── conditions-pluggable.php │ │ │ │ ├── stats.php │ │ │ │ └── triggers │ │ │ │ ├── trigger │ │ │ │ ├── tokens.php │ │ │ │ ├── tokens │ │ │ │ │ └── common │ │ │ │ │ │ ├── parser.php │ │ │ │ │ │ └── token.php │ │ │ │ └── trigger.php │ │ │ │ └── triggers.php │ │ ├── resolver │ │ │ ├── conditions │ │ │ │ ├── errors-mapping.php │ │ │ │ └── errors-registry.php │ │ │ ├── fields-conditions-resolver.php │ │ │ ├── fields-resolver.php │ │ │ ├── fields-shared-callable.php │ │ │ └── recipe-actions-resolver.php │ │ ├── rest-routes.php │ │ ├── rest │ │ │ ├── auth │ │ │ │ └── auth.php │ │ │ └── endpoint │ │ │ │ ├── log-endpoint.php │ │ │ │ ├── log-endpoint │ │ │ │ ├── factory │ │ │ │ │ ├── automator-factory.php │ │ │ │ │ └── logs-factory.php │ │ │ │ ├── queries │ │ │ │ │ ├── action-logs-queries.php │ │ │ │ │ ├── loop-logs-queries.php │ │ │ │ │ ├── recipe-logs-queries.php │ │ │ │ │ ├── trigger-logs-queries.php │ │ │ │ │ └── view-queries │ │ │ │ │ │ ├── recipe.php │ │ │ │ │ │ └── trigger.php │ │ │ │ ├── resources │ │ │ │ │ ├── action-logs-helpers │ │ │ │ │ │ └── conditions-helper.php │ │ │ │ │ ├── action-logs-resources.php │ │ │ │ │ ├── loop-logs-resources.php │ │ │ │ │ ├── recipe-logs-resources.php │ │ │ │ │ └── trigger-logs-resources.php │ │ │ │ └── utils │ │ │ │ │ └── formatters-utils.php │ │ │ │ └── user-endpoint.php │ │ └── singleton │ │ │ └── parsed-token-records-singleton.php │ └── views │ │ ├── admin-dashboard.php │ │ ├── admin-dashboard │ │ └── blog-posts.php │ │ ├── admin-integrations │ │ ├── archive.php │ │ ├── archive │ │ │ ├── all-integrations.php │ │ │ ├── banner.php │ │ │ ├── collection.php │ │ │ ├── collections.php │ │ │ ├── integration-item.php │ │ │ └── search.php │ │ └── single.php │ │ ├── admin-logs │ │ ├── admin-logs.php │ │ ├── component │ │ │ └── logs.php │ │ ├── filters.php │ │ └── tab │ │ │ ├── action.php │ │ │ ├── action │ │ │ └── content.php │ │ │ ├── api.php │ │ │ ├── api │ │ │ └── content.php │ │ │ ├── recipe.php │ │ │ ├── recipe │ │ │ └── content.php │ │ │ ├── trigger.php │ │ │ └── trigger │ │ │ └── content.php │ │ ├── admin-recipe-template-library.php │ │ ├── admin-settings │ │ ├── admin-settings.php │ │ └── tab │ │ │ ├── addons.php │ │ │ ├── advanced.php │ │ │ ├── advanced │ │ │ ├── automator-cache.php │ │ │ └── background-actions.php │ │ │ ├── general.php │ │ │ ├── general │ │ │ ├── improve-automator.php │ │ │ ├── improve-automator │ │ │ │ ├── feedback.php │ │ │ │ ├── review.php │ │ │ │ └── usage-tracking.php │ │ │ ├── license.php │ │ │ ├── license │ │ │ │ ├── connect-site.php │ │ │ │ └── upgrade-to-pro.php │ │ │ ├── logs.php │ │ │ └── logs │ │ │ │ ├── auto-prune-logs-tease.php │ │ │ │ ├── delete-user-records.php │ │ │ │ ├── prune-logs.php │ │ │ │ ├── remove-delete-data-on-uninstall.php │ │ │ │ └── remove-recipe-log-on-completion.php │ │ │ ├── premium-integrations.php │ │ │ └── premium-integrations │ │ │ ├── none-selected.php │ │ │ └── not-connected.php │ │ ├── admin-tools-header.php │ │ ├── admin-tools │ │ ├── admin-tools.php │ │ └── tab │ │ │ ├── debug.php │ │ │ ├── debug │ │ │ ├── debug.php │ │ │ └── log-viewer.php │ │ │ ├── status.php │ │ │ ├── status │ │ │ └── status-table.php │ │ │ ├── tools.php │ │ │ └── tools │ │ │ └── tools.php │ │ ├── credits-remaining-0.php │ │ ├── credits-remaining-100.php │ │ ├── credits-remaining-25.php │ │ ├── filters.php │ │ ├── html-admin-status.php │ │ ├── html-database-tools.php │ │ ├── recipe-adminlist-import.php │ │ ├── recipe-logs-details.php │ │ ├── review-credits-used.php │ │ ├── review-emails-sent.php │ │ ├── review-recipes-count.php │ │ ├── review-user-dont-love-automator.php │ │ ├── review-user-love-automator.php │ │ ├── table-size-exceeds.php │ │ └── tracking-banner.php ├── global-functions.php ├── globals.php ├── integrations │ ├── active-campaign │ │ ├── actions │ │ │ ├── ac-annon-add.php │ │ │ ├── ac-annon-addtag.php │ │ │ ├── ac-annon-delete-contact.php │ │ │ ├── ac-annon-list-add.php │ │ │ ├── ac-annon-listremove.php │ │ │ ├── ac-annon-removetag.php │ │ │ ├── ac-user-add-tag.php │ │ │ ├── ac-user-add.php │ │ │ ├── ac-user-list-add.php │ │ │ ├── ac-user-list-remove.php │ │ │ └── ac-user-remove-tag.php │ │ ├── active-campaign-integration.php │ │ ├── helpers │ │ │ ├── active-campaign-api-caller.php │ │ │ ├── active-campaign-app-helpers.php │ │ │ └── active-campaign-webhooks.php │ │ ├── img │ │ │ └── activecampaign-icon.svg │ │ ├── load.php │ │ ├── settings │ │ │ └── active-campaign-settings.php │ │ ├── tokens │ │ │ └── ac-tokens.php │ │ └── triggers │ │ │ ├── ac-contact-tag-added.php │ │ │ └── ac-contact-tag-removed.php │ ├── advanced-ads │ │ ├── actions │ │ │ └── advads-ad-status-updated.php │ │ ├── add-advanced-ads-integration.php │ │ ├── helpers │ │ │ └── advanced-ads-helpers.php │ │ ├── img │ │ │ └── advanced-a-d-s-icon.svg │ │ ├── tokens │ │ │ └── advanced-ads-tokens.php │ │ └── triggers │ │ │ └── advads-ad-set-to-status.php │ ├── advanced-coupons │ │ ├── add-advanced-coupons-integration.php │ │ ├── helpers │ │ │ └── advanced-coupons-helpers.php │ │ ├── img │ │ │ └── advanced-coupons-icon.svg │ │ ├── tokens │ │ │ └── advanced-coupons-tokens.php │ │ └── triggers │ │ │ ├── advanced-coupons-user-receives-credit.php │ │ │ └── advanced-coupons-user-spends-credit.php │ ├── advanced │ │ ├── class-advanced-integration.php │ │ ├── img │ │ │ └── advanced-icon.svg │ │ ├── load.php │ │ └── tokens │ │ │ ├── calculation-token.php │ │ │ ├── postmeta-token.php │ │ │ ├── recipe-run-token.php │ │ │ ├── recipe-run-total-token.php │ │ │ └── usermeta-token.php │ ├── affiliate-wp │ │ ├── add-affwp-integration.php │ │ ├── helpers │ │ │ └── affwp-helpers.php │ │ ├── img │ │ │ └── affiliatewp-icon.svg │ │ ├── tokens │ │ │ └── affwp-tokens.php │ │ └── triggers │ │ │ ├── affwp-approvalwaiting.php │ │ │ ├── affwp-newaffiliate.php │ │ │ ├── affwp-newaffiliateapproved.php │ │ │ └── affwp-specifictypereferral.php │ ├── airtable │ │ ├── actions │ │ │ └── airtable-sendwebhook.php │ │ ├── add-airtable-integration.php │ │ └── img │ │ │ └── airtable-icon.svg │ ├── ameliabooking │ │ ├── add-ameliabooking-integration.php │ │ ├── helpers │ │ │ └── ameliabooking-helpers.php │ │ ├── img │ │ │ └── amelia-icon.svg │ │ ├── tokens │ │ │ └── ameliabooking-tokens.php │ │ └── triggers │ │ │ ├── amelia-appointment-booked.php │ │ │ ├── amelia-register-event.php │ │ │ ├── amelia-user-appointment-booked.php │ │ │ └── amelia-user-register-event.php │ ├── armember │ │ ├── actions │ │ │ └── armember-membership-plan-cancelled.php │ │ ├── add-armember-integration.php │ │ ├── helpers │ │ │ └── armember-helpers.php │ │ ├── img │ │ │ └── armember-icon.svg │ │ ├── tokens │ │ │ └── armember-tokens.php │ │ └── triggers │ │ │ ├── armember-membership-added.php │ │ │ └── armember-membership-cancelled.php │ ├── asana │ │ ├── actions │ │ │ ├── asana-add-comment-task.php │ │ │ ├── asana-add-tag-task.php │ │ │ ├── asana-create-task.php │ │ │ ├── asana-get-task-details.php │ │ │ ├── asana-remove-tag-task.php │ │ │ └── asana-update-task.php │ │ ├── asana-integration.php │ │ ├── helpers │ │ │ ├── asana-api-caller.php │ │ │ ├── asana-app-helpers.php │ │ │ ├── asana-custom-fields-helper.php │ │ │ └── trait-asana-task-data.php │ │ ├── img │ │ │ └── asana-icon.svg │ │ ├── load.php │ │ ├── settings │ │ │ └── asana-settings.php │ │ └── tokens │ │ │ └── asana-tokens.php │ ├── autonami │ │ ├── actions │ │ │ ├── autonami-add-contact-tag.php │ │ │ └── autonami-add-user-tag.php │ │ ├── add-autonami-integration.php │ │ ├── helpers │ │ │ └── autonami-helpers.php │ │ ├── img │ │ │ └── autonami-icon.svg │ │ ├── tokens │ │ │ └── autonami-tokens.php │ │ └── triggers │ │ │ ├── autonami-contact-added-to-list.php │ │ │ ├── autonami-contact-tag-added.php │ │ │ ├── autonami-user-added-to-list.php │ │ │ └── autonami-user-tag-added.php │ ├── aweber │ │ ├── actions │ │ │ ├── aweber-subscriber-add.php │ │ │ ├── aweber-subscriber-tag-add.php │ │ │ └── aweber-subscriber-update.php │ │ ├── aweber-integration.php │ │ ├── helpers │ │ │ └── aweber-helpers.php │ │ ├── img │ │ │ └── aweber-icon.svg │ │ ├── load.php │ │ └── settings │ │ │ └── settings-aweber.php │ ├── badgeos │ │ ├── actions │ │ │ ├── bo-awardachievement-a.php │ │ │ ├── bo-awardpoints-a.php │ │ │ └── bo-awardrank-a.php │ │ ├── add-bo-integration.php │ │ ├── helpers │ │ │ └── badgeos-helpers.php │ │ ├── img │ │ │ └── badgeos-icon.svg │ │ ├── tokens │ │ │ └── badgeos-tokens.php │ │ └── triggers │ │ │ └── index.php │ ├── bbpress │ │ ├── actions │ │ │ └── index.php │ │ ├── add-bb-integration.php │ │ ├── helpers │ │ │ └── bbpress-helpers.php │ │ ├── img │ │ │ └── bbpress-icon.svg │ │ ├── tokens │ │ │ ├── bbpress-anon-tokens.php │ │ │ └── bbpress-tokens.php │ │ └── triggers │ │ │ ├── anon-bb-newtopic.php │ │ │ └── bb-newtopic.php │ ├── bitly │ │ ├── actions │ │ │ └── bitly-shorten-url.php │ │ ├── bitly-integration.php │ │ ├── helpers │ │ │ ├── bitly-api-caller.php │ │ │ └── bitly-app-helpers.php │ │ ├── img │ │ │ └── bitly-icon.svg │ │ ├── load.php │ │ └── settings │ │ │ └── bitly-settings.php │ ├── bluesky │ │ ├── actions │ │ │ └── bluesky-create-post.php │ │ ├── bluesky-integration.php │ │ ├── helpers │ │ │ ├── bluesky-api-caller.php │ │ │ ├── bluesky-app-helpers.php │ │ │ ├── bluesky-media.php │ │ │ └── bluesky-post-record.php │ │ ├── img │ │ │ └── bluesky-icon.svg │ │ ├── load.php │ │ └── settings │ │ │ └── bluesky-settings.php │ ├── brevo │ │ ├── actions │ │ │ ├── brevo-add-contact-to-list.php │ │ │ ├── brevo-add-update-contact.php │ │ │ ├── brevo-delete-contact.php │ │ │ └── brevo-remove-contact-from-list.php │ │ ├── brevo-integration.php │ │ ├── helpers │ │ │ ├── brevo-api-caller.php │ │ │ └── brevo-app-helpers.php │ │ ├── img │ │ │ └── brevo-icon.svg │ │ ├── load.php │ │ └── settings │ │ │ └── settings-brevo.php │ ├── bricks-builder │ │ ├── bricks-builder-integration.php │ │ ├── helpers │ │ │ └── bricks-builder-helpers.php │ │ ├── img │ │ │ └── bricks-builder-icon.svg │ │ ├── load.php │ │ └── triggers │ │ │ ├── bricks-builder-anon-form-submit.php │ │ │ └── bricks-builder-user-submits-form.php │ ├── buddyboss │ │ ├── actions │ │ │ ├── bdb-addtogroup.php │ │ │ └── bdb-setuserstatus.php │ │ ├── add-bdb-integration.php │ │ ├── helpers │ │ │ └── buddyboss-helpers.php │ │ ├── img │ │ │ └── buddyboss-icon.svg │ │ ├── tokens │ │ │ ├── bdb-register-universal-tokens.php │ │ │ ├── bdb-tokens.php │ │ │ ├── bdb-universal-token.php │ │ │ ├── index.php │ │ │ └── loopable │ │ │ │ └── universal │ │ │ │ └── user-groups.php │ │ └── triggers │ │ │ ├── bdb-accactivate.php │ │ │ ├── bdb-activitystrm.php │ │ │ ├── bdb-newtopic.php │ │ │ ├── bdb-useracceptfriendrequest.php │ │ │ ├── bdb-usernewfollower.php │ │ │ ├── bdb-userpostreplyforum.php │ │ │ ├── bdb-usersendsfriendrequest.php │ │ │ ├── bdb-usersentinvite.php │ │ │ ├── bdb-userupdateavatar.php │ │ │ └── bdb-userupdateprofile.php │ ├── buddypress │ │ ├── actions │ │ │ └── bp-addtogroup.php │ │ ├── add-bp-integration.php │ │ ├── helpers │ │ │ └── buddypress-helpers.php │ │ ├── img │ │ │ └── buddypress-icon.svg │ │ ├── tokens │ │ │ ├── bp-register-universal-tokens.php │ │ │ ├── bp-tokens.php │ │ │ ├── bp-universal-token.php │ │ │ ├── index.php │ │ │ └── universal │ │ │ │ └── user-groups.php │ │ └── triggers │ │ │ ├── bp-accactivate.php │ │ │ ├── bp-activitystrm.php │ │ │ ├── bp-useracceptfriendrequest.php │ │ │ ├── bp-usersendsfriendrequest.php │ │ │ ├── bp-userupdateavatar.php │ │ │ └── bp-userupdateprofile.php │ ├── caldera-forms │ │ ├── add-cf-integration.php │ │ ├── helpers │ │ │ └── caldera-helpers.php │ │ ├── img │ │ │ └── caldera-forms-icon.svg │ │ ├── tokens │ │ │ └── cf-tokens.php │ │ └── triggers │ │ │ ├── anon-cf-subform.php │ │ │ └── cf-subform.php │ ├── campaign-monitor │ │ ├── actions │ │ │ ├── campaign-monitor-add-update-subscriber.php │ │ │ └── campaign-monitor-remove-subscriber.php │ │ ├── campaign-monitor-integration.php │ │ ├── helpers │ │ │ ├── campaign-monitor-api-caller.php │ │ │ └── campaign-monitor-app-helpers.php │ │ ├── img │ │ │ └── campaign-monitor-icon.svg │ │ ├── load.php │ │ └── settings │ │ │ └── settings-campaign-monitor.php │ ├── charitable │ │ ├── class-charitable-integration.php │ │ ├── helpers │ │ │ └── charitable-helpers.php │ │ ├── img │ │ │ └── charitable-icon.svg │ │ ├── load.php │ │ └── triggers │ │ │ ├── anon-charitable-made-donation.php │ │ │ └── charitable-user-made-donation.php │ ├── claude │ │ ├── actions │ │ │ └── claude-chat-generate.php │ │ ├── claude-integration.php │ │ ├── img │ │ │ └── claude-icon.svg │ │ └── load.php │ ├── clickup │ │ ├── actions │ │ │ ├── space-list-create.php │ │ │ ├── space-list-task-comment-create.php │ │ │ ├── space-list-task-create.php │ │ │ ├── space-list-task-delete.php │ │ │ ├── space-list-task-tag-add.php │ │ │ ├── space-list-task-tag-remove.php │ │ │ └── space-list-task-update.php │ │ ├── add-clickup-integration.php │ │ ├── fields │ │ │ ├── space-list-create-fields.php │ │ │ ├── space-list-task-comment-create-fields.php │ │ │ ├── space-list-task-create-fields.php │ │ │ ├── space-list-task-tag-fields.php │ │ │ └── space-list-task-update-fields.php │ │ ├── helpers │ │ │ └── clickup-helpers.php │ │ ├── img │ │ │ └── clickup-icon.svg │ │ ├── settings │ │ │ ├── assets │ │ │ │ └── scripts.js │ │ │ ├── settings-clickup.php │ │ │ └── view-clickup.php │ │ └── utilities │ │ │ └── time-utility.php │ ├── code-snippets │ │ ├── actions │ │ │ ├── code-snippets-activate-snippet.php │ │ │ └── code-snippets-deactivate-snippet.php │ │ ├── code-snippets-integration.php │ │ ├── helpers │ │ │ └── code-snippets-helpers.php │ │ ├── img │ │ │ └── code-snippets-icon.svg │ │ └── load.php │ ├── cohere │ │ ├── actions │ │ │ └── cohere-chat-generate.php │ │ ├── cohere-integration.php │ │ ├── img │ │ │ └── cohere-icon.svg │ │ └── load.php │ ├── common │ │ ├── class-common-integration.php │ │ ├── img │ │ │ └── common-icon.svg │ │ ├── load.php │ │ └── tokens │ │ │ ├── admin-email.php │ │ │ ├── current-blog-id.php │ │ │ ├── recipe-id.php │ │ │ ├── recipe-name.php │ │ │ ├── reset-pass-link.php │ │ │ ├── site-name.php │ │ │ ├── site-tagline.php │ │ │ ├── site-url.php │ │ │ ├── user-displayname.php │ │ │ ├── user-email.php │ │ │ ├── user-firstname.php │ │ │ ├── user-id.php │ │ │ ├── user-ip-address.php │ │ │ ├── user-lastname.php │ │ │ ├── user-locale.php │ │ │ ├── user-registration-date.php │ │ │ ├── user-reset-pass-url.php │ │ │ ├── user-role.php │ │ │ └── user-username.php │ ├── constant-contact │ │ ├── actions │ │ │ ├── contact-delete.php │ │ │ ├── contact-list-add-to.php │ │ │ ├── contact-tag-add-to.php │ │ │ └── create-update-contact.php │ │ ├── constant-contact-integration.php │ │ ├── deprecated │ │ │ └── create.php │ │ ├── helpers │ │ │ ├── constant-contact-api-caller.php │ │ │ ├── constant-contact-app-helpers.php │ │ │ └── constant-contact-custom-fields.php │ │ ├── img │ │ │ └── constant-contact-icon.svg │ │ ├── load.php │ │ └── settings │ │ │ └── constant-contact-settings.php │ ├── contact-form7 │ │ ├── actions │ │ │ └── index.php │ │ ├── add-cf7-integration.php │ │ ├── helpers │ │ │ └── contact-form7-helpers.php │ │ ├── img │ │ │ └── contact-form-7-icon.svg │ │ ├── tokens │ │ │ └── cf7-tokens.php │ │ └── triggers │ │ │ ├── anon-cf7-subform.php │ │ │ └── cf7-subform.php │ ├── convertkit │ │ ├── actions │ │ │ ├── convertkit-form-subscriber-add.php │ │ │ ├── convertkit-subscriber-sequence-add.php │ │ │ ├── convertkit-subscriber-tag-add.php │ │ │ └── convertkit-subscriber-tag-remove.php │ │ ├── add-convertkit-integration.php │ │ ├── helpers │ │ │ └── convertkit-helpers.php │ │ ├── img │ │ │ └── kit-icon.svg │ │ └── settings │ │ │ ├── assets │ │ │ └── script.js │ │ │ ├── convertkit-settings.php │ │ │ └── convertkit-view-settings.php │ ├── datetime │ │ ├── class-date-integration.php │ │ ├── img │ │ │ └── date-time-icon.svg │ │ ├── load.php │ │ └── tokens │ │ │ ├── current-date-time.php │ │ │ ├── current-date-timestamp.php │ │ │ ├── current-date.php │ │ │ ├── current-day-of-month.php │ │ │ ├── current-day.php │ │ │ ├── current-month-numeric-leading-zero.php │ │ │ ├── current-month-numeric.php │ │ │ ├── current-month.php │ │ │ ├── current-time.php │ │ │ └── current-timestamp.php │ ├── deepseek │ │ ├── actions │ │ │ └── deepseek-chat-generate.php │ │ ├── deepseek-integration.php │ │ ├── img │ │ │ └── deepseek-icon.svg │ │ └── load.php │ ├── discord │ │ ├── actions │ │ │ ├── discord-add-member-to-channel.php │ │ │ ├── discord-assign-role-member.php │ │ │ ├── discord-create-channel.php │ │ │ ├── discord-invite-member-to-server.php │ │ │ ├── discord-remove-member.php │ │ │ ├── discord-remove-role-from-member.php │ │ │ ├── discord-send-direct-message-to-member.php │ │ │ ├── discord-send-message-to-channel.php │ │ │ └── discord-update-member.php │ │ ├── discord-integration.php │ │ ├── helpers │ │ │ ├── discord-api-caller.php │ │ │ └── discord-app-helpers.php │ │ ├── img │ │ │ └── discord-icon.svg │ │ ├── load.php │ │ ├── migrations │ │ │ └── discord-member-encryption-migration.php │ │ ├── settings │ │ │ └── discord-settings.php │ │ ├── shortcodes │ │ │ └── discord-user-mapping-shortcode.php │ │ └── tokens │ │ │ └── discord-universal-token.php │ ├── divi │ │ ├── add-divi-integration.php │ │ ├── helpers │ │ │ └── divi-helpers.php │ │ ├── img │ │ │ └── divi-icon.svg │ │ ├── tokens │ │ │ └── divi-tokens.php │ │ └── triggers │ │ │ ├── anon-divi-submitform-dep.php │ │ │ ├── anon-divi-submitform.php │ │ │ ├── divi-submitform-dep.php │ │ │ └── divi-submitform.php │ ├── drip │ │ ├── actions │ │ │ ├── drip-add-tag.php │ │ │ ├── drip-create-subscriber.php │ │ │ ├── drip-delete-subscriber.php │ │ │ ├── drip-remove-from-campaign.php │ │ │ ├── drip-remove-tag.php │ │ │ ├── drip-subscribe-to-campaign.php │ │ │ └── drip-unsubscribe-all.php │ │ ├── add-drip-integration.php │ │ ├── functions │ │ │ └── drip-functions.php │ │ ├── helpers │ │ │ └── drip-helpers.php │ │ ├── img │ │ │ └── drip-icon.svg │ │ └── settings │ │ │ ├── settings-drip.php │ │ │ └── view-drip.php │ ├── duplicator │ │ ├── actions │ │ │ └── initiate-a-backup.php │ │ ├── duplicator-integration.php │ │ ├── img │ │ │ └── duplicator-icon.svg │ │ ├── load.php │ │ └── triggers │ │ │ └── backup-completes-with-status.php │ ├── easy-affiliate │ │ ├── add-esaf-integration.php │ │ ├── helpers │ │ │ └── easy-affiliate-helpers.php │ │ ├── img │ │ │ └── easy-affiliate-icon.svg │ │ ├── tokens │ │ │ └── esaf-tokens.php │ │ └── triggers │ │ │ ├── esaf-affiliate-added.php │ │ │ └── esaf-sale-recorded.php │ ├── edd-recurring │ │ ├── actions │ │ │ └── edd-cancel-users-subscription.php │ │ ├── edd-recurring-integration.php │ │ ├── helpers │ │ │ └── edd-recurring-helpers.php │ │ ├── img │ │ │ └── easy-digital-downloads-icon.svg │ │ ├── load.php │ │ ├── migrations │ │ │ └── migrate-edd-to-eddr.php │ │ └── triggers │ │ │ └── edd-user-subscribes-to-download.php │ ├── edd-sl │ │ ├── edd-sl-integration.php │ │ ├── helpers │ │ │ └── edd-sl-helpers.php │ │ ├── img │ │ │ └── easy-digital-downloads-icon.svg │ │ ├── load.php │ │ ├── migrations │ │ │ └── edd-sl-hook-migration.php │ │ └── triggers │ │ │ ├── edd-sl-license-created-for-download.php │ │ │ ├── edd-sl-license-expired-for-download.php │ │ │ ├── edd-sl-users-license-created-for-download.php │ │ │ └── edd-sl-users-license-expired-for-download.php │ ├── edd │ │ ├── edd-integration.php │ │ ├── helpers │ │ │ └── edd-helpers.php │ │ ├── img │ │ │ └── easy-digital-downloads-icon.svg │ │ ├── load.php │ │ ├── tokens │ │ │ ├── edd-tokens.php │ │ │ ├── edd-user-address-line-1-token.php │ │ │ ├── edd-user-address-line-2-token.php │ │ │ ├── edd-user-city-token.php │ │ │ ├── edd-user-country-token.php │ │ │ ├── edd-user-spent-token.php │ │ │ ├── edd-user-state-token.php │ │ │ └── loopable │ │ │ │ └── universal │ │ │ │ └── user-orders.php │ │ └── triggers │ │ │ ├── edd-anon-product-purchase.php │ │ │ ├── edd-orderdone.php │ │ │ ├── edd-orderrefunded.php │ │ │ ├── edd-productpurchase.php │ │ │ └── edd-productpurchasewithprice.php │ ├── elementor │ │ ├── add-elem-integration.php │ │ ├── helpers │ │ │ └── elementor-helpers.php │ │ ├── img │ │ │ └── elementor-icon.svg │ │ ├── tokens │ │ │ └── elem-tokens.php │ │ └── triggers │ │ │ ├── anon-elem-submitform.php │ │ │ ├── elem-post-published.php │ │ │ └── elem-submitform.php │ ├── emails │ │ ├── actions │ │ │ └── emails-send-emails.php │ │ ├── add-emails-integration.php │ │ ├── helpers │ │ │ └── emails-helpers.php │ │ └── img │ │ │ └── emails-icon.svg │ ├── event-tickets │ │ ├── actions │ │ │ └── index.php │ │ ├── add-et-integration.php │ │ ├── helpers │ │ │ └── event-tickets-helpers.php │ │ ├── img │ │ │ └── the-events-calendar-icon.svg │ │ ├── tokens │ │ │ └── ec-tokens.php │ │ └── triggers │ │ │ └── ec-register.php │ ├── events-manager │ │ ├── actions │ │ │ └── index.php │ │ ├── events-manger-integration.php │ │ ├── helpers │ │ │ └── events-manager-helpers.php │ │ ├── img │ │ │ └── events-manager-icon.svg │ │ ├── load.php │ │ ├── tokens │ │ │ └── em-tokens.php │ │ └── triggers │ │ │ ├── anon-em-register.php │ │ │ ├── em-booking-approved.php │ │ │ ├── em-event-published.php │ │ │ └── em-register.php │ ├── everest-froms │ │ ├── everest-forms-integration.php │ │ ├── helpers │ │ │ └── everest-forms-helpers.php │ │ ├── img │ │ │ └── everest-forms-icon.svg │ │ ├── load.php │ │ └── triggers │ │ │ ├── anon-form-submitted.php │ │ │ └── user-submits-form.php │ ├── facebook-groups │ │ ├── actions │ │ │ ├── facebook-group-publish-link.php │ │ │ ├── facebook-group-publish-photo.php │ │ │ └── facebook-group-publish-post.php │ │ ├── add-facebook-groups-integration.php │ │ ├── helpers │ │ │ └── facebook-groups-helpers.php │ │ ├── img │ │ │ └── facebook-icon.svg │ │ └── settings │ │ │ ├── assets │ │ │ ├── script.js │ │ │ └── style.css │ │ │ ├── settings-facebook-groups.php │ │ │ └── view-facebook-groups.php │ ├── facebook-lead-ads │ │ ├── class-facebook-lead-ads.php │ │ ├── helpers │ │ │ └── facebook-lead-ads-helpers.php │ │ ├── img │ │ │ └── facebook-lead-ads-icon.svg │ │ ├── load.php │ │ ├── settings │ │ │ ├── assets │ │ │ │ ├── pages.js │ │ │ │ ├── style.css │ │ │ │ └── test-connection.js │ │ │ ├── facebook-lead-ads-settings.php │ │ │ └── views │ │ │ │ ├── mock.html │ │ │ │ ├── output-content-bottom-left.php │ │ │ │ ├── output-content-bottom-right.php │ │ │ │ └── output-content-partial.php │ │ ├── triggers │ │ │ └── lead-created.php │ │ └── utilities │ │ │ ├── client.php │ │ │ ├── connections-manager.php │ │ │ ├── credentials-manager.php │ │ │ ├── page-connection-verifier.php │ │ │ ├── rest-api.php │ │ │ └── tokens-handler.php │ ├── facebook │ │ ├── actions │ │ │ ├── facebook-page-publish-link.php │ │ │ ├── facebook-page-publish-photo.php │ │ │ └── facebook-page-publish-post.php │ │ ├── add-facebook-integration.php │ │ ├── helpers │ │ │ └── facebook-helpers.php │ │ ├── img │ │ │ └── facebook-icon.svg │ │ └── settings │ │ │ ├── assets │ │ │ ├── script.js │ │ │ └── style.css │ │ │ ├── settings-facebook.php │ │ │ └── view-facebook.php │ ├── fluent-booking │ │ ├── actions │ │ │ └── fluent-booking-new-booking.php │ │ ├── fluent-booking-integration.php │ │ ├── helpers │ │ │ └── fluent-booking-helpers.php │ │ ├── img │ │ │ └── fluentbooking-icon.svg │ │ ├── load.php │ │ └── triggers │ │ │ ├── fluent-booking-group-meeting-cancelled.php │ │ │ ├── fluent-booking-group-meeting-scheduled.php │ │ │ ├── fluent-booking-one-to-one-meeting-cancelled.php │ │ │ └── fluent-booking-one-to-one-meeting-scheduled.php │ ├── fluent-community │ │ ├── actions │ │ │ ├── fluentcommunity-add-user-to-space.php │ │ │ └── fluentcommunity-enroll-user-course.php │ │ ├── fluent-community-intergration.php │ │ ├── helpers │ │ │ └── fluent-community-helpers.php │ │ ├── img │ │ │ └── fluent-community-icon.svg │ │ ├── load.php │ │ └── triggers │ │ │ ├── fluentcommunity-user-course-completed.php │ │ │ ├── fluentcommunity-user-course-enrolled.php │ │ │ ├── fluentcommunity-user-lesson-completed.php │ │ │ ├── fluentcommunity-user-space-joined.php │ │ │ └── fluentcommunity-user-space-posted.php │ ├── fluent-crm │ │ ├── actions │ │ │ ├── fcrm-add-contact.php │ │ │ ├── fcrm-tag-to-contact.php │ │ │ ├── fcrm-tag-to-user.php │ │ │ └── fcrm-user-to-list.php │ │ ├── add-fcrm-integration.php │ │ ├── helpers │ │ │ └── fluent-crm-helpers.php │ │ ├── img │ │ │ └── fluent-crm-icon.svg │ │ ├── tokens │ │ │ └── fcrm-tokens.php │ │ └── triggers │ │ │ ├── anon-fcrm-added-to-list.php │ │ │ ├── anon-fcrm-contact-status-updated.php │ │ │ ├── anon-fcrm-tag-added.php │ │ │ ├── fcrm-add-user-to-list.php │ │ │ ├── fcrm-tag-added-to-user.php │ │ │ └── fcrm-user-status-updated.php │ ├── fluent-support │ │ ├── actions │ │ │ └── index.php │ │ ├── add-flsupport-integration.php │ │ ├── helpers │ │ │ └── flsupport-helpers.php │ │ ├── img │ │ │ └── fluent-support-icon.svg │ │ ├── tokens │ │ │ └── flsupport-tokens.php │ │ └── triggers │ │ │ ├── flsupport-anon-ticket-opened.php │ │ │ ├── flsupport-ticketclosedcustomer.php │ │ │ ├── flsupport-ticketcreatedcustomer.php │ │ │ ├── flsupport-ticketrepliedagent.php │ │ │ └── flsupport-ticketrepliedcustomer.php │ ├── formidable │ │ ├── add-fi-integration.php │ │ ├── helpers │ │ │ └── formidable-helpers.php │ │ ├── img │ │ │ └── formidable-forms-icon.svg │ │ ├── tokens │ │ │ └── fi-tokens.php │ │ └── triggers │ │ │ ├── anon-fi-submitform.php │ │ │ └── fi-submitform.php │ ├── forminator │ │ ├── add-fr-integration.php │ │ ├── helpers │ │ │ └── forminator-helpers.php │ │ ├── img │ │ │ └── forminator-icon.svg │ │ ├── tokens │ │ │ └── fr-tokens.php │ │ └── triggers │ │ │ ├── anon-fr-submitform.php │ │ │ └── fr-submitform.php │ ├── gamipress │ │ ├── actions │ │ │ ├── gp-awardachievement-a.php │ │ │ ├── gp-awardpoints-a.php │ │ │ └── gp-awardrank-a.php │ │ ├── add-gp-integration.php │ │ ├── helpers │ │ │ └── gamipress-helpers.php │ │ ├── img │ │ │ └── gamipress-icon.svg │ │ ├── tokens │ │ │ └── gamipress-tokens.php │ │ └── triggers │ │ │ ├── gp-deduct-user-points.php │ │ │ └── gp-earnsspecificpoints.php │ ├── gemini │ │ ├── actions │ │ │ └── gemini-chat-generate.php │ │ ├── gemini-integration.php │ │ ├── img │ │ │ └── gemini-icon.svg │ │ └── load.php │ ├── get-response │ │ ├── actions │ │ │ ├── gr-add-update-contact.php │ │ │ └── gr-delete-contact.php │ │ ├── get-response-integration.php │ │ ├── helpers │ │ │ ├── get-response-api-caller.php │ │ │ └── get-response-app-helpers.php │ │ ├── img │ │ │ └── getresponse-icon.svg │ │ ├── load.php │ │ └── settings │ │ │ └── get-response-settings.php │ ├── github │ │ ├── actions │ │ │ ├── github-add-comment-issue-or-pr.php │ │ │ ├── github-add-label-to-issue-pr.php │ │ │ ├── github-add-release-tag-to-branch.php │ │ │ └── github-remove-label-from-issue-pr.php │ │ ├── github-integration.php │ │ ├── helpers │ │ │ ├── github-api-caller.php │ │ │ └── github-app-helpers.php │ │ ├── img │ │ │ └── github-icon.svg │ │ ├── load.php │ │ ├── settings │ │ │ └── github-settings.php │ │ └── tokens │ │ │ └── github-tokens.php │ ├── give │ │ ├── actions │ │ │ └── index.php │ │ ├── add-give-integration.php │ │ ├── helpers │ │ │ └── give-helpers.php │ │ ├── img │ │ │ └── givewp-icon.svg │ │ ├── tokens │ │ │ └── give-tokens.php │ │ └── triggers │ │ │ ├── anon-make-donation.php │ │ │ └── make-donation.php │ ├── google-calendar │ │ ├── actions │ │ │ ├── gcalendar-addattendee.php │ │ │ ├── gcalendar-addevent.php │ │ │ └── gcalendar-removeattendee.php │ │ ├── google-calendar-integration.php │ │ ├── helpers │ │ │ ├── google-calendar-api-caller.php │ │ │ └── google-calendar-app-helpers.php │ │ ├── img │ │ │ └── google-calendar-icon.svg │ │ ├── load.php │ │ └── settings │ │ │ └── settings-google-calendar.php │ ├── google-contacts │ │ ├── actions │ │ │ ├── contact-group-add-to.php │ │ │ ├── contact-group-create.php │ │ │ └── create.php │ │ ├── google-contacts-integration.php │ │ ├── helpers │ │ │ ├── google-contacts-api-caller.php │ │ │ └── google-contacts-helper.php │ │ ├── img │ │ │ └── google-contacts-icon.svg │ │ ├── load.php │ │ └── settings │ │ │ └── google-contacts-settings.php │ ├── google-sheet │ │ ├── actions │ │ │ ├── sheet-add-row-v2.php │ │ │ ├── sheet-addarecord.php │ │ │ ├── sheet-updaterecord-v2.php │ │ │ └── sheet-updaterecord.php │ │ ├── add-google-sheet-integration.php │ │ ├── helpers │ │ │ └── google-sheet-helpers.php │ │ ├── img │ │ │ └── google-sheet-icon.svg │ │ ├── migrations │ │ │ ├── migrate-58.php │ │ │ └── views │ │ │ │ ├── migrate-58-fallback.php │ │ │ │ └── migrate-58.php │ │ ├── settings │ │ │ ├── assets │ │ │ │ └── style.css │ │ │ ├── file-picker-view.php │ │ │ ├── settings-google-sheet.php │ │ │ └── view-google-sheet.php │ │ ├── tokens │ │ │ └── index.php │ │ └── triggers │ │ │ └── index.php │ ├── gototraining │ │ ├── actions │ │ │ ├── gtt-registeruser.php │ │ │ └── gtt-unregisteruser.php │ │ ├── add-gtt-integration.php │ │ ├── helpers │ │ │ └── gototraining-helpers.php │ │ ├── img │ │ │ └── gototraining-icon.svg │ │ ├── settings │ │ │ ├── gototraining-settings.php │ │ │ └── view-gototraining.php │ │ ├── tokens │ │ │ └── index.php │ │ └── triggers │ │ │ └── index.php │ ├── gotowebinar │ │ ├── actions │ │ │ ├── gtw-registeruser.php │ │ │ └── gtw-unregisteruser.php │ │ ├── add-gtw-integration.php │ │ ├── helpers │ │ │ └── gotowebinar-helpers.php │ │ ├── img │ │ │ └── gotowebinar-icon.svg │ │ ├── settings │ │ │ ├── gotowebinar-settings.php │ │ │ └── view-gotowebinar.php │ │ ├── tokens │ │ │ └── index.php │ │ └── triggers │ │ │ └── index.php │ ├── gravity-forms │ │ ├── actions │ │ │ └── index.php │ │ ├── class-gf-integration.php │ │ ├── helpers │ │ │ └── gravity-forms-helpers.php │ │ ├── img │ │ │ └── gravity-forms-icon.svg │ │ ├── load.php │ │ ├── tokens │ │ │ ├── gf-common-tokens.php │ │ │ ├── gf-new-tokens.php │ │ │ └── gf-tokens.php │ │ └── triggers │ │ │ ├── anon-gf-form-entry-updated.php │ │ │ ├── anon-gf-subform.php │ │ │ ├── gf-subform-codes.php │ │ │ ├── gf-subform-groups.php │ │ │ └── gf-subform.php │ ├── grok │ │ ├── actions │ │ │ └── grok-chat-generate.php │ │ ├── grok-integration.php │ │ ├── img │ │ │ └── grok-icon.svg │ │ └── load.php │ ├── groundhogg │ │ ├── actions │ │ │ ├── gh-addtag.php │ │ │ ├── gh-create-update-contact.php │ │ │ └── gh-removetag.php │ │ ├── add-groundhogg-integration.php │ │ ├── helpers │ │ │ └── groundhogg-helpers.php │ │ ├── img │ │ │ └── groundhogg-icon.svg │ │ ├── tokens │ │ │ └── index.php │ │ └── triggers │ │ │ └── index.php │ ├── h5p │ │ ├── actions │ │ │ └── index.php │ │ ├── add-h5p-integration.php │ │ ├── helpers │ │ │ └── h5p-helpers.php │ │ ├── img │ │ │ └── h5p-icon.svg │ │ └── tokens │ │ │ └── index.php │ ├── happyforms │ │ ├── add-hf-integration.php │ │ ├── helpers │ │ │ └── happyforms-helpers.php │ │ ├── img │ │ │ └── happyforms-icon.svg │ │ ├── tokens │ │ │ └── hf-tokens.php │ │ └── triggers │ │ │ ├── anon-hf-submitform.php │ │ │ └── hf-formsubmit.php │ ├── helpscout │ │ ├── actions │ │ │ ├── helpscout-conversation-create.php │ │ │ ├── helpscout-conversation-note-add.php │ │ │ ├── helpscout-conversation-tag-add.php │ │ │ └── helpscout-customer-properties-update.php │ │ ├── helpers │ │ │ ├── helpscout-api-caller.php │ │ │ ├── helpscout-app-helpers.php │ │ │ └── helpscout-webhooks.php │ │ ├── helpscout-integration.php │ │ ├── img │ │ │ └── help-scout-icon.svg │ │ ├── load.php │ │ ├── settings │ │ │ └── helpscout-settings.php │ │ └── triggers │ │ │ ├── hs-conversation-created.php │ │ │ ├── hs-conversation-customer-reply-received.php │ │ │ ├── hs-conversation-tag-updated.php │ │ │ ├── hs-note-added.php │ │ │ └── hs-rating-received.php │ ├── ht-knowledge-base │ │ ├── class-ht-knowledge-base-integration.php │ │ ├── helpers │ │ │ └── ht-knowledge-base-helpers.php │ │ ├── img │ │ │ └── ht-kb-icon.svg │ │ ├── load.php │ │ └── triggers │ │ │ ├── ht-kb-anon-gives-negative-rating.php │ │ │ ├── ht-kb-anon-gives-positive-rating.php │ │ │ ├── ht-kb-user-gives-negative-rating.php │ │ │ └── ht-kb-user-gives-positive-rating.php │ ├── hubspot │ │ ├── actions │ │ │ ├── hubspot-addcontacttolist.php │ │ │ ├── hubspot-adduser.php │ │ │ ├── hubspot-addusertolist.php │ │ │ ├── hubspot-createcontact.php │ │ │ ├── hubspot-removecontactfromlist.php │ │ │ └── hubspot-removeuserfromlist.php │ │ ├── add-hubspot-integration.php │ │ ├── helpers │ │ │ └── hubspot-helpers.php │ │ ├── img │ │ │ └── hubspot-icon.svg │ │ └── settings │ │ │ ├── settings-hubspot.php │ │ │ └── view-hubspot.php │ ├── ifttt │ │ ├── actions │ │ │ └── ifttt-sendwebhook.php │ │ ├── add-ifttt-integration.php │ │ ├── helpers │ │ │ └── index.php │ │ ├── img │ │ │ └── ifttt-icon.svg │ │ └── tokens │ │ │ └── index.php │ ├── instagram │ │ ├── actions │ │ │ └── instagram-publish-photo.php │ │ ├── add-instagram-integration.php │ │ ├── helpers │ │ │ └── instagram-helpers.php │ │ ├── img │ │ │ └── instagram-icon.svg │ │ └── settings │ │ │ ├── assets │ │ │ ├── script.js │ │ │ └── style.css │ │ │ ├── settings-instagram.php │ │ │ └── view-instagram.php │ ├── integrately │ │ ├── actions │ │ │ └── integrately-sendwebhook.php │ │ ├── add-integrately-integration.php │ │ ├── helpers │ │ │ └── index.php │ │ ├── img │ │ │ └── integrately-icon.svg │ │ └── tokens │ │ │ └── index.php │ ├── integromat │ │ ├── actions │ │ │ └── integromat-sendwebhook.php │ │ ├── add-integromat-integration.php │ │ ├── helpers │ │ │ └── integromat-helpers.php │ │ ├── img │ │ │ └── integromat-icon.svg │ │ ├── tokens │ │ │ └── index.php │ │ └── triggers │ │ │ └── index.php │ ├── jet-crm │ │ ├── actions │ │ │ ├── jetcrm-create-contact.php │ │ │ ├── jetcrm-delete-contact.php │ │ │ ├── jetcrm-tag-to-company.php │ │ │ └── jetcrm-tag-to-contact.php │ │ ├── add-jet-crm-integration.php │ │ ├── helpers │ │ │ └── jet-crm-helpers.php │ │ ├── img │ │ │ └── jetpack-crm-icon.svg │ │ ├── tokens │ │ │ └── jetcrm-tokens.php │ │ └── triggers │ │ │ ├── jetcrm-company-created.php │ │ │ ├── jetcrm-contact-created.php │ │ │ └── jetcrm-contact-stutus-updated.php │ ├── jetformbuilder │ │ ├── add-jetform-builder-integration.php │ │ ├── helpers │ │ │ └── jetfb-helpers.php │ │ ├── img │ │ │ └── jetformbuilder-icon.svg │ │ ├── tokens │ │ │ └── jetfb-tokens.php │ │ └── triggers │ │ │ ├── jetfb-everyone-form-submit.php │ │ │ └── jetfb-user-form-submit.php │ ├── kadence │ │ ├── helpers │ │ │ └── kadence-helpers.php │ │ ├── img │ │ │ └── kadence-icon.svg │ │ ├── kadence-integration.php │ │ ├── load.php │ │ └── triggers │ │ │ ├── kadence-anon-form-submitted.php │ │ │ └── kadence-form-submitted.php │ ├── keap │ │ ├── actions │ │ │ ├── keap-add-note-contact.php │ │ │ ├── keap-add-tags-contact.php │ │ │ ├── keap-add-update-company.php │ │ │ ├── keap-add-update-contact.php │ │ │ └── keap-remove-tags-contact.php │ │ ├── helpers │ │ │ └── keap-helpers.php │ │ ├── img │ │ │ └── keap-icon.svg │ │ ├── keap-integration.php │ │ ├── load.php │ │ └── settings │ │ │ └── settings-keap.php │ ├── konnectz-it │ │ ├── actions │ │ │ └── konnectz-it-sendwebhook.php │ │ ├── add-konnectz-it-integration.php │ │ └── img │ │ │ └── konnectzit-icon.svg │ ├── learndash │ │ ├── actions │ │ │ ├── ld-achievements-award.php │ │ │ ├── ld-creategroup.php │ │ │ ├── ld-enrlcourse-a.php │ │ │ ├── ld-makeuserleader.php │ │ │ ├── ld-markcoursedone.php │ │ │ ├── ld-marklessondone.php │ │ │ └── ld-marktopicdone.php │ │ ├── add-ld-integration.php │ │ ├── helpers │ │ │ └── learndash-helpers.php │ │ ├── img │ │ │ └── learndash-icon.svg │ │ ├── tokens │ │ │ ├── ld-tokens.php │ │ │ └── loopable │ │ │ │ └── universal │ │ │ │ ├── user-completed-courses.php │ │ │ │ ├── user-enrolled-courses-tokens.php │ │ │ │ └── user-enrolled-groups.php │ │ └── triggers │ │ │ ├── ld-course-progress-percentage.php │ │ │ ├── ld-coursedone.php │ │ │ ├── ld-failquiz.php │ │ │ ├── ld-lessondone.php │ │ │ ├── ld-passquiz.php │ │ │ ├── ld-quizdone.php │ │ │ ├── ld-quizpercent.php │ │ │ ├── ld-quizpoint.php │ │ │ ├── ld-quizscore.php │ │ │ └── ld-topicdone.php │ ├── learnpress │ │ ├── actions │ │ │ ├── lp-marklessondone.php │ │ │ └── lp-marksectiondone.php │ │ ├── add-lp-integration.php │ │ ├── helpers │ │ │ └── learnpress-helpers.php │ │ ├── img │ │ │ └── learnpress-icon.svg │ │ ├── tokens │ │ │ └── index.php │ │ └── triggers │ │ │ ├── lp-coursedone.php │ │ │ ├── lp-courseenrolled.php │ │ │ └── lp-lessondone.php │ ├── lifterlms │ │ ├── actions │ │ │ ├── lf-marklessondone.php │ │ │ └── lf-marksectiondone.php │ │ ├── add-lf-integration.php │ │ ├── helpers │ │ │ └── lifterlms-helpers.php │ │ ├── img │ │ │ └── lifterlms-icon.svg │ │ ├── tokens │ │ │ └── index.php │ │ └── triggers │ │ │ ├── lf-coursedone.php │ │ │ ├── lf-courseenrolled.php │ │ │ ├── lf-lessondone.php │ │ │ ├── lf-quizattempted.php │ │ │ ├── lf-quizfailed.php │ │ │ ├── lf-quizpassed.php │ │ │ └── lf-sectiondone.php │ ├── linkedin │ │ ├── actions │ │ │ ├── linkedin-post-publish-image.php │ │ │ └── linkedin-post-publish.php │ │ ├── add-linkedin-integration.php │ │ ├── helpers │ │ │ └── linkedin-helpers.php │ │ ├── img │ │ │ └── linkedin-icon.svg │ │ └── settings │ │ │ ├── settings-linkedin.php │ │ │ └── view-linkedin.php │ ├── logging │ │ ├── actions │ │ │ └── write-data-to-log.php │ │ ├── helpers │ │ │ └── logging-helpers.php │ │ ├── img │ │ │ └── logging-icon.svg │ │ ├── load.php │ │ └── logging-integration.php │ ├── mailchimp │ │ ├── actions │ │ │ ├── audience-addauser.php │ │ │ ├── audience-addusernote.php │ │ │ ├── audience-addusertag.php │ │ │ ├── audience-removeusertag.php │ │ │ ├── audience-unsubscribeauser.php │ │ │ ├── campaign-createandsend.php │ │ │ ├── mc-everyone-add-contact.php │ │ │ ├── mc-everyone-contact-remove.php │ │ │ ├── mc-everyone-user-add-note.php │ │ │ ├── mc-everyone-user-add-tag.php │ │ │ └── mc-everyone-user-remove-tag.php │ │ ├── add-mailchimp-integration.php │ │ ├── helpers │ │ │ └── mailchimp-helpers.php │ │ ├── img │ │ │ └── mailchimp-icon.svg │ │ ├── settings │ │ │ ├── assets │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ ├── settings-mailchimp.php │ │ │ └── view-mailchimp.php │ │ ├── tokens │ │ │ └── mailchimp-tokens.php │ │ └── triggers │ │ │ ├── anon-mailchimp-contact-added.php │ │ │ ├── anon-mailchimp-contact-email-changed.php │ │ │ └── anon-mailchimp-contact-unsubscribed.php │ ├── mailpoet │ │ ├── actions │ │ │ ├── mailpoet-addsubscribertolist-a.php │ │ │ ├── mailpoet-addtag.php │ │ │ ├── mailpoet-adduser-a.php │ │ │ └── mailpoet-removetag.php │ │ ├── add-mailpoet-integration.php │ │ ├── helpers │ │ │ └── mailpoet-helpers.php │ │ ├── img │ │ │ └── mailpoet-icon.svg │ │ ├── tokens │ │ │ └── mailpoet-tokens.php │ │ └── triggers │ │ │ ├── anon-mailpoet-subform.php │ │ │ └── mailpoet-subform.php │ ├── mailster │ │ ├── actions │ │ │ └── mailster-add-subscriber-to-list.php │ │ ├── helpers │ │ │ └── mailster-helpers.php │ │ ├── img │ │ │ └── mailster-icon.svg │ │ ├── load.php │ │ ├── mailster-integration.php │ │ └── triggers │ │ │ └── mailster-subscriber-added-to-list.php │ ├── make │ │ ├── actions │ │ │ └── make-sendwebhook.php │ │ ├── add-make-integration.php │ │ └── img │ │ │ └── make-icon.svg │ ├── masterstudy-lms │ │ ├── actions │ │ │ ├── masterstudy-enroll-user-in-course.php │ │ │ └── masterstudy-markcoursecomplete.php │ │ ├── add-masterstudy-integration.php │ │ ├── helpers │ │ │ └── masterstudy-helpers.php │ │ ├── img │ │ │ └── masterstudy-lms.svg │ │ ├── tokens │ │ │ └── masterstudy-tokens.php │ │ └── triggers │ │ │ ├── masterstudy-coursedone.php │ │ │ ├── masterstudy-courseenrolled.php │ │ │ ├── masterstudy-lessondone.php │ │ │ ├── masterstudy-quizfailed.php │ │ │ └── masterstudy-quizpassed.php │ ├── mautic │ │ ├── actions │ │ │ ├── contact-upsert.php │ │ │ ├── segment-contact-add.php │ │ │ ├── segment-contact-remove.php │ │ │ └── segment-create.php │ │ ├── client │ │ │ └── auth │ │ │ │ └── auth.php │ │ ├── helpers │ │ │ └── mautic-helpers.php │ │ ├── img │ │ │ └── mautic-icon.svg │ │ ├── load.php │ │ ├── mautic-integration.php │ │ └── settings │ │ │ ├── mautic-settings-view.php │ │ │ ├── mautic-settings.php │ │ │ └── scripts │ │ │ ├── fields-renderer.js │ │ │ └── settings.js │ ├── memberium-keap │ │ ├── actions │ │ │ └── m4is-update-contact-field.php │ │ ├── helpers │ │ │ └── m4is-helpers.php │ │ ├── img │ │ │ └── memberium-icon.svg │ │ ├── load.php │ │ └── m4is-integration.php │ ├── membermouse │ │ ├── actions │ │ │ └── mm-remove-bundle-from-members-account.php │ │ ├── helpers │ │ │ └── membermouse-helpers.php │ │ ├── img │ │ │ └── membermouse-icon.svg │ │ ├── load.php │ │ ├── membermouse-integration.php │ │ └── triggers │ │ │ ├── mm-bundle-added-to-members-account.php │ │ │ ├── mm-member-account-deleted.php │ │ │ ├── mm-member-created.php │ │ │ ├── mm-member-updated.php │ │ │ ├── mm-order-submitted.php │ │ │ ├── mm-refund-issued.php │ │ │ └── mm-renewal-received.php │ ├── memberpress-courses │ │ ├── actions │ │ │ ├── mpc-markcoursedone.php │ │ │ └── mpc-marklessondone.php │ │ ├── add-mpc-integration.php │ │ ├── helpers │ │ │ └── memberpress-courses-helpers.php │ │ ├── img │ │ │ └── memberpress-courses.svg │ │ ├── tokens │ │ │ └── mpc-tokens.php │ │ └── triggers │ │ │ ├── mpc-coursedone.php │ │ │ └── mpc-lessondone.php │ ├── memberpress │ │ ├── add-mp-integration.php │ │ ├── helpers │ │ │ └── memberpress-helpers.php │ │ ├── img │ │ │ └── memberpress-icon.svg │ │ ├── tokens │ │ │ └── mp-tokens.php │ │ └── triggers │ │ │ ├── mp-purchaseproductonetime.php │ │ │ ├── mp-purchaseproductrecurring.php │ │ │ ├── mp-renews-recurring-subscription.php │ │ │ ├── mp-user-added-to-membership.php │ │ │ ├── mp-user-remove-from-onetime-membership.php │ │ │ └── mp-user-remove-from-recurring-membership.php │ ├── microsoft-teams │ │ ├── actions │ │ │ ├── microsoft-teams-channel-message.php │ │ │ ├── microsoft-teams-create-channel.php │ │ │ ├── microsoft-teams-create-team.php │ │ │ └── microsoft-teams-send-dm.php │ │ ├── helpers │ │ │ └── microsoft-teams-helpers.php │ │ ├── img │ │ │ └── microsoft-teams-icon.svg │ │ ├── load.php │ │ ├── microsoft-teams-integration.php │ │ └── settings │ │ │ └── settings-microsoft-teams.php │ ├── mistral │ │ ├── actions │ │ │ └── mistral.php │ │ ├── img │ │ │ └── mistral-icon.svg │ │ ├── load.php │ │ ├── mistral-integration.php │ │ └── provider │ │ │ └── mixtral-provider.php │ ├── modern-events-calendar │ │ ├── add-mec-integration.php │ │ ├── helpers │ │ │ └── mec-helpers.php │ │ ├── img │ │ │ └── modern-events-calendar-icon.svg │ │ ├── tokens │ │ │ └── mec-event-tokens.php │ │ └── triggers │ │ │ └── mec-user-booking-completed.php │ ├── mycred │ │ ├── actions │ │ │ ├── mycred-awardbadge-a.php │ │ │ ├── mycred-awardpoints-a.php │ │ │ └── mycred-awardrank-a.php │ │ ├── add-mycred-integration.php │ │ ├── helpers │ │ │ └── mycred-helpers.php │ │ ├── img │ │ │ └── mycred-icon.svg │ │ ├── tokens │ │ │ └── index.php │ │ └── triggers │ │ │ └── index.php │ ├── newsletter │ │ ├── actions │ │ │ └── add-contact-to-list.php │ │ ├── img │ │ │ └── newsletter-icon.svg │ │ ├── load.php │ │ └── newsletter-integration.php │ ├── ninja-forms │ │ ├── actions │ │ │ └── index.php │ │ ├── add-nf-integration.php │ │ ├── helpers │ │ │ └── ninja-forms-helpers.php │ │ ├── img │ │ │ ├── integration-ninjaforms-icon-16.png │ │ │ ├── integration-ninjaforms-icon-32.png │ │ │ ├── integration-ninjaforms-icon-64.png │ │ │ ├── integration-ninjaforms.png │ │ │ └── ninjaforms-icon.png │ │ ├── tokens │ │ │ └── nf-tokens.php │ │ └── triggers │ │ │ ├── anon-nf-subform.php │ │ │ └── nf-subform.php │ ├── notion │ │ ├── actions │ │ │ ├── add-row.php │ │ │ ├── create-page.php │ │ │ └── update-row.php │ │ ├── fields │ │ │ └── mapper.php │ │ ├── helpers │ │ │ ├── notion-api-caller.php │ │ │ └── notion-app-helpers.php │ │ ├── img │ │ │ └── notion-icon.svg │ │ ├── load.php │ │ ├── notion-integration.php │ │ └── settings │ │ │ └── notion-settings.php │ ├── ontraport │ │ ├── actions │ │ │ ├── ontraport-add-contact-tag.php │ │ │ ├── ontraport-create-tag.php │ │ │ ├── ontraport-delete-contact.php │ │ │ └── ontraport-upsert-contact.php │ │ ├── helpers │ │ │ └── ontraport-helpers.php │ │ ├── img │ │ │ └── ontraport-icon.svg │ │ ├── load.php │ │ ├── ontraport-integration.php │ │ └── settings │ │ │ └── ontraport-settings.php │ ├── open-ai │ │ ├── actions │ │ │ ├── fields │ │ │ │ └── image-generate-fields.php │ │ │ ├── hydrators │ │ │ │ └── image-response-hydrator.php │ │ │ ├── open-ai-chat-generate.php │ │ │ ├── open-ai-correct-spelling-grammar.php │ │ │ ├── open-ai-excerpt-generate.php │ │ │ ├── open-ai-image-generate-dall-e.php │ │ │ ├── open-ai-image-generate.php │ │ │ ├── open-ai-instagram-excerpt-generate.php │ │ │ ├── open-ai-links-suggest.php │ │ │ ├── open-ai-meta-description-generate.php │ │ │ ├── open-ai-sentiment-analyze.php │ │ │ ├── open-ai-seo-title-generate.php │ │ │ ├── open-ai-text-generate.php │ │ │ ├── open-ai-text-translate.php │ │ │ └── open-ai-twitter-excerpt-generate.php │ │ ├── client │ │ │ └── http-client.php │ │ ├── helpers │ │ │ └── open-ai-helpers.php │ │ ├── img │ │ │ └── openai-icon.svg │ │ ├── load.php │ │ ├── open-ai-integration.php │ │ └── settings │ │ │ ├── settings-open-ai.php │ │ │ └── view-open-ai.php │ ├── optinmonster │ │ ├── actions │ │ │ └── optinmonster-show-campaign.php │ │ ├── add-optinmonster-integration.php │ │ ├── helpers │ │ │ └── optinmonster-helpers.php │ │ ├── img │ │ │ └── optinmonster-icon.svg │ │ └── scripts │ │ │ └── show-campaign.js │ ├── pabbly-connect │ │ ├── actions │ │ │ └── pabblyconnect-sendwebhook.php │ │ ├── add-pabbly-connect-integration.php │ │ └── img │ │ │ └── pabbly-icon.svg │ ├── paid-memberships-pro │ │ ├── actions │ │ │ └── index.php │ │ ├── add-pmp-integration.php │ │ ├── helpers │ │ │ └── paid-memberships-pro-helpers.php │ │ ├── img │ │ │ └── paid-memberships-pro-icon.svg │ │ ├── tokens │ │ │ └── pmp-tokens.php │ │ └── triggers │ │ │ ├── pmp-membershipcancel.php │ │ │ ├── pmp-membershipexpires.php │ │ │ └── pmp-membershippurch.php │ ├── peepso │ │ ├── actions │ │ │ └── peepso-followauser.php │ │ ├── add-peepso-integration.php │ │ ├── helpers │ │ │ └── peepso-helpers.php │ │ ├── img │ │ │ └── peepso-icon.svg │ │ ├── tokens │ │ │ └── peepso-tokens.php │ │ └── triggers │ │ │ ├── peepso-userfollowsauser.php │ │ │ ├── peepso-userupdatesavatar.php │ │ │ └── peepso-userupdatespecificfield.php │ ├── perplexity │ │ ├── actions │ │ │ └── perplexity-chat-generate.php │ │ ├── img │ │ │ └── perplexity-icon.svg │ │ ├── load.php │ │ └── perplexity-integration.php │ ├── popup-maker │ │ ├── actions │ │ │ └── pm-popupshow.php │ │ ├── add-popup-maker-integration.php │ │ └── img │ │ │ └── popup-maker-icon.svg │ ├── presto │ │ ├── helpers │ │ │ └── presto-helpers.php │ │ ├── img │ │ │ └── presto-player-icon.svg │ │ ├── load.php │ │ ├── presto-integration.php │ │ ├── tokens │ │ │ └── presto-tokens.php │ │ └── triggers │ │ │ └── presto-videocomplete.php │ ├── pretty-links │ │ ├── actions │ │ │ └── prli-create-link.php │ │ ├── class-pretty-links-integration.php │ │ ├── helpers │ │ │ └── pretty-links-helpers.php │ │ ├── img │ │ │ └── pretty-links-icon.svg │ │ ├── load.php │ │ └── triggers │ │ │ ├── prli-anon-create-a-link.php │ │ │ ├── prli-anon-link-clicked.php │ │ │ └── prli-link-clicked.php │ ├── rafflepress │ │ ├── class-rafflepress-integration.php │ │ ├── helpers │ │ │ └── rafflepress-helpers.php │ │ ├── img │ │ │ └── rafflepress-icon.svg │ │ ├── load.php │ │ └── triggers │ │ │ └── rafflepress-anon-registers-giveaway.php │ ├── restrict-content │ │ ├── actions │ │ │ └── restrict-content-add-membership-level.php │ │ ├── add-restrict-content-integration.php │ │ ├── helpers │ │ │ └── restrict-content-helpers.php │ │ ├── img │ │ │ └── restrict-content-icon.svg │ │ ├── tokens │ │ │ └── restrict-content-tokens.php │ │ └── triggers │ │ │ └── restrict-content-purchasesmembership.php │ ├── seedprod │ │ ├── helpers │ │ │ └── seedprod-helpers.php │ │ ├── img │ │ │ └── seedprod-icon.svg │ │ ├── load.php │ │ ├── seedprod-integration.php │ │ └── triggers │ │ │ ├── maintenance-mode-settings.php │ │ │ └── optin-form-submitted.php │ ├── sendy │ │ ├── actions │ │ │ ├── sendy-add-update-list-contact.php │ │ │ ├── sendy-delete-list-contact.php │ │ │ └── sendy-unsubscribe-list-contact.php │ │ ├── helpers │ │ │ ├── sendy-api-caller.php │ │ │ └── sendy-app-helpers.php │ │ ├── img │ │ │ └── sendy-icon.svg │ │ ├── load.php │ │ ├── sendy-integration.php │ │ └── settings │ │ │ └── sendy-settings.php │ ├── slack │ │ ├── actions │ │ │ ├── slack-addusertochannel.php │ │ │ ├── slack-createchannel.php │ │ │ ├── slack-senddirectmessage.php │ │ │ └── slack-sendmessage.php │ │ ├── helpers │ │ │ ├── slack-api-caller.php │ │ │ └── slack-app-helpers.php │ │ ├── img │ │ │ └── slack-icon.svg │ │ ├── load.php │ │ ├── settings │ │ │ ├── assets │ │ │ │ ├── script.js │ │ │ │ ├── slack-avatar-2x.png │ │ │ │ └── style.css │ │ │ └── slack-settings.php │ │ └── slack-integration.php │ ├── slicewp │ │ ├── actions │ │ │ └── slicewp-create-affiliate.php │ │ ├── helpers │ │ │ └── slicewp-helpers.php │ │ ├── img │ │ │ └── slicewp-icon.svg │ │ ├── load.php │ │ ├── slicewp-integration.php │ │ └── triggers │ │ │ ├── slicewp-affilaite-awaiting-approval.php │ │ │ ├── slicewp-affiliate-is-approved.php │ │ │ └── slicewp-becomes-affiliate.php │ ├── stripe │ │ ├── actions │ │ │ ├── create-customer.php │ │ │ ├── create-payment-link.php │ │ │ └── delete-customer.php │ │ ├── deprecated │ │ │ ├── charge-failed.php │ │ │ ├── charge-refunded.php │ │ │ ├── customer-created.php │ │ │ ├── payment-completed.php │ │ │ └── subscription-cancelled.php │ │ ├── helpers │ │ │ ├── stripe-api.php │ │ │ ├── stripe-helpers.php │ │ │ ├── stripe-webhook.php │ │ │ └── webhook-verificator.php │ │ ├── img │ │ │ └── stripe-icon.svg │ │ ├── load.php │ │ ├── settings │ │ │ ├── assets │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ └── stripe-settings.php │ │ ├── stripe-integration.php │ │ ├── tokens │ │ │ └── stripe-tokens.php │ │ └── triggers │ │ │ ├── customer-created.php │ │ │ ├── onetime-payment-completed.php │ │ │ ├── product-refunded.php │ │ │ ├── subcription-cancelled.php │ │ │ ├── subcription-created.php │ │ │ ├── subcription-paid.php │ │ │ └── subcription-payment-failed.php │ ├── studiocart │ │ ├── add-studiocart-integration.php │ │ ├── helpers │ │ │ └── studiocart-helpers.php │ │ ├── img │ │ │ └── studiocart-icon.svg │ │ ├── tokens │ │ │ └── studiocart-tokens.php │ │ └── triggers │ │ │ ├── studiocart-usercompletesorder.php │ │ │ ├── studiocart-userorderrefunded.php │ │ │ └── studiocart-userpurchasesproduct.php │ ├── sure-forms │ │ ├── helpers │ │ │ └── sure-forms-helpers.php │ │ ├── img │ │ │ └── sureforms-icon.svg │ │ ├── load.php │ │ ├── sure-form-integration.php │ │ └── triggers │ │ │ ├── anon-form-submitted.php │ │ │ └── user-submits-form.php │ ├── surecart │ │ ├── helpers │ │ │ └── surecart-helpers.php │ │ ├── img │ │ │ └── surecart-icon.svg │ │ ├── load.php │ │ ├── surecart-integration.php │ │ ├── tokens │ │ │ ├── surecart-tokens-new-framework.php │ │ │ └── surecart-tokens.php │ │ └── triggers │ │ │ ├── surecart-order-confirmed.php │ │ │ ├── surecart-order-shipped.php │ │ │ └── surecart-purchase-product.php │ ├── suremembers │ │ ├── actions │ │ │ ├── add-user-to-group.php │ │ │ └── remove-user-from-group.php │ │ ├── helpers │ │ │ └── suremembers-helpers.php │ │ ├── img │ │ │ └── suremembers-icon.svg │ │ ├── load.php │ │ ├── suremembers-integration.php │ │ └── triggers │ │ │ ├── user-added-to-group.php │ │ │ └── user-removed-from-group.php │ ├── telegram │ │ ├── actions │ │ │ └── telegram-send-message.php │ │ ├── add-telegram-integration.php │ │ ├── functions │ │ │ ├── telegram-api.php │ │ │ ├── telegram-functions.php │ │ │ └── telegram-webhook.php │ │ ├── helpers │ │ │ └── telegram-helpers.php │ │ ├── img │ │ │ └── telegram-icon.svg │ │ ├── settings │ │ │ ├── settings-telegram.php │ │ │ └── view-telegram.php │ │ └── triggers │ │ │ └── telegram-message-received.php │ ├── threads │ │ ├── actions │ │ │ └── threads-create-post.php │ │ ├── helpers │ │ │ ├── threads-api-caller.php │ │ │ └── threads-app-helpers.php │ │ ├── img │ │ │ └── threads-icon.svg │ │ ├── load.php │ │ ├── settings │ │ │ └── settings-threads.php │ │ └── threads-integration.php │ ├── thrive-apprentice │ │ ├── actions │ │ │ ├── thrive-apprentice-grade-assessment.php │ │ │ ├── thrive-apprentice-issue-user-certificate.php │ │ │ └── thrive-apprentice-unlock-content.php │ │ ├── helpers │ │ │ └── thrive-apprentice-helpers.php │ │ ├── img │ │ │ └── thrive-apprentice-icon.svg │ │ ├── load.php │ │ ├── thrive-apprentice-integration.php │ │ └── triggers │ │ │ ├── thrive-apprentice-content-unlocked.php │ │ │ ├── thrive-apprentice-product-access-received.php │ │ │ ├── thrive-apprentice-user-certificate-verified.php │ │ │ ├── thrive-apprentice-user-completes-all-free-lessons-in-premium-course.php │ │ │ ├── thrive-apprentice-user-course-completed.php │ │ │ ├── thrive-apprentice-user-course-lesson-completed.php │ │ │ ├── thrive-apprentice-user-course-module-completed.php │ │ │ ├── thrive-apprentice-user-downloads-certificate-from-course.php │ │ │ ├── thrive-apprentice-user-fail-assessment-in-course.php │ │ │ ├── thrive-apprentice-user-pass-assessment-in-course.php │ │ │ └── thrive-apprentice-user-submits-assessment-in-course.php │ ├── thrive-architect │ │ ├── helpers │ │ │ └── thrive-architect-helpers.php │ │ ├── img │ │ │ └── thrive-architect-icon.svg │ │ ├── load.php │ │ ├── thrive-architect-integration.php │ │ └── triggers │ │ │ ├── form-submitted.php │ │ │ ├── user-form-submitted.php │ │ │ └── user-registered.php │ ├── thrive-leads │ │ ├── helpers │ │ │ └── thrive-leads-helpers.php │ │ ├── img │ │ │ └── thrive-leads-icon.svg │ │ ├── load.php │ │ ├── thrive-leads-integration.php │ │ └── triggers │ │ │ ├── anon-tl-form-submitted.php │ │ │ ├── tl-form-submitted.php │ │ │ └── tl-registration-form-submitted.php │ ├── thrive-ovation │ │ ├── add-thrive-ovation-integration.php │ │ ├── img │ │ │ └── thrive-ovation-icon.svg │ │ ├── tokens │ │ │ └── thrive-ovation-tokens.php │ │ └── triggers │ │ │ └── thrive-ovation-testimonial-created.php │ ├── thrive-quiz-builder │ │ ├── helpers │ │ │ └── thrive-quiz-builder-helpers.php │ │ ├── img │ │ │ └── thrive-quiz-builder-icon.svg │ │ ├── load.php │ │ ├── thrive-quiz-builder-integration.php │ │ └── triggers │ │ │ └── anon-thrive-qb-quiz-completed.php │ ├── thrive-theme │ │ ├── helpers │ │ │ └── thrive-theme-helpers.php │ │ ├── img │ │ │ └── thrive-theme-builder-icon.svg │ │ ├── load.php │ │ ├── thrive-theme-integration.php │ │ └── triggers │ │ │ ├── thr-anon-form-submitted.php │ │ │ └── thr-user-submits-form.php │ ├── thrive-ultimatum │ │ ├── actions │ │ │ └── thrive-ultimatum-evergreen-start-campaign.php │ │ ├── class-thrive-ultimatum-integration.php │ │ ├── helpers │ │ │ └── thrive-ultimatum-helpers.php │ │ ├── img │ │ │ └── thrive-ultimatum-icon.svg │ │ ├── load.php │ │ └── triggers │ │ │ ├── thrive-ultimatum-evergreen-campaign-triggered.php │ │ │ └── thrive-ultimatum-user-triggers-evergreen-campaign.php │ ├── trello │ │ ├── actions │ │ │ ├── trello-add-card-comment.php │ │ │ ├── trello-add-card-label.php │ │ │ ├── trello-add-card-member.php │ │ │ ├── trello-add-checklist-item.php │ │ │ ├── trello-create-card.php │ │ │ └── trello-update-card.php │ │ ├── add-trello-integration.php │ │ ├── functions │ │ │ ├── trello-api.php │ │ │ └── trello-functions.php │ │ ├── helpers │ │ │ └── trello-helpers.php │ │ ├── img │ │ │ └── trello-icon.svg │ │ ├── scripts │ │ │ └── trello.js │ │ └── settings │ │ │ ├── settings-trello.php │ │ │ └── view-trello.php │ ├── tutorlms │ │ ├── actions │ │ │ └── index.php │ │ ├── add-tutorlms-integration.php │ │ ├── helpers │ │ │ └── tutorlms-helpers.php │ │ ├── img │ │ │ └── tutorlms-icon.svg │ │ ├── tokens │ │ │ └── index.php │ │ └── triggers │ │ │ ├── tutorlms-coursecompleted.php │ │ │ ├── tutorlms-lessoncompleted.php │ │ │ ├── tutorlms-quizattempted.php │ │ │ ├── tutorlms-quizfailed.php │ │ │ └── tutorlms-quizpassed.php │ ├── twilio │ │ ├── actions │ │ │ └── twilio-send-sms.php │ │ ├── helpers │ │ │ ├── twilio-api-caller.php │ │ │ └── twilio-app-helpers.php │ │ ├── img │ │ │ └── twilio-icon.svg │ │ ├── load.php │ │ ├── settings │ │ │ └── twilio-settings.php │ │ └── twilio-integration.php │ ├── twitter │ │ ├── actions │ │ │ ├── twitter-poststatus-2.php │ │ │ └── twitter-poststatus.php │ │ ├── helpers │ │ │ ├── twitter-api-caller.php │ │ │ └── twitter-app-helpers.php │ │ ├── img │ │ │ └── x-twitter-icon.svg │ │ ├── load.php │ │ ├── settings │ │ │ └── twitter-settings.php │ │ └── twitter-integration.php │ ├── ultimate-member │ │ ├── actions │ │ │ └── index.php │ │ ├── add-um-integration.php │ │ ├── helpers │ │ │ └── ultimate-member-helpers.php │ │ ├── img │ │ │ └── ultimate-member-icon.svg │ │ ├── tokens │ │ │ └── um-tokens.php │ │ └── triggers │ │ │ ├── um-userinactive.php │ │ │ ├── um-userlogsin.php │ │ │ ├── um-userregister.php │ │ │ └── um-userrolechange.php │ ├── uncanny-automator │ │ ├── actions │ │ │ └── index.php │ │ ├── add-uoa-integration.php │ │ ├── closures │ │ │ └── index.php │ │ ├── helpers │ │ │ └── uoa-helpers.php │ │ ├── img │ │ │ └── automator-core-icon.svg │ │ ├── tokens │ │ │ └── uoa-tokens.php │ │ └── triggers │ │ │ ├── uoa-errors.php │ │ │ ├── uoa-recipecompleted-status.php │ │ │ ├── uoa-recipecompleted.php │ │ │ ├── uoa-recipecompletedtimes.php │ │ │ ├── uoa-recipeerrorstimes.php │ │ │ ├── uoa-recipesuccesscompletedtimes.php │ │ │ ├── uoa-user-completes-recipe-numtimes.php │ │ │ └── uoa-user-recipe-completed-with-errors.php │ ├── uncanny-ceus │ │ ├── actions │ │ │ └── uncannyceus-awardceus.php │ │ ├── add-uncannyceus-integration.php │ │ ├── helpers │ │ │ └── uncanny-ceus-helpers.php │ │ ├── img │ │ │ └── uncanny-owl-icon.svg │ │ ├── tokens │ │ │ └── index.php │ │ └── triggers │ │ │ ├── uncannyceus-earns-number-ceus.php │ │ │ ├── uncannyceus-earns-numbers-more-than.php │ │ │ └── uncannyceus-earnsceus.php │ ├── uncanny-codes │ │ ├── actions │ │ │ ├── uc-add-batch-codes.php │ │ │ ├── uc-cancel-code.php │ │ │ ├── uc-delete-batch-codes.php │ │ │ └── uc-generate-codes.php │ │ ├── add-uc-integration.php │ │ ├── helpers │ │ │ └── uncanny-codes-helpers.php │ │ ├── img │ │ │ └── uncanny-owl-icon.svg │ │ ├── tokens │ │ │ └── uc-tokens.php │ │ └── triggers │ │ │ ├── uc-anon-codebatchcreated.php │ │ │ ├── uc-coderedeemed.php │ │ │ ├── uc-codesbatch.php │ │ │ ├── uc-codesprefix.php │ │ │ └── uc-codessuffix.php │ ├── uncanny-groups │ │ ├── actions │ │ │ ├── uog-addseatstogroup.php │ │ │ ├── uog-createuncannygroup.php │ │ │ └── uog-removeseatsfromgroup.php │ │ ├── add-uog-integration.php │ │ ├── helpers │ │ │ └── uncanny-groups-helpers.php │ │ ├── img │ │ │ └── uncanny-owl-icon.svg │ │ ├── tokens │ │ │ └── uncanny-groups-tokens.php │ │ └── triggers │ │ │ ├── uog-groupcreated.php │ │ │ ├── uog-registered-with-groupkey.php │ │ │ ├── uog-seatsaddedtogroup.php │ │ │ ├── uog-seatsremovedfromgroup.php │ │ │ └── uog-userredeems-groupkey.php │ ├── uncanny-tincanny │ │ ├── actions │ │ │ └── index.php │ │ ├── add-uotc-integration.php │ │ ├── helpers │ │ │ └── uncanny-tincanny-helpers.php │ │ ├── img │ │ │ └── uncanny-owl-icon.svg │ │ ├── tokens │ │ │ └── uotc-tokens.php │ │ └── triggers │ │ │ ├── uotc-moduleinteraction.php │ │ │ └── uotc-userattainsscore.php │ ├── uncanny-toolkit │ │ ├── actions │ │ │ └── ut-resetuserstimeincourse.php │ │ ├── add-ut-integration.php │ │ ├── helpers │ │ │ └── uncanny-toolkit-helpers.php │ │ ├── img │ │ │ └── uncanny-owl-icon.svg │ │ ├── tokens │ │ │ └── ut-tokens.php │ │ └── triggers │ │ │ ├── ut-group-leader-imported.php │ │ │ ├── ut-user-imported-in-course.php │ │ │ ├── ut-user-imported-in-group.php │ │ │ ├── ut-user-imported.php │ │ │ └── ut-users-time-in-course-exceeds.php │ ├── upsell-plugin │ │ ├── actions │ │ │ └── index.php │ │ ├── add-upsell-plugin-integration.php │ │ ├── helpers │ │ │ └── upsell-plugin-helpers.php │ │ ├── img │ │ │ └── upsell-plugin.svg │ │ ├── tokens │ │ │ └── index.php │ │ └── triggers │ │ │ └── upsell-plugin-purchprod.php │ ├── url │ │ ├── helpers │ │ │ └── url-helpers.php │ │ ├── img │ │ │ └── url-icon.svg │ │ ├── load.php │ │ ├── tokens │ │ │ └── url-tokens.php │ │ ├── triggers │ │ │ ├── url-has-param-logged-in.php │ │ │ └── url-has-param.php │ │ └── url-integration.php │ ├── userfeedback │ │ ├── add-userfeedback-integration.php │ │ ├── img │ │ │ └── userfeedback-icon.svg │ │ └── triggers │ │ │ ├── anon-userfeedback-survey-submitted.php │ │ │ └── user-userfeedback-survey-submitted.php │ ├── wc-memberships │ │ ├── actions │ │ │ └── wcm-adduser-a.php │ │ ├── add-wc-memberships-integration.php │ │ ├── helpers │ │ │ └── wc-memberships-helpers.php │ │ ├── img │ │ │ └── woo-icon.svg │ │ ├── tokens │ │ │ └── wcm-tokens.php │ │ └── triggers │ │ │ └── wcm-adduser.php │ ├── webhooks │ │ ├── actions │ │ │ └── uoa-sendwebhook.php │ │ ├── add-webhooks-integration.php │ │ └── img │ │ │ └── webhooks-icon.svg │ ├── whatsapp │ │ ├── actions │ │ │ ├── whatsapp-send-message-template.php │ │ │ └── whatsapp-send-message.php │ │ ├── add-whatsapp-integration.php │ │ ├── helpers │ │ │ └── whatsapp-helpers.php │ │ ├── img │ │ │ └── whatsapp-icon.svg │ │ ├── settings │ │ │ ├── scripts │ │ │ │ └── fields-renderer.js │ │ │ ├── settings-whatsapp.php │ │ │ └── view-whatsapp.php │ │ ├── tokens │ │ │ ├── wa-message-delivery-tokens.php │ │ │ ├── wa-message-received-tokens.php │ │ │ └── wa-message-status-tokens.php │ │ └── triggers │ │ │ ├── wa-message-not-delivered-no-optin.php │ │ │ ├── wa-message-not-delivered.php │ │ │ ├── wa-message-received.php │ │ │ └── wa-message-status-updated.php │ ├── wholesale-suite │ │ ├── actions │ │ │ └── wss-lead-approved.php │ │ ├── add-wholesale-suite-integration.php │ │ ├── helpers │ │ │ └── wholesale-suite-helpers.php │ │ ├── img │ │ │ └── wholesale-suite.svg │ │ ├── tokens │ │ │ └── wss-tokens.php │ │ └── triggers │ │ │ ├── wss-lead-created.php │ │ │ └── wss-order-received.php │ ├── wishlist-member │ │ ├── actions │ │ │ └── wm-adduser-a.php │ │ ├── add-wm-integration.php │ │ ├── helpers │ │ │ └── wishlist-member-helpers.php │ │ ├── img │ │ │ └── wishlist-member-icon.svg │ │ ├── tokens │ │ │ └── wm-tokens.php │ │ └── triggers │ │ │ ├── wm-useradded.php │ │ │ └── wm-userremoved.php │ ├── woocommerce-bookings │ │ ├── helpers │ │ │ └── wc-bookings-helpers.php │ │ ├── img │ │ │ └── woo-icon.svg │ │ ├── load.php │ │ ├── triggers │ │ │ └── wc-bookings-anon-booking-created.php │ │ └── woocommerce-bookings-integration.php │ ├── woocommerce │ │ ├── actions │ │ │ └── index.php │ │ ├── add-wc-integration.php │ │ ├── helpers │ │ │ └── woocommerce-helpers.php │ │ ├── img │ │ │ └── woo-icon.svg │ │ ├── tokens │ │ │ ├── loopable │ │ │ │ ├── trigger │ │ │ │ │ ├── order-items.php │ │ │ │ │ ├── product-categories.php │ │ │ │ │ └── product-tags.php │ │ │ │ ├── universal │ │ │ │ │ ├── all-order-24-hours.php │ │ │ │ │ ├── all-orders-monthly.php │ │ │ │ │ ├── all-orders-weekly.php │ │ │ │ │ ├── all-orders-yearly.php │ │ │ │ │ ├── product-categories.php │ │ │ │ │ ├── user-order-24-hours.php │ │ │ │ │ ├── user-orders-monthly.php │ │ │ │ │ ├── user-orders-weekly.php │ │ │ │ │ ├── user-orders-yearly.php │ │ │ │ │ └── user-purchased-products.php │ │ │ │ └── utils │ │ │ │ │ └── Loopable_Tokens_Utils.php │ │ │ └── wc-tokens.php │ │ └── triggers │ │ │ ├── wc-purchasesproduct.php │ │ │ ├── wc-purchprod-dep.php │ │ │ ├── wc-shipstation-shipped.php │ │ │ └── wc-viewproduct.php │ ├── wp-all-import │ │ ├── add-wp-all-import-integration.php │ │ ├── helpers │ │ │ └── wp-all-import-helpers.php │ │ ├── img │ │ │ └── wp-all-import-icon.svg │ │ ├── tokens │ │ │ └── wpai-tokens.php │ │ └── triggers │ │ │ ├── wpai-import-completed.php │ │ │ └── wpai-post-type-imported.php │ ├── wp-courseware │ │ ├── add-wpcw-integration.php │ │ ├── helpers │ │ │ └── wp-courseware-helpers.php │ │ ├── img │ │ │ └── wp-courseware-icon.svg │ │ ├── tokens │ │ │ ├── index.php │ │ │ └── wpcw-tokens.php │ │ └── triggers │ │ │ ├── wpcw-coursecompleted.php │ │ │ ├── wpcw-modulecompleted.php │ │ │ ├── wpcw-unitcompleted.php │ │ │ └── wpcw-userenrolled.php │ ├── wp-discuz │ │ ├── actions │ │ │ └── wp-discuz-add-reply-to-comment.php │ │ ├── helpers │ │ │ └── wp-discuz-helpers.php │ │ ├── img │ │ │ └── wpdiscuz-icon.svg │ │ ├── load.php │ │ ├── triggers │ │ │ ├── wp-discuz-user-post-receives-comment.php │ │ │ └── wp-discuz-user-submits-comment.php │ │ └── wp-discuz-integration.php │ ├── wp-download-manager │ │ ├── add-wpdm-integration.php │ │ ├── helpers │ │ │ └── wp-download-manager-helpers.php │ │ ├── img │ │ │ └── wordpress-download-manager-icon.svg │ │ ├── tokens │ │ │ └── wpdm-tokens.php │ │ └── triggers │ │ │ └── wpdm-file-downloaded.php │ ├── wp-fluent-forms │ │ ├── actions │ │ │ └── index.php │ │ ├── add-wpff-integration.php │ │ ├── helpers │ │ │ └── wp-fluent-forms-helpers.php │ │ ├── img │ │ │ └── wp-fluent-forms-icon.svg │ │ ├── tokens │ │ │ └── wpff-tokens.php │ │ └── triggers │ │ │ ├── anon-wpff-subform.php │ │ │ └── wpff-subform.php │ ├── wp-fusion │ │ ├── actions │ │ │ └── wf-setusertag.php │ │ ├── add-wf-integration.php │ │ ├── helpers │ │ │ └── wp-fusion-helpers.php │ │ ├── img │ │ │ └── wp-fusion-icon.svg │ │ └── tokens │ │ │ └── index.php │ ├── wp-job-manager │ │ ├── actions │ │ │ └── index.php │ │ ├── add-wpjm-integration.php │ │ ├── helpers │ │ │ └── wpjm-helpers.php │ │ ├── img │ │ │ └── wp-job-manager-icon.svg │ │ ├── tokens │ │ │ └── wpjm-tokens.php │ │ └── triggers │ │ │ ├── wpjm-jobapplication.php │ │ │ ├── wpjm-submitjob.php │ │ │ └── wpjm-submitresume.php │ ├── wp-mail-smtp-pro │ │ ├── add-wp-mail-smtp-pro-integration.php │ │ ├── img │ │ │ └── wp-mail-smtp-icon.svg │ │ ├── tokens │ │ │ └── wpmsmtp-tokens.php │ │ └── triggers │ │ │ └── wpmsmtp-specific-subject-mail-opened.php │ ├── wp-polls │ │ ├── add-wpp-integration.php │ │ ├── helpers │ │ │ └── wppolls-helpers.php │ │ ├── img │ │ │ └── wp-polls-icon.svg │ │ ├── tokens │ │ │ └── wpp-tokens.php │ │ └── triggers │ │ │ └── wpp-pollsubmit.php │ ├── wp-simple-pay │ │ ├── add-wpsp-integration.php │ │ ├── helpers │ │ │ └── wpsp-helpers.php │ │ ├── img │ │ │ └── wp-simple-pay-icon.svg │ │ ├── tokens │ │ │ └── wpsp-tokens.php │ │ └── triggers │ │ │ ├── wpsp-anonpurchaseform.php │ │ │ ├── wpsp-anonsubscription.php │ │ │ ├── wpsp-payment-for-form-fully-refunded.php │ │ │ └── wpsp-purchwithform.php │ ├── wp-user-manager │ │ ├── add-wp-user-manager-integration.php │ │ ├── helpers │ │ │ └── wp-user-manager-helpers.php │ │ ├── img │ │ │ └── wp-user-manager-icon.svg │ │ ├── tokens │ │ │ └── wpum-tokens.php │ │ └── triggers │ │ │ ├── wpum-removescoverphoto.php │ │ │ ├── wpum-removesprofilephoto.php │ │ │ ├── wpum-updatedescription.php │ │ │ ├── wpum-updatescoverphoto.php │ │ │ ├── wpum-updatesprofilephoto.php │ │ │ └── wpum-userregister.php │ ├── wp-webhooks │ │ ├── add-wpwh-integration.php │ │ ├── helpers │ │ │ └── wpwh-helpers.php │ │ ├── img │ │ │ └── wp-webhooks-icon.svg │ │ ├── tokens │ │ │ └── wpwh-tokens.php │ │ └── triggers │ │ │ └── wpwh-triggertriggered.php │ ├── wp │ │ ├── actions │ │ │ ├── wp-add-reply-to-comment.php │ │ │ ├── wp-addrole.php │ │ │ ├── wp-change-post-type.php │ │ │ ├── wp-create-role.php │ │ │ ├── wp-createpost.php │ │ │ ├── wp-duplicate-page.php │ │ │ ├── wp-duplicate-post.php │ │ │ ├── wp-erase-personal-user-data.php │ │ │ ├── wp-logout-user.php │ │ │ ├── wp-update-post-excerpt.php │ │ │ └── wp-userrole.php │ │ ├── add-wp-integration.php │ │ ├── closures │ │ │ └── closure-redirect.php │ │ ├── helpers │ │ │ └── wp-helpers.php │ │ ├── img │ │ │ ├── uncanny-automator-icon.svg │ │ │ └── wordpress-icon.svg │ │ ├── tokens │ │ │ ├── loopable │ │ │ │ ├── trigger │ │ │ │ │ ├── post-categories.php │ │ │ │ │ └── post-tags.php │ │ │ │ └── universal │ │ │ │ │ ├── post-categories.php │ │ │ │ │ ├── post-tags.php │ │ │ │ │ └── utils │ │ │ │ │ └── terms.php │ │ │ ├── wp-post-tokens.php │ │ │ └── wp-tokens.php │ │ └── triggers │ │ │ ├── anon-wp-post-published-in-taxonomy.php │ │ │ ├── anon-wp-reset-password-link-sent.php │ │ │ ├── anon-wp-updates-post-in-taxonomy.php │ │ │ ├── anon-wp-viewposttype.php │ │ │ ├── wp-anon-updates-post.php │ │ │ ├── wp-login.php │ │ │ ├── wp-logout.php │ │ │ ├── wp-post-published.php │ │ │ ├── wp-postreceivescomment.php │ │ │ ├── wp-submitcomment.php │ │ │ ├── wp-user-updates-post.php │ │ │ ├── wp-usercreatespost.php │ │ │ ├── wp-userroleadded.php │ │ │ ├── wp-userroleupdated.php │ │ │ ├── wp-users-post-published.php │ │ │ ├── wp-viewcustompost.php │ │ │ ├── wp-viewpage.php │ │ │ └── wp-viewpost.php │ ├── wpcode │ │ ├── actions │ │ │ ├── wpcode-activate-snippet.php │ │ │ └── wpcode-deactivate-snippet.php │ │ ├── add-wpcode-integration.php │ │ ├── helpers │ │ │ └── wpcode-helpers.php │ │ └── img │ │ │ └── wpcode-icon.svg │ ├── wpforms │ │ ├── actions │ │ │ └── index.php │ │ ├── add-wpf-integration.php │ │ ├── helpers │ │ │ └── wpforms-helpers.php │ │ ├── img │ │ │ └── wpforms-icon.svg │ │ ├── tokens │ │ │ └── wpf-tokens.php │ │ └── triggers │ │ │ ├── anon-wpf-subform.php │ │ │ └── wpf-subform.php │ ├── wpforo │ │ ├── actions │ │ │ ├── wpf-usergroup.php │ │ │ └── wpf-userreputation.php │ │ ├── add-wp-foro-integration.php │ │ ├── helpers │ │ │ └── index.php │ │ ├── img │ │ │ └── wpforo-icon.svg │ │ ├── tokens │ │ │ ├── index.php │ │ │ └── wpf-topic-added-tokens.php │ │ └── triggers │ │ │ └── wpf-addedtopic.php │ ├── wplms │ │ ├── add-wplms-integration.php │ │ ├── helpers │ │ │ └── wplms-helpers.php │ │ ├── img │ │ │ └── wplms-icon.svg │ │ ├── tokens │ │ │ └── wplms-tokens.php │ │ └── triggers │ │ │ ├── wplms-coursecompleted.php │ │ │ ├── wplms-coursestarted.php │ │ │ ├── wplms-quizcompleted.php │ │ │ └── wplms-unitcompleted.php │ ├── ws-form-lite │ │ ├── add-ws-form-lite-integration.php │ │ ├── helpers │ │ │ └── ws-form-lite-helpers.php │ │ ├── img │ │ │ └── ws-form-icon.svg │ │ ├── tokens │ │ │ └── ws-form-lite-tokens.php │ │ └── triggers │ │ │ ├── wsf-anon-form-submitted.php │ │ │ └── wsf-form-submitted.php │ ├── zapier │ │ ├── actions │ │ │ └── zapier-sendwebhook.php │ │ ├── add-zapier-integration.php │ │ ├── helpers │ │ │ └── zapier-helpers.php │ │ ├── img │ │ │ └── zapier-icon.svg │ │ ├── tokens │ │ │ └── index.php │ │ └── triggers │ │ │ └── index.php │ ├── zoho-campaigns │ │ ├── actions │ │ │ ├── zoho-campaigns-contact-donotmail-move.php │ │ │ ├── zoho-campaigns-contact-list-sub.php │ │ │ ├── zoho-campaigns-contact-list-unsub.php │ │ │ └── zoho-campaigns-list-add.php │ │ ├── add-zoho-campaigns-integration.php │ │ ├── client │ │ │ ├── actions │ │ │ │ └── zoho-campaigns-actions.php │ │ │ ├── auth │ │ │ │ └── zoho-campaigns-client-auth.php │ │ │ └── zoho-campaigns-client.php │ │ ├── helpers │ │ │ └── zoho-campaigns-helpers.php │ │ ├── img │ │ │ └── zoho-campaigns-icon.svg │ │ └── settings │ │ │ ├── zoho-campaigns-settings.php │ │ │ └── zoho-campaigns-view.php │ ├── zoom-webinar │ │ ├── actions │ │ │ ├── zoom-webinar-createwebinar.php │ │ │ ├── zoom-webinar-registeruser.php │ │ │ ├── zoom-webinar-registeruserless.php │ │ │ ├── zoom-webinar-unregisteruser.php │ │ │ └── zoom-webinar-unregisteruserless.php │ │ ├── helpers │ │ │ ├── zoom-webinar-api-caller.php │ │ │ └── zoom-webinar-app-helpers.php │ │ ├── img │ │ │ └── zoom-icon.svg │ │ ├── load.php │ │ ├── settings │ │ │ └── settings-zoom-webinar.php │ │ ├── traits │ │ │ └── zoom-webinar-registration-trait.php │ │ └── zoom-webinar-integration.php │ └── zoom │ │ ├── actions │ │ ├── zoom-createmeeting.php │ │ ├── zoom-createrecurringmeeting.php │ │ ├── zoom-registeruser.php │ │ ├── zoom-registeruserless.php │ │ ├── zoom-unregisteruser.php │ │ └── zoom-unregisteruserless.php │ │ ├── helpers │ │ ├── zoom-api-caller.php │ │ └── zoom-app-helpers.php │ │ ├── img │ │ └── zoom-icon.svg │ │ ├── load.php │ │ ├── settings │ │ └── settings-zoom.php │ │ ├── traits │ │ ├── zoom-common-trait.php │ │ ├── zoom-meeting-trait.php │ │ └── zoom-registration-trait.php │ │ └── zoom-integration.php └── legacy.php ├── uncanny-automator.php ├── uninstall.php └── vendor ├── autoload.php ├── chriskonnertz └── string-calc │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── ChrisKonnertz │ └── StringCalc │ ├── Calculator │ ├── Calculator.php │ └── CalculatorInterface.php │ ├── Container │ ├── AbstractServiceProvider.php │ ├── AbstractSingletonServiceProvider.php │ ├── Container.php │ ├── ContainerInterface.php │ ├── ServiceProviderRegistry.php │ ├── ServiceProviderRegistryInterface.php │ └── ServiceProviders │ │ ├── CalculatorServiceProvider.php │ │ ├── InputStreamServiceProvider.php │ │ ├── StringHelperServiceProvider.php │ │ └── SymbolContainerServiceProvider.php │ ├── Exceptions │ ├── CalculatorException.php │ ├── ContainerException.php │ ├── InvalidIdentifierException.php │ ├── NotFoundException.php │ ├── NumberOfArgumentsException.php │ ├── ParserException.php │ └── StringCalcException.php │ ├── Grammar │ ├── AbstractGrammar.php │ ├── Expressions │ │ ├── AbstractContainerExpression.php │ │ ├── AbstractExpression.php │ │ ├── AndExpression.php │ │ ├── OptionalAndExpression.php │ │ ├── OrExpression.php │ │ ├── RepeatedAndExpression.php │ │ └── SymbolExpression.php │ ├── Rule.php │ └── StringCalcGrammar.php │ ├── Parser │ ├── Nodes │ │ ├── AbstractNode.php │ │ ├── ContainerNode.php │ │ ├── FunctionNode.php │ │ └── SymbolNode.php │ └── Parser.php │ ├── StringCalc.php │ ├── Support │ ├── StringHelper.php │ ├── StringHelperInterface.php │ └── UtilityTrait.php │ ├── Symbols │ ├── AbstractBracket.php │ ├── AbstractClosingBracket.php │ ├── AbstractConstant.php │ ├── AbstractFunction.php │ ├── AbstractNumber.php │ ├── AbstractOpeningBracket.php │ ├── AbstractOperator.php │ ├── AbstractSeparator.php │ ├── AbstractSymbol.php │ ├── Concrete │ │ ├── Brackets │ │ │ ├── ClosingBracket.php │ │ │ └── OpeningBracket.php │ │ ├── Constants │ │ │ ├── EConstant.php │ │ │ ├── EulerConstant.php │ │ │ ├── LnPiConstant.php │ │ │ ├── LnTenConstant.php │ │ │ ├── LnTwoConstant.php │ │ │ ├── LogTenEConstant.php │ │ │ ├── LogTwoEConstant.php │ │ │ ├── OnePiConstant.php │ │ │ ├── PiConstant.php │ │ │ ├── PiFourConstant.php │ │ │ ├── PiTwoConstant.php │ │ │ ├── SqrtOneTwoConstant.php │ │ │ ├── SqrtPiConstant.php │ │ │ ├── SqrtThreeConstant.php │ │ │ ├── SqrtTwoConstant.php │ │ │ ├── TwoPiConstant.php │ │ │ └── TwoSqrtPiConstant.php │ │ ├── Functions │ │ │ ├── ACosFunction.php │ │ │ ├── ACosHFunction.php │ │ │ ├── ASinFunction.php │ │ │ ├── ASinHFunction.php │ │ │ ├── ATanFunction.php │ │ │ ├── ATanHFunction.php │ │ │ ├── ATanTwoFunction.php │ │ │ ├── AbsFunction.php │ │ │ ├── CeilFunction.php │ │ │ ├── CosFunction.php │ │ │ ├── CosHFunction.php │ │ │ ├── DegToRadFunction.php │ │ │ ├── EnFunction.php │ │ │ ├── ExpFunction.php │ │ │ ├── ExpMOneFunction.php │ │ │ ├── FModFunction.php │ │ │ ├── FloorFunction.php │ │ │ ├── GetRandMaxFunction.php │ │ │ ├── HypotFunction.php │ │ │ ├── LogFunction.php │ │ │ ├── LogOnePFunction.php │ │ │ ├── LogTenFunction.php │ │ │ ├── MTGetRandMaxFunction.php │ │ │ ├── MTRandFunction.php │ │ │ ├── MaxFunction.php │ │ │ ├── MinFunction.php │ │ │ ├── PowFunction.php │ │ │ ├── RadToDegFunction.php │ │ │ ├── RandFunction.php │ │ │ ├── RoundFunction.php │ │ │ ├── SinFunction.php │ │ │ ├── SinHFunction.php │ │ │ ├── SqrtFunction.php │ │ │ ├── TanFunction.php │ │ │ └── TanHFunction.php │ │ ├── Number.php │ │ ├── Operators │ │ │ ├── AdditionOperator.php │ │ │ ├── DivisionOperator.php │ │ │ ├── ExponentiationOperator.php │ │ │ ├── ModuloOperator.php │ │ │ ├── MultiplicationOperator.php │ │ │ └── SubtractionOperator.php │ │ └── Separator.php │ ├── SymbolContainer.php │ ├── SymbolContainerInterface.php │ └── SymbolRegistry.php │ └── Tokenizer │ ├── InputStream.php │ ├── InputStreamInterface.php │ ├── Token.php │ └── Tokenizer.php └── composer ├── ClassLoader.php ├── InstalledVersions.php ├── LICENSE ├── autoload_classmap.php ├── autoload_filemap.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── installed.json └── installed.php /.github/workflows/readme-generator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/.github/workflows/readme-generator.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/.jshintrc -------------------------------------------------------------------------------- /.phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/.phpcs.xml.dist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/README.md -------------------------------------------------------------------------------- /languages/uncanny-automator.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/languages/uncanny-automator.pot -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/license.txt -------------------------------------------------------------------------------- /logs/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /logs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/logs/index.php -------------------------------------------------------------------------------- /logs/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/readme.txt -------------------------------------------------------------------------------- /src/assets/_legacy/vendor/codemirror/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/_legacy/vendor/codemirror/js/search.js -------------------------------------------------------------------------------- /src/assets/build/518.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/518.js -------------------------------------------------------------------------------- /src/assets/build/518.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/518.js.map -------------------------------------------------------------------------------- /src/assets/build/admin-bar-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/admin-bar-rtl.css -------------------------------------------------------------------------------- /src/assets/build/admin-bar.asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/admin-bar.asset.php -------------------------------------------------------------------------------- /src/assets/build/admin-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/admin-bar.css -------------------------------------------------------------------------------- /src/assets/build/admin-bar.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/build/closure.asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/closure.asset.php -------------------------------------------------------------------------------- /src/assets/build/closure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/closure.js -------------------------------------------------------------------------------- /src/assets/build/closure.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/closure.js.map -------------------------------------------------------------------------------- /src/assets/build/fonts/fa-duotone-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/fonts/fa-duotone-900.ttf -------------------------------------------------------------------------------- /src/assets/build/fonts/fa-duotone-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/fonts/fa-duotone-900.woff2 -------------------------------------------------------------------------------- /src/assets/build/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/assets/build/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/assets/build/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/assets/build/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/assets/build/img/ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/ai.svg -------------------------------------------------------------------------------- /src/assets/build/img/arrow-settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/arrow-settings.svg -------------------------------------------------------------------------------- /src/assets/build/img/avi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/avi.svg -------------------------------------------------------------------------------- /src/assets/build/img/bmp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/bmp.svg -------------------------------------------------------------------------------- /src/assets/build/img/credits-left-hundred.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/credits-left-hundred.svg -------------------------------------------------------------------------------- /src/assets/build/img/credits-left-zero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/credits-left-zero.svg -------------------------------------------------------------------------------- /src/assets/build/img/csv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/csv.svg -------------------------------------------------------------------------------- /src/assets/build/img/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/default.svg -------------------------------------------------------------------------------- /src/assets/build/img/delay-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/delay-banner.svg -------------------------------------------------------------------------------- /src/assets/build/img/dll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/dll.svg -------------------------------------------------------------------------------- /src/assets/build/img/doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/doc.svg -------------------------------------------------------------------------------- /src/assets/build/img/docx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/docx.svg -------------------------------------------------------------------------------- /src/assets/build/img/dwg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/dwg.svg -------------------------------------------------------------------------------- /src/assets/build/img/exe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/exe.svg -------------------------------------------------------------------------------- /src/assets/build/img/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/facebook.svg -------------------------------------------------------------------------------- /src/assets/build/img/filter-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/filter-banner.svg -------------------------------------------------------------------------------- /src/assets/build/img/flv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/flv.svg -------------------------------------------------------------------------------- /src/assets/build/img/gif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/gif.svg -------------------------------------------------------------------------------- /src/assets/build/img/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/google.svg -------------------------------------------------------------------------------- /src/assets/build/img/gravatar-user-deleted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/gravatar-user-deleted.svg -------------------------------------------------------------------------------- /src/assets/build/img/happy-face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/happy-face.svg -------------------------------------------------------------------------------- /src/assets/build/img/html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/html.svg -------------------------------------------------------------------------------- /src/assets/build/img/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/icon.svg -------------------------------------------------------------------------------- /src/assets/build/img/iso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/iso.svg -------------------------------------------------------------------------------- /src/assets/build/img/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/java.svg -------------------------------------------------------------------------------- /src/assets/build/img/jpg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/jpg.svg -------------------------------------------------------------------------------- /src/assets/build/img/json.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/json.svg -------------------------------------------------------------------------------- /src/assets/build/img/logo-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/logo-horizontal.svg -------------------------------------------------------------------------------- /src/assets/build/img/mdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/mdb.svg -------------------------------------------------------------------------------- /src/assets/build/img/microsoft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/microsoft.svg -------------------------------------------------------------------------------- /src/assets/build/img/mid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/mid.svg -------------------------------------------------------------------------------- /src/assets/build/img/mov.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/mov.svg -------------------------------------------------------------------------------- /src/assets/build/img/mp3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/mp3.svg -------------------------------------------------------------------------------- /src/assets/build/img/mp4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/mp4.svg -------------------------------------------------------------------------------- /src/assets/build/img/mpeg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/mpeg.svg -------------------------------------------------------------------------------- /src/assets/build/img/multiple-actions-2-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/multiple-actions-2-2x.png -------------------------------------------------------------------------------- /src/assets/build/img/multiple-triggers-2-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/multiple-triggers-2-2x.png -------------------------------------------------------------------------------- /src/assets/build/img/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/pdf.svg -------------------------------------------------------------------------------- /src/assets/build/img/png.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/png.svg -------------------------------------------------------------------------------- /src/assets/build/img/post-loop-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/post-loop-banner.svg -------------------------------------------------------------------------------- /src/assets/build/img/ppt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/ppt.svg -------------------------------------------------------------------------------- /src/assets/build/img/psd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/psd.svg -------------------------------------------------------------------------------- /src/assets/build/img/pub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/pub.svg -------------------------------------------------------------------------------- /src/assets/build/img/rar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/rar.svg -------------------------------------------------------------------------------- /src/assets/build/img/recipe-type-anonymous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/recipe-type-anonymous.svg -------------------------------------------------------------------------------- /src/assets/build/img/recipe-type-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/recipe-type-user.svg -------------------------------------------------------------------------------- /src/assets/build/img/robot-feedback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/robot-feedback.svg -------------------------------------------------------------------------------- /src/assets/build/img/robot-site-not-connected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/robot-site-not-connected.svg -------------------------------------------------------------------------------- /src/assets/build/img/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/rss.svg -------------------------------------------------------------------------------- /src/assets/build/img/svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/svg.svg -------------------------------------------------------------------------------- /src/assets/build/img/tiff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/tiff.svg -------------------------------------------------------------------------------- /src/assets/build/img/token-loop-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/token-loop-banner.svg -------------------------------------------------------------------------------- /src/assets/build/img/txt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/txt.svg -------------------------------------------------------------------------------- /src/assets/build/img/user-loop-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/user-loop-banner.svg -------------------------------------------------------------------------------- /src/assets/build/img/user-selector-existing-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/user-selector-existing-user.svg -------------------------------------------------------------------------------- /src/assets/build/img/user-selector-new-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/user-selector-new-user.svg -------------------------------------------------------------------------------- /src/assets/build/img/wav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/wav.svg -------------------------------------------------------------------------------- /src/assets/build/img/wma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/wma.svg -------------------------------------------------------------------------------- /src/assets/build/img/wpforms-automator-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/wpforms-automator-icon.png -------------------------------------------------------------------------------- /src/assets/build/img/x-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/x-twitter.svg -------------------------------------------------------------------------------- /src/assets/build/img/xls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/xls.svg -------------------------------------------------------------------------------- /src/assets/build/img/xml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/xml.svg -------------------------------------------------------------------------------- /src/assets/build/img/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/youtube.svg -------------------------------------------------------------------------------- /src/assets/build/img/zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/img/zip.svg -------------------------------------------------------------------------------- /src/assets/build/main-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/main-rtl.css -------------------------------------------------------------------------------- /src/assets/build/main.asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/main.asset.php -------------------------------------------------------------------------------- /src/assets/build/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/main.css -------------------------------------------------------------------------------- /src/assets/build/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/main.js -------------------------------------------------------------------------------- /src/assets/build/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/main.js.map -------------------------------------------------------------------------------- /src/assets/build/tooltip-notification-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/tooltip-notification-rtl.css -------------------------------------------------------------------------------- /src/assets/build/tooltip-notification.asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/tooltip-notification.asset.php -------------------------------------------------------------------------------- /src/assets/build/tooltip-notification.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/tooltip-notification.css -------------------------------------------------------------------------------- /src/assets/build/tooltip-notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/tooltip-notification.js -------------------------------------------------------------------------------- /src/assets/build/tooltip-notification.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/tooltip-notification.js.map -------------------------------------------------------------------------------- /src/assets/build/wpforms-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/wpforms-rtl.css -------------------------------------------------------------------------------- /src/assets/build/wpforms.asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/wpforms.asset.php -------------------------------------------------------------------------------- /src/assets/build/wpforms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/wpforms.css -------------------------------------------------------------------------------- /src/assets/build/wpforms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/wpforms.js -------------------------------------------------------------------------------- /src/assets/build/wpforms.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/assets/build/wpforms.js.map -------------------------------------------------------------------------------- /src/class-automator-load.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/class-automator-load.php -------------------------------------------------------------------------------- /src/class-db-tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/class-db-tables.php -------------------------------------------------------------------------------- /src/core/actionify-triggers/class-trigger-engine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/actionify-triggers/class-trigger-engine.php -------------------------------------------------------------------------------- /src/core/actionify-triggers/class-trigger-query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/actionify-triggers/class-trigger-query.php -------------------------------------------------------------------------------- /src/core/actionify-triggers/class-trigger-queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/actionify-triggers/class-trigger-queue.php -------------------------------------------------------------------------------- /src/core/admin/addons/class-addons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/addons/class-addons.php -------------------------------------------------------------------------------- /src/core/admin/addons/view-addons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/addons/view-addons.php -------------------------------------------------------------------------------- /src/core/admin/admin-logs/admin-logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/admin-logs/admin-logs.php -------------------------------------------------------------------------------- /src/core/admin/admin-logs/tabs/action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/admin-logs/tabs/action.php -------------------------------------------------------------------------------- /src/core/admin/admin-logs/tabs/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/admin-logs/tabs/api.php -------------------------------------------------------------------------------- /src/core/admin/admin-logs/tabs/recipe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/admin-logs/tabs/recipe.php -------------------------------------------------------------------------------- /src/core/admin/admin-logs/tabs/trigger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/admin-logs/tabs/trigger.php -------------------------------------------------------------------------------- /src/core/admin/admin-settings/admin-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/admin-settings/admin-settings.php -------------------------------------------------------------------------------- /src/core/admin/admin-settings/tabs/addons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/admin-settings/tabs/addons.php -------------------------------------------------------------------------------- /src/core/admin/admin-settings/tabs/advanced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/admin-settings/tabs/advanced.php -------------------------------------------------------------------------------- /src/core/admin/admin-settings/tabs/general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/admin-settings/tabs/general.php -------------------------------------------------------------------------------- /src/core/admin/admin-tools/admin-tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/admin-tools/admin-tools.php -------------------------------------------------------------------------------- /src/core/admin/admin-tools/tabs/debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/admin-tools/tabs/debug.php -------------------------------------------------------------------------------- /src/core/admin/admin-tools/tabs/debug/debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/admin-tools/tabs/debug/debug.php -------------------------------------------------------------------------------- /src/core/admin/admin-tools/tabs/status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/admin-tools/tabs/status.php -------------------------------------------------------------------------------- /src/core/admin/admin-tools/tabs/tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/admin-tools/tabs/tools.php -------------------------------------------------------------------------------- /src/core/admin/admin-tools/tabs/tools/tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/admin-tools/tabs/tools/tools.php -------------------------------------------------------------------------------- /src/core/admin/api-log/class-api-log-table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/api-log/class-api-log-table.php -------------------------------------------------------------------------------- /src/core/admin/api-log/class-api-log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/api-log/class-api-log.php -------------------------------------------------------------------------------- /src/core/admin/class-activity-log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/class-activity-log.php -------------------------------------------------------------------------------- /src/core/admin/class-admin-menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/class-admin-menu.php -------------------------------------------------------------------------------- /src/core/admin/class-admin-template-library.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/class-admin-template-library.php -------------------------------------------------------------------------------- /src/core/admin/class-automator-review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/class-automator-review.php -------------------------------------------------------------------------------- /src/core/admin/class-copy-recipe-parts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/class-copy-recipe-parts.php -------------------------------------------------------------------------------- /src/core/admin/class-export-recipe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/class-export-recipe.php -------------------------------------------------------------------------------- /src/core/admin/class-import-recipe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/class-import-recipe.php -------------------------------------------------------------------------------- /src/core/admin/class-pricing-plan-resolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/class-pricing-plan-resolver.php -------------------------------------------------------------------------------- /src/core/admin/class-prune-logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/class-prune-logs.php -------------------------------------------------------------------------------- /src/core/admin/class-wpforms-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/class-wpforms-provider.php -------------------------------------------------------------------------------- /src/core/admin/notifications/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/notifications/notifications.php -------------------------------------------------------------------------------- /src/core/admin/notifications/views/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/notifications/views/banner.php -------------------------------------------------------------------------------- /src/core/admin/pro-upgrade/class-pro-upsell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/pro-upgrade/class-pro-upsell.php -------------------------------------------------------------------------------- /src/core/admin/pro-upgrade/view-pro-upsell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/pro-upgrade/view-pro-upsell.php -------------------------------------------------------------------------------- /src/core/admin/setup-wizard/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/setup-wizard/assets/images/logo.svg -------------------------------------------------------------------------------- /src/core/admin/setup-wizard/setup-wizard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/setup-wizard/setup-wizard.php -------------------------------------------------------------------------------- /src/core/admin/setup-wizard/src/views/step-1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/setup-wizard/src/views/step-1.php -------------------------------------------------------------------------------- /src/core/admin/setup-wizard/src/views/step-2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/setup-wizard/src/views/step-2.php -------------------------------------------------------------------------------- /src/core/admin/setup-wizard/src/views/step-3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/setup-wizard/src/views/step-3.php -------------------------------------------------------------------------------- /src/core/admin/setup-wizard/src/views/welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/admin/setup-wizard/src/views/welcome.php -------------------------------------------------------------------------------- /src/core/anon/class-add-anon-recipe-type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/anon/class-add-anon-recipe-type.php -------------------------------------------------------------------------------- /src/core/anon/class-automator-handle-anon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/anon/class-automator-handle-anon.php -------------------------------------------------------------------------------- /src/core/blocks/class-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/blocks/class-blocks.php -------------------------------------------------------------------------------- /src/core/class-automator-db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/class-automator-db.php -------------------------------------------------------------------------------- /src/core/class-utilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/class-utilities.php -------------------------------------------------------------------------------- /src/core/classes/class-actionify-triggers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/classes/class-actionify-triggers.php -------------------------------------------------------------------------------- /src/core/classes/class-add-user-recipe-type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/classes/class-add-user-recipe-type.php -------------------------------------------------------------------------------- /src/core/classes/class-api-server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/classes/class-api-server.php -------------------------------------------------------------------------------- /src/core/classes/class-automator-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/classes/class-automator-options.php -------------------------------------------------------------------------------- /src/core/classes/class-background-actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/classes/class-background-actions.php -------------------------------------------------------------------------------- /src/core/classes/class-calculation-token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/classes/class-calculation-token.php -------------------------------------------------------------------------------- /src/core/classes/class-incoming-webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/classes/class-incoming-webhook.php -------------------------------------------------------------------------------- /src/core/classes/class-initialize-automator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/classes/class-initialize-automator.php -------------------------------------------------------------------------------- /src/core/classes/class-legacy-integrations-files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/classes/class-legacy-integrations-files.php -------------------------------------------------------------------------------- /src/core/classes/class-populate-from-query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/classes/class-populate-from-query.php -------------------------------------------------------------------------------- /src/core/classes/class-set-up-automator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/classes/class-set-up-automator.php -------------------------------------------------------------------------------- /src/core/classes/class-usage-reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/classes/class-usage-reports.php -------------------------------------------------------------------------------- /src/core/deprecated/legacy-token-parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/deprecated/legacy-token-parser.php -------------------------------------------------------------------------------- /src/core/includes/automator-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/includes/automator-settings.php -------------------------------------------------------------------------------- /src/core/includes/pro-items-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/includes/pro-items-list.php -------------------------------------------------------------------------------- /src/core/includes/recipe-logs-view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/includes/recipe-logs-view.php -------------------------------------------------------------------------------- /src/core/lib/ai/adapters/api/credit-adapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/adapters/api/credit-adapter.php -------------------------------------------------------------------------------- /src/core/lib/ai/adapters/integration/ai-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/adapters/integration/ai-settings.php -------------------------------------------------------------------------------- /src/core/lib/ai/adapters/logger/logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/adapters/logger/logger.php -------------------------------------------------------------------------------- /src/core/lib/ai/core/interfaces/config-interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/core/interfaces/config-interface.php -------------------------------------------------------------------------------- /src/core/lib/ai/core/interfaces/logger-interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/core/interfaces/logger-interface.php -------------------------------------------------------------------------------- /src/core/lib/ai/core/traits/base-provider-trait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/core/traits/base-provider-trait.php -------------------------------------------------------------------------------- /src/core/lib/ai/default-providers-loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/default-providers-loader.php -------------------------------------------------------------------------------- /src/core/lib/ai/exceptions/response-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/exceptions/response-exception.php -------------------------------------------------------------------------------- /src/core/lib/ai/exceptions/service-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/exceptions/service-exception.php -------------------------------------------------------------------------------- /src/core/lib/ai/exceptions/validation-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/exceptions/validation-exception.php -------------------------------------------------------------------------------- /src/core/lib/ai/factory/provider-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/factory/provider-factory.php -------------------------------------------------------------------------------- /src/core/lib/ai/http/components/body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/http/components/body.php -------------------------------------------------------------------------------- /src/core/lib/ai/http/components/endpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/http/components/endpoint.php -------------------------------------------------------------------------------- /src/core/lib/ai/http/components/headers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/http/components/headers.php -------------------------------------------------------------------------------- /src/core/lib/ai/http/payload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/http/payload.php -------------------------------------------------------------------------------- /src/core/lib/ai/http/request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/http/request.php -------------------------------------------------------------------------------- /src/core/lib/ai/http/response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/http/response.php -------------------------------------------------------------------------------- /src/core/lib/ai/provider/claude-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/provider/claude-provider.php -------------------------------------------------------------------------------- /src/core/lib/ai/provider/cohere-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/provider/cohere-provider.php -------------------------------------------------------------------------------- /src/core/lib/ai/provider/deepseek-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/provider/deepseek-provider.php -------------------------------------------------------------------------------- /src/core/lib/ai/provider/gemini-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/provider/gemini-provider.php -------------------------------------------------------------------------------- /src/core/lib/ai/provider/grok-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/provider/grok-provider.php -------------------------------------------------------------------------------- /src/core/lib/ai/provider/mistral-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/provider/mistral-provider.php -------------------------------------------------------------------------------- /src/core/lib/ai/provider/openai-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/provider/openai-provider.php -------------------------------------------------------------------------------- /src/core/lib/ai/provider/perplexity-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/provider/perplexity-provider.php -------------------------------------------------------------------------------- /src/core/lib/ai/views/settings-html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/views/settings-html.php -------------------------------------------------------------------------------- /src/core/lib/ai/views/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/ai/views/settings.php -------------------------------------------------------------------------------- /src/core/lib/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/auth.php -------------------------------------------------------------------------------- /src/core/lib/class-automator-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/class-automator-functions.php -------------------------------------------------------------------------------- /src/core/lib/class-recipe-template-library.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/class-recipe-template-library.php -------------------------------------------------------------------------------- /src/core/lib/helpers/class-automator-helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/helpers/class-automator-helpers.php -------------------------------------------------------------------------------- /src/core/lib/recipe-parts/abstract-integration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncannyOwl/Uncanny-Automator/HEAD/src/core/lib/recipe-parts/abstract-integration.php -------------------------------------------------------------------------------- /src/core/lib/recipe-parts/actions/trait-action-process.php: -------------------------------------------------------------------------------- 1 |