Conversation
WalkthroughThis pull request refactors datasource import paths without altering the underlying functionality. The updates change import sources for both Changes
Sequence Diagram(s)sequenceDiagram
participant UI
participant Saga
participant EE_API
UI->>Saga: Trigger datasource action
Saga->>EE_API: Invoke API method
EE_API-->>Saga: Return API response
Saga-->>UI: Deliver result
Possibly related PRs
Suggested labels
Suggested reviewers
Poem
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (1)
app/client/src/git/types.ts (1)
62-66: Fix typo in property name.There's a typo in the property name
platFormSupported- it should beplatformSupported(camelCase) for consistency with TypeScript naming conventions.export interface SSHKeyType { keySize: number; - platFormSupported: string; + platformSupported: string; protocolName: string; }
📜 Review details
Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro (Legacy)
📒 Files selected for processing (2)
app/client/src/git/types.ts(1 hunks)app/client/src/reducers/uiReducers/gitSyncReducer.ts(1 hunks)
✅ Files skipped from review due to trivial changes (1)
- app/client/src/reducers/uiReducers/gitSyncReducer.ts
⏰ Context from checks skipped due to timeout of 90000ms (8)
- GitHub Check: perform-test / rts-build / build
- GitHub Check: perform-test / client-build / client-build
- GitHub Check: perform-test / server-build / server-unit-tests
- GitHub Check: client-lint / client-lint
- GitHub Check: client-check-cyclic-deps / check-cyclic-dependencies
- GitHub Check: client-unit-tests / client-unit-tests
- GitHub Check: client-prettier / prettier-check
- GitHub Check: client-build / client-build
🔇 Additional comments (1)
app/client/src/git/types.ts (1)
68-72: LGTM! The GetSSHKeyResponseData interface looks well-defined.The interface properly uses the SSHKeyType array and includes the optional publicKey property, which is appropriately marked with the optional modifier.
## Description This PR contains CE and EE split changes for DatasourcesApi.ts Fixes #`Issue Number` _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.All" ### 🔍 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/14103345701> > Commit: aa7ce51 > <a href="https://internal.appsmith.com/app/cypress-dashboard/rundetails-65890b3c81d7400d08fa9ee5?branch=master&workflowId=14103345701&attempt=1" target="_blank">Cypress dashboard</a>. > Tags: `@tag.All` > Spec: > <hr>Thu, 27 Mar 2025 10:45:32 UTC <!-- end of auto-generated comment: Cypress test results --> ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [ ] No <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit ## Summary by CodeRabbit - **New Features** - Enhanced datasource management now leverages improved enterprise services, offering a more robust and streamlined experience when configuring and managing data connections. - Introduced new interfaces for SSH key management, expanding type definitions related to Git. - **Refactor** - Standardized internal integrations to consistently utilize the upgraded enterprise functionalities across the application. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: “sneha122” <“sneha@appsmith.com”>
Description
This PR contains CE and EE split changes for DatasourcesApi.ts
Fixes #
Issue Numberor
Fixes
Issue URLWarning
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.All"
🔍 Cypress test results
Tip
🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉
Workflow run: https://github.com/appsmithorg/appsmith/actions/runs/14103345701
Commit: aa7ce51
Cypress dashboard.
Tags:
@tag.AllSpec:
Thu, 27 Mar 2025 10:45:32 UTC
Communication
Should the DevRel and Marketing teams inform users about this change?
Summary by CodeRabbit
Summary by CodeRabbit
New Features
Refactor