ModuleOutputDTO

interface ModuleOutputDTO {
    builtin?: string;
    commands: CommandOutputDTO[];
    configSchema: string;
    createdAt: string;
    cronJobs: CronJobOutputDTO[];
    description: string;
    functions: FunctionOutputDTO[];
    hooks: HookOutputDTO[];
    id: string;
    name: string;
    permissions: PermissionOutputDTO[];
    systemConfigSchema: string;
    uiSchema: string;
    updatedAt: string;
}

Properties

builtin?: string

ModuleOutputDTO

commands: CommandOutputDTO[]

ModuleOutputDTO

configSchema: string

ModuleOutputDTO

createdAt: string

ModuleOutputDTO

cronJobs: CronJobOutputDTO[]

ModuleOutputDTO

description: string

ModuleOutputDTO

functions: FunctionOutputDTO[]

ModuleOutputDTO

hooks: HookOutputDTO[]

ModuleOutputDTO

id: string

ModuleOutputDTO

name: string

ModuleOutputDTO

permissions: PermissionOutputDTO[]

ModuleOutputDTO

systemConfigSchema: string

ModuleOutputDTO

uiSchema: string

ModuleOutputDTO

updatedAt: string

ModuleOutputDTO