@magemetrics/ai 0.4.2 → 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.
- package/dist/react/ai.js +6601 -6905
- package/dist/react/index.d.ts +5 -0
- package/dist/styles.css +1 -1
- package/dist/web-component/index.d.ts +5 -0
- package/dist/web-component/web-component.es.js +15256 -15546
- package/package.json +2 -2
|
@@ -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>;
|