@magemetrics/ai 0.12.0 → 0.12.2
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 +12272 -11697
- package/dist/react/index.d.ts +21 -1
- package/dist/styles.css +1 -1
- package/dist/web-component/web-component.es.js +35964 -32859
- package/package.json +9 -9
package/dist/react/index.d.ts
CHANGED
|
@@ -473,6 +473,16 @@ declare const FrontendVisualizationSchema: z.ZodObject<{
|
|
|
473
473
|
}, z.core.$strip>>;
|
|
474
474
|
flow_data_id: z.ZodNumber;
|
|
475
475
|
report_uuid: z.ZodString;
|
|
476
|
+
materialization: z.ZodOptional<z.ZodObject<{
|
|
477
|
+
is_materialized: z.ZodNullable<z.ZodBoolean>;
|
|
478
|
+
last_materialized_at: z.ZodNullable<z.ZodString>;
|
|
479
|
+
materialized_error_message: z.ZodNullable<z.ZodString>;
|
|
480
|
+
materialized_status: z.ZodNullable<z.ZodEnum<{
|
|
481
|
+
completed: "completed";
|
|
482
|
+
failed: "failed";
|
|
483
|
+
running: "running";
|
|
484
|
+
}>>;
|
|
485
|
+
}, z.core.$strip>>;
|
|
476
486
|
}, z.core.$strip>;
|
|
477
487
|
|
|
478
488
|
declare const InputContainer: default_2.FC<{
|
|
@@ -1049,7 +1059,7 @@ explanation: string;
|
|
|
1049
1059
|
type: string;
|
|
1050
1060
|
}[], Error>;
|
|
1051
1061
|
|
|
1052
|
-
export declare const useReport: (reportId: number) => {
|
|
1062
|
+
export declare const useReport: (reportId: number | undefined) => {
|
|
1053
1063
|
data: {
|
|
1054
1064
|
created_at: string;
|
|
1055
1065
|
flow_id: string;
|
|
@@ -1185,6 +1195,16 @@ declare const V1FrontendVisualizationSchema: z.ZodObject<{
|
|
|
1185
1195
|
}, z.core.$strip>>;
|
|
1186
1196
|
flow_data_id: z.ZodNumber;
|
|
1187
1197
|
report_uuid: z.ZodString;
|
|
1198
|
+
materialization: z.ZodOptional<z.ZodObject<{
|
|
1199
|
+
is_materialized: z.ZodNullable<z.ZodBoolean>;
|
|
1200
|
+
last_materialized_at: z.ZodNullable<z.ZodString>;
|
|
1201
|
+
materialized_error_message: z.ZodNullable<z.ZodString>;
|
|
1202
|
+
materialized_status: z.ZodNullable<z.ZodEnum<{
|
|
1203
|
+
completed: "completed";
|
|
1204
|
+
failed: "failed";
|
|
1205
|
+
running: "running";
|
|
1206
|
+
}>>;
|
|
1207
|
+
}, z.core.$strip>>;
|
|
1188
1208
|
}, z.core.$strip>;
|
|
1189
1209
|
|
|
1190
1210
|
export declare const Visualization: ForwardRefExoticComponent< {
|