@magemetrics/ai 0.6.0 → 0.6.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.
@@ -341,6 +341,8 @@ declare const FrontendReportExplainabilitySchema: z.ZodObject<{
341
341
  friendliness_score: z.ZodOptional<z.ZodNumber>;
342
342
  friendliness_score_reason: z.ZodOptional<z.ZodString>;
343
343
  flow_data_id: z.ZodNumber;
344
+ output_dataset: z.ZodOptional<z.ZodString>;
345
+ sql: z.ZodOptional<z.ZodString>;
344
346
  }, z.core.$strip>;
345
347
 
346
348
  declare const FrontendReportSchema: z.ZodObject<{
@@ -885,6 +887,8 @@ export declare const useDataReport: (reportId: FrontendReport["id"]) => {
885
887
  friendliness_score?: number;
886
888
  friendliness_score_reason?: string;
887
889
  flow_data_id: number;
890
+ output_dataset?: string;
891
+ sql?: string;
888
892
  } | null | undefined;
889
893
  totalRows: number;
890
894
  infiniteData: InfiniteData< {
@@ -1196,6 +1200,8 @@ export declare const usePaginatedDataReport: (reportId: FrontendReport["id"], op
1196
1200
  friendliness_score?: number;
1197
1201
  friendliness_score_reason?: string;
1198
1202
  flow_data_id: number;
1203
+ output_dataset?: string;
1204
+ sql?: string;
1199
1205
  } | null | undefined;
1200
1206
  totalRows: number | undefined;
1201
1207
  pageIndex: number;