appcenter-cli
Version:
Command line tool for Visual Studio App Center
21 lines (20 loc) • 703 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const interaction_1 = require("../../../util/interaction");
function reportApp(app) {
interaction_1.out.report([
["App Secret", "appSecret"],
["Description", "description"],
["Display Name", "displayName"],
["Name", "name"],
["OS", "os"],
["Platform", "platform"],
["Release Type", "releaseType"],
["Owner ID", "owner.id"],
["Owner Display Name", "owner.displayName"],
["Owner Email", "owner.email"],
["Owner Name", "owner.name"],
["Azure Subscription ID", "azureSubscriptionId"]
], app);
}
exports.reportApp = reportApp;