Skip to content
This repository has been archived by the owner on Jan 27, 2023. It is now read-only.

Commit

Permalink
Updating to M106 deployment.
Browse files Browse the repository at this point in the history
  • Loading branch information
serkan-inci committed Oct 10, 2016
1 parent 93a39f3 commit f4a07b2
Show file tree
Hide file tree
Showing 4 changed files with 807 additions and 81 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vss-web-extension-sdk",
"version": "1.105.0",
"version": "1.106.0",
"description": "Visual Studio Services Client SDK. JavaScript library for Visual Studio Online extensions.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down
8 changes: 6 additions & 2 deletions typings/rmo.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Type definitions for Microsoft Visual Studio Services v105.20160914.0830
// Type definitions for Microsoft Visual Studio Services v106.20161010.0630
// Project: https://www.visualstudio.com/integrate/extensions/overview
// Definitions by: Microsoft <[email protected]>

Expand Down Expand Up @@ -394,6 +394,8 @@ export interface DeploymentQueryParameters {
isDeleted: boolean;
latestDeploymentsOnly: boolean;
maxDeploymentsPerEnvironment: number;
maxModifiedTime: Date;
minModifiedTime: Date;
operationStatus: DeploymentOperationStatus;
queryOrder: ReleaseQueryOrder;
}
Expand Down Expand Up @@ -1770,6 +1772,8 @@ export class ReleaseHttpClient3 extends CommonMethods2_2To3 {
* @param {number} definitionId
* @param {number} definitionEnvironmentId
* @param {string} createdBy
* @param {Date} minModifiedTime
* @param {Date} maxModifiedTime
* @param {Contracts.DeploymentStatus} deploymentStatus
* @param {Contracts.DeploymentOperationStatus} operationStatus
* @param {boolean} latestAttemptsOnly
Expand All @@ -1778,7 +1782,7 @@ export class ReleaseHttpClient3 extends CommonMethods2_2To3 {
* @param {number} continuationToken
* @return IPromise<Contracts.Deployment[]>
*/
getDeployments(project: string, definitionId?: number, definitionEnvironmentId?: number, createdBy?: string, deploymentStatus?: Contracts.DeploymentStatus, operationStatus?: Contracts.DeploymentOperationStatus, latestAttemptsOnly?: boolean, queryOrder?: Contracts.ReleaseQueryOrder, top?: number, continuationToken?: number): IPromise<Contracts.Deployment[]>;
getDeployments(project: string, definitionId?: number, definitionEnvironmentId?: number, createdBy?: string, minModifiedTime?: Date, maxModifiedTime?: Date, deploymentStatus?: Contracts.DeploymentStatus, operationStatus?: Contracts.DeploymentOperationStatus, latestAttemptsOnly?: boolean, queryOrder?: Contracts.ReleaseQueryOrder, top?: number, continuationToken?: number): IPromise<Contracts.Deployment[]>;
/**
* [Preview API]
*
Expand Down
Loading

0 comments on commit f4a07b2

Please sign in to comment.