@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
35 lines • 1.18 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const schema_1 = require("@sprucelabs/schema");
const skillFeatureSchema = {
id: 'skillFeature',
version: 'v2020_07_22',
namespace: 'SpruceCli',
name: 'Skill feature options',
fields: {
/** . */
'destination': {
type: 'text',
defaultValue: ".",
options: undefined
},
/** What's the name of your skill?. This marketing focused, like "8-bit Stories" or "Adventures". */
'name': {
label: 'What\'s the name of your skill?',
type: 'text',
isRequired: true,
hint: 'This marketing focused, like "8-bit Stories" or "Adventures".',
options: undefined
},
/** How would you describe your skill?. */
'description': {
label: 'How would you describe your skill?',
type: 'text',
isRequired: true,
options: undefined
},
}
};
schema_1.SchemaRegistry.getInstance().trackSchema(skillFeatureSchema);
exports.default = skillFeatureSchema;
//# sourceMappingURL=skillFeature.schema.js.map