@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
24 lines • 742 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const schema_1 = require("@sprucelabs/schema");
exports.default = (0, schema_1.buildErrorSchema)({
id: 'commandNotImplemented',
name: 'Command not implemented',
description: 'This command has not yet been implemented ',
fields: {
command: {
type: 'text',
label: 'Command',
isRequired: true,
hint: 'the command being run!',
},
args: {
type: 'text',
label: 'Args',
isRequired: false,
isArray: true,
hint: 'Arguments passed to the command',
},
},
});
//# sourceMappingURL=commandNotImplemented.builder.js.map