UNPKG

@sprucelabs/spruce-cli

Version:

Command line interface for building Spruce skills.

29 lines 945 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const schema_1 = require("@sprucelabs/schema"); const setupTestsOptionsSchema = { id: 'setupTestsOptions', version: 'v2020_07_22', namespace: 'SpruceCli', name: 'Setup tests options', description: 'Use this with in your CI/CD environment to get your skill ready to run tests.', fields: { /** Demo phone number. */ 'demoNumber': { label: 'Demo phone number', type: 'phone', isRequired: true, options: undefined }, /** Namespace. */ 'skillSlug': { label: 'Namespace', type: 'text', isRequired: true, options: undefined }, } }; schema_1.SchemaRegistry.getInstance().trackSchema(setupTestsOptionsSchema); exports.default = setupTestsOptionsSchema; //# sourceMappingURL=setupTestsOptions.schema.js.map