@yuno-payments/dashboard-api-mfe 0.36.16 → 0.36.18-CORECM-11821.1
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 +6 -6
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +1 -0
- package/build/cjs/types/queries/payment-links/payment-links.query.d.ts +1 -0
- package/build/cjs/types/types/ai/ai.d.ts +1 -1
- 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/payment-links/payment-links.query.d.ts +1 -0
- package/build/esm/types/types/ai/ai.d.ts +1 -1
- package/build/index.d.ts +4 -2
- package/package.json +1 -1
|
@@ -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>;
|