@advt-gpt-chart/package 3.0.10 → 3.0.12
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/dist/Chart/DataSource/metricInsight.d.ts +2 -1
- package/dist/export.d.ts +1 -0
- package/dist/index.es.js +18447 -18430
- package/dist/index.es.js.gz +0 -0
- package/dist/index.umd.js +686 -685
- package/dist/index.umd.js.gz +0 -0
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -4,10 +4,11 @@ export declare const queryMetricId: (id: string) => Promise<any>;
|
|
|
4
4
|
export declare const queryDimensions: (metricIds: string[]) => Promise<any>;
|
|
5
5
|
export declare const queryMql2Params: (mql: any) => Promise<any>;
|
|
6
6
|
export declare const queryChartData: (dataSource: DataSource, queryData: QueryData) => Promise<any>;
|
|
7
|
-
export declare const queryParamsChartData: ({ timeRange, metrics, dimensions, timeGrain, filters, queryMetricOrgId, }: QueryData) => Promise<any>;
|
|
7
|
+
export declare const queryParamsChartData: ({ timeRange, metrics, dimensions, timeGrain, filters, queryMetricOrgId, queryType, }: QueryData) => Promise<any>;
|
|
8
8
|
export declare const queryMqlChartData: (dataSource: DataSource, { timeRange, metrics, dimensions, timeGrain, filters, queryMetricOrgId, queryType }: QueryData) => Promise<any>;
|
|
9
9
|
export declare const transformData: (params: {
|
|
10
10
|
data: TableData;
|
|
11
|
+
metricTime: string;
|
|
11
12
|
}) => {
|
|
12
13
|
[key: string]: any;
|
|
13
14
|
}[];
|
package/dist/export.d.ts
CHANGED
|
@@ -32,3 +32,4 @@ import type { TableProps } from './Charts/Table/types';
|
|
|
32
32
|
export { VisText, type VisTextProps } from './Text';
|
|
33
33
|
export { Area, type AreaProps, Bar, type BarProps, Donut, type DonutProps, Funnel, type FunnelProps, Gauge, type GaugeProps, Heatmap, type HeatmapProps, Indicator, type IndicatorProps, Line, type LineProps, Pie, type PieProps, Radar, type RadarProps, Rank, type RankProps, Scatter, type ScatterProps, Table, type TableProps, };
|
|
34
34
|
export declare const DEFAULT_CHART_COMPONENTS: Record<string, React.FC<any>>;
|
|
35
|
+
export declare const COMMON_CHART_COMPONENTS: Record<string, any>;
|