@lifi/types 1.9.0 → 1.10.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
+ ## [1.10.0](https://github.com/lifinance/types/compare/v1.9.1...v1.10.0) (2022-10-21)
6
+
7
+
8
+ ### Features
9
+
10
+ * add gnosis bridge logo ([#101](https://github.com/lifinance/types/issues/101)) ([47c322e](https://github.com/lifinance/types/commit/47c322e3c10a92a7c3bccd73461ae5a1da61e415))
11
+
5
12
  ## [1.8.0](https://github.com/lifinance/types/compare/v1.7.0...v1.8.0) (2022-09-30)
6
13
 
7
14
 
package/dist/api.d.ts CHANGED
@@ -216,9 +216,9 @@ export declare type TokenBalance = {
216
216
  amountUsd: string;
217
217
  };
218
218
  export interface IntegratorWithdrawalRequest {
219
- address: string;
220
- chainId: string;
221
- tokens: string[] | undefined;
219
+ integratorId: string;
220
+ chainId: ChainId;
221
+ tokens?: string[];
222
222
  }
223
223
  export interface IntegratorWithdrawalTransactionResponse {
224
224
  transactionRequest: TransactionRequest;
package/dist/cjs/api.d.ts CHANGED
@@ -216,9 +216,9 @@ export declare type TokenBalance = {
216
216
  amountUsd: string;
217
217
  };
218
218
  export interface IntegratorWithdrawalRequest {
219
- address: string;
220
- chainId: string;
221
- tokens: string[] | undefined;
219
+ integratorId: string;
220
+ chainId: ChainId;
221
+ tokens?: string[];
222
222
  }
223
223
  export interface IntegratorWithdrawalTransactionResponse {
224
224
  transactionRequest: TransactionRequest;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lifi/types",
3
- "version": "1.9.0",
3
+ "version": "1.10.0",
4
4
  "description": "Types for the LI.FI stack",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/index.js",