squarefi-bff-api-module 1.24.32 → 1.24.33
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.
|
@@ -2416,7 +2416,10 @@ export declare namespace API {
|
|
|
2416
2416
|
type Request = operations['WalletsTransactionsController_viewTransactionsByWallet']['parameters']['query'] & {
|
|
2417
2417
|
wallet_uuid: string;
|
|
2418
2418
|
};
|
|
2419
|
-
type Response =
|
|
2419
|
+
type Response = {
|
|
2420
|
+
total: number;
|
|
2421
|
+
data: Transaction[];
|
|
2422
|
+
};
|
|
2420
2423
|
}
|
|
2421
2424
|
}
|
|
2422
2425
|
}
|
package/package.json
CHANGED
package/src/api/types/types.ts
CHANGED
|
@@ -2822,8 +2822,10 @@ export namespace API {
|
|
|
2822
2822
|
operations['WalletsTransactionsController_viewTransactionsByWallet']['parameters']['query'] & {
|
|
2823
2823
|
wallet_uuid: string;
|
|
2824
2824
|
};
|
|
2825
|
-
export type Response =
|
|
2826
|
-
|
|
2825
|
+
export type Response = {
|
|
2826
|
+
total: number;
|
|
2827
|
+
data: Transaction[];
|
|
2828
|
+
};
|
|
2827
2829
|
}
|
|
2828
2830
|
}
|
|
2829
2831
|
}
|