/
githubmirror
/
halo
Обзор
Документация
Войти
/
githubmirror
/
halo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ui/packages/api-client/src/models/plugin-spec.ts
80 строк
2 KB
Ryan Wang
Prepare 2.26.0 snapshot version (#10079)
12 июн 2026, 10:25
Не верифицирован
12 июн 2026, 10:25
aea0101
Код
Авторство
О чём код?
/* tslint:disable */ /* eslint-disable */ /** * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2.26.0-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ // May contain unused imports in some cases // @ts-ignore import type { License } from './license'; // May contain unused imports in some cases // @ts-ignore import type { PluginAuthor } from './plugin-author'; /** * Desired plugin metadata and configuration references. */ export interface PluginSpec { 'author'?: PluginAuthor; /** * ConfigMap metadata.name storing plugin configuration values. */ 'configMapName'?: string; /** * Human-readable plugin description. */ 'description'?: string; /** * Display name shown for the plugin. */ 'displayName'?: string; /** * Whether the plugin should be enabled. */ 'enabled'?: boolean; /** * Plugin homepage URL. */ 'homepage'?: string; /** * Issue tracker URL. */ 'issues'?: string; /** * Licenses declared by the plugin. */ 'license'?: Array<License>; /** * Logo URL or attachment URI for the plugin. */ 'logo'?: string; /** * Required plugin dependencies keyed by plugin name with version constraints as values. */ 'pluginDependencies'?: { [key: string]: string; }; /** * Source repository URL. */ 'repo'?: string; /** * SemVer format. */ 'requires'?: string; /** * Setting metadata.name used to render the plugin configuration form. */ 'settingName'?: string; /** * plugin version. */ 'version': string; }