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