microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
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 | |
| 4 | import { CurrentAppDeployments } 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 | targetBinaryVersion: string; |
| 15 | isMandatory: boolean; |
| 16 | os: string; |
| 17 | currentAppDeployments: CurrentAppDeployments; |
| 18 | } |
| 19 | |
| 20 | export 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 | } |