@yuno-payments/dashboard-api-mfe 0.36.51-beta.2 → 0.36.51-beta.4

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.
@@ -1,6 +1,6 @@
1
1
  import { UseQueryResult } from '@tanstack/react-query';
2
2
  import { SmartRouting } from '../../types';
3
- import { AxiosError, AxiosResponse } from 'axios';
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<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
29
+ export declare function use3DSExemptions(): UseQueryResult<SmartRouting.ThreeDSExemptionsResponse, AxiosError<BFFErrorResponse>>;
30
30
  export declare function useNetworkTokensOnboarding(): UseQueryResult<SmartRouting.NetworkTokensOnboardingResponse, AxiosError<BFFErrorResponse>>;
@@ -246,7 +246,7 @@ export declare namespace SmartRouting {
246
246
  export type DeclineTypes = {
247
247
  label: string;
248
248
  name: string;
249
- group_type?: DeclineGroupType;
249
+ group?: DeclineGroupType;
250
250
  is_used: boolean;
251
251
  step_type?: StepType;
252
252
  }[];