@yuno-payments/dashboard-api-mfe 0.36.17 → 0.36.18-CORECM-11821.2

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.
@@ -124,6 +124,7 @@ export declare class Api extends HttpClient {
124
124
  useGetTransactionStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
125
125
  useGetReconciliationTransactionStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
126
126
  useGetCountriesConfig<T>(): Promise<AxiosResponse<T, any>>;
127
+ useGetCountriesConfigV2<T>(acceptLanguage?: string): Promise<AxiosResponse<T, any>>;
127
128
  useGetTimeZoneCatalog<T>(): Promise<AxiosResponse<T, any>>;
128
129
  useGetAuditLogsFilters<T>(): Promise<AxiosResponse<T, any>>;
129
130
  getDashboardStaticContents<T>(): Promise<AxiosResponse<T, any>>;
@@ -3,4 +3,5 @@ import { UseQueryResult } from '@tanstack/react-query';
3
3
  export declare function useGetPaymentLinks(params: any, accountCode: any): UseQueryResult<any, unknown>;
4
4
  export declare function useGetPaymentLinkByCode(paymentLinkCode: any): UseQueryResult<any, unknown>;
5
5
  export declare function useGetCountriesConfigPaymentLink(enabled?: boolean): UseQueryResult<PaymentLinks.GetCountriesConfig, unknown>;
6
+ export declare function useGetCountriesConfigPaymentLinkV2(acceptLanguage?: string): UseQueryResult<PaymentLinks.GetCountriesConfig, unknown>;
6
7
  export declare function useGetTimezonePaymentLink(organizationCode: string): UseQueryResult<any, unknown>;