@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
30 lines • 1.02 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const schema_1 = require("@sprucelabs/schema");
const commandNotImplementedSchema = {
id: 'commandNotImplemented',
namespace: 'SpruceCli',
name: 'Command not implemented',
description: 'This command has not yet been implemented ',
fields: {
/** Command. the command being run! */
'command': {
label: 'Command',
type: 'text',
isRequired: true,
hint: 'the command being run!',
options: undefined
},
/** Args. Arguments passed to the command */
'args': {
label: 'Args',
type: 'text',
hint: 'Arguments passed to the command',
isArray: true,
options: undefined
},
}
};
schema_1.SchemaRegistry.getInstance().trackSchema(commandNotImplementedSchema);
exports.default = commandNotImplementedSchema;
//# sourceMappingURL=commandNotImplemented.schema.js.map