squarefi-bff-api-module 1.24.30 → 1.24.31

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