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.
@@ -20,5 +20,5 @@ type Api = {
20
20
  user: typeof user;
21
21
  wallets: typeof wallets;
22
22
  };
23
- declare const squarefiBffApiClient: Api;
24
- export default squarefiBffApiClient;
23
+ export declare const squarefiBffApiClient: Api;
24
+ export {};
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
- const squarefiBffApiClient = {
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
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
@@ -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;