microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
src/extension/appcenter/command/commandParams.ts
30lines · modeblame
bb45fbe6max-mironov8 years ago | 1 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | // Licensed under the MIT license. See LICENSE file in the project root for details. | |
| 3 | | |
ef14e11bmax-mironov8 years ago | 4 | import { CurrentAppDeployments } from "../appCenterConstants"; |
4a66f08bmax-mironov8 years ago | 5 | |
bb45fbe6max-mironov8 years ago | 6 | export interface DefaultApp { |
| 7 | ownerName: string; | |
| 8 | appName: string; | |
| 9 | identifier: string; | |
2ceda59emax-mironov8 years ago | 10 | targetBinaryVersion: string; |
| 11 | isMandatory: boolean; | |
e26df9e4max-mironov8 years ago | 12 | os: string; |
ef14e11bmax-mironov8 years ago | 13 | currentAppDeployments: CurrentAppDeployments; |
ff1d5ab0max-mironov8 years ago | 14 | } |
| 15 | | |
a653acfemax-mironov8 years ago | 16 | export interface IDefaultCommandParams { |
| 17 | app: DefaultApp; | |
| 18 | } | |
ff1d5ab0max-mironov8 years ago | 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; | |
bf370babSergey Akhalkov8 years ago | 29 | token?: string; |
ff1d5ab0max-mironov8 years ago | 30 | } |