@lifi/types 2.3.0 → 2.4.0

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 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
+ ## [2.4.0](https://github.com/lifinance/types/compare/v2.3.0...v2.4.0) (2023-03-08)
6
+
7
+
8
+ ### Features
9
+
10
+ * partial GetStatusRequest properties -- fromChain and toChain ([132ac7a](https://github.com/lifinance/types/commit/132ac7a3e594b8e272110bccf6c70e00f27e0079))
11
+
5
12
  ## [2.3.0](https://github.com/lifinance/types/compare/v2.2.1...v2.3.0) (2023-03-06)
6
13
 
7
14
 
package/dist/api.d.ts CHANGED
@@ -182,8 +182,8 @@ export interface ConnectionsResponse {
182
182
  export interface GetStatusRequest {
183
183
  txHash: string;
184
184
  bridge?: string;
185
- fromChain: number | string;
186
- toChain: number | string;
185
+ fromChain?: number | string;
186
+ toChain?: number | string;
187
187
  }
188
188
  export interface TransactionInfo {
189
189
  txHash: string;
package/dist/cjs/api.d.ts CHANGED
@@ -182,8 +182,8 @@ export interface ConnectionsResponse {
182
182
  export interface GetStatusRequest {
183
183
  txHash: string;
184
184
  bridge?: string;
185
- fromChain: number | string;
186
- toChain: number | string;
185
+ fromChain?: number | string;
186
+ toChain?: number | string;
187
187
  }
188
188
  export interface TransactionInfo {
189
189
  txHash: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lifi/types",
3
- "version": "2.3.0",
3
+ "version": "2.4.0",
4
4
  "description": "Types for the LI.FI stack",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/index.js",