squarefi-bff-api-module 1.22.0 → 1.22.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.
@@ -215,7 +215,7 @@ export declare namespace API {
215
215
  type: string;
216
216
  tokenizable: boolean;
217
217
  issuing_programs: API.Cards.Config.Program;
218
- limits: API.Cards.Limits.Limits;
218
+ limits?: API.Cards.Limits.Limits;
219
219
  }
220
220
  interface SubAccountCardListItem {
221
221
  type: string;
@@ -0,0 +1 @@
1
+ export * from './useCalc';
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./useCalc"), exports);
package/dist/index.d.ts CHANGED
@@ -2,4 +2,5 @@ export { squarefi_bff_api_client } from './api';
2
2
  export * from './utils/apiClientFactory';
3
3
  export * from './utils/tokensFactory';
4
4
  export * from './constants';
5
+ export * from './hooks';
5
6
  export * from './api/types/types';
package/dist/index.js CHANGED
@@ -20,5 +20,6 @@ Object.defineProperty(exports, "squarefi_bff_api_client", { enumerable: true, ge
20
20
  __exportStar(require("./utils/apiClientFactory"), exports);
21
21
  __exportStar(require("./utils/tokensFactory"), exports);
22
22
  __exportStar(require("./constants"), exports);
23
+ __exportStar(require("./hooks"), exports);
23
24
  // Also export types if you have any
24
25
  __exportStar(require("./api/types/types"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.22.0",
3
+ "version": "1.22.2",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -248,7 +248,7 @@ export namespace API {
248
248
  type: string;
249
249
  tokenizable: boolean;
250
250
  issuing_programs: API.Cards.Config.Program;
251
- limits: API.Cards.Limits.Limits;
251
+ limits?: API.Cards.Limits.Limits;
252
252
  }
253
253
 
254
254
  export interface SubAccountCardListItem {
@@ -0,0 +1 @@
1
+ export * from './useCalc';
package/src/index.ts CHANGED
@@ -2,6 +2,6 @@ export { squarefi_bff_api_client } from './api';
2
2
  export * from './utils/apiClientFactory';
3
3
  export * from './utils/tokensFactory';
4
4
  export * from './constants';
5
-
5
+ export * from './hooks';
6
6
  // Also export types if you have any
7
7
  export * from './api/types/types';