microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
6b8cdbb830ed7d91525cc76810df5458772836e7

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/extension/appcenter/command/commandParams.ts

31lines · modecode

1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for details.
3
4import { CurrentAppDeployments } from "../appCenterConstants";
5
6export interface IDefaultCommandParams {
7 app: DefaultApp;
8}
9
10export interface DefaultApp {
11 ownerName: string;
12 appName: string;
13 identifier: string;
14 targetBinaryVersion: string;
15 isMandatory: boolean;
16 os: string;
17 currentAppDeployments: CurrentAppDeployments;
18}
19
20export interface ICodePushReleaseParams extends IDefaultCommandParams {
21 deploymentName: string;
22 updatedContentZipPath: string;
23 appVersion?: string;
24 description?: string;
25 isDisabled?: boolean;
26 isMandatory?: boolean;
27 label?: string;
28 packageHash?: string;
29 rollout?: number;
30 token?: string;
31}