@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.
@@ -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>>;
@@ -124,6 +124,7 @@ export declare namespace Organization {
124
124
  updated_at: string;
125
125
  provider_name: string;
126
126
  connection_name: string;
127
+ network_token_enable: boolean;
127
128
  connection_state?: ConnectionState;
128
129
  provider_icon: string;
129
130
  category: string;
@@ -310,5 +310,8 @@ export declare namespace SmartRouting {
310
310
  export interface ThreeDSExemptionsResponse {
311
311
  three_ds_exemptions: string[];
312
312
  }
313
+ export interface NetworkTokensOnboardingResponse {
314
+ available: boolean;
315
+ }
313
316
  export {};
314
317
  }