@yuno-payments/dashboard-api-mfe 0.36.42-CORECM-12914.1 → 0.36.43
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 +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +1 -0
- package/build/cjs/types/queries/smart-routing/smart-routing.query.d.ts +3 -1
- package/build/cjs/types/types/organization/organization.d.ts +1 -0
- package/build/cjs/types/types/smart-routing/smart-routing.d.ts +3 -0
- package/build/esm/index.js +4 -4
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +1 -0
- package/build/esm/types/queries/smart-routing/smart-routing.query.d.ts +3 -1
- package/build/esm/types/types/organization/organization.d.ts +1 -0
- package/build/esm/types/types/smart-routing/smart-routing.d.ts +3 -0
- package/build/index.d.ts +7 -1
- package/package.json +1 -1
|
@@ -480,6 +480,7 @@ export declare class Api extends HttpClient {
|
|
|
480
480
|
getInsightsConversionRateOverviewFraud3ds(body: ConversionRateBody, params: ConversionRateParams): Promise<AxiosResponse<ConversionRateOverviewFraud3ds>>;
|
|
481
481
|
getConversionRateChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
482
482
|
get3DSExemptions(): Promise<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
|
|
483
|
+
getNetworkTokensOnboarding(): Promise<AxiosResponse<SmartRouting.NetworkTokensOnboardingResponse>>;
|
|
483
484
|
createChartGPTChart<T>(payload: {
|
|
484
485
|
user_prompt: string;
|
|
485
486
|
}): Promise<AxiosResponse<T, any>>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
2
|
import { SmartRouting } from '../../types';
|
|
3
|
-
import { AxiosResponse } from 'axios';
|
|
3
|
+
import { AxiosError, AxiosResponse } from 'axios';
|
|
4
|
+
import { BFFErrorResponse } from '../../mutations';
|
|
4
5
|
export interface ErrorProp {
|
|
5
6
|
name?: string;
|
|
6
7
|
}
|
|
@@ -26,3 +27,4 @@ export declare function useGetSmartRoutingSearchConditionValues({ text, conditio
|
|
|
26
27
|
}): UseQueryResult<SmartRouting.ConditionTypeValues & ErrorProp, unknown>;
|
|
27
28
|
export declare function useProviderConversionRatesData(): UseQueryResult<SmartRouting.SRConversionRates[] & ErrorProp, unknown>;
|
|
28
29
|
export declare function use3DSExemptions(): UseQueryResult<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
|
|
30
|
+
export declare function useNetworkTokensOnboarding(): UseQueryResult<SmartRouting.NetworkTokensOnboardingResponse, AxiosError<BFFErrorResponse>>;
|