squarefi-bff-api-module 1.5.6 → 1.5.7

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.
@@ -112,6 +112,9 @@ export declare namespace API {
112
112
  sub_account_type: SubAccountType | string;
113
113
  description: string | null;
114
114
  icon: string | null;
115
+ card_issuing_fee: number | null;
116
+ card_monthly_fee: number | null;
117
+ initial_topup: number | null;
115
118
  }
116
119
  }
117
120
  interface User {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.5.6",
3
+ "version": "1.5.7",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/api/types.ts CHANGED
@@ -137,6 +137,9 @@ export namespace API {
137
137
  sub_account_type: SubAccountType | string;
138
138
  description: string | null;
139
139
  icon: string | null;
140
+ card_issuing_fee: number | null;
141
+ card_monthly_fee: number | null;
142
+ initial_topup: number | null;
140
143
  }
141
144
  }
142
145
  export interface User {