@marketrix.ai/widget 4.0.102 → 4.0.103
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.
|
@@ -96,7 +96,6 @@ export declare const GraphNodeSummarySchema: z.ZodObject<{
|
|
|
96
96
|
url: z.ZodString;
|
|
97
97
|
summary: z.ZodString;
|
|
98
98
|
screenshot: z.ZodString;
|
|
99
|
-
sequence_ids: z.ZodArray<z.ZodNumber>;
|
|
100
99
|
embedding: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber>>>;
|
|
101
100
|
}, z.core.$strict>;
|
|
102
101
|
export type GraphNodeData = z.infer<typeof GraphNodeSummarySchema>;
|
|
@@ -107,7 +106,6 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
107
106
|
url: z.ZodString;
|
|
108
107
|
summary: z.ZodString;
|
|
109
108
|
screenshot: z.ZodString;
|
|
110
|
-
sequence_ids: z.ZodArray<z.ZodNumber>;
|
|
111
109
|
embedding: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber>>>;
|
|
112
110
|
}, z.core.$strict>>;
|
|
113
111
|
edges: z.ZodArray<z.ZodObject<{
|
|
@@ -108,11 +108,6 @@ export declare const WorkspaceSummarySchema: z.ZodObject<{
|
|
|
108
108
|
updated_at: z.ZodCoercedDate<unknown>;
|
|
109
109
|
slug: z.ZodString;
|
|
110
110
|
name: z.ZodString;
|
|
111
|
-
status: z.ZodEnum<{
|
|
112
|
-
created: "created";
|
|
113
|
-
active: "active";
|
|
114
|
-
suspended: "suspended";
|
|
115
|
-
}>;
|
|
116
111
|
package: z.ZodEnum<{
|
|
117
112
|
free: "free";
|
|
118
113
|
startup: "startup";
|
|
@@ -392,10 +387,6 @@ export declare const ActivityLogMetadataSchema: z.ZodObject<{
|
|
|
392
387
|
id: z.ZodOptional<z.ZodNumber>;
|
|
393
388
|
type: z.ZodOptional<z.ZodString>;
|
|
394
389
|
name: z.ZodOptional<z.ZodString>;
|
|
395
|
-
target_user_id: z.ZodOptional<z.ZodNumber>;
|
|
396
|
-
target_user_email: z.ZodOptional<z.ZodString>;
|
|
397
|
-
reason: z.ZodOptional<z.ZodString>;
|
|
398
|
-
widget_type: z.ZodOptional<z.ZodString>;
|
|
399
390
|
}, z.core.$loose>;
|
|
400
391
|
export declare const ActivityLogEntitySchema: z.ZodObject<{
|
|
401
392
|
id: z.ZodNumber;
|
|
@@ -442,10 +433,6 @@ export declare const ActivityLogEntitySchema: z.ZodObject<{
|
|
|
442
433
|
id: z.ZodOptional<z.ZodNumber>;
|
|
443
434
|
type: z.ZodOptional<z.ZodString>;
|
|
444
435
|
name: z.ZodOptional<z.ZodString>;
|
|
445
|
-
target_user_id: z.ZodOptional<z.ZodNumber>;
|
|
446
|
-
target_user_email: z.ZodOptional<z.ZodString>;
|
|
447
|
-
reason: z.ZodOptional<z.ZodString>;
|
|
448
|
-
widget_type: z.ZodOptional<z.ZodString>;
|
|
449
436
|
}, z.core.$loose>>;
|
|
450
437
|
}, z.core.$strip>;
|
|
451
438
|
export type ActivityLogData = z.infer<typeof ActivityLogEntitySchema>;
|