@yuno-payments/dashboard-api-mfe 0.40.14 → 0.40.20
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 +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/queries/data-report/data-report.query.d.ts +4 -1
- package/build/esm/index.js +2 -2
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/queries/data-report/data-report.query.d.ts +4 -1
- package/build/index.d.ts +4 -1
- package/package.json +1 -1
|
@@ -3,7 +3,10 @@ import { DataReport } from '../../types';
|
|
|
3
3
|
export declare function useGetSmartRoutingDataReport(params: {
|
|
4
4
|
[a: string]: number;
|
|
5
5
|
}): UseQueryResult<any, unknown>;
|
|
6
|
-
export declare function useInsightsConversionRateMetricsV2(params: DataReport.InsightMetricParams, path: string, enabled?: boolean
|
|
6
|
+
export declare function useInsightsConversionRateMetricsV2(params: DataReport.InsightMetricParams, path: string, enabled?: boolean, cacheConfig?: {
|
|
7
|
+
staleTime?: number;
|
|
8
|
+
cacheTime?: number;
|
|
9
|
+
}): UseQueryResult<any, unknown>;
|
|
7
10
|
export declare function useViewMoreMetrics(params: DataReport.InsightMetricParams, type: any): UseQueryResult<any, unknown>;
|
|
8
11
|
export declare function useInsightsFallbackMetrics(params: DataReport.InsightMetricParams): UseQueryResult<any, unknown>;
|
|
9
12
|
export declare function useInsightsVolumeMetrics(account_codes: string, params: DataReport.InsightMetricParams, enabled?: boolean): UseQueryResult<any, unknown>;
|
package/build/index.d.ts
CHANGED
|
@@ -5384,7 +5384,10 @@ declare function useGetPermissionsCatalog(): UseQueryResult<Team.CatalogPermissi
|
|
|
5384
5384
|
declare function useGetSmartRoutingDataReport(params: {
|
|
5385
5385
|
[a: string]: number;
|
|
5386
5386
|
}): UseQueryResult<any, unknown>;
|
|
5387
|
-
declare function useInsightsConversionRateMetricsV2(params: DataReport.InsightMetricParams, path: string, enabled?: boolean
|
|
5387
|
+
declare function useInsightsConversionRateMetricsV2(params: DataReport.InsightMetricParams, path: string, enabled?: boolean, cacheConfig?: {
|
|
5388
|
+
staleTime?: number;
|
|
5389
|
+
cacheTime?: number;
|
|
5390
|
+
}): UseQueryResult<any, unknown>;
|
|
5388
5391
|
declare function useViewMoreMetrics(params: DataReport.InsightMetricParams, type: any): UseQueryResult<any, unknown>;
|
|
5389
5392
|
declare function useInsightsFallbackMetrics(params: DataReport.InsightMetricParams): UseQueryResult<any, unknown>;
|
|
5390
5393
|
declare function useInsightsVolumeMetrics(account_codes: string, params: DataReport.InsightMetricParams, enabled?: boolean): UseQueryResult<any, unknown>;
|