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

Commit f4a07b2

Browse files
committed
Updating to M106 deployment.
1 parent 93a39f3 commit f4a07b2

File tree

4 files changed

+807
-81
lines changed

4 files changed

+807
-81
lines changed

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vss-web-extension-sdk",
3-
"version": "1.105.0",
3+
"version": "1.106.0",
44
"description": "Visual Studio Services Client SDK. JavaScript library for Visual Studio Online extensions.",
55
"scripts": {
66
"test": "echo \"Error: no test specified\" && exit 1"

Diff for: typings/rmo.d.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Type definitions for Microsoft Visual Studio Services v105.20160914.0830
1+
// Type definitions for Microsoft Visual Studio Services v106.20161010.0630
22
// Project: https://www.visualstudio.com/integrate/extensions/overview
33
// Definitions by: Microsoft <[email protected]>
44

@@ -394,6 +394,8 @@ export interface DeploymentQueryParameters {
394394
isDeleted: boolean;
395395
latestDeploymentsOnly: boolean;
396396
maxDeploymentsPerEnvironment: number;
397+
maxModifiedTime: Date;
398+
minModifiedTime: Date;
397399
operationStatus: DeploymentOperationStatus;
398400
queryOrder: ReleaseQueryOrder;
399401
}
@@ -1770,6 +1772,8 @@ export class ReleaseHttpClient3 extends CommonMethods2_2To3 {
17701772
* @param {number} definitionId
17711773
* @param {number} definitionEnvironmentId
17721774
* @param {string} createdBy
1775+
* @param {Date} minModifiedTime
1776+
* @param {Date} maxModifiedTime
17731777
* @param {Contracts.DeploymentStatus} deploymentStatus
17741778
* @param {Contracts.DeploymentOperationStatus} operationStatus
17751779
* @param {boolean} latestAttemptsOnly
@@ -1778,7 +1782,7 @@ export class ReleaseHttpClient3 extends CommonMethods2_2To3 {
17781782
* @param {number} continuationToken
17791783
* @return IPromise<Contracts.Deployment[]>
17801784
*/
1781-
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[]>;
1785+
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[]>;
17821786
/**
17831787
* [Preview API]
17841788
*

0 commit comments

Comments
 (0)