squarefi-bff-api-module 1.32.13 → 1.32.14

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.
@@ -2107,7 +2107,10 @@ export declare namespace API {
2107
2107
  created_at: string;
2108
2108
  }
2109
2109
  type Request = operations['WalletsController_all']['parameters']['query'];
2110
- type Response = operations['WalletsController_all']['responses']['200']['content']['application/json'];
2110
+ type Response = {
2111
+ total: number;
2112
+ data: WalletsListItem[];
2113
+ };
2111
2114
  }
2112
2115
  namespace WalletTransactions {
2113
2116
  interface WalletTransactionMeta {
@@ -2,7 +2,7 @@ import { API } from './types/types';
2
2
  import { WalletTypeValues } from '../constants';
3
3
  export declare const wallets: {
4
4
  create: (type: WalletTypeValues) => Promise<void>;
5
- getAll: (params: API.Wallets.WalletsList.Request) => Promise<API.Wallets.WalletsList.Response>;
5
+ getAll: (params?: API.Wallets.WalletsList.Request) => Promise<API.Wallets.WalletsList.Response>;
6
6
  getByUuid: (uuid: string) => Promise<API.Wallets.Wallet>;
7
7
  addresses: {
8
8
  create: (data: API.Wallets.WalletChain.Create.Request) => Promise<API.Wallets.WalletChain.Create.Response>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.32.13",
3
+ "version": "1.32.14",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",