mirror of
https://github.com/langgenius/dify.git
synced 2026-05-31 14:16:23 +08:00
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
112 lines
3.5 KiB
TypeScript
112 lines
3.5 KiB
TypeScript
// @generated by scripts/generate-command-tree.ts — DO NOT EDIT.
|
|
// Regenerate via `pnpm tree:gen`. Drift gated by `pnpm tree:check` in CI.
|
|
|
|
import type { CommandTree } from '../framework/registry.js'
|
|
import AuthDevicesList from './auth/devices/list/index.js'
|
|
import AuthDevicesRevoke from './auth/devices/revoke/index.js'
|
|
import AuthLogin from './auth/login/index.js'
|
|
import AuthLogout from './auth/logout/index.js'
|
|
import AuthStatus from './auth/status/index.js'
|
|
import AuthWhoami from './auth/whoami/index.js'
|
|
import ConfigGet from './config/get/index.js'
|
|
import ConfigPath from './config/path/index.js'
|
|
import ConfigSet from './config/set/index.js'
|
|
import ConfigUnset from './config/unset/index.js'
|
|
import ConfigView from './config/view/index.js'
|
|
import CreateMember from './create/member/index.js'
|
|
import DeleteMember from './delete/member/index.js'
|
|
import DescribeApp from './describe/app/index.js'
|
|
import EnvList from './env/list/index.js'
|
|
import GetApp from './get/app/index.js'
|
|
import GetMember from './get/member/index.js'
|
|
import GetWorkspace from './get/workspace/index.js'
|
|
import HelpAccount from './help/account/index.js'
|
|
import HelpEnvironment from './help/environment/index.js'
|
|
import HelpExternal from './help/external/index.js'
|
|
import ResumeApp from './resume/app/index.js'
|
|
import RunApp from './run/app/index.js'
|
|
import SetMember from './set/member/index.js'
|
|
import UseWorkspace from './use/workspace/index.js'
|
|
import Version from './version/index.js'
|
|
|
|
export const commandTree: CommandTree = {
|
|
auth: {
|
|
subcommands: {
|
|
devices: {
|
|
subcommands: {
|
|
list: { command: AuthDevicesList, subcommands: {} },
|
|
revoke: { command: AuthDevicesRevoke, subcommands: {} },
|
|
},
|
|
},
|
|
login: { command: AuthLogin, subcommands: {} },
|
|
logout: { command: AuthLogout, subcommands: {} },
|
|
status: { command: AuthStatus, subcommands: {} },
|
|
whoami: { command: AuthWhoami, subcommands: {} },
|
|
},
|
|
},
|
|
config: {
|
|
subcommands: {
|
|
get: { command: ConfigGet, subcommands: {} },
|
|
path: { command: ConfigPath, subcommands: {} },
|
|
set: { command: ConfigSet, subcommands: {} },
|
|
unset: { command: ConfigUnset, subcommands: {} },
|
|
view: { command: ConfigView, subcommands: {} },
|
|
},
|
|
},
|
|
create: {
|
|
subcommands: {
|
|
member: { command: CreateMember, subcommands: {} },
|
|
},
|
|
},
|
|
delete: {
|
|
subcommands: {
|
|
member: { command: DeleteMember, subcommands: {} },
|
|
},
|
|
},
|
|
describe: {
|
|
subcommands: {
|
|
app: { command: DescribeApp, subcommands: {} },
|
|
},
|
|
},
|
|
env: {
|
|
subcommands: {
|
|
list: { command: EnvList, subcommands: {} },
|
|
},
|
|
},
|
|
get: {
|
|
subcommands: {
|
|
app: { command: GetApp, subcommands: {} },
|
|
member: { command: GetMember, subcommands: {} },
|
|
workspace: { command: GetWorkspace, subcommands: {} },
|
|
},
|
|
},
|
|
help: {
|
|
subcommands: {
|
|
account: { command: HelpAccount, subcommands: {} },
|
|
environment: { command: HelpEnvironment, subcommands: {} },
|
|
external: { command: HelpExternal, subcommands: {} },
|
|
},
|
|
},
|
|
resume: {
|
|
subcommands: {
|
|
app: { command: ResumeApp, subcommands: {} },
|
|
},
|
|
},
|
|
run: {
|
|
subcommands: {
|
|
app: { command: RunApp, subcommands: {} },
|
|
},
|
|
},
|
|
set: {
|
|
subcommands: {
|
|
member: { command: SetMember, subcommands: {} },
|
|
},
|
|
},
|
|
use: {
|
|
subcommands: {
|
|
workspace: { command: UseWorkspace, subcommands: {} },
|
|
},
|
|
},
|
|
version: { command: Version, subcommands: {} },
|
|
}
|