@metamask-institutional/configuration-client
Advanced tools
Comparing version 2.0.0 to 2.0.1
@@ -6,2 +6,9 @@ # Change Log | ||
## [2.0.1](https://github.com/consensys-vertical-apps/metamask-institutional/compare/configuration-client-v2.0.0...configuration-client-v2.0.1) (2023-10-20) | ||
### Bug Fixes | ||
* **lint:** lint issues were fixes ([#509](https://github.com/consensys-vertical-apps/metamask-institutional/issues/509)) ([ce5f9af](https://github.com/consensys-vertical-apps/metamask-institutional/commit/ce5f9afaa20d6afad6e81d0d97bc6894055fc00c)) | ||
## [2.0.0](https://github.com/consensys-vertical-apps/metamask-institutional/compare/configuration-client-v1.0.6...configuration-client-v2.0.0) (2023-09-18) | ||
@@ -8,0 +15,0 @@ |
{ | ||
"name": "@metamask-institutional/configuration-client", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "A Typescript library responsible for maintaining a cache of MMI Portfolio related data in local storage.", | ||
@@ -30,3 +30,3 @@ "author": "Albert Olive <albertolivecorbella@gmail.com>", | ||
}, | ||
"gitHead": "a2a4f84ec6a96ef2b68eb47db00bcafd9252551a", | ||
"gitHead": "32f6154de94897da0006cd394e10d91800e4a2b4", | ||
"devDependencies": { | ||
@@ -33,0 +33,0 @@ "jest-fetch-mock": "^3.0.3" |
@@ -8,4 +8,6 @@ interface IEnvironment { | ||
apiBaseUrl: string; | ||
apiVersion: string; | ||
iconUrl: string; | ||
isNoteToTraderSupported: boolean; | ||
custodianPublishesTransaction: boolean; | ||
} | ||
@@ -25,3 +27,2 @@ export interface IJsonRpcCustodian { | ||
websocketApiUrl: string; | ||
isNoteToTraderSupported: boolean; | ||
environments: IEnvironment[]; | ||
@@ -28,0 +29,0 @@ } |
{ | ||
"name": "@metamask-institutional/configuration-client", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "A Typescript library responsible for maintaining a cache of MMI Portfolio related data in local storage.", | ||
@@ -30,3 +30,3 @@ "author": "Albert Olive <albertolivecorbella@gmail.com>", | ||
}, | ||
"gitHead": "a2a4f84ec6a96ef2b68eb47db00bcafd9252551a", | ||
"gitHead": "32f6154de94897da0006cd394e10d91800e4a2b4", | ||
"devDependencies": { | ||
@@ -33,0 +33,0 @@ "jest-fetch-mock": "^3.0.3" |
import { MMI_CONFIGURATION_API_URL } from "./constants"; | ||
import { IConfiguration, IJsonRpcCustodian } from "./types"; | ||
import { IConfiguration } from "./types"; | ||
@@ -4,0 +4,0 @@ export class ConfigurationClient { |
@@ -8,4 +8,6 @@ interface IEnvironment { | ||
apiBaseUrl: string; | ||
apiVersion: string; | ||
iconUrl: string; | ||
isNoteToTraderSupported: boolean; | ||
custodianPublishesTransaction: boolean; | ||
} | ||
@@ -25,3 +27,2 @@ export interface IJsonRpcCustodian { | ||
websocketApiUrl: string; | ||
isNoteToTraderSupported: boolean; | ||
environments: IEnvironment[]; | ||
@@ -28,0 +29,0 @@ } |
16922
175