@yuno-payments/dashboard-api-mfe 0.36.51-beta.3 → 0.36.53-beta.1
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 +4 -4
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/queries/smart-routing/smart-routing.query.d.ts +2 -2
- package/build/cjs/types/queries/users/users.query.d.ts +1 -0
- package/build/cjs/types/types/payment/payment.d.ts +2 -0
- package/build/esm/index.js +4 -4
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/queries/smart-routing/smart-routing.query.d.ts +2 -2
- package/build/esm/types/queries/users/users.query.d.ts +1 -0
- package/build/esm/types/types/payment/payment.d.ts +2 -0
- package/build/index.d.ts +4 -1
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
2
|
import { SmartRouting } from '../../types';
|
|
3
|
-
import { AxiosError
|
|
3
|
+
import { AxiosError } from 'axios';
|
|
4
4
|
import { BFFErrorResponse } from '../../mutations';
|
|
5
5
|
export interface ErrorProp {
|
|
6
6
|
name?: string;
|
|
@@ -26,5 +26,5 @@ export declare function useGetSmartRoutingSearchConditionValues({ text, conditio
|
|
|
26
26
|
conditionType: string;
|
|
27
27
|
}): UseQueryResult<SmartRouting.ConditionTypeValues & ErrorProp, unknown>;
|
|
28
28
|
export declare function useProviderConversionRatesData(): UseQueryResult<SmartRouting.SRConversionRates[] & ErrorProp, unknown>;
|
|
29
|
-
export declare function use3DSExemptions(): UseQueryResult<
|
|
29
|
+
export declare function use3DSExemptions(): UseQueryResult<SmartRouting.ThreeDSExemptionsResponse, AxiosError<BFFErrorResponse>>;
|
|
30
30
|
export declare function useNetworkTokensOnboarding(): UseQueryResult<SmartRouting.NetworkTokensOnboardingResponse, AxiosError<BFFErrorResponse>>;
|
|
@@ -18,6 +18,7 @@ export declare function useCommunications(payload: {
|
|
|
18
18
|
skip: number;
|
|
19
19
|
limit: number;
|
|
20
20
|
search_value: string;
|
|
21
|
+
channel: string[];
|
|
21
22
|
}): UseQueryResult<AI.CommunicationsListResponse, AxiosError>;
|
|
22
23
|
export declare function useCommunicationsFilters(): UseQueryResult<AI.CommunicationsFiltersResponse, AxiosError>;
|
|
23
24
|
export declare function useCommunicationDetails(communicationId: string, accountCode: string): UseQueryResult<AI.CommunicationDetailsResponse, AxiosError>;
|
|
@@ -250,6 +250,7 @@ export declare namespace Payment {
|
|
|
250
250
|
response_message?: string;
|
|
251
251
|
reason?: string;
|
|
252
252
|
description?: string;
|
|
253
|
+
merchant_advice_code?: string;
|
|
253
254
|
merchant_reference?: string;
|
|
254
255
|
provider_data?: ProviderData;
|
|
255
256
|
created_at?: string;
|
|
@@ -291,6 +292,7 @@ export declare namespace Payment {
|
|
|
291
292
|
provider_transaction_id?: string;
|
|
292
293
|
provider_status?: string;
|
|
293
294
|
provider_status_detail?: string;
|
|
295
|
+
merchant_advice_code?: string;
|
|
294
296
|
merchant_reference?: string;
|
|
295
297
|
reason?: string;
|
|
296
298
|
description?: string;
|
package/build/index.d.ts
CHANGED
|
@@ -654,6 +654,7 @@ declare namespace Payment {
|
|
|
654
654
|
response_message?: string;
|
|
655
655
|
reason?: string;
|
|
656
656
|
description?: string;
|
|
657
|
+
merchant_advice_code?: string;
|
|
657
658
|
merchant_reference?: string;
|
|
658
659
|
provider_data?: ProviderData;
|
|
659
660
|
created_at?: string;
|
|
@@ -695,6 +696,7 @@ declare namespace Payment {
|
|
|
695
696
|
provider_transaction_id?: string;
|
|
696
697
|
provider_status?: string;
|
|
697
698
|
provider_status_detail?: string;
|
|
699
|
+
merchant_advice_code?: string;
|
|
698
700
|
merchant_reference?: string;
|
|
699
701
|
reason?: string;
|
|
700
702
|
description?: string;
|
|
@@ -4602,7 +4604,7 @@ declare function useGetSmartRoutingSearchConditionValues({ text, conditionType,
|
|
|
4602
4604
|
conditionType: string;
|
|
4603
4605
|
}): UseQueryResult<SmartRouting.ConditionTypeValues & ErrorProp, unknown>;
|
|
4604
4606
|
declare function useProviderConversionRatesData(): UseQueryResult<SmartRouting.SRConversionRates[] & ErrorProp, unknown>;
|
|
4605
|
-
declare function use3DSExemptions(): UseQueryResult<
|
|
4607
|
+
declare function use3DSExemptions(): UseQueryResult<SmartRouting.ThreeDSExemptionsResponse, AxiosError<BFFErrorResponse>>;
|
|
4606
4608
|
declare function useNetworkTokensOnboarding(): UseQueryResult<SmartRouting.NetworkTokensOnboardingResponse, AxiosError<BFFErrorResponse>>;
|
|
4607
4609
|
|
|
4608
4610
|
declare function useGetRoutingMonitorsTemplates(organizationCode: string): UseQueryResult<RoutingMonitors.TemplateSelector[], unknown>;
|
|
@@ -4664,6 +4666,7 @@ declare function useCommunications(payload: {
|
|
|
4664
4666
|
skip: number;
|
|
4665
4667
|
limit: number;
|
|
4666
4668
|
search_value: string;
|
|
4669
|
+
channel: string[];
|
|
4667
4670
|
}): UseQueryResult<AI.CommunicationsListResponse, AxiosError>;
|
|
4668
4671
|
declare function useCommunicationsFilters(): UseQueryResult<AI.CommunicationsFiltersResponse, AxiosError>;
|
|
4669
4672
|
declare function useCommunicationDetails(communicationId: string, accountCode: string): UseQueryResult<AI.CommunicationDetailsResponse, AxiosError>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuno-payments/dashboard-api-mfe",
|
|
3
|
-
"version": "0.36.
|
|
3
|
+
"version": "0.36.53-beta.1",
|
|
4
4
|
"types": "build/index.d.ts",
|
|
5
5
|
"main": "build/cjs/index.js",
|
|
6
6
|
"module": "build/esm/index.js",
|
|
@@ -106,4 +106,4 @@
|
|
|
106
106
|
"ts-loader": "^9.4.4",
|
|
107
107
|
"uuid": "^11.1.0"
|
|
108
108
|
}
|
|
109
|
-
}
|
|
109
|
+
}
|