@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
32 lines • 838 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const schema_1 = require("@sprucelabs/schema");
exports.default = (0, schema_1.buildSchema)({
id: 'executingCommandFailed',
name: 'Executing command failed',
description: 'The command that was being executed failed',
fields: {
cmd: {
type: 'text',
label: 'The command being run',
},
args: {
type: 'text',
label: 'Args',
isArray: true,
},
cwd: {
type: 'text',
label: 'Cwd',
},
stdout: {
type: 'text',
label: 'Stdout',
},
stderr: {
type: 'text',
label: 'stderr',
},
},
});
//# sourceMappingURL=executingCommandFailed.builder.js.map