UNPKG

@sprucelabs/spruce-cli

Version:

Command line interface for building Spruce skills.

36 lines 1.16 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const schema_1 = require("@sprucelabs/schema"); exports.default = (0, schema_1.buildSchema)({ id: 'bootSkillOptions', name: 'Boot skill action', description: 'Boot your skill 💪', fields: { local: { type: 'boolean', label: 'Run local', hint: 'Will run using ts-node and typescript directly. Longer boot times', }, onData: { type: 'raw', options: { valueType: '(msg: string) => void', }, }, onError: { type: 'raw', options: { valueType: '(msg: string) => void', }, }, shouldReturnImmediately: { label: 'Wait until skill is booted', type: 'boolean', isPrivate: true, hint: 'For testing. Returns immediately after executing test so the running tests can be managed programatically.', defaultValue: false, options: undefined, }, }, }); //# sourceMappingURL=bootSkillOptions.builder.js.map