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.
- package/dist/api/types/types.d.ts +16 -1
- package/package.json +1 -1
- package/src/api/types/types.ts +17 -3
|
@@ -2413,8 +2413,23 @@ export declare namespace API {
|
|
|
2413
2413
|
};
|
|
2414
2414
|
}
|
|
2415
2415
|
namespace TransactionList {
|
|
2416
|
-
type Request =
|
|
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
package/src/api/types/types.ts
CHANGED
|
@@ -2818,10 +2818,24 @@ export namespace API {
|
|
|
2818
2818
|
}
|
|
2819
2819
|
|
|
2820
2820
|
export namespace TransactionList {
|
|
2821
|
-
export type Request =
|
|
2822
|
-
|
|
2823
|
-
|
|
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[];
|