chore: export all from saveEntityName module and update interface visibility (#39807)

## Description
Export interface required in EE.

## Automation

/ok-to-test tags="@tag.Sanity"

### 🔍 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/13947243393>
> Commit: 688556e45e2aeb7628ed7c7d5729df78af91645f
> <a
href="https://internal.appsmith.com/app/cypress-dashboard/rundetails-65890b3c81d7400d08fa9ee5?branch=master&workflowId=13947243393&attempt=1"
target="_blank">Cypress dashboard</a>.
> Tags: `@tag.Sanity`
> Spec:
> <hr>Wed, 19 Mar 2025 13:48:26 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

- **Refactor**
- Streamlined the module exports to ensure future enhancements are
automatically included.
- Adjusted component interfaces to improve accessibility and integration
consistency.

These refinements prepare the system for smoother, more scalable updates
while keeping the current user experience seamless.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
Alex 2025-03-19 17:00:12 +03:00 committed by GitHub
parent 59948e169e
commit 86bc40bf00
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
export { getBaseUrlsForIDEType } from "./getBaseUrlsForIDEType";
export { getIDETypeByUrl } from "./getIDETypeByUrl";
export { saveEntityName } from "./saveEntityName";
export * from "./saveEntityName";
export * from "./getEditableTabPermissions";

View File

@ -3,7 +3,7 @@ import { EditorEntityTab } from "IDE/Interfaces/EditorTypes";
import type { EntityItem } from "ee/IDE/Interfaces/EntityItem";
import { saveJSObjectName } from "actions/jsActionActions";
interface SaveEntityName {
export interface SaveEntityName {
params: {
name: string;
id: string;