UNPKG

@sprucelabs/spruce-cli

Version:

Command line interface for building Spruce skills.

45 lines 1.27 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const schema_1 = require("@sprucelabs/schema"); const executingCommandFailedSchema = { id: 'executingCommandFailed', namespace: 'SpruceCli', name: 'Executing command failed', description: 'The command that was being executed failed', fields: { /** The command being run. */ 'cmd': { label: 'The command being run', type: 'text', options: undefined }, /** Args. */ 'args': { label: 'Args', type: 'text', isArray: true, options: undefined }, /** Cwd. */ 'cwd': { label: 'Cwd', type: 'text', options: undefined }, /** Stdout. */ 'stdout': { label: 'Stdout', type: 'text', options: undefined }, /** stderr. */ 'stderr': { label: 'stderr', type: 'text', options: undefined }, } }; schema_1.SchemaRegistry.getInstance().trackSchema(executingCommandFailedSchema); exports.default = executingCommandFailedSchema; //# sourceMappingURL=executingCommandFailed.schema.js.map