@magemetrics/ai 0.4.1 → 0.4.3

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.
@@ -355,6 +355,7 @@ export declare type MageMetricsContextProviderProps = {
355
355
  apiUrl?: never;
356
356
  externalJwt?: never;
357
357
  additionalHeaders?: never;
358
+ applicationName?: never;
358
359
  } | ({
359
360
  /** Configuration to create a new MageMetricsClient. */
360
361
  client?: never;
@@ -383,6 +384,8 @@ declare interface ManagedModalProps extends ModalProps {
383
384
  persist?: PersistenceOptions;
384
385
  /** Custom component overrides for extending functionality */
385
386
  components?: Components;
387
+ /** Application name to associate with flows created through this modal */
388
+ applicationName?: string;
386
389
  }
387
390
 
388
391
  declare interface ModalProps {
@@ -983,10 +986,12 @@ export declare const usePaginatedDataReport: (reportId: FrontendReport["id"], op
983
986
  };
984
987
 
985
988
  export declare const useRecentFlows: (limit?: number) => UseQueryResult< {
989
+ title: string | null;
986
990
  id: string;
987
991
  request: string;
988
992
  created_at: string;
989
993
  user_id: string | null;
994
+ application_id?: number | null | undefined;
990
995
  }[], Error>;
991
996
 
992
997
  declare type V1FrontendVisualization = z.output<typeof V1FrontendVisualizationSchema>;
@@ -1037,6 +1042,10 @@ withTitle: boolean;
1037
1042
  exportingEnabled?: boolean;
1038
1043
  } & RefAttributes<HTMLDivElement>>;
1039
1044
 
1045
+ export declare type WebComponentManagedModalProps = ManagedModalProps & {
1046
+ enableCsvDownload: boolean;
1047
+ };
1048
+
1040
1049
  export { }
1041
1050
 
1042
1051