UNPKG

@sprucelabs/spruce-cli

Version:

Command line interface for building Spruce skills.

19 lines 849 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const schema_1 = require("@sprucelabs/schema"); const deployFailedSchema = { id: 'deployFailed', namespace: 'SpruceCli', name: 'Deploy Failed', fields: { /** . */ 'stage': { type: 'select', isRequired: true, options: { choices: [{ "label": "Skill", "value": "skill" }, { "label": "Building", "value": "building" }, { "label": "Testing", "value": "testing" }, { "label": "Git", "value": "git" }, { "label": "Procfile", "value": "procfile" }, { "label": "Remote", "value": "remote" }, { "label": "Heroku", "value": "heroku" }], } }, } }; schema_1.SchemaRegistry.getInstance().trackSchema(deployFailedSchema); exports.default = deployFailedSchema; //# sourceMappingURL=deployFailed.schema.js.map