## Description This PR adds CE changes for the paragon integrations, with this whenever anybody is using CE version, paragon integrations will be visible but once they click on it, it will ask for them to put in email id and request access. It's counterpart EE PR handles the paragon integration creation and authorisation in appsmith. EE PR: https://github.com/appsmithorg/appsmith-ee/pull/5859 EE PR which has both CE and EE changes to ensure all things are working smoothly: https://github.com/appsmithorg/appsmith-ee/pull/5866 Fixes #`38406` _or_ Fixes `Issue URL` > [!WARNING] > _If no issue exists, please create an issue first, and check with the maintainers if the issue is valid._ ## Automation /ok-to-test tags="@tag.Datasource" ### 🔍 Cypress test results <!-- This is an auto-generated comment: Cypress test results --> > [!TIP] > 🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉 > Workflow run: <https://github.com/appsmithorg/appsmith/actions/runs/12627633263> > Commit: 9c1e06b557bc8d5d0d59e7bad3e70df6582900fa > <a href="https://internal.appsmith.com/app/cypress-dashboard/rundetails-65890b3c81d7400d08fa9ee5?branch=master&workflowId=12627633263&attempt=1" target="_blank">Cypress dashboard</a>. > Tags: `@tag.Datasource` > Spec: > <hr>Mon, 06 Jan 2025 07:10:57 UTC <!-- end of auto-generated comment: Cypress test results --> ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [x] No <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit ## Summary by CodeRabbit - **New Features** - Added support for External SaaS datasources and plugins. - Introduced new actions and configurations for External SaaS integration. - **Refactor** - Restructured datasource-related sagas and import paths. - Updated selectors and constants to support new plugin type. - **Code Improvements** - Enhanced datasource management and integration capabilities. - Improved modularity of saga functions. <!-- end of auto-generated comment: release notes by coderabbit.ai --> Co-authored-by: “sneha122” <“sneha@appsmith.com”>
62 lines
2.3 KiB
TypeScript
62 lines
2.3 KiB
TypeScript
import { watchActionExecutionSagas } from "ee/sagas/ActionExecution/ActionExecutionSagas";
|
|
import userSagas from "ee/sagas/userSagas";
|
|
import workspaceSagas from "ee/sagas/WorkspaceSagas";
|
|
import { watchActionSagas } from "sagas/ActionSagas";
|
|
import layoutUpdateSagas from "sagas/AutoLayoutUpdateSagas";
|
|
import { watchDatasourcesSagas } from "ee/sagas/DatasourcesSagas";
|
|
import { watchJSActionSagas } from "ee/sagas/JSActionSagas";
|
|
import apiPaneSagas from "../src/sagas/ApiPaneSagas";
|
|
import applicationSagas from "ee/sagas/ApplicationSagas";
|
|
import batchSagas from "../src/sagas/BatchSagas";
|
|
import draggingCanvasSagas from "../src/sagas/CanvasSagas/DraggingCanvasSagas";
|
|
import selectionCanvasSagas from "../src/sagas/CanvasSagas/SelectionCanvasSagas";
|
|
import curlImportSagas from "../src/sagas/CurlImportSagas";
|
|
import debuggerSagas from "../src/sagas/DebuggerSagas";
|
|
import formEvaluationChangeListener from "../src/sagas/FormEvaluationSaga";
|
|
import globalSearchSagas from "../src/sagas/GlobalSearchSagas";
|
|
import initSagas from "../src/sagas/InitSagas";
|
|
import JSLibrarySaga from "../src/sagas/JSLibrarySaga";
|
|
import jsPaneSagas from "../src/sagas/JSPaneSagas";
|
|
import LintingSaga from "../src/sagas/LintingSagas";
|
|
import modalSagas from "../src/sagas/ModalSagas";
|
|
import pluginSagas from "../src/sagas/PluginSagas";
|
|
import queryPaneSagas from "../src/sagas/QueryPaneSagas";
|
|
import saaSPaneSagas from "../src/sagas/SaaSPaneSagas";
|
|
import snipingModeSagas from "../src/sagas/SnipingModeSagas";
|
|
import themeSagas from "../src/sagas/ThemeSaga";
|
|
import actionExecutionChangeListeners from "../src/sagas/WidgetLoadingSaga";
|
|
import widgetOperationSagas from "../src/sagas/WidgetOperationSagas";
|
|
import NavigationSagas from "../src/ee/sagas/NavigationSagas";
|
|
|
|
export const sagasToRunForTests = [
|
|
initSagas,
|
|
watchActionSagas,
|
|
watchActionExecutionSagas,
|
|
widgetOperationSagas,
|
|
watchDatasourcesSagas,
|
|
applicationSagas,
|
|
apiPaneSagas,
|
|
jsPaneSagas,
|
|
userSagas,
|
|
pluginSagas,
|
|
workspaceSagas,
|
|
curlImportSagas,
|
|
snipingModeSagas,
|
|
queryPaneSagas,
|
|
modalSagas,
|
|
batchSagas,
|
|
themeSagas,
|
|
actionExecutionChangeListeners,
|
|
formEvaluationChangeListener,
|
|
saaSPaneSagas,
|
|
globalSearchSagas,
|
|
debuggerSagas,
|
|
watchJSActionSagas,
|
|
selectionCanvasSagas,
|
|
draggingCanvasSagas,
|
|
LintingSaga,
|
|
JSLibrarySaga,
|
|
NavigationSagas,
|
|
layoutUpdateSagas,
|
|
];
|