squarefi-bff-api-module 1.24.19 → 1.24.20

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.
@@ -2,6 +2,7 @@ import { auth } from './auth';
2
2
  import { counterparties } from './counterparties';
3
3
  import { developer } from './developer';
4
4
  import { exchange } from './exchange';
5
+ import { frontend } from './frontend';
5
6
  import { issuing } from './issuing';
6
7
  import { kyc } from './kyc';
7
8
  import { list } from './list';
@@ -17,6 +18,7 @@ type Api = {
17
18
  counterparties: typeof counterparties;
18
19
  developer: typeof developer;
19
20
  exchange: typeof exchange;
21
+ frontend: typeof frontend;
20
22
  issuing: typeof issuing;
21
23
  kyc: typeof kyc;
22
24
  list: typeof list;
package/dist/api/index.js CHANGED
@@ -5,6 +5,7 @@ const auth_1 = require("./auth");
5
5
  const counterparties_1 = require("./counterparties");
6
6
  const developer_1 = require("./developer");
7
7
  const exchange_1 = require("./exchange");
8
+ const frontend_1 = require("./frontend");
8
9
  const issuing_1 = require("./issuing");
9
10
  const kyc_1 = require("./kyc");
10
11
  const list_1 = require("./list");
@@ -20,6 +21,7 @@ exports.squarefi_bff_api_client = {
20
21
  counterparties: counterparties_1.counterparties,
21
22
  developer: developer_1.developer,
22
23
  exchange: exchange_1.exchange,
24
+ frontend: frontend_1.frontend,
23
25
  issuing: issuing_1.issuing,
24
26
  kyc: kyc_1.kyc,
25
27
  list: list_1.list,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.24.19",
3
+ "version": "1.24.20",
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
@@ -2,6 +2,7 @@ import { auth } from './auth';
2
2
  import { counterparties } from './counterparties';
3
3
  import { developer } from './developer';
4
4
  import { exchange } from './exchange';
5
+ import { frontend } from './frontend';
5
6
  import { issuing } from './issuing';
6
7
  import { kyc } from './kyc';
7
8
  import { list } from './list';
@@ -19,6 +20,7 @@ type Api = {
19
20
  counterparties: typeof counterparties;
20
21
  developer: typeof developer;
21
22
  exchange: typeof exchange;
23
+ frontend: typeof frontend;
22
24
  issuing: typeof issuing;
23
25
  kyc: typeof kyc;
24
26
  list: typeof list;
@@ -36,6 +38,7 @@ export const squarefi_bff_api_client: Api = {
36
38
  counterparties,
37
39
  developer,
38
40
  exchange,
41
+ frontend,
39
42
  issuing,
40
43
  kyc,
41
44
  list,