@devicecloud.dev/dcd
Version:
Better cloud maestro testing
20 lines (19 loc) • 629 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.apiFlags = void 0;
const core_1 = require("@oclif/core");
/**
* API authentication and configuration flags
*/
exports.apiFlags = {
apiKey: core_1.Flags.string({
aliases: ['api-key'],
description: 'API key for devicecloud.dev (find this in the console UI). You can also set the DEVICE_CLOUD_API_KEY environment variable.',
}),
apiUrl: core_1.Flags.string({
aliases: ['api-url', 'apiURL'],
default: 'https://api.devicecloud.dev',
description: 'API base URL',
hidden: true,
}),
};