squarefi-bff-api-module 1.7.0 → 1.7.1
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/dist/api/index.d.ts +1 -0
- package/dist/api/index.js +2 -1
- package/package.json +1 -1
- package/src/api/index.ts +1 -0
package/dist/api/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { fiat_accounts } from './fiat_accounts';
|
|
|
6
6
|
import { issuing } from './issuing';
|
|
7
7
|
import { kyc } from './kyc';
|
|
8
8
|
import { list } from './list';
|
|
9
|
+
import { location } from './location';
|
|
9
10
|
import { orders } from './orders';
|
|
10
11
|
import { tenants } from './tenants';
|
|
11
12
|
import { user } from './user';
|
package/dist/api/index.js
CHANGED
|
@@ -9,6 +9,7 @@ const fiat_accounts_1 = require("./fiat_accounts");
|
|
|
9
9
|
const issuing_1 = require("./issuing");
|
|
10
10
|
const kyc_1 = require("./kyc");
|
|
11
11
|
const list_1 = require("./list");
|
|
12
|
+
const location_1 = require("./location");
|
|
12
13
|
const orders_1 = require("./orders");
|
|
13
14
|
const tenants_1 = require("./tenants");
|
|
14
15
|
const user_1 = require("./user");
|
|
@@ -22,7 +23,7 @@ exports.squarefi_bff_api_client = {
|
|
|
22
23
|
issuing: issuing_1.issuing,
|
|
23
24
|
kyc: kyc_1.kyc,
|
|
24
25
|
list: list_1.list,
|
|
25
|
-
location,
|
|
26
|
+
location: location_1.location,
|
|
26
27
|
orders: orders_1.orders,
|
|
27
28
|
tenants: tenants_1.tenants,
|
|
28
29
|
user: user_1.user,
|
package/package.json
CHANGED
package/src/api/index.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { fiat_accounts } from './fiat_accounts';
|
|
|
6
6
|
import { issuing } from './issuing';
|
|
7
7
|
import { kyc } from './kyc';
|
|
8
8
|
import { list } from './list';
|
|
9
|
+
import { location } from './location';
|
|
9
10
|
import { orders } from './orders';
|
|
10
11
|
import { tenants } from './tenants';
|
|
11
12
|
import { user } from './user';
|