squarefi-bff-api-module 1.18.6 → 1.18.7

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
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.18.7] - 2025-05-24
9
+
10
+ ### Added
11
+
12
+ - Integrated virtual accounts into API structure for enhanced functionality
13
+
8
14
  ## [1.18.6] - 2025-05-24
9
15
 
10
16
  ### Added
@@ -9,6 +9,7 @@ import { orders } from './orders';
9
9
  import { persona } from './persona';
10
10
  import { tenants } from './tenants';
11
11
  import { user } from './user';
12
+ import { virtualAccounts } from './virtual-accounts';
12
13
  import { wallets } from './wallets';
13
14
  type Api = {
14
15
  auth: typeof auth;
@@ -22,6 +23,7 @@ type Api = {
22
23
  persona: typeof persona;
23
24
  tenants: typeof tenants;
24
25
  user: typeof user;
26
+ virtualAccounts: typeof virtualAccounts;
25
27
  wallets: typeof wallets;
26
28
  };
27
29
  export declare const squarefi_bff_api_client: Api;
package/dist/api/index.js CHANGED
@@ -12,6 +12,7 @@ const orders_1 = require("./orders");
12
12
  const persona_1 = require("./persona");
13
13
  const tenants_1 = require("./tenants");
14
14
  const user_1 = require("./user");
15
+ const virtual_accounts_1 = require("./virtual-accounts");
15
16
  const wallets_1 = require("./wallets");
16
17
  exports.squarefi_bff_api_client = {
17
18
  auth: auth_1.auth,
@@ -25,5 +26,6 @@ exports.squarefi_bff_api_client = {
25
26
  persona: persona_1.persona,
26
27
  tenants: tenants_1.tenants,
27
28
  user: user_1.user,
29
+ virtualAccounts: virtual_accounts_1.virtualAccounts,
28
30
  wallets: wallets_1.wallets,
29
31
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.18.6",
3
+ "version": "1.18.7",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/api/index.ts CHANGED
@@ -10,6 +10,7 @@ import { orders } from './orders';
10
10
  import { persona } from './persona';
11
11
  import { tenants } from './tenants';
12
12
  import { user } from './user';
13
+ import { virtualAccounts } from './virtual-accounts';
13
14
  import { wallets } from './wallets';
14
15
 
15
16
  type Api = {
@@ -24,6 +25,7 @@ type Api = {
24
25
  persona: typeof persona;
25
26
  tenants: typeof tenants;
26
27
  user: typeof user;
28
+ virtualAccounts: typeof virtualAccounts;
27
29
  wallets: typeof wallets;
28
30
  };
29
31
 
@@ -39,5 +41,6 @@ export const squarefi_bff_api_client: Api = {
39
41
  persona,
40
42
  tenants,
41
43
  user,
44
+ virtualAccounts,
42
45
  wallets,
43
46
  };