@yuno-payments/dashboard-api-mfe 0.36.30-beta.2 → 0.36.30-beta.3
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/build/cjs/index.js.map +1 -1
- package/build/cjs/types/queries/payments/payments.query.d.ts +1 -1
- package/build/cjs/types/types/payment/payment.d.ts +35 -0
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/queries/payments/payments.query.d.ts +1 -1
- package/build/esm/types/types/payment/payment.d.ts +35 -0
- package/build/index.d.ts +36 -1
- package/package.json +1 -1
|
@@ -21,7 +21,7 @@ export declare function useGetPaymentMetricsFilters(): UseQueryResult<Payment.Pa
|
|
|
21
21
|
export declare function useGetPaymentTransactionsDetails({ transaction_code, enabled, }: {
|
|
22
22
|
transaction_code: string;
|
|
23
23
|
enabled?: boolean;
|
|
24
|
-
}): UseQueryResult<Payment.
|
|
24
|
+
}): UseQueryResult<Payment.PaymentTransactionDetail, AxiosError<BFFErrorResponse>>;
|
|
25
25
|
export declare function useGetTransactionHistoryByPaymentCode({ payment_code, enabled, }: {
|
|
26
26
|
payment_code: string;
|
|
27
27
|
enabled?: boolean;
|
|
@@ -236,6 +236,41 @@ export declare namespace Payment {
|
|
|
236
236
|
updated_at?: string;
|
|
237
237
|
}
|
|
238
238
|
interface TransactionDetails {
|
|
239
|
+
id?: string;
|
|
240
|
+
type?: string;
|
|
241
|
+
transaction_data_type?: string;
|
|
242
|
+
status?: string;
|
|
243
|
+
category?: string;
|
|
244
|
+
amount?: {
|
|
245
|
+
currency?: string;
|
|
246
|
+
value: number;
|
|
247
|
+
} | string;
|
|
248
|
+
payment_method?: PaymentMethod;
|
|
249
|
+
response_code?: string;
|
|
250
|
+
response_message?: string;
|
|
251
|
+
reason?: string;
|
|
252
|
+
description?: string;
|
|
253
|
+
merchant_reference?: string;
|
|
254
|
+
provider_data?: ProviderData;
|
|
255
|
+
created_at?: string;
|
|
256
|
+
updated_at?: string;
|
|
257
|
+
code?: string;
|
|
258
|
+
customer_payment_method_code?: string;
|
|
259
|
+
one_time_token?: string;
|
|
260
|
+
parent_id?: string;
|
|
261
|
+
payment_id?: number;
|
|
262
|
+
require_action_type?: string;
|
|
263
|
+
vault_on_success?: string;
|
|
264
|
+
parent_provider?: string;
|
|
265
|
+
account_integration_code?: string;
|
|
266
|
+
technical_reverse_provider_transaction_id?: string;
|
|
267
|
+
technical_reverse_transaction_type?: string;
|
|
268
|
+
technical_reverse_status?: string;
|
|
269
|
+
fraud_screening?: FraudScreening;
|
|
270
|
+
stand_alone?: string;
|
|
271
|
+
purpose?: string;
|
|
272
|
+
}
|
|
273
|
+
interface PaymentTransactionDetail {
|
|
239
274
|
id?: number;
|
|
240
275
|
code?: string;
|
|
241
276
|
parent_id?: string;
|