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.
- package/dist/api/types.d.ts +1 -5
- package/package.json +1 -1
- package/src/api/types.ts +1 -5
package/dist/api/types.d.ts
CHANGED
|
@@ -330,11 +330,7 @@ export declare namespace API {
|
|
|
330
330
|
initial_topup?: number;
|
|
331
331
|
currency_id?: string;
|
|
332
332
|
}
|
|
333
|
-
|
|
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
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
|
|
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;
|