squarefi-bff-api-module 1.0.1 → 1.0.2
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 +2 -2
- package/dist/api/index.js +2 -2
- package/package.json +1 -1
- package/src/api/index.ts +1 -3
package/dist/api/index.d.ts
CHANGED
package/dist/api/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.squarefiBffApiClient = void 0;
|
|
3
4
|
const auth_1 = require("./auth");
|
|
4
5
|
const developer_1 = require("./developer");
|
|
5
6
|
const exchange_1 = require("./exchange");
|
|
@@ -10,7 +11,7 @@ const list_1 = require("./list");
|
|
|
10
11
|
const orders_1 = require("./orders");
|
|
11
12
|
const user_1 = require("./user");
|
|
12
13
|
const wallets_1 = require("./wallets");
|
|
13
|
-
|
|
14
|
+
exports.squarefiBffApiClient = {
|
|
14
15
|
auth: auth_1.auth,
|
|
15
16
|
developer: developer_1.developer,
|
|
16
17
|
exchange: exchange_1.exchange,
|
|
@@ -22,4 +23,3 @@ const squarefiBffApiClient = {
|
|
|
22
23
|
user: user_1.user,
|
|
23
24
|
wallets: wallets_1.wallets,
|
|
24
25
|
};
|
|
25
|
-
exports.default = squarefiBffApiClient;
|
package/package.json
CHANGED
package/src/api/index.ts
CHANGED
|
@@ -22,7 +22,7 @@ type Api = {
|
|
|
22
22
|
wallets: typeof wallets;
|
|
23
23
|
};
|
|
24
24
|
|
|
25
|
-
const squarefiBffApiClient: Api = {
|
|
25
|
+
export const squarefiBffApiClient: Api = {
|
|
26
26
|
auth,
|
|
27
27
|
developer,
|
|
28
28
|
exchange,
|
|
@@ -34,5 +34,3 @@ const squarefiBffApiClient: Api = {
|
|
|
34
34
|
user,
|
|
35
35
|
wallets,
|
|
36
36
|
};
|
|
37
|
-
|
|
38
|
-
export default squarefiBffApiClient;
|