squarefi-bff-api-module 1.24.33 → 1.24.34

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.
@@ -2413,8 +2413,23 @@ export declare namespace API {
2413
2413
  };
2414
2414
  }
2415
2415
  namespace TransactionList {
2416
- type Request = operations['WalletsTransactionsController_viewTransactionsByWallet']['parameters']['query'] & {
2416
+ type Request = {
2417
2417
  wallet_uuid: string;
2418
+ limit: number;
2419
+ offset: number;
2420
+ filter?: {
2421
+ created_at?: string;
2422
+ status?: WalletTransactionStatus;
2423
+ type?: WalletTransactionType;
2424
+ method?: WalletTransactionMethod;
2425
+ record_type?: WalletTransactionRecordType;
2426
+ 'currency.uuid'?: string;
2427
+ 'meta.billing_amount_currency'?: string;
2428
+ 'meta.transaction_amount_currency'?: string;
2429
+ address?: string;
2430
+ from_created_at?: string;
2431
+ to_created_at?: string;
2432
+ };
2418
2433
  };
2419
2434
  type Response = {
2420
2435
  total: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.24.33",
3
+ "version": "1.24.34",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -2818,10 +2818,24 @@ export namespace API {
2818
2818
  }
2819
2819
 
2820
2820
  export namespace TransactionList {
2821
- export type Request =
2822
- operations['WalletsTransactionsController_viewTransactionsByWallet']['parameters']['query'] & {
2823
- wallet_uuid: string;
2821
+ export type Request = {
2822
+ wallet_uuid: string;
2823
+ limit: number;
2824
+ offset: number;
2825
+ filter?: {
2826
+ created_at?: string;
2827
+ status?: WalletTransactionStatus;
2828
+ type?: WalletTransactionType;
2829
+ method?: WalletTransactionMethod;
2830
+ record_type?: WalletTransactionRecordType;
2831
+ 'currency.uuid'?: string;
2832
+ 'meta.billing_amount_currency'?: string;
2833
+ 'meta.transaction_amount_currency'?: string;
2834
+ address?: string;
2835
+ from_created_at?: string;
2836
+ to_created_at?: string;
2824
2837
  };
2838
+ };
2825
2839
  export type Response = {
2826
2840
  total: number;
2827
2841
  data: Transaction[];