Skip to content

refactor: replace getPluginApi with getMetaApi#634

Merged
chilingling merged 4 commits intoopentiny:refactor/developfrom
hexqi:refactor/getPluginApi
Jul 12, 2024
Merged

refactor: replace getPluginApi with getMetaApi#634
chilingling merged 4 commits intoopentiny:refactor/developfrom
hexqi:refactor/getPluginApi

Conversation

@hexqi
Copy link
Collaborator

@hexqi hexqi commented Jul 8, 2024

English | 简体中文

PR

PR Checklist

Please check if your PR fulfills the following requirements:

  • The commit message follows our Commit Message Guidelines
  • Tests for the changes have been added (for bug fixes / features)
  • Docs have been added / updated (for bug fixes / features)
  • Built its own designer, fully self-validated

PR Type

What kind of change does this PR introduce?

  • Bugfix
  • Feature
  • Code style update (formatting, local variables)
  • Refactoring (no functional changes, no api changes)
  • Build related changes
  • CI related changes
  • Documentation content changes
  • Other... Please describe:

Background and solution

What is the current behavior?

Issue Number: N/A

What is the new behavior?

Does this PR introduce a breaking change?

  • Yes
  • No

Other information

Summary by CodeRabbit

  • Refactor

    • Improved the way block data is managed and compared by using getMetaApi for BlockManage related operations.
    • Updated import statements and logic in several components to use getMetaApi and META_APP.
  • Bug Fixes

    • Fixed issues with retrieving and managing block data in deploy dialogs and progress bars.
  • Chores

    • Renamed the api property to apis in plugin-related exports for better clarity and consistency.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Jul 8, 2024

Walkthrough

The recent changes across multiple Vue files in the project involve a significant refactor of how APIs are accessed. Specifically, the update replaces useLayout and getPluginApi with getMetaApi from the @opentiny/tiny-engine-meta-register package. This adjustment affects various components, including BlockDeployDialog.vue, ProgressBar.vue, VariableConfigurator.vue, and others, streamlining the API interactions and improving code consistency.

Changes

File Path Change Summary
packages/common/component/BlockDeployDialog.vue Refactored import and usage of APIs from useLayout and getPluginApi to getMetaApi and META_APP.
packages/common/component/ProgressBar.vue Updated import statement to use getMetaApi and META_APP for retrieving editBlock.
packages/configurator/src/variable-configurator/VariableConfigurator.vue Modified imports and API usage to replace getPluginApi with getMetaApi using META_APP.Page.
packages/layout/src/DesignPlugins.vue Removed registerPluginApi from the plugin iteration logic.
packages/layout/src/DesignToolbars.vue Eliminated the use of useLayout for registering plugin APIs.
packages/layout/src/composable/useLayout.js Introduced META_APP and getMetaApi to replace getPluginApi and removed registerPluginApi.
packages/plugins/block/index.js Renamed the api property to apis in the exported object.

Poem

In the code where APIs abide,
New pathways now reside.
From useLayout to getMetaApi we glide,
Consistency and clarity, side by side.
With a hop, hop, hop and a coding spree,
We’ve refactored with glee,
Celebrating this change with a bunny's decree! 🐇✨


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

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 as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

Outside diff range and nitpick comments (2)
packages/layout/src/DesignToolbars.vue (1)

Line range hint 1-1:
Import getMetaApi and META_APP

The import statement for getMetaApi and META_APP is missing in the provided code. Ensure that these imports are correctly added.

+ import { getMetaApi, META_APP } from '@opentiny/tiny-engine-meta-register'
packages/settings/events/src/components/BindEvents.vue (1)

124-124: Remove unused highlightMethod from getMetaApi

If highlightMethod is not used elsewhere in the file, consider removing it to keep the code clean.

- const { highlightMethod } = getMetaApi(META_APP.Page)
Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 0c6a248 and 32a0807.

Files selected for processing (27)
  • packages/canvas/DesignCanvas/src/DesignCanvas.vue (1 hunks)
  • packages/common/component/BlockDeployDialog.vue (3 hunks)
  • packages/common/component/ProgressBar.vue (1 hunks)
  • packages/configurator/src/variable-configurator/VariableConfigurator.vue (2 hunks)
  • packages/layout/src/DesignPlugins.vue (1 hunks)
  • packages/layout/src/DesignToolbars.vue (2 hunks)
  • packages/layout/src/composable/useLayout.js (6 hunks)
  • packages/plugins/block/index.js (1 hunks)
  • packages/plugins/block/src/composable/useBlock.js (2 hunks)
  • packages/plugins/data/src/Main.vue (2 hunks)
  • packages/plugins/materials/index.js (1 hunks)
  • packages/plugins/materials/src/composable/useResource.js (3 hunks)
  • packages/plugins/page/index.js (1 hunks)
  • packages/plugins/script/index.js (1 hunks)
  • packages/plugins/tutorial/index.js (1 hunks)
  • packages/plugins/tutorial/src/Main.vue (2 hunks)
  • packages/register/src/constants.js (1 hunks)
  • packages/register/src/index.js (1 hunks)
  • packages/settings/events/src/components/BindEvents.vue (3 hunks)
  • packages/settings/events/src/components/BindEventsDialog.vue (3 hunks)
  • packages/settings/events/src/components/BindEventsDialogContent.vue (2 hunks)
  • packages/settings/events/src/components/BindEventsDialogSidebar.vue (2 hunks)
  • packages/toolbars/generate-vue/src/Main.vue (2 hunks)
  • packages/toolbars/lock/index.js (1 hunks)
  • packages/toolbars/lock/src/Main.vue (1 hunks)
  • packages/toolbars/save/index.js (1 hunks)
  • packages/toolbars/save/src/js/index.js (3 hunks)
Files skipped from review due to trivial changes (7)
  • packages/canvas/DesignCanvas/src/DesignCanvas.vue
  • packages/plugins/block/index.js
  • packages/plugins/materials/index.js
  • packages/plugins/page/index.js
  • packages/register/src/index.js
  • packages/toolbars/lock/index.js
  • packages/toolbars/lock/src/Main.vue
Additional comments not posted (33)
packages/common/component/ProgressBar.vue (2)

17-17: LGTM!

The import statement change aligns with the new API access pattern.


24-26: LGTM!

The setup function change aligns with the new API access pattern and appears correct.

packages/register/src/constants.js (2)

1-18: Constants Addition: META_SERVICE

The META_SERVICE object defines various service keys. The naming and values appear consistent with the existing pattern.


20-57: Constants Addition: META_APP

The META_APP object defines various application keys. The naming and values appear consistent with the existing pattern.

packages/layout/src/composable/useLayout.js (2)

15-15: Import META_APP and getMetaApi

The import statement correctly brings in META_APP and getMetaApi from @opentiny/tiny-engine-meta-register.


75-75: Update activePlugin to use getMetaApi

The activePlugin function now uses getMetaApi to resolve the API for the given plugin name. This aligns with the refactoring objective.

packages/settings/events/src/components/BindEventsDialogSidebar.vue (2)

21-21: Import getMetaApi and META_APP

The import statement correctly brings in getMetaApi and META_APP from @opentiny/tiny-engine-meta-register.


39-39: Update setup function to use getMetaApi

The setup function now uses getMetaApi to get the getMethodNameList method from META_APP.Page. This aligns with the refactoring objective.

packages/toolbars/save/src/js/index.js (3)

14-22: Import changes look good.

The import statements have been correctly updated to include getMetaApi and META_APP.


41-41: API usage update in saveBlock looks good.

The saveBlock function has been updated to use getMetaApi with META_APP.BlockManage.


127-132: API usage update in openCommon looks good.

The openCommon function has been updated to use getMetaApi with META_APP.BlockManage and META_APP.AppManage.

packages/plugins/tutorial/src/Main.vue (2)

46-46: Import changes look good.

The import statements have been correctly updated to include getMetaApi and META_APP.


107-113: API usage update in openVideoPanel looks good.

The openVideoPanel function has been updated to use getMetaApi with META_APP.Tutorial.

packages/plugins/materials/src/composable/useResource.js (3)

25-27: Import changes look good.

The import statements have been correctly updated to include getMetaApi and META_APP.


72-72: API usage update in initBlock looks good.

The initBlock function has been updated to use getMetaApi with META_APP.BlockManage.


90-90: API usage update in initPageOrBlock looks good.

The initPageOrBlock function has been updated to use getMetaApi with META_APP.AppManage.

packages/settings/events/src/components/BindEventsDialogContent.vue (2)

56-56: Import changes look good.

The import statements have been correctly updated to include getMetaApi and META_APP.


74-74: API usage update in setup looks good.

The setup function has been updated to use getMetaApi with META_APP.Page.

packages/settings/events/src/components/BindEventsDialog.vue (2)

25-31: Import statement changes are consistent.

The import statements have been updated to include getMetaApi and META_APP, aligning with the PR objectives.


63-65: API usage changes are consistent.

The API usage has been updated to replace getPluginApi with getMetaApi, aligning with the new import statements.

packages/common/component/BlockDeployDialog.vue (2)

84-84: Import statement changes are consistent.

The import statements have been updated to include getMetaApi and META_APP, aligning with the PR objectives.


Line range hint 155-176:
API usage changes are consistent.

The API usage has been updated to replace getPluginApi with getMetaApi, aligning with the new import statements.

packages/toolbars/generate-vue/src/Main.vue (2)

26-34: Import statement changes are consistent.

The import statements have been updated to include getMetaApi and META_APP, aligning with the PR objectives.


100-100: API usage changes are consistent.

The API usage has been updated to replace getPluginApi with getMetaApi, aligning with the new import statements.

packages/layout/src/DesignPlugins.vue (1)

108-108: API usage changes are consistent.

The removal of registerPluginApi and the iteration over props.plugins aligns with the PR objectives and does not introduce any issues.

packages/settings/events/src/components/BindEvents.vue (2)

91-98: Import getMetaApi and META_APP

The new imports getMetaApi and META_APP are correctly added from @opentiny/tiny-engine-meta-register.


223-226: Update API usage to getMetaApi

The API usage has been correctly updated to use getMetaApi instead of getPluginApi or useLayout.

packages/plugins/data/src/Main.vue (2)

78-80: Import getMetaApi and META_APP

The new imports getMetaApi and META_APP are correctly added from @opentiny/tiny-engine-meta-register.


117-117: Update API usage to getMetaApi

The API usage has been correctly updated to use getMetaApi instead of getPluginApi or useLayout.

packages/plugins/block/src/composable/useBlock.js (2)

23-31: Import getMetaApi and META_APP

The new imports getMetaApi and META_APP are correctly added from @opentiny/tiny-engine-meta-register.


Line range hint 484-496: Update API usage to getMetaApi

The API usage has been correctly updated to use getMetaApi instead of getPluginApi or useLayout. Ensure that getMethods returns the expected methods.

packages/configurator/src/variable-configurator/VariableConfigurator.vue (2)

124-131: Import getMetaApi and META_APP

The new imports getMetaApi and META_APP are correctly added from @opentiny/tiny-engine-meta-register.


470-472: Update API usage to getMetaApi

The API usage has been correctly updated to use getMetaApi instead of getPluginApi or useLayout. Ensure that getMethods returns the expected methods.

@hexqi hexqi force-pushed the refactor/getPluginApi branch from 32a0807 to 6f4b74a Compare July 8, 2024 00:54
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 32a0807 and 6f4b74a.

Files selected for processing (23)
  • packages/canvas/DesignCanvas/src/DesignCanvas.vue (1 hunks)
  • packages/common/component/BlockDeployDialog.vue (3 hunks)
  • packages/common/component/ProgressBar.vue (1 hunks)
  • packages/configurator/src/variable-configurator/VariableConfigurator.vue (2 hunks)
  • packages/layout/src/DesignPlugins.vue (1 hunks)
  • packages/layout/src/DesignToolbars.vue (2 hunks)
  • packages/layout/src/composable/useLayout.js (6 hunks)
  • packages/plugins/block/index.js (1 hunks)
  • packages/plugins/block/src/composable/useBlock.js (2 hunks)
  • packages/plugins/data/src/Main.vue (2 hunks)
  • packages/plugins/materials/index.js (1 hunks)
  • packages/plugins/materials/src/composable/useResource.js (3 hunks)
  • packages/plugins/page/index.js (1 hunks)
  • packages/plugins/script/index.js (1 hunks)
  • packages/plugins/tutorial/index.js (1 hunks)
  • packages/plugins/tutorial/src/Main.vue (2 hunks)
  • packages/settings/events/src/components/BindEvents.vue (3 hunks)
  • packages/settings/events/src/components/BindEventsDialog.vue (3 hunks)
  • packages/settings/events/src/components/BindEventsDialogContent.vue (2 hunks)
  • packages/settings/events/src/components/BindEventsDialogSidebar.vue (2 hunks)
  • packages/toolbars/generate-vue/src/Main.vue (2 hunks)
  • packages/toolbars/save/index.js (1 hunks)
  • packages/toolbars/save/src/js/index.js (3 hunks)
Files skipped from review due to trivial changes (1)
  • packages/plugins/materials/index.js
Files skipped from review as they are similar to previous changes (19)
  • packages/canvas/DesignCanvas/src/DesignCanvas.vue
  • packages/common/component/BlockDeployDialog.vue
  • packages/common/component/ProgressBar.vue
  • packages/configurator/src/variable-configurator/VariableConfigurator.vue
  • packages/layout/src/DesignPlugins.vue
  • packages/layout/src/DesignToolbars.vue
  • packages/layout/src/composable/useLayout.js
  • packages/plugins/block/index.js
  • packages/plugins/data/src/Main.vue
  • packages/plugins/materials/src/composable/useResource.js
  • packages/plugins/page/index.js
  • packages/plugins/script/index.js
  • packages/plugins/tutorial/index.js
  • packages/plugins/tutorial/src/Main.vue
  • packages/settings/events/src/components/BindEvents.vue
  • packages/settings/events/src/components/BindEventsDialog.vue
  • packages/settings/events/src/components/BindEventsDialogContent.vue
  • packages/settings/events/src/components/BindEventsDialogSidebar.vue
  • packages/toolbars/save/src/js/index.js
Additional comments not posted (5)
packages/toolbars/save/index.js (1)

19-19: Ensure all references to the api property are updated to apis.

Verify that all references to the api property in the codebase are updated to apis to maintain consistency.

Verification successful

Let's investigate the context around the api property in packages/toolbars/save/index.js to verify if the change to apis is consistent and correctly applied.


Let's investigate the usage of api in packages/toolbars/save/src/Main.vue to ensure the change to apis in index.js is consistent.


Ensure all references to the api property are updated to apis.

The change to rename api to apis in packages/toolbars/save/index.js appears to be intentional and localized to the export object. The api object in packages/toolbars/save/src/Main.vue remains unchanged, which is consistent with the intended scope of the change.

  • packages/toolbars/save/index.js: The api property is renamed to apis.
Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify all references to `api` are updated to `apis`.

# Test: Search for the old property name. Expect: No occurrences of `api` property.
rg --type js --pcre2 '\bapi\b'

Length of output: 25053


Script:

#!/bin/bash
# Description: Display the context around the api property in packages/toolbars/save/index.js

# Fetch the relevant lines around the change in packages/toolbars/save/index.js
rg --context 5 'api' packages/toolbars/save/index.js

Length of output: 358


Script:

#!/bin/bash
# Description: Display the usage of api in packages/toolbars/save/src/Main.vue

# Fetch the relevant lines around the usage of api in packages/toolbars/save/src/Main.vue
rg --context 5 'api' packages/toolbars/save/src/Main.vue

Length of output: 410

packages/toolbars/generate-vue/src/Main.vue (2)

26-35: LGTM! The import statements are correctly updated.

The import statements have been correctly updated to include getMetaApi and META_APP.


100-102: LGTM! The function calls are correctly updated.

The function calls have been correctly updated to use getMetaApi with META_APP.

packages/plugins/block/src/composable/useBlock.js (2)

23-31: LGTM! The import statements are correctly updated.

The import statements have been correctly updated to include getMetaApi and META_APP.


Line range hint 484-492:
LGTM! The function calls are correctly updated.

The function calls have been correctly updated to use getMetaApi with META_APP.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 6f4b74a and 082b687.

Files selected for processing (4)
  • packages/layout/src/DesignPlugins.vue (1 hunks)
  • packages/layout/src/DesignToolbars.vue (2 hunks)
  • packages/toolbars/generate-vue/src/Main.vue (2 hunks)
  • packages/toolbars/lock/src/Main.vue (1 hunks)
Files skipped from review as they are similar to previous changes (4)
  • packages/layout/src/DesignPlugins.vue
  • packages/layout/src/DesignToolbars.vue
  • packages/toolbars/generate-vue/src/Main.vue
  • packages/toolbars/lock/src/Main.vue

rhlin
rhlin previously approved these changes Jul 10, 2024
chilingling
chilingling previously approved these changes Jul 11, 2024
@hexqi hexqi dismissed stale reviews from chilingling and rhlin via 20d6199 July 11, 2024 06:10
@hexqi hexqi force-pushed the refactor/getPluginApi branch from 082b687 to 20d6199 Compare July 11, 2024 06:10
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 082b687 and 30dc347.

Files selected for processing (26)
  • packages/common/component/BlockDeployDialog.vue (3 hunks)
  • packages/common/component/ProgressBar.vue (1 hunks)
  • packages/configurator/src/variable-configurator/VariableConfigurator.vue (2 hunks)
  • packages/layout/src/DesignPlugins.vue (1 hunks)
  • packages/layout/src/DesignToolbars.vue (2 hunks)
  • packages/layout/src/composable/useLayout.js (6 hunks)
  • packages/plugins/block/index.js (1 hunks)
  • packages/plugins/block/src/composable/useBlock.js (2 hunks)
  • packages/plugins/data/src/Main.vue (2 hunks)
  • packages/plugins/materials/index.js (1 hunks)
  • packages/plugins/materials/src/composable/useResource.js (3 hunks)
  • packages/plugins/page/index.js (1 hunks)
  • packages/plugins/script/index.js (1 hunks)
  • packages/plugins/tutorial/index.js (1 hunks)
  • packages/plugins/tutorial/src/Main.vue (2 hunks)
  • packages/register/src/constants.js (1 hunks)
  • packages/register/src/index.js (1 hunks)
  • packages/settings/events/src/components/BindEvents.vue (3 hunks)
  • packages/settings/events/src/components/BindEventsDialog.vue (3 hunks)
  • packages/settings/events/src/components/BindEventsDialogContent.vue (2 hunks)
  • packages/settings/events/src/components/BindEventsDialogSidebar.vue (2 hunks)
  • packages/toolbars/generate-vue/src/Main.vue (2 hunks)
  • packages/toolbars/lock/index.js (1 hunks)
  • packages/toolbars/lock/src/Main.vue (1 hunks)
  • packages/toolbars/save/index.js (1 hunks)
  • packages/toolbars/save/src/js/index.js (3 hunks)
Files skipped from review as they are similar to previous changes (24)
  • packages/common/component/BlockDeployDialog.vue
  • packages/common/component/ProgressBar.vue
  • packages/configurator/src/variable-configurator/VariableConfigurator.vue
  • packages/layout/src/DesignPlugins.vue
  • packages/layout/src/DesignToolbars.vue
  • packages/layout/src/composable/useLayout.js
  • packages/plugins/block/index.js
  • packages/plugins/materials/index.js
  • packages/plugins/materials/src/composable/useResource.js
  • packages/plugins/page/index.js
  • packages/plugins/script/index.js
  • packages/plugins/tutorial/index.js
  • packages/plugins/tutorial/src/Main.vue
  • packages/register/src/constants.js
  • packages/register/src/index.js
  • packages/settings/events/src/components/BindEvents.vue
  • packages/settings/events/src/components/BindEventsDialog.vue
  • packages/settings/events/src/components/BindEventsDialogContent.vue
  • packages/settings/events/src/components/BindEventsDialogSidebar.vue
  • packages/toolbars/generate-vue/src/Main.vue
  • packages/toolbars/lock/index.js
  • packages/toolbars/lock/src/Main.vue
  • packages/toolbars/save/index.js
  • packages/toolbars/save/src/js/index.js
Additional comments not posted (4)
packages/plugins/data/src/Main.vue (2)

78-80: Add imports for useHelp, getMetaApi, and META_APP.

These imports are used for help documentation, API management, and meta application operations.


117-117: Use getMetaApi to get common API methods.

The getMetaApi function is correctly used to get common API methods from META_APP.Save.

packages/plugins/block/src/composable/useBlock.js (2)

23-31: Add imports for getMetaApi and META_APP.

These imports are used for API management and meta application operations.


484-484: Use getMetaApi to get methods for the Page meta application.

The getMetaApi function is correctly used to get methods from META_APP.Page.

@chilingling chilingling merged commit b140357 into opentiny:refactor/develop Jul 12, 2024
yy-wow pushed a commit to yy-wow/tiny-engine that referenced this pull request Oct 10, 2024
* refactor: replace getPluginApi with getMetaApi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants