@lifi/types 1.11.0 → 1.11.1
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.
- package/CHANGELOG.md +7 -0
- package/dist/api.d.ts +1 -1
- package/dist/cjs/api.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [1.11.1](https://github.com/lifinance/types/compare/v1.11.0...v1.11.1) (2022-10-25)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* export ExtendedChain ([73f3cc5](https://github.com/lifinance/types/commit/73f3cc5007973aad48cdb59b4f93542e8cc2541d))
|
|
11
|
+
|
|
5
12
|
## [1.11.0](https://github.com/lifinance/types/compare/v1.10.1...v1.11.0) (2022-10-25)
|
|
6
13
|
|
|
7
14
|
|
package/dist/api.d.ts
CHANGED
|
@@ -181,7 +181,7 @@ export interface StatusResponse extends StatusInformation {
|
|
|
181
181
|
tool?: string;
|
|
182
182
|
bridgeExplorerLink?: string;
|
|
183
183
|
}
|
|
184
|
-
interface ExtendedChain extends Chain {
|
|
184
|
+
export interface ExtendedChain extends Chain {
|
|
185
185
|
nativeToken: Token;
|
|
186
186
|
}
|
|
187
187
|
export interface ChainsResponse {
|
package/dist/cjs/api.d.ts
CHANGED
|
@@ -181,7 +181,7 @@ export interface StatusResponse extends StatusInformation {
|
|
|
181
181
|
tool?: string;
|
|
182
182
|
bridgeExplorerLink?: string;
|
|
183
183
|
}
|
|
184
|
-
interface ExtendedChain extends Chain {
|
|
184
|
+
export interface ExtendedChain extends Chain {
|
|
185
185
|
nativeToken: Token;
|
|
186
186
|
}
|
|
187
187
|
export interface ChainsResponse {
|