diff --git a/types/README.md b/types/README.md index 1b99cf1..c436ed7 100644 --- a/types/README.md +++ b/types/README.md @@ -6,6 +6,10 @@ Package defining the interfaces used in the API that is published by the `inters # Changelog +### v3.10.2 + +- Add optional `scope` property to `IServerName`, which was introduced in Server Manager 3.10.2. + ### v3.8.0 - Add function signatures, including `getAccount` which was introduced in Server Manager 3.8.0. diff --git a/types/index.d.ts b/types/index.d.ts index 443c23f..cd5617a 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -7,6 +7,7 @@ export interface IServerName { name: string; description: string; detail: string; + scope?: vscode.ConfigurationScope; } export interface IWebServerSpec { diff --git a/types/package.json b/types/package.json index 75b4144..ac31339 100644 --- a/types/package.json +++ b/types/package.json @@ -1,6 +1,6 @@ { "name": "@intersystems-community/intersystems-servermanager", - "version": "3.8.0", + "version": "3.10.2", "description": "InterSystems Server Manager VS Code extension API interfaces and constants", "types": "index.d.ts", "main": "index.js",