appcenter-cli
Version:
Command line tool for Visual Studio App Center
21 lines (19 loc) • 616 B
text/typescript
import { out } from "../../../util/interaction";
import { models } from "../../../util/apis";
export function reportApp(app: models.AppResponse): void {
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);
}