microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
src/extension/appcenter/command/commandParams.ts
30lines · 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 | |
| 4 | import { CurrentAppDeployments } from "../appCenterConstants"; |
| 5 | |
| 6 | export interface DefaultApp { |
| 7 | ownerName: string; |
| 8 | appName: string; |
| 9 | identifier: string; |
| 10 | targetBinaryVersion: string; |
| 11 | isMandatory: boolean; |
| 12 | os: string; |
| 13 | currentAppDeployments: CurrentAppDeployments; |
| 14 | } |
| 15 | |
| 16 | export interface IDefaultCommandParams { |
| 17 | app: DefaultApp; |
| 18 | } |
| 19 | export interface ICodePushReleaseParams extends IDefaultCommandParams { |
| 20 | deploymentName: string; |
| 21 | updatedContentZipPath: string; |
| 22 | appVersion?: string; |
| 23 | description?: string; |
| 24 | isDisabled?: boolean; |
| 25 | isMandatory?: boolean; |
| 26 | label?: string; |
| 27 | packageHash?: string; |
| 28 | rollout?: number; |
| 29 | token?: string; |
| 30 | } |