squarefi-bff-api-module 1.24.27 → 1.24.28
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.
|
@@ -854,8 +854,8 @@ export declare namespace API {
|
|
|
854
854
|
namespace TransactionList {
|
|
855
855
|
interface Request {
|
|
856
856
|
sub_account_id: string;
|
|
857
|
-
limit
|
|
858
|
-
offset
|
|
857
|
+
limit: number;
|
|
858
|
+
offset: number;
|
|
859
859
|
card_id?: string;
|
|
860
860
|
from_timestamp?: string;
|
|
861
861
|
to_timestamp?: string;
|
package/package.json
CHANGED
package/src/api/types/types.ts
CHANGED
|
@@ -1017,8 +1017,8 @@ export namespace API {
|
|
|
1017
1017
|
export namespace TransactionList {
|
|
1018
1018
|
export interface Request {
|
|
1019
1019
|
sub_account_id: string;
|
|
1020
|
-
limit
|
|
1021
|
-
offset
|
|
1020
|
+
limit: number;
|
|
1021
|
+
offset: number;
|
|
1022
1022
|
card_id?: string;
|
|
1023
1023
|
from_timestamp?: string;
|
|
1024
1024
|
to_timestamp?: string;
|