Skip to content

Commit

Permalink
Merge pull request #142 from microsoft/releases/4.241.1
Browse files Browse the repository at this point in the history
Releases/4.241.1
  • Loading branch information
clairebaire authored Aug 7, 2024
2 parents 9401fa1 + 785f668 commit 22fad50
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "azure-devops-extension-api",
"version": "4.240.0",
"version": "4.241.1",
"description": "REST client libraries and contracts for Azure DevOps web extension developers.",
"repository": {
"type": "git",
Expand Down
11 changes: 11 additions & 0 deletions src/Git/Git.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ import * as TfsCore from "../Core/Core";
import * as Policy from "../Policy/Policy";
import * as WebApi from "../WebApi/WebApi";

export interface AdvSecEnablementOptions {
/**
* Enforces secret scanning job for a repo where AdvSec is already enabled.
*/
forceRepoSecretScanning: boolean;
}

export interface AdvSecEnablementStatus {
/**
* Enabled by VSID
Expand Down Expand Up @@ -44,6 +51,10 @@ export interface AdvSecEnablementUpdate {
* New status
*/
newStatus: boolean;
/**
* Options that can be added during enablement (i.e. force secret scanning job to run)
*/
options: AdvSecEnablementOptions;
/**
* ProjectId
*/
Expand Down
4 changes: 4 additions & 0 deletions src/Release/Release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2108,6 +2108,10 @@ export interface ProofOfPresenceTenant {
* Gets name of protected tenant.
*/
tenantName: string;
/**
* Gets timeout of protected tenant PoP check.
*/
timeout: number;
}

export interface PropertySelector {
Expand Down
12 changes: 12 additions & 0 deletions src/ServiceEndpoint/ServiceEndpoint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -528,6 +528,10 @@ export interface ServiceEndpoint {
* Gets or sets the identity reference for the user who created the Service endpoint.
*/
createdBy: WebApi.IdentityRef;
/**
* Gets or sets the date, when the Service endpoint has been created.
*/
creationDate: Date;
data: { [key: string] : string; };
/**
* Gets or sets the description of endpoint.
Expand Down Expand Up @@ -557,6 +561,14 @@ export interface ServiceEndpoint {
* Indicates whether service endpoint is shared with other projects or not.
*/
isShared: boolean;
/**
* Gets or sets the date, when the Service endpoint has been modified.
*/
modificationDate: Date;
/**
* Gets or sets the identity reference for the user who did the latest modification of the Service endpoint.
*/
modifiedBy: WebApi.IdentityRef;
/**
* Gets or sets the friendly name of the endpoint.
*/
Expand Down
12 changes: 12 additions & 0 deletions src/TaskAgent/TaskAgent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1770,6 +1770,10 @@ export interface ServiceEndpoint {
* Gets or sets the identity reference for the user who created the Service endpoint.
*/
createdBy: WebApi.IdentityRef;
/**
* Gets or sets the date, when the Service endpoint has been created.
*/
creationDate: Date;
data: { [key: string] : string; };
/**
* Gets or sets the description of endpoint.
Expand All @@ -1792,6 +1796,14 @@ export interface ServiceEndpoint {
* Indicates whether service endpoint is shared with other projects or not.
*/
isShared: boolean;
/**
* Gets or sets the date, when the Service endpoint has been modified.
*/
modificationDate: Date;
/**
* Gets or sets the identity reference for the user who did the latest modification of the Service endpoint.
*/
modifiedBy: WebApi.IdentityRef;
/**
* Gets or sets the friendly name of the endpoint.
*/
Expand Down

0 comments on commit 22fad50

Please sign in to comment.