mirror of
https://github.com/langgenius/dify.git
synced 2026-05-03 08:58:09 +08:00
feat: dsl check plugin
This commit is contained in:
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user