@kwirthmagnify/kwirth-common 0.5.42 → 0.5.44

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,7 +6,7 @@ export declare enum EMarketplaceAuthType {
6
6
  export interface IMarketplaceAuth {
7
7
  type: EMarketplaceAuthType;
8
8
  username?: string;
9
- hasPassword?: boolean;
9
+ password?: string;
10
10
  }
11
11
  export declare enum EManifestAuthType {
12
12
  NONE = "none",
@@ -15,7 +15,7 @@ export declare enum EManifestAuthType {
15
15
  }
16
16
  export interface IMarketplaceManifestAuth {
17
17
  type: EManifestAuthType;
18
- hasToken?: boolean;
18
+ token?: string;
19
19
  }
20
20
  export interface IMarketplace {
21
21
  id: string;
@@ -27,6 +27,7 @@ export interface IMarketplace {
27
27
  }
28
28
  export interface IMarketplaceEntry {
29
29
  extensionType: EExtensionType;
30
+ targetType?: string;
30
31
  id: string;
31
32
  version: string;
32
33
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kwirthmagnify/kwirth-common",
3
- "version": "0.5.42",
3
+ "version": "0.5.44",
4
4
  "description": "Common interfaces for integrating applications with Kwirth",
5
5
  "scripts": {
6
6
  "build": "del .\\dist\\* /s /q && tsc"