azure-devops-extension-sdk
Advanced tools
Comparing version 1.141.2 to 1.141.3
{ | ||
"name": "azure-devops-extension-sdk", | ||
"version": "1.141.2", | ||
"version": "1.141.3", | ||
"description": "Azure DevOps web extension JavaScript library and types.", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -6,3 +6,3 @@ declare module DevOps { | ||
*/ | ||
const enum CommonServiceIds { | ||
export const enum CommonServiceIds { | ||
@@ -43,3 +43,3 @@ /** | ||
*/ | ||
interface IHostNavigationService { | ||
export interface IHostNavigationService { | ||
@@ -99,3 +99,3 @@ /** | ||
*/ | ||
interface IDialogOptions<TResult> { | ||
export interface IDialogOptions<TResult> { | ||
@@ -116,3 +116,3 @@ /** | ||
*/ | ||
interface IMessageDialogOptions extends IDialogOptions<boolean> { | ||
export interface IMessageDialogOptions extends IDialogOptions<boolean> { | ||
@@ -138,3 +138,3 @@ /** | ||
*/ | ||
interface IHostDialogService { | ||
export interface IHostDialogService { | ||
@@ -161,3 +161,3 @@ /** | ||
*/ | ||
const enum PanelSize { | ||
export const enum PanelSize { | ||
Small = 0, | ||
@@ -171,3 +171,3 @@ Medium = 1, | ||
*/ | ||
interface IPanelOptions<TResult> { | ||
export interface IPanelOptions<TResult> { | ||
@@ -199,3 +199,3 @@ /** | ||
*/ | ||
interface IHostPanelService { | ||
export interface IHostPanelService { | ||
@@ -214,3 +214,3 @@ /** | ||
*/ | ||
interface IDocumentOptions { | ||
export interface IDocumentOptions { | ||
@@ -237,3 +237,3 @@ /** | ||
*/ | ||
interface ExtensionDataCollection { | ||
export interface ExtensionDataCollection { | ||
/** | ||
@@ -257,3 +257,3 @@ * The name of the collection | ||
interface IExtensionDataManager { | ||
export interface IExtensionDataManager { | ||
@@ -266,3 +266,3 @@ /** | ||
*/ | ||
getValue<T>(key: string, documentOptions: IDocumentOptions): Promise<T>; | ||
getValue<T>(key: string, documentOptions?: IDocumentOptions): Promise<T>; | ||
@@ -276,3 +276,3 @@ /** | ||
*/ | ||
setValue<T>(key: string, value: T, documentOptions: IDocumentOptions): Promise<T>; | ||
setValue<T>(key: string, value: T, documentOptions?: IDocumentOptions): Promise<T>; | ||
@@ -286,3 +286,3 @@ /** | ||
*/ | ||
getDocument(collectionName: string, id: string, documentOptions: IDocumentOptions): Promise<any>; | ||
getDocument(collectionName: string, id: string, documentOptions?: IDocumentOptions): Promise<any>; | ||
@@ -304,3 +304,3 @@ /** | ||
*/ | ||
createDocument(collectionName: string, doc: any, documentOptions: IDocumentOptions): Promise<any>; | ||
createDocument(collectionName: string, doc: any, documentOptions?: IDocumentOptions): Promise<any>; | ||
@@ -315,3 +315,3 @@ /** | ||
*/ | ||
setDocument(collectionName: string, doc: any, documentOptions: IDocumentOptions): Promise<any>; | ||
setDocument(collectionName: string, doc: any, documentOptions?: IDocumentOptions): Promise<any>; | ||
@@ -326,3 +326,3 @@ /** | ||
*/ | ||
updateDocument(collectionName: string, doc: any, documentOptions: IDocumentOptions): Promise<any>; | ||
updateDocument(collectionName: string, doc: any, documentOptions?: IDocumentOptions): Promise<any>; | ||
@@ -336,3 +336,3 @@ /** | ||
*/ | ||
deleteDocument(collectionName: string, id: string, documentOptions: IDocumentOptions): Promise<void>; | ||
deleteDocument(collectionName: string, id: string, documentOptions?: IDocumentOptions): Promise<void>; | ||
@@ -354,3 +354,3 @@ /** | ||
interface IExtensionDataService { | ||
export interface IExtensionDataService { | ||
@@ -366,3 +366,3 @@ /** | ||
interface IProjectInfo { | ||
export interface IProjectInfo { | ||
@@ -380,3 +380,3 @@ /** | ||
interface IProjectPageService { | ||
export interface IProjectPageService { | ||
@@ -389,3 +389,3 @@ /** | ||
interface IGlobalMessageLink { | ||
export interface IGlobalMessageLink { | ||
@@ -403,3 +403,3 @@ /** | ||
const enum MessageBannerLevel { | ||
export const enum MessageBannerLevel { | ||
info = 0, | ||
@@ -411,3 +411,3 @@ warning = 1, | ||
interface IGlobalMessageBanner { | ||
export interface IGlobalMessageBanner { | ||
@@ -435,3 +435,3 @@ /** | ||
interface IGlobalMessagesService { | ||
export interface IGlobalMessagesService { | ||
@@ -438,0 +438,0 @@ /** |
@@ -1,1 +0,2 @@ | ||
/// <reference path="DevOps.SDK.d.ts" /> | ||
/// <reference path="DevOps.SDK.d.ts" /> | ||
/// <reference path="CommonServices.d.ts" /> |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
118323
2251