squarefi-bff-api-module 1.5.8 → 1.5.9

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.
@@ -330,11 +330,7 @@ export declare namespace API {
330
330
  initial_topup?: number;
331
331
  currency_id?: string;
332
332
  }
333
- interface StandAloneRequest extends CommonRequest {
334
- authorization_controls: AuthorizationControls;
335
- transaction_limits: TransactionLimit[];
336
- purpose?: string;
337
- }
333
+ type StandAloneRequest = CommonRequest;
338
334
  interface FiatAccountRequest extends CommonRequest {
339
335
  sub_account_id: string;
340
336
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.5.8",
3
+ "version": "1.5.9",
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
@@ -377,11 +377,7 @@ export namespace API {
377
377
  initial_topup?: number;
378
378
  currency_id?: string;
379
379
  }
380
- export interface StandAloneRequest extends CommonRequest {
381
- authorization_controls: AuthorizationControls;
382
- transaction_limits: TransactionLimit[];
383
- purpose?: string;
384
- }
380
+ export type StandAloneRequest = CommonRequest;
385
381
 
386
382
  export interface FiatAccountRequest extends CommonRequest {
387
383
  sub_account_id: string;