Skip to content

Commit 86cdea4

Browse files
committed
Bump NPM types package to 3.0.4 to fix exporting of constants
1 parent 63a014e commit 86cdea4

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

types/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Package defining the interfaces used in the API that is published by the `inters
66

77
# Changelog
88

9+
### v3.0.4
10+
11+
- Export constants correctly.
12+
913
### v3.0.0
1014

1115
- First release, numbered to align with the first published version of Server Manager 3.

types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
export declare const EXTENSION_ID = 'intersystems-community.servermanager';
2-
export declare const AUTHENTICATION_PROVIDER = 'intersystems-server-credentials';
1+
export const EXTENSION_ID: string;
2+
export const AUTHENTICATION_PROVIDER: string;
33

44
export interface IServerName {
55
name: string;

types/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
module.exports = {
2-
};
2+
EXTENSION_ID: 'intersystems-community.servermanager',
3+
AUTHENTICATION_PROVIDER: 'intersystems-server-credentials'
4+
};

types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@intersystems-community/intersystems-servermanager",
3-
"version": "3.0.2",
3+
"version": "3.0.4",
44
"description": "InterSystems Server Manager VS Code extension API interfaces and constants",
55
"types": "index.d.ts",
66
"main": "index.js",

0 commit comments

Comments
 (0)