Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions types/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 1 addition & 0 deletions types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export interface IServerName {
name: string;
description: string;
detail: string;
scope?: vscode.ConfigurationScope;
}

export interface IWebServerSpec {
Expand Down
2 changes: 1 addition & 1 deletion types/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down