Merge branch 'fix/chore-fix' into dev/plugin-deploy
commit
94a8547217
@ -0,0 +1,30 @@
|
|||||||
|
from enum import Enum
|
||||||
|
|
||||||
|
from pydantic import BaseModel
|
||||||
|
|
||||||
|
from core.plugin.entities.plugin import PluginDeclaration, PluginInstallationSource
|
||||||
|
|
||||||
|
|
||||||
|
class PluginBundleDependency(BaseModel):
|
||||||
|
class Type(str, Enum):
|
||||||
|
Github = PluginInstallationSource.Github.value
|
||||||
|
Marketplace = PluginInstallationSource.Marketplace.value
|
||||||
|
Package = PluginInstallationSource.Package.value
|
||||||
|
|
||||||
|
class Github(BaseModel):
|
||||||
|
repo_address: str
|
||||||
|
repo: str
|
||||||
|
release: str
|
||||||
|
packages: str
|
||||||
|
|
||||||
|
class Marketplace(BaseModel):
|
||||||
|
organization: str
|
||||||
|
plugin: str
|
||||||
|
version: str
|
||||||
|
|
||||||
|
class Package(BaseModel):
|
||||||
|
unique_identifier: str
|
||||||
|
manifest: PluginDeclaration
|
||||||
|
|
||||||
|
type: Type
|
||||||
|
value: Github | Marketplace | Package
|
||||||
Loading…
Reference in New Issue