squarefi-bff-api-module 1.24.32 → 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,10 +2413,28 @@ 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
+ };
2433
+ };
2434
+ type Response = {
2435
+ total: number;
2436
+ data: Transaction[];
2418
2437
  };
2419
- type Response = operations['WalletsTransactionsController_viewTransactionsByWallet']['responses']['200']['content']['application/json'];
2420
2438
  }
2421
2439
  }
2422
2440
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.24.32",
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,12 +2818,28 @@ 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
  };
2825
- export type Response =
2826
- operations['WalletsTransactionsController_viewTransactionsByWallet']['responses']['200']['content']['application/json'];
2838
+ };
2839
+ export type Response = {
2840
+ total: number;
2841
+ data: Transaction[];
2842
+ };
2827
2843
  }
2828
2844
  }
2829
2845
  }