@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
26 lines • 745 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const schema_1 = require("@sprucelabs/schema");
const schemaExistsSchema = {
id: 'schemaExists',
namespace: 'SpruceCli',
name: 'Schema exists',
fields: {
/** Schema id. */
'schemaId': {
label: 'Schema id',
type: 'text',
isRequired: true,
options: undefined
},
/** Destination. */
'destination': {
label: 'Destination',
type: 'text',
options: undefined
},
}
};
schema_1.SchemaRegistry.getInstance().trackSchema(schemaExistsSchema);
exports.default = schemaExistsSchema;
//# sourceMappingURL=schemaExists.schema.js.map