@marketrix.ai/widget 3.8.505 → 3.8.506
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.
|
@@ -56,68 +56,110 @@ export declare const SuccessWithMessageSchema: z.ZodObject<{
|
|
|
56
56
|
}, z.core.$strip>;
|
|
57
57
|
export declare const ToolCallRecordSchema: z.ZodObject<{
|
|
58
58
|
name: z.ZodString;
|
|
59
|
-
params: z.
|
|
60
|
-
result: z.
|
|
61
|
-
}, z.core.$
|
|
59
|
+
params: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
60
|
+
result: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
61
|
+
}, z.core.$strict>;
|
|
62
62
|
export declare const SlackWebhookUrlSchema: z.ZodURL;
|
|
63
63
|
export declare const GraphEdgeSchema: z.ZodObject<{
|
|
64
64
|
start: z.ZodString;
|
|
65
65
|
end: z.ZodString;
|
|
66
66
|
action: z.ZodString;
|
|
67
|
-
}, z.core.$
|
|
67
|
+
}, z.core.$strict>;
|
|
68
68
|
export type GraphEdgeData = z.infer<typeof GraphEdgeSchema>;
|
|
69
69
|
export declare const GraphSectionSchema: z.ZodObject<{
|
|
70
70
|
id: z.ZodString;
|
|
71
71
|
label: z.ZodString;
|
|
72
72
|
purpose: z.ZodString;
|
|
73
|
-
elements: z.
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
73
|
+
elements: z.ZodArray<z.ZodObject<{
|
|
74
|
+
label: z.ZodString;
|
|
75
|
+
text: z.ZodString;
|
|
76
|
+
bbox: z.ZodObject<{
|
|
77
|
+
x: z.ZodNumber;
|
|
78
|
+
y: z.ZodNumber;
|
|
79
|
+
w: z.ZodNumber;
|
|
80
|
+
h: z.ZodNumber;
|
|
81
|
+
}, z.core.$strict>;
|
|
82
|
+
}, z.core.$strict>>;
|
|
83
|
+
bbox: z.ZodObject<{
|
|
84
|
+
x: z.ZodNumber;
|
|
85
|
+
y: z.ZodNumber;
|
|
86
|
+
w: z.ZodNumber;
|
|
87
|
+
h: z.ZodNumber;
|
|
88
|
+
}, z.core.$strict>;
|
|
89
|
+
screenshot: z.ZodString;
|
|
90
|
+
embedding: z.ZodNullable<z.ZodArray<z.ZodNumber>>;
|
|
91
|
+
}, z.core.$strict>;
|
|
78
92
|
export declare const GraphNodeSchema: z.ZodObject<{
|
|
79
93
|
id: z.ZodString;
|
|
80
94
|
title: z.ZodString;
|
|
81
95
|
url: z.ZodString;
|
|
82
|
-
summary: z.
|
|
83
|
-
screenshot: z.
|
|
84
|
-
sections: z.
|
|
96
|
+
summary: z.ZodString;
|
|
97
|
+
screenshot: z.ZodString;
|
|
98
|
+
sections: z.ZodArray<z.ZodObject<{
|
|
85
99
|
id: z.ZodString;
|
|
86
100
|
label: z.ZodString;
|
|
87
101
|
purpose: z.ZodString;
|
|
88
|
-
elements: z.
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
102
|
+
elements: z.ZodArray<z.ZodObject<{
|
|
103
|
+
label: z.ZodString;
|
|
104
|
+
text: z.ZodString;
|
|
105
|
+
bbox: z.ZodObject<{
|
|
106
|
+
x: z.ZodNumber;
|
|
107
|
+
y: z.ZodNumber;
|
|
108
|
+
w: z.ZodNumber;
|
|
109
|
+
h: z.ZodNumber;
|
|
110
|
+
}, z.core.$strict>;
|
|
111
|
+
}, z.core.$strict>>;
|
|
112
|
+
bbox: z.ZodObject<{
|
|
113
|
+
x: z.ZodNumber;
|
|
114
|
+
y: z.ZodNumber;
|
|
115
|
+
w: z.ZodNumber;
|
|
116
|
+
h: z.ZodNumber;
|
|
117
|
+
}, z.core.$strict>;
|
|
118
|
+
screenshot: z.ZodString;
|
|
119
|
+
embedding: z.ZodNullable<z.ZodArray<z.ZodNumber>>;
|
|
120
|
+
}, z.core.$strict>>;
|
|
121
|
+
sequence_ids: z.ZodArray<z.ZodNumber>;
|
|
94
122
|
embedding: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber>>>;
|
|
95
|
-
}, z.core.$
|
|
123
|
+
}, z.core.$strict>;
|
|
96
124
|
export type GraphNodeData = z.infer<typeof GraphNodeSchema>;
|
|
97
125
|
export declare const GraphSchema: z.ZodObject<{
|
|
98
126
|
nodes: z.ZodArray<z.ZodObject<{
|
|
99
127
|
id: z.ZodString;
|
|
100
128
|
title: z.ZodString;
|
|
101
129
|
url: z.ZodString;
|
|
102
|
-
summary: z.
|
|
103
|
-
screenshot: z.
|
|
104
|
-
sections: z.
|
|
130
|
+
summary: z.ZodString;
|
|
131
|
+
screenshot: z.ZodString;
|
|
132
|
+
sections: z.ZodArray<z.ZodObject<{
|
|
105
133
|
id: z.ZodString;
|
|
106
134
|
label: z.ZodString;
|
|
107
135
|
purpose: z.ZodString;
|
|
108
|
-
elements: z.
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
136
|
+
elements: z.ZodArray<z.ZodObject<{
|
|
137
|
+
label: z.ZodString;
|
|
138
|
+
text: z.ZodString;
|
|
139
|
+
bbox: z.ZodObject<{
|
|
140
|
+
x: z.ZodNumber;
|
|
141
|
+
y: z.ZodNumber;
|
|
142
|
+
w: z.ZodNumber;
|
|
143
|
+
h: z.ZodNumber;
|
|
144
|
+
}, z.core.$strict>;
|
|
145
|
+
}, z.core.$strict>>;
|
|
146
|
+
bbox: z.ZodObject<{
|
|
147
|
+
x: z.ZodNumber;
|
|
148
|
+
y: z.ZodNumber;
|
|
149
|
+
w: z.ZodNumber;
|
|
150
|
+
h: z.ZodNumber;
|
|
151
|
+
}, z.core.$strict>;
|
|
152
|
+
screenshot: z.ZodString;
|
|
153
|
+
embedding: z.ZodNullable<z.ZodArray<z.ZodNumber>>;
|
|
154
|
+
}, z.core.$strict>>;
|
|
155
|
+
sequence_ids: z.ZodArray<z.ZodNumber>;
|
|
114
156
|
embedding: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber>>>;
|
|
115
|
-
}, z.core.$
|
|
157
|
+
}, z.core.$strict>>;
|
|
116
158
|
edges: z.ZodArray<z.ZodObject<{
|
|
117
159
|
start: z.ZodString;
|
|
118
160
|
end: z.ZodString;
|
|
119
161
|
action: z.ZodString;
|
|
120
|
-
}, z.core.$
|
|
162
|
+
}, z.core.$strict>>;
|
|
121
163
|
}, z.core.$strip>;
|
|
122
164
|
export type GraphData = z.infer<typeof GraphSchema>;
|
|
123
165
|
export declare const AGENT_PROGRESS_KINDS: readonly ["study_plan", "qa_generate_journeys", "qa_prefill_values", "persona_generate", "persona_from_description", "persona_autocomplete"];
|