@yuno-payments/dashboard-api-mfe 0.34.28 → 0.34.30

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.
@@ -577,6 +577,6 @@ export declare class Api extends HttpClient {
577
577
  getInsightsConversionRateOverview(body: ConversionRateBody, params: ConversionRateParams): Promise<AxiosResponse<ConversionRateOverview>>;
578
578
  getInsightsConversionRateOverviewFraud3ds(body: ConversionRateBody, params: ConversionRateParams): Promise<AxiosResponse<ConversionRateOverviewFraud3ds>>;
579
579
  getConversionRateChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
580
- get3DSExcemptions(): Promise<AxiosResponse<string[]>>;
580
+ get3DSExemptions(): Promise<AxiosResponse<string[]>>;
581
581
  }
582
582
  export {};
@@ -25,4 +25,4 @@ export declare function useGetSmartRoutingSearchConditionValues({ text, conditio
25
25
  conditionType: string;
26
26
  }): UseQueryResult<SmartRouting.ConditionTypeValues & ErrorProp, unknown>;
27
27
  export declare function useProviderConversionRatesData(): UseQueryResult<SmartRouting.SRConversionRates[] & ErrorProp, unknown>;
28
- export declare function use3DSExcemptions(): UseQueryResult<string[]>;
28
+ export declare function use3DSExemptions(): UseQueryResult<SmartRouting.ThreeDSExemptionsResponse>;
@@ -307,5 +307,8 @@ export declare namespace SmartRouting {
307
307
  payment_method: string;
308
308
  message: string;
309
309
  }
310
+ export interface ThreeDSExemptionsResponse {
311
+ three_ds_exemptions: string[];
312
+ }
310
313
  export {};
311
314
  }