squarefi-bff-api-module 1.32.18 → 1.32.19

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.
@@ -1795,7 +1795,9 @@ export declare namespace API {
1795
1795
  wallet_id: string;
1796
1796
  va_programs_id: string;
1797
1797
  }
1798
- type Response = API.VirtualAccounts.VirtualAccount.VirtualAccountDetailItem;
1798
+ type Response = {
1799
+ id: string;
1800
+ };
1799
1801
  }
1800
1802
  namespace GetByUuid {
1801
1803
  interface Request {
@@ -1,6 +1,6 @@
1
1
  import { API } from './types/types';
2
2
  export declare const virtualAccounts: {
3
- create: (data: API.VirtualAccounts.Create.Request) => Promise<API.VirtualAccounts.VirtualAccount.VirtualAccountDetailItem>;
3
+ create: (data: API.VirtualAccounts.Create.Request) => Promise<API.VirtualAccounts.Create.Response>;
4
4
  getAll: ({ wallet_uuid, ...params }: API.VirtualAccounts.GetAll.Request) => Promise<API.VirtualAccounts.GetAll.Response>;
5
5
  getByUuid: ({ uuid }: API.VirtualAccounts.GetByUuid.Request) => Promise<API.VirtualAccounts.VirtualAccount.VirtualAccountDetailItem>;
6
6
  programs: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.32.18",
3
+ "version": "1.32.19",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",