@magemetrics/ai 0.10.0-rc1 → 0.10.0

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.
@@ -647,7 +647,11 @@ export declare const useCreateFlow: (options?: UseMutationOptions<{
647
647
  }, Error, CreateFlowParam, unknown>;
648
648
  };
649
649
 
650
- export declare const useCustomReportData: () => {
650
+ export declare const useDataReportColumnValue: (reportId: number, filters: ReportDataFilters) => UseQueryResult< {
651
+ [key: string]: unknown;
652
+ }[], Error>;
653
+
654
+ export declare const useDataTableContext: () => {
651
655
  report: {
652
656
  status: string | null;
653
657
  id: number;
@@ -707,10 +711,6 @@ export declare const useCustomReportData: () => {
707
711
  filters: TableFilters;
708
712
  };
709
713
 
710
- export declare const useDataReportColumnValue: (reportId: number, filters: ReportDataFilters) => UseQueryResult< {
711
- [key: string]: unknown;
712
- }[], Error>;
713
-
714
714
  export declare const useDownloadReportData: (options?: UseMutationOptions<ExportReportDataResult, Error, ExportReportDataParams>) => {
715
715
  download: UseMutateFunction<ExportReportDataResult, Error, ExportReportDataParams, unknown>;
716
716
  data: undefined;