@magemetrics/ai 0.17.0 → 0.18.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.
- package/dist/react/ai.js +2241 -2420
- package/dist/react/index.d.ts +5 -5
- package/dist/styles.css +1 -1
- package/dist/web-component/web-component.es.js +12793 -12709
- package/package.json +5 -5
package/dist/react/index.d.ts
CHANGED
|
@@ -379,8 +379,8 @@ declare type FormattedData = {
|
|
|
379
379
|
declare type FrontendCanvas = z.infer<typeof FrontendCanvasSchema>;
|
|
380
380
|
|
|
381
381
|
declare const FrontendCanvasSchema: z.ZodObject<{
|
|
382
|
-
title: z.ZodNullable<z.ZodString>;
|
|
383
382
|
id: z.ZodUUID;
|
|
383
|
+
title: z.ZodNullable<z.ZodString>;
|
|
384
384
|
nodes: z.ZodArray<z.ZodAny>;
|
|
385
385
|
edges: z.ZodArray<z.ZodAny>;
|
|
386
386
|
is_public: z.ZodBoolean;
|
|
@@ -393,9 +393,9 @@ declare const FrontendRecommendationsSchema: z.ZodObject<{
|
|
|
393
393
|
}, z.core.$strip>;
|
|
394
394
|
|
|
395
395
|
declare const FrontendReportSchema: z.ZodObject<{
|
|
396
|
+
id: z.ZodNumber;
|
|
396
397
|
status: z.ZodNullable<z.ZodString>;
|
|
397
398
|
title: z.ZodString;
|
|
398
|
-
id: z.ZodNumber;
|
|
399
399
|
uuid: z.ZodString;
|
|
400
400
|
created_at: z.ZodString;
|
|
401
401
|
request: z.ZodNullable<z.ZodString>;
|
|
@@ -786,8 +786,8 @@ declare const TableFilterValueSchema: z.ZodObject<{
|
|
|
786
786
|
* ```
|
|
787
787
|
*/
|
|
788
788
|
export declare const useCanvas: (canvasId: string | undefined | null, options?: Omit<UseQueryOptions<FrontendCanvas, unknown>, "queryKey" | "queryFn">) => UseQueryResult<NoInfer<{
|
|
789
|
-
title: string | null;
|
|
790
789
|
id: string;
|
|
790
|
+
title: string | null;
|
|
791
791
|
nodes: any[];
|
|
792
792
|
edges: any[];
|
|
793
793
|
is_public: boolean;
|
|
@@ -927,9 +927,9 @@ export declare const useDataReportColumnValue: (reportId: string, filters: Repor
|
|
|
927
927
|
|
|
928
928
|
export declare const useDataTableContext: () => {
|
|
929
929
|
report: {
|
|
930
|
+
id: number;
|
|
930
931
|
status: string | null;
|
|
931
932
|
title: string;
|
|
932
|
-
id: number;
|
|
933
933
|
uuid: string;
|
|
934
934
|
created_at: string;
|
|
935
935
|
request: string | null;
|
|
@@ -1071,9 +1071,9 @@ export declare const useMageMetricsClient: () => MageMetricsClient;
|
|
|
1071
1071
|
export declare const useMageMetricsReady: () => false | MageMetricsClient;
|
|
1072
1072
|
|
|
1073
1073
|
export declare const useRecentFlows: (limit?: number, metadataFilter?: FlowMetadata_2) => UseQueryResult<NoInfer<{
|
|
1074
|
+
id: string;
|
|
1074
1075
|
title: string | null;
|
|
1075
1076
|
metadata: Record<string, string | number | boolean>;
|
|
1076
|
-
id: string;
|
|
1077
1077
|
created_at: string;
|
|
1078
1078
|
request: string;
|
|
1079
1079
|
user_id: string | null;
|