squarefi-bff-api-module 1.24.30 → 1.24.32
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 +2 -22
- package/package.json +1 -1
- package/src/api/types/types.ts +5 -23
|
@@ -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']['content']['application/json'];
|
|
2440
2420
|
}
|
|
2441
2421
|
}
|
|
2442
2422
|
}
|
package/package.json
CHANGED
package/src/api/types/types.ts
CHANGED
|
@@ -2818,30 +2818,12 @@ export namespace API {
|
|
|
2818
2818
|
}
|
|
2819
2819
|
|
|
2820
2820
|
export namespace TransactionList {
|
|
2821
|
-
export type Request =
|
|
2822
|
-
|
|
2823
|
-
|
|
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
|
-
|
|
2842
|
-
total: number;
|
|
2843
|
-
data: Transaction[];
|
|
2844
|
-
};
|
|
2825
|
+
export type Response =
|
|
2826
|
+
operations['WalletsTransactionsController_viewTransactionsByWallet']['responses']['200']['content']['application/json'];
|
|
2845
2827
|
}
|
|
2846
2828
|
}
|
|
2847
2829
|
}
|