feat: dsl check plugin

This commit is contained in:
StyleZhang
2024-11-13 15:48:06 +08:00
parent edbfe27eb1
commit 577a948f42
7 changed files with 94 additions and 4 deletions

View File

@ -305,3 +305,15 @@ export type UninstallPluginResponse = {
export type PluginsFromMarketplaceResponse = {
plugins: Plugin[]
}
export type Dependency = {
type: 'github' | 'marketplace' | 'package'
value: {
repo?: string
version?: string
package?: string
github_plugin_unique_identifier?: string
marketplace_plugin_unique_identifier?: string
plugin_unique_identifier?: string
}
}