@marketrix.ai/widget 3.8.509 → 3.8.510
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.
|
@@ -90,39 +90,16 @@ export declare const GraphSectionSchema: z.ZodObject<{
|
|
|
90
90
|
screenshot: z.ZodString;
|
|
91
91
|
embedding: z.ZodNullable<z.ZodArray<z.ZodNumber>>;
|
|
92
92
|
}, z.core.$strict>;
|
|
93
|
-
export declare const
|
|
93
|
+
export declare const GraphNodeSummarySchema: z.ZodObject<{
|
|
94
94
|
id: z.ZodString;
|
|
95
95
|
title: z.ZodString;
|
|
96
96
|
url: z.ZodString;
|
|
97
97
|
summary: z.ZodString;
|
|
98
98
|
screenshot: z.ZodString;
|
|
99
|
-
sections: z.ZodArray<z.ZodObject<{
|
|
100
|
-
id: z.ZodString;
|
|
101
|
-
label: z.ZodString;
|
|
102
|
-
purpose: z.ZodString;
|
|
103
|
-
elements: z.ZodArray<z.ZodObject<{
|
|
104
|
-
label: z.ZodString;
|
|
105
|
-
text: z.ZodString;
|
|
106
|
-
bbox: z.ZodObject<{
|
|
107
|
-
x: z.ZodNumber;
|
|
108
|
-
y: z.ZodNumber;
|
|
109
|
-
w: z.ZodNumber;
|
|
110
|
-
h: z.ZodNumber;
|
|
111
|
-
}, z.core.$strict>;
|
|
112
|
-
}, z.core.$strict>>;
|
|
113
|
-
bbox: z.ZodObject<{
|
|
114
|
-
x: z.ZodNumber;
|
|
115
|
-
y: z.ZodNumber;
|
|
116
|
-
w: z.ZodNumber;
|
|
117
|
-
h: z.ZodNumber;
|
|
118
|
-
}, z.core.$strict>;
|
|
119
|
-
screenshot: z.ZodString;
|
|
120
|
-
embedding: z.ZodNullable<z.ZodArray<z.ZodNumber>>;
|
|
121
|
-
}, z.core.$strict>>;
|
|
122
99
|
sequence_ids: z.ZodArray<z.ZodNumber>;
|
|
123
100
|
embedding: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber>>>;
|
|
124
101
|
}, z.core.$strict>;
|
|
125
|
-
export type GraphNodeData = z.infer<typeof
|
|
102
|
+
export type GraphNodeData = z.infer<typeof GraphNodeSummarySchema>;
|
|
126
103
|
export declare const GraphSchema: z.ZodObject<{
|
|
127
104
|
nodes: z.ZodArray<z.ZodObject<{
|
|
128
105
|
id: z.ZodString;
|
|
@@ -130,29 +107,6 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
130
107
|
url: z.ZodString;
|
|
131
108
|
summary: z.ZodString;
|
|
132
109
|
screenshot: z.ZodString;
|
|
133
|
-
sections: z.ZodArray<z.ZodObject<{
|
|
134
|
-
id: z.ZodString;
|
|
135
|
-
label: z.ZodString;
|
|
136
|
-
purpose: z.ZodString;
|
|
137
|
-
elements: z.ZodArray<z.ZodObject<{
|
|
138
|
-
label: z.ZodString;
|
|
139
|
-
text: z.ZodString;
|
|
140
|
-
bbox: z.ZodObject<{
|
|
141
|
-
x: z.ZodNumber;
|
|
142
|
-
y: z.ZodNumber;
|
|
143
|
-
w: z.ZodNumber;
|
|
144
|
-
h: z.ZodNumber;
|
|
145
|
-
}, z.core.$strict>;
|
|
146
|
-
}, z.core.$strict>>;
|
|
147
|
-
bbox: z.ZodObject<{
|
|
148
|
-
x: z.ZodNumber;
|
|
149
|
-
y: z.ZodNumber;
|
|
150
|
-
w: z.ZodNumber;
|
|
151
|
-
h: z.ZodNumber;
|
|
152
|
-
}, z.core.$strict>;
|
|
153
|
-
screenshot: z.ZodString;
|
|
154
|
-
embedding: z.ZodNullable<z.ZodArray<z.ZodNumber>>;
|
|
155
|
-
}, z.core.$strict>>;
|
|
156
110
|
sequence_ids: z.ZodArray<z.ZodNumber>;
|
|
157
111
|
embedding: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber>>>;
|
|
158
112
|
}, z.core.$strict>>;
|
|
@@ -76,8 +76,8 @@ export declare const WorkspaceEntitySchema: z.ZodObject<{
|
|
|
76
76
|
}>;
|
|
77
77
|
ending_date: z.ZodOptional<z.ZodNullable<z.ZodCoercedDate<unknown>>>;
|
|
78
78
|
external_workspace_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
79
|
-
slack_webhook_configured: z.
|
|
80
|
-
notify_all_members_on_question: z.
|
|
79
|
+
slack_webhook_configured: z.ZodBoolean;
|
|
80
|
+
notify_all_members_on_question: z.ZodBoolean;
|
|
81
81
|
}, z.core.$strip>;
|
|
82
82
|
export type WorkspaceData = z.infer<typeof WorkspaceEntitySchema>;
|
|
83
83
|
export declare const ApplicationEntitySchema: z.ZodObject<{
|