@marketrix.ai/widget 3.8.510 → 4.0.96
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,16 +90,39 @@ 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 GraphNodeSchema: 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>>;
|
|
99
122
|
sequence_ids: z.ZodArray<z.ZodNumber>;
|
|
100
123
|
embedding: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber>>>;
|
|
101
124
|
}, z.core.$strict>;
|
|
102
|
-
export type GraphNodeData = z.infer<typeof
|
|
125
|
+
export type GraphNodeData = z.infer<typeof GraphNodeSchema>;
|
|
103
126
|
export declare const GraphSchema: z.ZodObject<{
|
|
104
127
|
nodes: z.ZodArray<z.ZodObject<{
|
|
105
128
|
id: z.ZodString;
|
|
@@ -107,6 +130,29 @@ export declare const GraphSchema: z.ZodObject<{
|
|
|
107
130
|
url: z.ZodString;
|
|
108
131
|
summary: z.ZodString;
|
|
109
132
|
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>>;
|
|
110
156
|
sequence_ids: z.ZodArray<z.ZodNumber>;
|
|
111
157
|
embedding: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber>>>;
|
|
112
158
|
}, 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.ZodBoolean
|
|
80
|
-
notify_all_members_on_question: z.ZodBoolean
|
|
79
|
+
slack_webhook_configured: z.ZodOptional<z.ZodBoolean>;
|
|
80
|
+
notify_all_members_on_question: z.ZodOptional<z.ZodBoolean>;
|
|
81
81
|
}, z.core.$strip>;
|
|
82
82
|
export type WorkspaceData = z.infer<typeof WorkspaceEntitySchema>;
|
|
83
83
|
export declare const ApplicationEntitySchema: z.ZodObject<{
|