@cplace/mcp-server 1.4.0 → 1.5.0
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/README.md +77 -54
- package/dist/conditional-registration.d.ts.map +1 -1
- package/dist/conditional-registration.js +3 -1
- package/dist/conditional-registration.js.map +1 -1
- package/dist/index.js +0 -6
- package/dist/index.js.map +1 -1
- package/dist/profiles.d.ts.map +1 -1
- package/dist/profiles.js +15 -0
- package/dist/profiles.js.map +1 -1
- package/dist/searchConversion.d.ts.map +1 -1
- package/dist/searchConversion.js +47 -2
- package/dist/searchConversion.js.map +1 -1
- package/dist/searchSchema.d.ts +407 -119
- package/dist/searchSchema.d.ts.map +1 -1
- package/dist/searchSchema.js +22 -8
- package/dist/searchSchema.js.map +1 -1
- package/dist/tool-metadata.d.ts.map +1 -1
- package/dist/tool-metadata.js +3 -1
- package/dist/tool-metadata.js.map +1 -1
- package/dist/tools/change-listeners.d.ts +11 -0
- package/dist/tools/change-listeners.d.ts.map +1 -1
- package/dist/tools/change-listeners.js +30 -0
- package/dist/tools/change-listeners.js.map +1 -1
- package/dist/tools/csv-export.d.ts +407 -119
- package/dist/tools/csv-export.d.ts.map +1 -1
- package/dist/tools/layout-richstring-widgets.d.ts +1 -1
- package/dist/tools/layout-richstring-widgets.d.ts.map +1 -1
- package/dist/tools/layout-richstring-widgets.js +22 -8
- package/dist/tools/layout-richstring-widgets.js.map +1 -1
- package/dist/tools/layout.d.ts +1 -1
- package/dist/tools/layout.d.ts.map +1 -1
- package/dist/tools/layout.js +17 -5
- package/dist/tools/layout.js.map +1 -1
- package/dist/tools/pages.js +2 -2
- package/dist/tools/pages.js.map +1 -1
- package/dist/tools/profile-management.d.ts +20 -1
- package/dist/tools/profile-management.d.ts.map +1 -1
- package/dist/tools/profile-management.js +3 -3
- package/dist/tools/profile-management.js.map +1 -1
- package/dist/tools/richstring-widgets.d.ts +1 -1
- package/dist/tools/richstring-widgets.d.ts.map +1 -1
- package/dist/tools/richstring-widgets.js +22 -8
- package/dist/tools/richstring-widgets.js.map +1 -1
- package/dist/tools/search.d.ts +411 -120
- package/dist/tools/search.d.ts.map +1 -1
- package/dist/tools/search.js +65 -34
- package/dist/tools/search.js.map +1 -1
- package/dist/tools/solution-packages.d.ts +101 -0
- package/dist/tools/solution-packages.d.ts.map +1 -0
- package/dist/tools/solution-packages.js +201 -0
- package/dist/tools/solution-packages.js.map +1 -0
- package/dist/tools/type-layouts.d.ts +11 -0
- package/dist/tools/type-layouts.d.ts.map +1 -1
- package/dist/tools/type-layouts.js +31 -0
- package/dist/tools/type-layouts.js.map +1 -1
- package/dist/tools/type-management.d.ts +21 -0
- package/dist/tools/type-management.d.ts.map +1 -1
- package/dist/tools/type-management.js +58 -0
- package/dist/tools/type-management.js.map +1 -1
- package/dist/tools/validators.d.ts +11 -0
- package/dist/tools/validators.d.ts.map +1 -1
- package/dist/tools/validators.js +31 -0
- package/dist/tools/validators.js.map +1 -1
- package/dist/utils.js +1 -1
- package/dist/utils.js.map +1 -1
- package/dist/widget-specifications/DOCUMENTATION-STATUS.md +15 -13
- package/dist/widget-specifications/cf.cplace.workflow.widget/_implementation.md +15 -0
- package/dist/widget-specifications/cf.cplace.workflow.widget/_meta.json +9 -0
- package/dist/widget-specifications/cf.cplace.workflow.widget/_overview.md +23 -0
- package/dist/widget-specifications/cf.cplace.workflow.widget/_summary.md +1 -0
- package/dist/widget-specifications/tag-registry.json +2 -1
- package/package.json +1 -1
package/dist/tools/search.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
7
7
|
readonly inputSchema: {
|
|
8
8
|
readonly workspaceId: z.ZodOptional<z.ZodString>;
|
|
9
9
|
readonly internalTypeName: z.ZodString;
|
|
10
|
+
readonly fulltext: z.ZodOptional<z.ZodString>;
|
|
10
11
|
readonly search_filter: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
11
12
|
name: z.ZodObject<{
|
|
12
13
|
equals: z.ZodString;
|
|
@@ -27,30 +28,35 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
27
28
|
attribute: z.ZodString;
|
|
28
29
|
string: z.ZodEffects<z.ZodObject<{
|
|
29
30
|
equals: z.ZodOptional<z.ZodString>;
|
|
31
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
30
32
|
contains: z.ZodOptional<z.ZodString>;
|
|
31
33
|
beginsWith: z.ZodOptional<z.ZodString>;
|
|
32
34
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
33
35
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
34
|
-
}, "
|
|
36
|
+
}, "strict", z.ZodTypeAny, {
|
|
35
37
|
equals?: string | undefined;
|
|
38
|
+
not_equals?: string | undefined;
|
|
36
39
|
contains?: string | undefined;
|
|
37
40
|
beginsWith?: string | undefined;
|
|
38
41
|
is_empty?: boolean | undefined;
|
|
39
42
|
is_not_empty?: boolean | undefined;
|
|
40
43
|
}, {
|
|
41
44
|
equals?: string | undefined;
|
|
45
|
+
not_equals?: string | undefined;
|
|
42
46
|
contains?: string | undefined;
|
|
43
47
|
beginsWith?: string | undefined;
|
|
44
48
|
is_empty?: boolean | undefined;
|
|
45
49
|
is_not_empty?: boolean | undefined;
|
|
46
50
|
}>, {
|
|
47
51
|
equals?: string | undefined;
|
|
52
|
+
not_equals?: string | undefined;
|
|
48
53
|
contains?: string | undefined;
|
|
49
54
|
beginsWith?: string | undefined;
|
|
50
55
|
is_empty?: boolean | undefined;
|
|
51
56
|
is_not_empty?: boolean | undefined;
|
|
52
57
|
}, {
|
|
53
58
|
equals?: string | undefined;
|
|
59
|
+
not_equals?: string | undefined;
|
|
54
60
|
contains?: string | undefined;
|
|
55
61
|
beginsWith?: string | undefined;
|
|
56
62
|
is_empty?: boolean | undefined;
|
|
@@ -59,6 +65,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
59
65
|
}, "strip", z.ZodTypeAny, {
|
|
60
66
|
string: {
|
|
61
67
|
equals?: string | undefined;
|
|
68
|
+
not_equals?: string | undefined;
|
|
62
69
|
contains?: string | undefined;
|
|
63
70
|
beginsWith?: string | undefined;
|
|
64
71
|
is_empty?: boolean | undefined;
|
|
@@ -68,6 +75,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
68
75
|
}, {
|
|
69
76
|
string: {
|
|
70
77
|
equals?: string | undefined;
|
|
78
|
+
not_equals?: string | undefined;
|
|
71
79
|
contains?: string | undefined;
|
|
72
80
|
beginsWith?: string | undefined;
|
|
73
81
|
is_empty?: boolean | undefined;
|
|
@@ -78,45 +86,45 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
78
86
|
attribute: z.ZodString;
|
|
79
87
|
number: z.ZodEffects<z.ZodObject<{
|
|
80
88
|
equals: z.ZodOptional<z.ZodNumber>;
|
|
81
|
-
|
|
89
|
+
not_equals: z.ZodOptional<z.ZodNumber>;
|
|
82
90
|
greater_than: z.ZodOptional<z.ZodNumber>;
|
|
83
91
|
greater_than_or_equal_to: z.ZodOptional<z.ZodNumber>;
|
|
84
92
|
less_than: z.ZodOptional<z.ZodNumber>;
|
|
85
93
|
less_than_or_equal_to: z.ZodOptional<z.ZodNumber>;
|
|
86
94
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
87
95
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
88
|
-
}, "
|
|
96
|
+
}, "strict", z.ZodTypeAny, {
|
|
89
97
|
equals?: number | undefined;
|
|
98
|
+
not_equals?: number | undefined;
|
|
90
99
|
is_empty?: boolean | undefined;
|
|
91
100
|
is_not_empty?: boolean | undefined;
|
|
92
|
-
does_not_equal?: number | undefined;
|
|
93
101
|
greater_than?: number | undefined;
|
|
94
102
|
greater_than_or_equal_to?: number | undefined;
|
|
95
103
|
less_than?: number | undefined;
|
|
96
104
|
less_than_or_equal_to?: number | undefined;
|
|
97
105
|
}, {
|
|
98
106
|
equals?: number | undefined;
|
|
107
|
+
not_equals?: number | undefined;
|
|
99
108
|
is_empty?: boolean | undefined;
|
|
100
109
|
is_not_empty?: boolean | undefined;
|
|
101
|
-
does_not_equal?: number | undefined;
|
|
102
110
|
greater_than?: number | undefined;
|
|
103
111
|
greater_than_or_equal_to?: number | undefined;
|
|
104
112
|
less_than?: number | undefined;
|
|
105
113
|
less_than_or_equal_to?: number | undefined;
|
|
106
114
|
}>, {
|
|
107
115
|
equals?: number | undefined;
|
|
116
|
+
not_equals?: number | undefined;
|
|
108
117
|
is_empty?: boolean | undefined;
|
|
109
118
|
is_not_empty?: boolean | undefined;
|
|
110
|
-
does_not_equal?: number | undefined;
|
|
111
119
|
greater_than?: number | undefined;
|
|
112
120
|
greater_than_or_equal_to?: number | undefined;
|
|
113
121
|
less_than?: number | undefined;
|
|
114
122
|
less_than_or_equal_to?: number | undefined;
|
|
115
123
|
}, {
|
|
116
124
|
equals?: number | undefined;
|
|
125
|
+
not_equals?: number | undefined;
|
|
117
126
|
is_empty?: boolean | undefined;
|
|
118
127
|
is_not_empty?: boolean | undefined;
|
|
119
|
-
does_not_equal?: number | undefined;
|
|
120
128
|
greater_than?: number | undefined;
|
|
121
129
|
greater_than_or_equal_to?: number | undefined;
|
|
122
130
|
less_than?: number | undefined;
|
|
@@ -125,9 +133,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
125
133
|
}, "strip", z.ZodTypeAny, {
|
|
126
134
|
number: {
|
|
127
135
|
equals?: number | undefined;
|
|
136
|
+
not_equals?: number | undefined;
|
|
128
137
|
is_empty?: boolean | undefined;
|
|
129
138
|
is_not_empty?: boolean | undefined;
|
|
130
|
-
does_not_equal?: number | undefined;
|
|
131
139
|
greater_than?: number | undefined;
|
|
132
140
|
greater_than_or_equal_to?: number | undefined;
|
|
133
141
|
less_than?: number | undefined;
|
|
@@ -137,9 +145,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
137
145
|
}, {
|
|
138
146
|
number: {
|
|
139
147
|
equals?: number | undefined;
|
|
148
|
+
not_equals?: number | undefined;
|
|
140
149
|
is_empty?: boolean | undefined;
|
|
141
150
|
is_not_empty?: boolean | undefined;
|
|
142
|
-
does_not_equal?: number | undefined;
|
|
143
151
|
greater_than?: number | undefined;
|
|
144
152
|
greater_than_or_equal_to?: number | undefined;
|
|
145
153
|
less_than?: number | undefined;
|
|
@@ -148,16 +156,18 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
148
156
|
attribute: string;
|
|
149
157
|
}>, z.ZodObject<{
|
|
150
158
|
attribute: z.ZodString;
|
|
151
|
-
date: z.ZodObject<{
|
|
159
|
+
date: z.ZodEffects<z.ZodObject<{
|
|
152
160
|
after: z.ZodOptional<z.ZodString>;
|
|
153
161
|
before: z.ZodOptional<z.ZodString>;
|
|
154
162
|
equals: z.ZodOptional<z.ZodString>;
|
|
163
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
155
164
|
on_or_after: z.ZodOptional<z.ZodString>;
|
|
156
165
|
on_or_before: z.ZodOptional<z.ZodString>;
|
|
157
166
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
158
167
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
159
|
-
}, "
|
|
168
|
+
}, "strict", z.ZodTypeAny, {
|
|
160
169
|
equals?: string | undefined;
|
|
170
|
+
not_equals?: string | undefined;
|
|
161
171
|
is_empty?: boolean | undefined;
|
|
162
172
|
is_not_empty?: boolean | undefined;
|
|
163
173
|
after?: string | undefined;
|
|
@@ -166,6 +176,25 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
166
176
|
on_or_before?: string | undefined;
|
|
167
177
|
}, {
|
|
168
178
|
equals?: string | undefined;
|
|
179
|
+
not_equals?: string | undefined;
|
|
180
|
+
is_empty?: boolean | undefined;
|
|
181
|
+
is_not_empty?: boolean | undefined;
|
|
182
|
+
after?: string | undefined;
|
|
183
|
+
before?: string | undefined;
|
|
184
|
+
on_or_after?: string | undefined;
|
|
185
|
+
on_or_before?: string | undefined;
|
|
186
|
+
}>, {
|
|
187
|
+
equals?: string | undefined;
|
|
188
|
+
not_equals?: string | undefined;
|
|
189
|
+
is_empty?: boolean | undefined;
|
|
190
|
+
is_not_empty?: boolean | undefined;
|
|
191
|
+
after?: string | undefined;
|
|
192
|
+
before?: string | undefined;
|
|
193
|
+
on_or_after?: string | undefined;
|
|
194
|
+
on_or_before?: string | undefined;
|
|
195
|
+
}, {
|
|
196
|
+
equals?: string | undefined;
|
|
197
|
+
not_equals?: string | undefined;
|
|
169
198
|
is_empty?: boolean | undefined;
|
|
170
199
|
is_not_empty?: boolean | undefined;
|
|
171
200
|
after?: string | undefined;
|
|
@@ -176,6 +205,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
176
205
|
}, "strip", z.ZodTypeAny, {
|
|
177
206
|
date: {
|
|
178
207
|
equals?: string | undefined;
|
|
208
|
+
not_equals?: string | undefined;
|
|
179
209
|
is_empty?: boolean | undefined;
|
|
180
210
|
is_not_empty?: boolean | undefined;
|
|
181
211
|
after?: string | undefined;
|
|
@@ -187,6 +217,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
187
217
|
}, {
|
|
188
218
|
date: {
|
|
189
219
|
equals?: string | undefined;
|
|
220
|
+
not_equals?: string | undefined;
|
|
190
221
|
is_empty?: boolean | undefined;
|
|
191
222
|
is_not_empty?: boolean | undefined;
|
|
192
223
|
after?: string | undefined;
|
|
@@ -199,28 +230,34 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
199
230
|
attribute: z.ZodString;
|
|
200
231
|
reference: z.ZodEffects<z.ZodObject<{
|
|
201
232
|
equals: z.ZodOptional<z.ZodString>;
|
|
233
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
202
234
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
203
235
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
204
|
-
}, "
|
|
236
|
+
}, "strict", z.ZodTypeAny, {
|
|
205
237
|
equals?: string | undefined;
|
|
238
|
+
not_equals?: string | undefined;
|
|
206
239
|
is_empty?: boolean | undefined;
|
|
207
240
|
is_not_empty?: boolean | undefined;
|
|
208
241
|
}, {
|
|
209
242
|
equals?: string | undefined;
|
|
243
|
+
not_equals?: string | undefined;
|
|
210
244
|
is_empty?: boolean | undefined;
|
|
211
245
|
is_not_empty?: boolean | undefined;
|
|
212
246
|
}>, {
|
|
213
247
|
equals?: string | undefined;
|
|
248
|
+
not_equals?: string | undefined;
|
|
214
249
|
is_empty?: boolean | undefined;
|
|
215
250
|
is_not_empty?: boolean | undefined;
|
|
216
251
|
}, {
|
|
217
252
|
equals?: string | undefined;
|
|
253
|
+
not_equals?: string | undefined;
|
|
218
254
|
is_empty?: boolean | undefined;
|
|
219
255
|
is_not_empty?: boolean | undefined;
|
|
220
256
|
}>;
|
|
221
257
|
}, "strip", z.ZodTypeAny, {
|
|
222
258
|
reference: {
|
|
223
259
|
equals?: string | undefined;
|
|
260
|
+
not_equals?: string | undefined;
|
|
224
261
|
is_empty?: boolean | undefined;
|
|
225
262
|
is_not_empty?: boolean | undefined;
|
|
226
263
|
};
|
|
@@ -228,27 +265,39 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
228
265
|
}, {
|
|
229
266
|
reference: {
|
|
230
267
|
equals?: string | undefined;
|
|
268
|
+
not_equals?: string | undefined;
|
|
231
269
|
is_empty?: boolean | undefined;
|
|
232
270
|
is_not_empty?: boolean | undefined;
|
|
233
271
|
};
|
|
234
272
|
attribute: string;
|
|
235
273
|
}>, z.ZodObject<{
|
|
236
274
|
attribute: z.ZodString;
|
|
237
|
-
boolean: z.ZodObject<{
|
|
238
|
-
equals: z.ZodBoolean
|
|
239
|
-
|
|
240
|
-
|
|
275
|
+
boolean: z.ZodEffects<z.ZodObject<{
|
|
276
|
+
equals: z.ZodOptional<z.ZodBoolean>;
|
|
277
|
+
not_equals: z.ZodOptional<z.ZodBoolean>;
|
|
278
|
+
}, "strict", z.ZodTypeAny, {
|
|
279
|
+
equals?: boolean | undefined;
|
|
280
|
+
not_equals?: boolean | undefined;
|
|
281
|
+
}, {
|
|
282
|
+
equals?: boolean | undefined;
|
|
283
|
+
not_equals?: boolean | undefined;
|
|
284
|
+
}>, {
|
|
285
|
+
equals?: boolean | undefined;
|
|
286
|
+
not_equals?: boolean | undefined;
|
|
241
287
|
}, {
|
|
242
|
-
equals
|
|
288
|
+
equals?: boolean | undefined;
|
|
289
|
+
not_equals?: boolean | undefined;
|
|
243
290
|
}>;
|
|
244
291
|
}, "strip", z.ZodTypeAny, {
|
|
245
292
|
boolean: {
|
|
246
|
-
equals
|
|
293
|
+
equals?: boolean | undefined;
|
|
294
|
+
not_equals?: boolean | undefined;
|
|
247
295
|
};
|
|
248
296
|
attribute: string;
|
|
249
297
|
}, {
|
|
250
298
|
boolean: {
|
|
251
|
-
equals
|
|
299
|
+
equals?: boolean | undefined;
|
|
300
|
+
not_equals?: boolean | undefined;
|
|
252
301
|
};
|
|
253
302
|
attribute: string;
|
|
254
303
|
}>, z.ZodObject<{
|
|
@@ -440,30 +489,35 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
440
489
|
attribute: z.ZodString;
|
|
441
490
|
string: z.ZodEffects<z.ZodObject<{
|
|
442
491
|
equals: z.ZodOptional<z.ZodString>;
|
|
492
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
443
493
|
contains: z.ZodOptional<z.ZodString>;
|
|
444
494
|
beginsWith: z.ZodOptional<z.ZodString>;
|
|
445
495
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
446
496
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
447
|
-
}, "
|
|
497
|
+
}, "strict", z.ZodTypeAny, {
|
|
448
498
|
equals?: string | undefined;
|
|
499
|
+
not_equals?: string | undefined;
|
|
449
500
|
contains?: string | undefined;
|
|
450
501
|
beginsWith?: string | undefined;
|
|
451
502
|
is_empty?: boolean | undefined;
|
|
452
503
|
is_not_empty?: boolean | undefined;
|
|
453
504
|
}, {
|
|
454
505
|
equals?: string | undefined;
|
|
506
|
+
not_equals?: string | undefined;
|
|
455
507
|
contains?: string | undefined;
|
|
456
508
|
beginsWith?: string | undefined;
|
|
457
509
|
is_empty?: boolean | undefined;
|
|
458
510
|
is_not_empty?: boolean | undefined;
|
|
459
511
|
}>, {
|
|
460
512
|
equals?: string | undefined;
|
|
513
|
+
not_equals?: string | undefined;
|
|
461
514
|
contains?: string | undefined;
|
|
462
515
|
beginsWith?: string | undefined;
|
|
463
516
|
is_empty?: boolean | undefined;
|
|
464
517
|
is_not_empty?: boolean | undefined;
|
|
465
518
|
}, {
|
|
466
519
|
equals?: string | undefined;
|
|
520
|
+
not_equals?: string | undefined;
|
|
467
521
|
contains?: string | undefined;
|
|
468
522
|
beginsWith?: string | undefined;
|
|
469
523
|
is_empty?: boolean | undefined;
|
|
@@ -472,6 +526,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
472
526
|
}, "strip", z.ZodTypeAny, {
|
|
473
527
|
string: {
|
|
474
528
|
equals?: string | undefined;
|
|
529
|
+
not_equals?: string | undefined;
|
|
475
530
|
contains?: string | undefined;
|
|
476
531
|
beginsWith?: string | undefined;
|
|
477
532
|
is_empty?: boolean | undefined;
|
|
@@ -481,6 +536,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
481
536
|
}, {
|
|
482
537
|
string: {
|
|
483
538
|
equals?: string | undefined;
|
|
539
|
+
not_equals?: string | undefined;
|
|
484
540
|
contains?: string | undefined;
|
|
485
541
|
beginsWith?: string | undefined;
|
|
486
542
|
is_empty?: boolean | undefined;
|
|
@@ -491,45 +547,45 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
491
547
|
attribute: z.ZodString;
|
|
492
548
|
number: z.ZodEffects<z.ZodObject<{
|
|
493
549
|
equals: z.ZodOptional<z.ZodNumber>;
|
|
494
|
-
|
|
550
|
+
not_equals: z.ZodOptional<z.ZodNumber>;
|
|
495
551
|
greater_than: z.ZodOptional<z.ZodNumber>;
|
|
496
552
|
greater_than_or_equal_to: z.ZodOptional<z.ZodNumber>;
|
|
497
553
|
less_than: z.ZodOptional<z.ZodNumber>;
|
|
498
554
|
less_than_or_equal_to: z.ZodOptional<z.ZodNumber>;
|
|
499
555
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
500
556
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
501
|
-
}, "
|
|
557
|
+
}, "strict", z.ZodTypeAny, {
|
|
502
558
|
equals?: number | undefined;
|
|
559
|
+
not_equals?: number | undefined;
|
|
503
560
|
is_empty?: boolean | undefined;
|
|
504
561
|
is_not_empty?: boolean | undefined;
|
|
505
|
-
does_not_equal?: number | undefined;
|
|
506
562
|
greater_than?: number | undefined;
|
|
507
563
|
greater_than_or_equal_to?: number | undefined;
|
|
508
564
|
less_than?: number | undefined;
|
|
509
565
|
less_than_or_equal_to?: number | undefined;
|
|
510
566
|
}, {
|
|
511
567
|
equals?: number | undefined;
|
|
568
|
+
not_equals?: number | undefined;
|
|
512
569
|
is_empty?: boolean | undefined;
|
|
513
570
|
is_not_empty?: boolean | undefined;
|
|
514
|
-
does_not_equal?: number | undefined;
|
|
515
571
|
greater_than?: number | undefined;
|
|
516
572
|
greater_than_or_equal_to?: number | undefined;
|
|
517
573
|
less_than?: number | undefined;
|
|
518
574
|
less_than_or_equal_to?: number | undefined;
|
|
519
575
|
}>, {
|
|
520
576
|
equals?: number | undefined;
|
|
577
|
+
not_equals?: number | undefined;
|
|
521
578
|
is_empty?: boolean | undefined;
|
|
522
579
|
is_not_empty?: boolean | undefined;
|
|
523
|
-
does_not_equal?: number | undefined;
|
|
524
580
|
greater_than?: number | undefined;
|
|
525
581
|
greater_than_or_equal_to?: number | undefined;
|
|
526
582
|
less_than?: number | undefined;
|
|
527
583
|
less_than_or_equal_to?: number | undefined;
|
|
528
584
|
}, {
|
|
529
585
|
equals?: number | undefined;
|
|
586
|
+
not_equals?: number | undefined;
|
|
530
587
|
is_empty?: boolean | undefined;
|
|
531
588
|
is_not_empty?: boolean | undefined;
|
|
532
|
-
does_not_equal?: number | undefined;
|
|
533
589
|
greater_than?: number | undefined;
|
|
534
590
|
greater_than_or_equal_to?: number | undefined;
|
|
535
591
|
less_than?: number | undefined;
|
|
@@ -538,9 +594,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
538
594
|
}, "strip", z.ZodTypeAny, {
|
|
539
595
|
number: {
|
|
540
596
|
equals?: number | undefined;
|
|
597
|
+
not_equals?: number | undefined;
|
|
541
598
|
is_empty?: boolean | undefined;
|
|
542
599
|
is_not_empty?: boolean | undefined;
|
|
543
|
-
does_not_equal?: number | undefined;
|
|
544
600
|
greater_than?: number | undefined;
|
|
545
601
|
greater_than_or_equal_to?: number | undefined;
|
|
546
602
|
less_than?: number | undefined;
|
|
@@ -550,9 +606,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
550
606
|
}, {
|
|
551
607
|
number: {
|
|
552
608
|
equals?: number | undefined;
|
|
609
|
+
not_equals?: number | undefined;
|
|
553
610
|
is_empty?: boolean | undefined;
|
|
554
611
|
is_not_empty?: boolean | undefined;
|
|
555
|
-
does_not_equal?: number | undefined;
|
|
556
612
|
greater_than?: number | undefined;
|
|
557
613
|
greater_than_or_equal_to?: number | undefined;
|
|
558
614
|
less_than?: number | undefined;
|
|
@@ -561,16 +617,36 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
561
617
|
attribute: string;
|
|
562
618
|
}>, z.ZodObject<{
|
|
563
619
|
attribute: z.ZodString;
|
|
564
|
-
date: z.ZodObject<{
|
|
620
|
+
date: z.ZodEffects<z.ZodObject<{
|
|
565
621
|
after: z.ZodOptional<z.ZodString>;
|
|
566
622
|
before: z.ZodOptional<z.ZodString>;
|
|
567
623
|
equals: z.ZodOptional<z.ZodString>;
|
|
624
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
568
625
|
on_or_after: z.ZodOptional<z.ZodString>;
|
|
569
626
|
on_or_before: z.ZodOptional<z.ZodString>;
|
|
570
627
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
571
628
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
572
|
-
}, "
|
|
629
|
+
}, "strict", z.ZodTypeAny, {
|
|
630
|
+
equals?: string | undefined;
|
|
631
|
+
not_equals?: string | undefined;
|
|
632
|
+
is_empty?: boolean | undefined;
|
|
633
|
+
is_not_empty?: boolean | undefined;
|
|
634
|
+
after?: string | undefined;
|
|
635
|
+
before?: string | undefined;
|
|
636
|
+
on_or_after?: string | undefined;
|
|
637
|
+
on_or_before?: string | undefined;
|
|
638
|
+
}, {
|
|
573
639
|
equals?: string | undefined;
|
|
640
|
+
not_equals?: string | undefined;
|
|
641
|
+
is_empty?: boolean | undefined;
|
|
642
|
+
is_not_empty?: boolean | undefined;
|
|
643
|
+
after?: string | undefined;
|
|
644
|
+
before?: string | undefined;
|
|
645
|
+
on_or_after?: string | undefined;
|
|
646
|
+
on_or_before?: string | undefined;
|
|
647
|
+
}>, {
|
|
648
|
+
equals?: string | undefined;
|
|
649
|
+
not_equals?: string | undefined;
|
|
574
650
|
is_empty?: boolean | undefined;
|
|
575
651
|
is_not_empty?: boolean | undefined;
|
|
576
652
|
after?: string | undefined;
|
|
@@ -579,6 +655,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
579
655
|
on_or_before?: string | undefined;
|
|
580
656
|
}, {
|
|
581
657
|
equals?: string | undefined;
|
|
658
|
+
not_equals?: string | undefined;
|
|
582
659
|
is_empty?: boolean | undefined;
|
|
583
660
|
is_not_empty?: boolean | undefined;
|
|
584
661
|
after?: string | undefined;
|
|
@@ -589,6 +666,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
589
666
|
}, "strip", z.ZodTypeAny, {
|
|
590
667
|
date: {
|
|
591
668
|
equals?: string | undefined;
|
|
669
|
+
not_equals?: string | undefined;
|
|
592
670
|
is_empty?: boolean | undefined;
|
|
593
671
|
is_not_empty?: boolean | undefined;
|
|
594
672
|
after?: string | undefined;
|
|
@@ -600,6 +678,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
600
678
|
}, {
|
|
601
679
|
date: {
|
|
602
680
|
equals?: string | undefined;
|
|
681
|
+
not_equals?: string | undefined;
|
|
603
682
|
is_empty?: boolean | undefined;
|
|
604
683
|
is_not_empty?: boolean | undefined;
|
|
605
684
|
after?: string | undefined;
|
|
@@ -612,28 +691,34 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
612
691
|
attribute: z.ZodString;
|
|
613
692
|
reference: z.ZodEffects<z.ZodObject<{
|
|
614
693
|
equals: z.ZodOptional<z.ZodString>;
|
|
694
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
615
695
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
616
696
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
617
|
-
}, "
|
|
697
|
+
}, "strict", z.ZodTypeAny, {
|
|
618
698
|
equals?: string | undefined;
|
|
699
|
+
not_equals?: string | undefined;
|
|
619
700
|
is_empty?: boolean | undefined;
|
|
620
701
|
is_not_empty?: boolean | undefined;
|
|
621
702
|
}, {
|
|
622
703
|
equals?: string | undefined;
|
|
704
|
+
not_equals?: string | undefined;
|
|
623
705
|
is_empty?: boolean | undefined;
|
|
624
706
|
is_not_empty?: boolean | undefined;
|
|
625
707
|
}>, {
|
|
626
708
|
equals?: string | undefined;
|
|
709
|
+
not_equals?: string | undefined;
|
|
627
710
|
is_empty?: boolean | undefined;
|
|
628
711
|
is_not_empty?: boolean | undefined;
|
|
629
712
|
}, {
|
|
630
713
|
equals?: string | undefined;
|
|
714
|
+
not_equals?: string | undefined;
|
|
631
715
|
is_empty?: boolean | undefined;
|
|
632
716
|
is_not_empty?: boolean | undefined;
|
|
633
717
|
}>;
|
|
634
718
|
}, "strip", z.ZodTypeAny, {
|
|
635
719
|
reference: {
|
|
636
720
|
equals?: string | undefined;
|
|
721
|
+
not_equals?: string | undefined;
|
|
637
722
|
is_empty?: boolean | undefined;
|
|
638
723
|
is_not_empty?: boolean | undefined;
|
|
639
724
|
};
|
|
@@ -641,27 +726,39 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
641
726
|
}, {
|
|
642
727
|
reference: {
|
|
643
728
|
equals?: string | undefined;
|
|
729
|
+
not_equals?: string | undefined;
|
|
644
730
|
is_empty?: boolean | undefined;
|
|
645
731
|
is_not_empty?: boolean | undefined;
|
|
646
732
|
};
|
|
647
733
|
attribute: string;
|
|
648
734
|
}>, z.ZodObject<{
|
|
649
735
|
attribute: z.ZodString;
|
|
650
|
-
boolean: z.ZodObject<{
|
|
651
|
-
equals: z.ZodBoolean
|
|
652
|
-
|
|
653
|
-
|
|
736
|
+
boolean: z.ZodEffects<z.ZodObject<{
|
|
737
|
+
equals: z.ZodOptional<z.ZodBoolean>;
|
|
738
|
+
not_equals: z.ZodOptional<z.ZodBoolean>;
|
|
739
|
+
}, "strict", z.ZodTypeAny, {
|
|
740
|
+
equals?: boolean | undefined;
|
|
741
|
+
not_equals?: boolean | undefined;
|
|
654
742
|
}, {
|
|
655
|
-
equals
|
|
743
|
+
equals?: boolean | undefined;
|
|
744
|
+
not_equals?: boolean | undefined;
|
|
745
|
+
}>, {
|
|
746
|
+
equals?: boolean | undefined;
|
|
747
|
+
not_equals?: boolean | undefined;
|
|
748
|
+
}, {
|
|
749
|
+
equals?: boolean | undefined;
|
|
750
|
+
not_equals?: boolean | undefined;
|
|
656
751
|
}>;
|
|
657
752
|
}, "strip", z.ZodTypeAny, {
|
|
658
753
|
boolean: {
|
|
659
|
-
equals
|
|
754
|
+
equals?: boolean | undefined;
|
|
755
|
+
not_equals?: boolean | undefined;
|
|
660
756
|
};
|
|
661
757
|
attribute: string;
|
|
662
758
|
}, {
|
|
663
759
|
boolean: {
|
|
664
|
-
equals
|
|
760
|
+
equals?: boolean | undefined;
|
|
761
|
+
not_equals?: boolean | undefined;
|
|
665
762
|
};
|
|
666
763
|
attribute: string;
|
|
667
764
|
}>, z.ZodObject<{
|
|
@@ -853,30 +950,35 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
853
950
|
attribute: z.ZodString;
|
|
854
951
|
string: z.ZodEffects<z.ZodObject<{
|
|
855
952
|
equals: z.ZodOptional<z.ZodString>;
|
|
953
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
856
954
|
contains: z.ZodOptional<z.ZodString>;
|
|
857
955
|
beginsWith: z.ZodOptional<z.ZodString>;
|
|
858
956
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
859
957
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
860
|
-
}, "
|
|
958
|
+
}, "strict", z.ZodTypeAny, {
|
|
861
959
|
equals?: string | undefined;
|
|
960
|
+
not_equals?: string | undefined;
|
|
862
961
|
contains?: string | undefined;
|
|
863
962
|
beginsWith?: string | undefined;
|
|
864
963
|
is_empty?: boolean | undefined;
|
|
865
964
|
is_not_empty?: boolean | undefined;
|
|
866
965
|
}, {
|
|
867
966
|
equals?: string | undefined;
|
|
967
|
+
not_equals?: string | undefined;
|
|
868
968
|
contains?: string | undefined;
|
|
869
969
|
beginsWith?: string | undefined;
|
|
870
970
|
is_empty?: boolean | undefined;
|
|
871
971
|
is_not_empty?: boolean | undefined;
|
|
872
972
|
}>, {
|
|
873
973
|
equals?: string | undefined;
|
|
974
|
+
not_equals?: string | undefined;
|
|
874
975
|
contains?: string | undefined;
|
|
875
976
|
beginsWith?: string | undefined;
|
|
876
977
|
is_empty?: boolean | undefined;
|
|
877
978
|
is_not_empty?: boolean | undefined;
|
|
878
979
|
}, {
|
|
879
980
|
equals?: string | undefined;
|
|
981
|
+
not_equals?: string | undefined;
|
|
880
982
|
contains?: string | undefined;
|
|
881
983
|
beginsWith?: string | undefined;
|
|
882
984
|
is_empty?: boolean | undefined;
|
|
@@ -885,6 +987,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
885
987
|
}, "strip", z.ZodTypeAny, {
|
|
886
988
|
string: {
|
|
887
989
|
equals?: string | undefined;
|
|
990
|
+
not_equals?: string | undefined;
|
|
888
991
|
contains?: string | undefined;
|
|
889
992
|
beginsWith?: string | undefined;
|
|
890
993
|
is_empty?: boolean | undefined;
|
|
@@ -894,6 +997,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
894
997
|
}, {
|
|
895
998
|
string: {
|
|
896
999
|
equals?: string | undefined;
|
|
1000
|
+
not_equals?: string | undefined;
|
|
897
1001
|
contains?: string | undefined;
|
|
898
1002
|
beginsWith?: string | undefined;
|
|
899
1003
|
is_empty?: boolean | undefined;
|
|
@@ -904,45 +1008,45 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
904
1008
|
attribute: z.ZodString;
|
|
905
1009
|
number: z.ZodEffects<z.ZodObject<{
|
|
906
1010
|
equals: z.ZodOptional<z.ZodNumber>;
|
|
907
|
-
|
|
1011
|
+
not_equals: z.ZodOptional<z.ZodNumber>;
|
|
908
1012
|
greater_than: z.ZodOptional<z.ZodNumber>;
|
|
909
1013
|
greater_than_or_equal_to: z.ZodOptional<z.ZodNumber>;
|
|
910
1014
|
less_than: z.ZodOptional<z.ZodNumber>;
|
|
911
1015
|
less_than_or_equal_to: z.ZodOptional<z.ZodNumber>;
|
|
912
1016
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
913
1017
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
914
|
-
}, "
|
|
1018
|
+
}, "strict", z.ZodTypeAny, {
|
|
915
1019
|
equals?: number | undefined;
|
|
1020
|
+
not_equals?: number | undefined;
|
|
916
1021
|
is_empty?: boolean | undefined;
|
|
917
1022
|
is_not_empty?: boolean | undefined;
|
|
918
|
-
does_not_equal?: number | undefined;
|
|
919
1023
|
greater_than?: number | undefined;
|
|
920
1024
|
greater_than_or_equal_to?: number | undefined;
|
|
921
1025
|
less_than?: number | undefined;
|
|
922
1026
|
less_than_or_equal_to?: number | undefined;
|
|
923
1027
|
}, {
|
|
924
1028
|
equals?: number | undefined;
|
|
1029
|
+
not_equals?: number | undefined;
|
|
925
1030
|
is_empty?: boolean | undefined;
|
|
926
1031
|
is_not_empty?: boolean | undefined;
|
|
927
|
-
does_not_equal?: number | undefined;
|
|
928
1032
|
greater_than?: number | undefined;
|
|
929
1033
|
greater_than_or_equal_to?: number | undefined;
|
|
930
1034
|
less_than?: number | undefined;
|
|
931
1035
|
less_than_or_equal_to?: number | undefined;
|
|
932
1036
|
}>, {
|
|
933
1037
|
equals?: number | undefined;
|
|
1038
|
+
not_equals?: number | undefined;
|
|
934
1039
|
is_empty?: boolean | undefined;
|
|
935
1040
|
is_not_empty?: boolean | undefined;
|
|
936
|
-
does_not_equal?: number | undefined;
|
|
937
1041
|
greater_than?: number | undefined;
|
|
938
1042
|
greater_than_or_equal_to?: number | undefined;
|
|
939
1043
|
less_than?: number | undefined;
|
|
940
1044
|
less_than_or_equal_to?: number | undefined;
|
|
941
1045
|
}, {
|
|
942
1046
|
equals?: number | undefined;
|
|
1047
|
+
not_equals?: number | undefined;
|
|
943
1048
|
is_empty?: boolean | undefined;
|
|
944
1049
|
is_not_empty?: boolean | undefined;
|
|
945
|
-
does_not_equal?: number | undefined;
|
|
946
1050
|
greater_than?: number | undefined;
|
|
947
1051
|
greater_than_or_equal_to?: number | undefined;
|
|
948
1052
|
less_than?: number | undefined;
|
|
@@ -951,9 +1055,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
951
1055
|
}, "strip", z.ZodTypeAny, {
|
|
952
1056
|
number: {
|
|
953
1057
|
equals?: number | undefined;
|
|
1058
|
+
not_equals?: number | undefined;
|
|
954
1059
|
is_empty?: boolean | undefined;
|
|
955
1060
|
is_not_empty?: boolean | undefined;
|
|
956
|
-
does_not_equal?: number | undefined;
|
|
957
1061
|
greater_than?: number | undefined;
|
|
958
1062
|
greater_than_or_equal_to?: number | undefined;
|
|
959
1063
|
less_than?: number | undefined;
|
|
@@ -963,9 +1067,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
963
1067
|
}, {
|
|
964
1068
|
number: {
|
|
965
1069
|
equals?: number | undefined;
|
|
1070
|
+
not_equals?: number | undefined;
|
|
966
1071
|
is_empty?: boolean | undefined;
|
|
967
1072
|
is_not_empty?: boolean | undefined;
|
|
968
|
-
does_not_equal?: number | undefined;
|
|
969
1073
|
greater_than?: number | undefined;
|
|
970
1074
|
greater_than_or_equal_to?: number | undefined;
|
|
971
1075
|
less_than?: number | undefined;
|
|
@@ -974,16 +1078,36 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
974
1078
|
attribute: string;
|
|
975
1079
|
}>, z.ZodObject<{
|
|
976
1080
|
attribute: z.ZodString;
|
|
977
|
-
date: z.ZodObject<{
|
|
1081
|
+
date: z.ZodEffects<z.ZodObject<{
|
|
978
1082
|
after: z.ZodOptional<z.ZodString>;
|
|
979
1083
|
before: z.ZodOptional<z.ZodString>;
|
|
980
1084
|
equals: z.ZodOptional<z.ZodString>;
|
|
1085
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
981
1086
|
on_or_after: z.ZodOptional<z.ZodString>;
|
|
982
1087
|
on_or_before: z.ZodOptional<z.ZodString>;
|
|
983
1088
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
984
1089
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
985
|
-
}, "
|
|
1090
|
+
}, "strict", z.ZodTypeAny, {
|
|
1091
|
+
equals?: string | undefined;
|
|
1092
|
+
not_equals?: string | undefined;
|
|
1093
|
+
is_empty?: boolean | undefined;
|
|
1094
|
+
is_not_empty?: boolean | undefined;
|
|
1095
|
+
after?: string | undefined;
|
|
1096
|
+
before?: string | undefined;
|
|
1097
|
+
on_or_after?: string | undefined;
|
|
1098
|
+
on_or_before?: string | undefined;
|
|
1099
|
+
}, {
|
|
1100
|
+
equals?: string | undefined;
|
|
1101
|
+
not_equals?: string | undefined;
|
|
1102
|
+
is_empty?: boolean | undefined;
|
|
1103
|
+
is_not_empty?: boolean | undefined;
|
|
1104
|
+
after?: string | undefined;
|
|
1105
|
+
before?: string | undefined;
|
|
1106
|
+
on_or_after?: string | undefined;
|
|
1107
|
+
on_or_before?: string | undefined;
|
|
1108
|
+
}>, {
|
|
986
1109
|
equals?: string | undefined;
|
|
1110
|
+
not_equals?: string | undefined;
|
|
987
1111
|
is_empty?: boolean | undefined;
|
|
988
1112
|
is_not_empty?: boolean | undefined;
|
|
989
1113
|
after?: string | undefined;
|
|
@@ -992,6 +1116,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
992
1116
|
on_or_before?: string | undefined;
|
|
993
1117
|
}, {
|
|
994
1118
|
equals?: string | undefined;
|
|
1119
|
+
not_equals?: string | undefined;
|
|
995
1120
|
is_empty?: boolean | undefined;
|
|
996
1121
|
is_not_empty?: boolean | undefined;
|
|
997
1122
|
after?: string | undefined;
|
|
@@ -1002,6 +1127,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1002
1127
|
}, "strip", z.ZodTypeAny, {
|
|
1003
1128
|
date: {
|
|
1004
1129
|
equals?: string | undefined;
|
|
1130
|
+
not_equals?: string | undefined;
|
|
1005
1131
|
is_empty?: boolean | undefined;
|
|
1006
1132
|
is_not_empty?: boolean | undefined;
|
|
1007
1133
|
after?: string | undefined;
|
|
@@ -1013,6 +1139,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1013
1139
|
}, {
|
|
1014
1140
|
date: {
|
|
1015
1141
|
equals?: string | undefined;
|
|
1142
|
+
not_equals?: string | undefined;
|
|
1016
1143
|
is_empty?: boolean | undefined;
|
|
1017
1144
|
is_not_empty?: boolean | undefined;
|
|
1018
1145
|
after?: string | undefined;
|
|
@@ -1025,28 +1152,34 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1025
1152
|
attribute: z.ZodString;
|
|
1026
1153
|
reference: z.ZodEffects<z.ZodObject<{
|
|
1027
1154
|
equals: z.ZodOptional<z.ZodString>;
|
|
1155
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
1028
1156
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1029
1157
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1030
|
-
}, "
|
|
1158
|
+
}, "strict", z.ZodTypeAny, {
|
|
1031
1159
|
equals?: string | undefined;
|
|
1160
|
+
not_equals?: string | undefined;
|
|
1032
1161
|
is_empty?: boolean | undefined;
|
|
1033
1162
|
is_not_empty?: boolean | undefined;
|
|
1034
1163
|
}, {
|
|
1035
1164
|
equals?: string | undefined;
|
|
1165
|
+
not_equals?: string | undefined;
|
|
1036
1166
|
is_empty?: boolean | undefined;
|
|
1037
1167
|
is_not_empty?: boolean | undefined;
|
|
1038
1168
|
}>, {
|
|
1039
1169
|
equals?: string | undefined;
|
|
1170
|
+
not_equals?: string | undefined;
|
|
1040
1171
|
is_empty?: boolean | undefined;
|
|
1041
1172
|
is_not_empty?: boolean | undefined;
|
|
1042
1173
|
}, {
|
|
1043
1174
|
equals?: string | undefined;
|
|
1175
|
+
not_equals?: string | undefined;
|
|
1044
1176
|
is_empty?: boolean | undefined;
|
|
1045
1177
|
is_not_empty?: boolean | undefined;
|
|
1046
1178
|
}>;
|
|
1047
1179
|
}, "strip", z.ZodTypeAny, {
|
|
1048
1180
|
reference: {
|
|
1049
1181
|
equals?: string | undefined;
|
|
1182
|
+
not_equals?: string | undefined;
|
|
1050
1183
|
is_empty?: boolean | undefined;
|
|
1051
1184
|
is_not_empty?: boolean | undefined;
|
|
1052
1185
|
};
|
|
@@ -1054,27 +1187,39 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1054
1187
|
}, {
|
|
1055
1188
|
reference: {
|
|
1056
1189
|
equals?: string | undefined;
|
|
1190
|
+
not_equals?: string | undefined;
|
|
1057
1191
|
is_empty?: boolean | undefined;
|
|
1058
1192
|
is_not_empty?: boolean | undefined;
|
|
1059
1193
|
};
|
|
1060
1194
|
attribute: string;
|
|
1061
1195
|
}>, z.ZodObject<{
|
|
1062
1196
|
attribute: z.ZodString;
|
|
1063
|
-
boolean: z.ZodObject<{
|
|
1064
|
-
equals: z.ZodBoolean
|
|
1065
|
-
|
|
1066
|
-
|
|
1197
|
+
boolean: z.ZodEffects<z.ZodObject<{
|
|
1198
|
+
equals: z.ZodOptional<z.ZodBoolean>;
|
|
1199
|
+
not_equals: z.ZodOptional<z.ZodBoolean>;
|
|
1200
|
+
}, "strict", z.ZodTypeAny, {
|
|
1201
|
+
equals?: boolean | undefined;
|
|
1202
|
+
not_equals?: boolean | undefined;
|
|
1203
|
+
}, {
|
|
1204
|
+
equals?: boolean | undefined;
|
|
1205
|
+
not_equals?: boolean | undefined;
|
|
1206
|
+
}>, {
|
|
1207
|
+
equals?: boolean | undefined;
|
|
1208
|
+
not_equals?: boolean | undefined;
|
|
1067
1209
|
}, {
|
|
1068
|
-
equals
|
|
1210
|
+
equals?: boolean | undefined;
|
|
1211
|
+
not_equals?: boolean | undefined;
|
|
1069
1212
|
}>;
|
|
1070
1213
|
}, "strip", z.ZodTypeAny, {
|
|
1071
1214
|
boolean: {
|
|
1072
|
-
equals
|
|
1215
|
+
equals?: boolean | undefined;
|
|
1216
|
+
not_equals?: boolean | undefined;
|
|
1073
1217
|
};
|
|
1074
1218
|
attribute: string;
|
|
1075
1219
|
}, {
|
|
1076
1220
|
boolean: {
|
|
1077
|
-
equals
|
|
1221
|
+
equals?: boolean | undefined;
|
|
1222
|
+
not_equals?: boolean | undefined;
|
|
1078
1223
|
};
|
|
1079
1224
|
attribute: string;
|
|
1080
1225
|
}>, z.ZodObject<{
|
|
@@ -1290,6 +1435,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1290
1435
|
} | {
|
|
1291
1436
|
string: {
|
|
1292
1437
|
equals?: string | undefined;
|
|
1438
|
+
not_equals?: string | undefined;
|
|
1293
1439
|
contains?: string | undefined;
|
|
1294
1440
|
beginsWith?: string | undefined;
|
|
1295
1441
|
is_empty?: boolean | undefined;
|
|
@@ -1303,9 +1449,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1303
1449
|
} | {
|
|
1304
1450
|
number: {
|
|
1305
1451
|
equals?: number | undefined;
|
|
1452
|
+
not_equals?: number | undefined;
|
|
1306
1453
|
is_empty?: boolean | undefined;
|
|
1307
1454
|
is_not_empty?: boolean | undefined;
|
|
1308
|
-
does_not_equal?: number | undefined;
|
|
1309
1455
|
greater_than?: number | undefined;
|
|
1310
1456
|
greater_than_or_equal_to?: number | undefined;
|
|
1311
1457
|
less_than?: number | undefined;
|
|
@@ -1315,6 +1461,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1315
1461
|
} | {
|
|
1316
1462
|
date: {
|
|
1317
1463
|
equals?: string | undefined;
|
|
1464
|
+
not_equals?: string | undefined;
|
|
1318
1465
|
is_empty?: boolean | undefined;
|
|
1319
1466
|
is_not_empty?: boolean | undefined;
|
|
1320
1467
|
after?: string | undefined;
|
|
@@ -1326,13 +1473,15 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1326
1473
|
} | {
|
|
1327
1474
|
reference: {
|
|
1328
1475
|
equals?: string | undefined;
|
|
1476
|
+
not_equals?: string | undefined;
|
|
1329
1477
|
is_empty?: boolean | undefined;
|
|
1330
1478
|
is_not_empty?: boolean | undefined;
|
|
1331
1479
|
};
|
|
1332
1480
|
attribute: string;
|
|
1333
1481
|
} | {
|
|
1334
1482
|
boolean: {
|
|
1335
|
-
equals
|
|
1483
|
+
equals?: boolean | undefined;
|
|
1484
|
+
not_equals?: boolean | undefined;
|
|
1336
1485
|
};
|
|
1337
1486
|
attribute: string;
|
|
1338
1487
|
})[];
|
|
@@ -1380,6 +1529,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1380
1529
|
} | {
|
|
1381
1530
|
string: {
|
|
1382
1531
|
equals?: string | undefined;
|
|
1532
|
+
not_equals?: string | undefined;
|
|
1383
1533
|
contains?: string | undefined;
|
|
1384
1534
|
beginsWith?: string | undefined;
|
|
1385
1535
|
is_empty?: boolean | undefined;
|
|
@@ -1393,9 +1543,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1393
1543
|
} | {
|
|
1394
1544
|
number: {
|
|
1395
1545
|
equals?: number | undefined;
|
|
1546
|
+
not_equals?: number | undefined;
|
|
1396
1547
|
is_empty?: boolean | undefined;
|
|
1397
1548
|
is_not_empty?: boolean | undefined;
|
|
1398
|
-
does_not_equal?: number | undefined;
|
|
1399
1549
|
greater_than?: number | undefined;
|
|
1400
1550
|
greater_than_or_equal_to?: number | undefined;
|
|
1401
1551
|
less_than?: number | undefined;
|
|
@@ -1405,6 +1555,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1405
1555
|
} | {
|
|
1406
1556
|
date: {
|
|
1407
1557
|
equals?: string | undefined;
|
|
1558
|
+
not_equals?: string | undefined;
|
|
1408
1559
|
is_empty?: boolean | undefined;
|
|
1409
1560
|
is_not_empty?: boolean | undefined;
|
|
1410
1561
|
after?: string | undefined;
|
|
@@ -1416,13 +1567,15 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1416
1567
|
} | {
|
|
1417
1568
|
reference: {
|
|
1418
1569
|
equals?: string | undefined;
|
|
1570
|
+
not_equals?: string | undefined;
|
|
1419
1571
|
is_empty?: boolean | undefined;
|
|
1420
1572
|
is_not_empty?: boolean | undefined;
|
|
1421
1573
|
};
|
|
1422
1574
|
attribute: string;
|
|
1423
1575
|
} | {
|
|
1424
1576
|
boolean: {
|
|
1425
|
-
equals
|
|
1577
|
+
equals?: boolean | undefined;
|
|
1578
|
+
not_equals?: boolean | undefined;
|
|
1426
1579
|
};
|
|
1427
1580
|
attribute: string;
|
|
1428
1581
|
})[];
|
|
@@ -1471,6 +1624,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1471
1624
|
} | {
|
|
1472
1625
|
string: {
|
|
1473
1626
|
equals?: string | undefined;
|
|
1627
|
+
not_equals?: string | undefined;
|
|
1474
1628
|
contains?: string | undefined;
|
|
1475
1629
|
beginsWith?: string | undefined;
|
|
1476
1630
|
is_empty?: boolean | undefined;
|
|
@@ -1484,9 +1638,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1484
1638
|
} | {
|
|
1485
1639
|
number: {
|
|
1486
1640
|
equals?: number | undefined;
|
|
1641
|
+
not_equals?: number | undefined;
|
|
1487
1642
|
is_empty?: boolean | undefined;
|
|
1488
1643
|
is_not_empty?: boolean | undefined;
|
|
1489
|
-
does_not_equal?: number | undefined;
|
|
1490
1644
|
greater_than?: number | undefined;
|
|
1491
1645
|
greater_than_or_equal_to?: number | undefined;
|
|
1492
1646
|
less_than?: number | undefined;
|
|
@@ -1496,6 +1650,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1496
1650
|
} | {
|
|
1497
1651
|
date: {
|
|
1498
1652
|
equals?: string | undefined;
|
|
1653
|
+
not_equals?: string | undefined;
|
|
1499
1654
|
is_empty?: boolean | undefined;
|
|
1500
1655
|
is_not_empty?: boolean | undefined;
|
|
1501
1656
|
after?: string | undefined;
|
|
@@ -1507,13 +1662,15 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1507
1662
|
} | {
|
|
1508
1663
|
reference: {
|
|
1509
1664
|
equals?: string | undefined;
|
|
1665
|
+
not_equals?: string | undefined;
|
|
1510
1666
|
is_empty?: boolean | undefined;
|
|
1511
1667
|
is_not_empty?: boolean | undefined;
|
|
1512
1668
|
};
|
|
1513
1669
|
attribute: string;
|
|
1514
1670
|
} | {
|
|
1515
1671
|
boolean: {
|
|
1516
|
-
equals
|
|
1672
|
+
equals?: boolean | undefined;
|
|
1673
|
+
not_equals?: boolean | undefined;
|
|
1517
1674
|
};
|
|
1518
1675
|
attribute: string;
|
|
1519
1676
|
} | {
|
|
@@ -1560,6 +1717,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1560
1717
|
} | {
|
|
1561
1718
|
string: {
|
|
1562
1719
|
equals?: string | undefined;
|
|
1720
|
+
not_equals?: string | undefined;
|
|
1563
1721
|
contains?: string | undefined;
|
|
1564
1722
|
beginsWith?: string | undefined;
|
|
1565
1723
|
is_empty?: boolean | undefined;
|
|
@@ -1573,9 +1731,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1573
1731
|
} | {
|
|
1574
1732
|
number: {
|
|
1575
1733
|
equals?: number | undefined;
|
|
1734
|
+
not_equals?: number | undefined;
|
|
1576
1735
|
is_empty?: boolean | undefined;
|
|
1577
1736
|
is_not_empty?: boolean | undefined;
|
|
1578
|
-
does_not_equal?: number | undefined;
|
|
1579
1737
|
greater_than?: number | undefined;
|
|
1580
1738
|
greater_than_or_equal_to?: number | undefined;
|
|
1581
1739
|
less_than?: number | undefined;
|
|
@@ -1585,6 +1743,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1585
1743
|
} | {
|
|
1586
1744
|
date: {
|
|
1587
1745
|
equals?: string | undefined;
|
|
1746
|
+
not_equals?: string | undefined;
|
|
1588
1747
|
is_empty?: boolean | undefined;
|
|
1589
1748
|
is_not_empty?: boolean | undefined;
|
|
1590
1749
|
after?: string | undefined;
|
|
@@ -1596,13 +1755,15 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1596
1755
|
} | {
|
|
1597
1756
|
reference: {
|
|
1598
1757
|
equals?: string | undefined;
|
|
1758
|
+
not_equals?: string | undefined;
|
|
1599
1759
|
is_empty?: boolean | undefined;
|
|
1600
1760
|
is_not_empty?: boolean | undefined;
|
|
1601
1761
|
};
|
|
1602
1762
|
attribute: string;
|
|
1603
1763
|
} | {
|
|
1604
1764
|
boolean: {
|
|
1605
|
-
equals
|
|
1765
|
+
equals?: boolean | undefined;
|
|
1766
|
+
not_equals?: boolean | undefined;
|
|
1606
1767
|
};
|
|
1607
1768
|
attribute: string;
|
|
1608
1769
|
})[];
|
|
@@ -1651,6 +1812,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1651
1812
|
} | {
|
|
1652
1813
|
string: {
|
|
1653
1814
|
equals?: string | undefined;
|
|
1815
|
+
not_equals?: string | undefined;
|
|
1654
1816
|
contains?: string | undefined;
|
|
1655
1817
|
beginsWith?: string | undefined;
|
|
1656
1818
|
is_empty?: boolean | undefined;
|
|
@@ -1664,9 +1826,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1664
1826
|
} | {
|
|
1665
1827
|
number: {
|
|
1666
1828
|
equals?: number | undefined;
|
|
1829
|
+
not_equals?: number | undefined;
|
|
1667
1830
|
is_empty?: boolean | undefined;
|
|
1668
1831
|
is_not_empty?: boolean | undefined;
|
|
1669
|
-
does_not_equal?: number | undefined;
|
|
1670
1832
|
greater_than?: number | undefined;
|
|
1671
1833
|
greater_than_or_equal_to?: number | undefined;
|
|
1672
1834
|
less_than?: number | undefined;
|
|
@@ -1676,6 +1838,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1676
1838
|
} | {
|
|
1677
1839
|
date: {
|
|
1678
1840
|
equals?: string | undefined;
|
|
1841
|
+
not_equals?: string | undefined;
|
|
1679
1842
|
is_empty?: boolean | undefined;
|
|
1680
1843
|
is_not_empty?: boolean | undefined;
|
|
1681
1844
|
after?: string | undefined;
|
|
@@ -1687,13 +1850,15 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1687
1850
|
} | {
|
|
1688
1851
|
reference: {
|
|
1689
1852
|
equals?: string | undefined;
|
|
1853
|
+
not_equals?: string | undefined;
|
|
1690
1854
|
is_empty?: boolean | undefined;
|
|
1691
1855
|
is_not_empty?: boolean | undefined;
|
|
1692
1856
|
};
|
|
1693
1857
|
attribute: string;
|
|
1694
1858
|
} | {
|
|
1695
1859
|
boolean: {
|
|
1696
|
-
equals
|
|
1860
|
+
equals?: boolean | undefined;
|
|
1861
|
+
not_equals?: boolean | undefined;
|
|
1697
1862
|
};
|
|
1698
1863
|
attribute: string;
|
|
1699
1864
|
} | {
|
|
@@ -1740,6 +1905,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1740
1905
|
} | {
|
|
1741
1906
|
string: {
|
|
1742
1907
|
equals?: string | undefined;
|
|
1908
|
+
not_equals?: string | undefined;
|
|
1743
1909
|
contains?: string | undefined;
|
|
1744
1910
|
beginsWith?: string | undefined;
|
|
1745
1911
|
is_empty?: boolean | undefined;
|
|
@@ -1753,9 +1919,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1753
1919
|
} | {
|
|
1754
1920
|
number: {
|
|
1755
1921
|
equals?: number | undefined;
|
|
1922
|
+
not_equals?: number | undefined;
|
|
1756
1923
|
is_empty?: boolean | undefined;
|
|
1757
1924
|
is_not_empty?: boolean | undefined;
|
|
1758
|
-
does_not_equal?: number | undefined;
|
|
1759
1925
|
greater_than?: number | undefined;
|
|
1760
1926
|
greater_than_or_equal_to?: number | undefined;
|
|
1761
1927
|
less_than?: number | undefined;
|
|
@@ -1765,6 +1931,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1765
1931
|
} | {
|
|
1766
1932
|
date: {
|
|
1767
1933
|
equals?: string | undefined;
|
|
1934
|
+
not_equals?: string | undefined;
|
|
1768
1935
|
is_empty?: boolean | undefined;
|
|
1769
1936
|
is_not_empty?: boolean | undefined;
|
|
1770
1937
|
after?: string | undefined;
|
|
@@ -1776,13 +1943,15 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1776
1943
|
} | {
|
|
1777
1944
|
reference: {
|
|
1778
1945
|
equals?: string | undefined;
|
|
1946
|
+
not_equals?: string | undefined;
|
|
1779
1947
|
is_empty?: boolean | undefined;
|
|
1780
1948
|
is_not_empty?: boolean | undefined;
|
|
1781
1949
|
};
|
|
1782
1950
|
attribute: string;
|
|
1783
1951
|
} | {
|
|
1784
1952
|
boolean: {
|
|
1785
|
-
equals
|
|
1953
|
+
equals?: boolean | undefined;
|
|
1954
|
+
not_equals?: boolean | undefined;
|
|
1786
1955
|
};
|
|
1787
1956
|
attribute: string;
|
|
1788
1957
|
})[];
|
|
@@ -1808,30 +1977,35 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1808
1977
|
attribute: z.ZodString;
|
|
1809
1978
|
string: z.ZodEffects<z.ZodObject<{
|
|
1810
1979
|
equals: z.ZodOptional<z.ZodString>;
|
|
1980
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
1811
1981
|
contains: z.ZodOptional<z.ZodString>;
|
|
1812
1982
|
beginsWith: z.ZodOptional<z.ZodString>;
|
|
1813
1983
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1814
1984
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1815
|
-
}, "
|
|
1985
|
+
}, "strict", z.ZodTypeAny, {
|
|
1816
1986
|
equals?: string | undefined;
|
|
1987
|
+
not_equals?: string | undefined;
|
|
1817
1988
|
contains?: string | undefined;
|
|
1818
1989
|
beginsWith?: string | undefined;
|
|
1819
1990
|
is_empty?: boolean | undefined;
|
|
1820
1991
|
is_not_empty?: boolean | undefined;
|
|
1821
1992
|
}, {
|
|
1822
1993
|
equals?: string | undefined;
|
|
1994
|
+
not_equals?: string | undefined;
|
|
1823
1995
|
contains?: string | undefined;
|
|
1824
1996
|
beginsWith?: string | undefined;
|
|
1825
1997
|
is_empty?: boolean | undefined;
|
|
1826
1998
|
is_not_empty?: boolean | undefined;
|
|
1827
1999
|
}>, {
|
|
1828
2000
|
equals?: string | undefined;
|
|
2001
|
+
not_equals?: string | undefined;
|
|
1829
2002
|
contains?: string | undefined;
|
|
1830
2003
|
beginsWith?: string | undefined;
|
|
1831
2004
|
is_empty?: boolean | undefined;
|
|
1832
2005
|
is_not_empty?: boolean | undefined;
|
|
1833
2006
|
}, {
|
|
1834
2007
|
equals?: string | undefined;
|
|
2008
|
+
not_equals?: string | undefined;
|
|
1835
2009
|
contains?: string | undefined;
|
|
1836
2010
|
beginsWith?: string | undefined;
|
|
1837
2011
|
is_empty?: boolean | undefined;
|
|
@@ -1840,6 +2014,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1840
2014
|
}, "strip", z.ZodTypeAny, {
|
|
1841
2015
|
string: {
|
|
1842
2016
|
equals?: string | undefined;
|
|
2017
|
+
not_equals?: string | undefined;
|
|
1843
2018
|
contains?: string | undefined;
|
|
1844
2019
|
beginsWith?: string | undefined;
|
|
1845
2020
|
is_empty?: boolean | undefined;
|
|
@@ -1849,6 +2024,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1849
2024
|
}, {
|
|
1850
2025
|
string: {
|
|
1851
2026
|
equals?: string | undefined;
|
|
2027
|
+
not_equals?: string | undefined;
|
|
1852
2028
|
contains?: string | undefined;
|
|
1853
2029
|
beginsWith?: string | undefined;
|
|
1854
2030
|
is_empty?: boolean | undefined;
|
|
@@ -1859,45 +2035,45 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1859
2035
|
attribute: z.ZodString;
|
|
1860
2036
|
number: z.ZodEffects<z.ZodObject<{
|
|
1861
2037
|
equals: z.ZodOptional<z.ZodNumber>;
|
|
1862
|
-
|
|
2038
|
+
not_equals: z.ZodOptional<z.ZodNumber>;
|
|
1863
2039
|
greater_than: z.ZodOptional<z.ZodNumber>;
|
|
1864
2040
|
greater_than_or_equal_to: z.ZodOptional<z.ZodNumber>;
|
|
1865
2041
|
less_than: z.ZodOptional<z.ZodNumber>;
|
|
1866
2042
|
less_than_or_equal_to: z.ZodOptional<z.ZodNumber>;
|
|
1867
2043
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1868
2044
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1869
|
-
}, "
|
|
2045
|
+
}, "strict", z.ZodTypeAny, {
|
|
1870
2046
|
equals?: number | undefined;
|
|
2047
|
+
not_equals?: number | undefined;
|
|
1871
2048
|
is_empty?: boolean | undefined;
|
|
1872
2049
|
is_not_empty?: boolean | undefined;
|
|
1873
|
-
does_not_equal?: number | undefined;
|
|
1874
2050
|
greater_than?: number | undefined;
|
|
1875
2051
|
greater_than_or_equal_to?: number | undefined;
|
|
1876
2052
|
less_than?: number | undefined;
|
|
1877
2053
|
less_than_or_equal_to?: number | undefined;
|
|
1878
2054
|
}, {
|
|
1879
2055
|
equals?: number | undefined;
|
|
2056
|
+
not_equals?: number | undefined;
|
|
1880
2057
|
is_empty?: boolean | undefined;
|
|
1881
2058
|
is_not_empty?: boolean | undefined;
|
|
1882
|
-
does_not_equal?: number | undefined;
|
|
1883
2059
|
greater_than?: number | undefined;
|
|
1884
2060
|
greater_than_or_equal_to?: number | undefined;
|
|
1885
2061
|
less_than?: number | undefined;
|
|
1886
2062
|
less_than_or_equal_to?: number | undefined;
|
|
1887
2063
|
}>, {
|
|
1888
2064
|
equals?: number | undefined;
|
|
2065
|
+
not_equals?: number | undefined;
|
|
1889
2066
|
is_empty?: boolean | undefined;
|
|
1890
2067
|
is_not_empty?: boolean | undefined;
|
|
1891
|
-
does_not_equal?: number | undefined;
|
|
1892
2068
|
greater_than?: number | undefined;
|
|
1893
2069
|
greater_than_or_equal_to?: number | undefined;
|
|
1894
2070
|
less_than?: number | undefined;
|
|
1895
2071
|
less_than_or_equal_to?: number | undefined;
|
|
1896
2072
|
}, {
|
|
1897
2073
|
equals?: number | undefined;
|
|
2074
|
+
not_equals?: number | undefined;
|
|
1898
2075
|
is_empty?: boolean | undefined;
|
|
1899
2076
|
is_not_empty?: boolean | undefined;
|
|
1900
|
-
does_not_equal?: number | undefined;
|
|
1901
2077
|
greater_than?: number | undefined;
|
|
1902
2078
|
greater_than_or_equal_to?: number | undefined;
|
|
1903
2079
|
less_than?: number | undefined;
|
|
@@ -1906,9 +2082,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1906
2082
|
}, "strip", z.ZodTypeAny, {
|
|
1907
2083
|
number: {
|
|
1908
2084
|
equals?: number | undefined;
|
|
2085
|
+
not_equals?: number | undefined;
|
|
1909
2086
|
is_empty?: boolean | undefined;
|
|
1910
2087
|
is_not_empty?: boolean | undefined;
|
|
1911
|
-
does_not_equal?: number | undefined;
|
|
1912
2088
|
greater_than?: number | undefined;
|
|
1913
2089
|
greater_than_or_equal_to?: number | undefined;
|
|
1914
2090
|
less_than?: number | undefined;
|
|
@@ -1918,9 +2094,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1918
2094
|
}, {
|
|
1919
2095
|
number: {
|
|
1920
2096
|
equals?: number | undefined;
|
|
2097
|
+
not_equals?: number | undefined;
|
|
1921
2098
|
is_empty?: boolean | undefined;
|
|
1922
2099
|
is_not_empty?: boolean | undefined;
|
|
1923
|
-
does_not_equal?: number | undefined;
|
|
1924
2100
|
greater_than?: number | undefined;
|
|
1925
2101
|
greater_than_or_equal_to?: number | undefined;
|
|
1926
2102
|
less_than?: number | undefined;
|
|
@@ -1929,16 +2105,36 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1929
2105
|
attribute: string;
|
|
1930
2106
|
}>, z.ZodObject<{
|
|
1931
2107
|
attribute: z.ZodString;
|
|
1932
|
-
date: z.ZodObject<{
|
|
2108
|
+
date: z.ZodEffects<z.ZodObject<{
|
|
1933
2109
|
after: z.ZodOptional<z.ZodString>;
|
|
1934
2110
|
before: z.ZodOptional<z.ZodString>;
|
|
1935
2111
|
equals: z.ZodOptional<z.ZodString>;
|
|
2112
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
1936
2113
|
on_or_after: z.ZodOptional<z.ZodString>;
|
|
1937
2114
|
on_or_before: z.ZodOptional<z.ZodString>;
|
|
1938
2115
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1939
2116
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1940
|
-
}, "
|
|
2117
|
+
}, "strict", z.ZodTypeAny, {
|
|
2118
|
+
equals?: string | undefined;
|
|
2119
|
+
not_equals?: string | undefined;
|
|
2120
|
+
is_empty?: boolean | undefined;
|
|
2121
|
+
is_not_empty?: boolean | undefined;
|
|
2122
|
+
after?: string | undefined;
|
|
2123
|
+
before?: string | undefined;
|
|
2124
|
+
on_or_after?: string | undefined;
|
|
2125
|
+
on_or_before?: string | undefined;
|
|
2126
|
+
}, {
|
|
2127
|
+
equals?: string | undefined;
|
|
2128
|
+
not_equals?: string | undefined;
|
|
2129
|
+
is_empty?: boolean | undefined;
|
|
2130
|
+
is_not_empty?: boolean | undefined;
|
|
2131
|
+
after?: string | undefined;
|
|
2132
|
+
before?: string | undefined;
|
|
2133
|
+
on_or_after?: string | undefined;
|
|
2134
|
+
on_or_before?: string | undefined;
|
|
2135
|
+
}>, {
|
|
1941
2136
|
equals?: string | undefined;
|
|
2137
|
+
not_equals?: string | undefined;
|
|
1942
2138
|
is_empty?: boolean | undefined;
|
|
1943
2139
|
is_not_empty?: boolean | undefined;
|
|
1944
2140
|
after?: string | undefined;
|
|
@@ -1947,6 +2143,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1947
2143
|
on_or_before?: string | undefined;
|
|
1948
2144
|
}, {
|
|
1949
2145
|
equals?: string | undefined;
|
|
2146
|
+
not_equals?: string | undefined;
|
|
1950
2147
|
is_empty?: boolean | undefined;
|
|
1951
2148
|
is_not_empty?: boolean | undefined;
|
|
1952
2149
|
after?: string | undefined;
|
|
@@ -1957,6 +2154,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1957
2154
|
}, "strip", z.ZodTypeAny, {
|
|
1958
2155
|
date: {
|
|
1959
2156
|
equals?: string | undefined;
|
|
2157
|
+
not_equals?: string | undefined;
|
|
1960
2158
|
is_empty?: boolean | undefined;
|
|
1961
2159
|
is_not_empty?: boolean | undefined;
|
|
1962
2160
|
after?: string | undefined;
|
|
@@ -1968,6 +2166,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1968
2166
|
}, {
|
|
1969
2167
|
date: {
|
|
1970
2168
|
equals?: string | undefined;
|
|
2169
|
+
not_equals?: string | undefined;
|
|
1971
2170
|
is_empty?: boolean | undefined;
|
|
1972
2171
|
is_not_empty?: boolean | undefined;
|
|
1973
2172
|
after?: string | undefined;
|
|
@@ -1980,28 +2179,34 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
1980
2179
|
attribute: z.ZodString;
|
|
1981
2180
|
reference: z.ZodEffects<z.ZodObject<{
|
|
1982
2181
|
equals: z.ZodOptional<z.ZodString>;
|
|
2182
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
1983
2183
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1984
2184
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1985
|
-
}, "
|
|
2185
|
+
}, "strict", z.ZodTypeAny, {
|
|
1986
2186
|
equals?: string | undefined;
|
|
2187
|
+
not_equals?: string | undefined;
|
|
1987
2188
|
is_empty?: boolean | undefined;
|
|
1988
2189
|
is_not_empty?: boolean | undefined;
|
|
1989
2190
|
}, {
|
|
1990
2191
|
equals?: string | undefined;
|
|
2192
|
+
not_equals?: string | undefined;
|
|
1991
2193
|
is_empty?: boolean | undefined;
|
|
1992
2194
|
is_not_empty?: boolean | undefined;
|
|
1993
2195
|
}>, {
|
|
1994
2196
|
equals?: string | undefined;
|
|
2197
|
+
not_equals?: string | undefined;
|
|
1995
2198
|
is_empty?: boolean | undefined;
|
|
1996
2199
|
is_not_empty?: boolean | undefined;
|
|
1997
2200
|
}, {
|
|
1998
2201
|
equals?: string | undefined;
|
|
2202
|
+
not_equals?: string | undefined;
|
|
1999
2203
|
is_empty?: boolean | undefined;
|
|
2000
2204
|
is_not_empty?: boolean | undefined;
|
|
2001
2205
|
}>;
|
|
2002
2206
|
}, "strip", z.ZodTypeAny, {
|
|
2003
2207
|
reference: {
|
|
2004
2208
|
equals?: string | undefined;
|
|
2209
|
+
not_equals?: string | undefined;
|
|
2005
2210
|
is_empty?: boolean | undefined;
|
|
2006
2211
|
is_not_empty?: boolean | undefined;
|
|
2007
2212
|
};
|
|
@@ -2009,27 +2214,39 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2009
2214
|
}, {
|
|
2010
2215
|
reference: {
|
|
2011
2216
|
equals?: string | undefined;
|
|
2217
|
+
not_equals?: string | undefined;
|
|
2012
2218
|
is_empty?: boolean | undefined;
|
|
2013
2219
|
is_not_empty?: boolean | undefined;
|
|
2014
2220
|
};
|
|
2015
2221
|
attribute: string;
|
|
2016
2222
|
}>, z.ZodObject<{
|
|
2017
2223
|
attribute: z.ZodString;
|
|
2018
|
-
boolean: z.ZodObject<{
|
|
2019
|
-
equals: z.ZodBoolean
|
|
2020
|
-
|
|
2021
|
-
|
|
2224
|
+
boolean: z.ZodEffects<z.ZodObject<{
|
|
2225
|
+
equals: z.ZodOptional<z.ZodBoolean>;
|
|
2226
|
+
not_equals: z.ZodOptional<z.ZodBoolean>;
|
|
2227
|
+
}, "strict", z.ZodTypeAny, {
|
|
2228
|
+
equals?: boolean | undefined;
|
|
2229
|
+
not_equals?: boolean | undefined;
|
|
2230
|
+
}, {
|
|
2231
|
+
equals?: boolean | undefined;
|
|
2232
|
+
not_equals?: boolean | undefined;
|
|
2233
|
+
}>, {
|
|
2234
|
+
equals?: boolean | undefined;
|
|
2235
|
+
not_equals?: boolean | undefined;
|
|
2022
2236
|
}, {
|
|
2023
|
-
equals
|
|
2237
|
+
equals?: boolean | undefined;
|
|
2238
|
+
not_equals?: boolean | undefined;
|
|
2024
2239
|
}>;
|
|
2025
2240
|
}, "strip", z.ZodTypeAny, {
|
|
2026
2241
|
boolean: {
|
|
2027
|
-
equals
|
|
2242
|
+
equals?: boolean | undefined;
|
|
2243
|
+
not_equals?: boolean | undefined;
|
|
2028
2244
|
};
|
|
2029
2245
|
attribute: string;
|
|
2030
2246
|
}, {
|
|
2031
2247
|
boolean: {
|
|
2032
|
-
equals
|
|
2248
|
+
equals?: boolean | undefined;
|
|
2249
|
+
not_equals?: boolean | undefined;
|
|
2033
2250
|
};
|
|
2034
2251
|
attribute: string;
|
|
2035
2252
|
}>, z.ZodObject<{
|
|
@@ -2221,30 +2438,35 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2221
2438
|
attribute: z.ZodString;
|
|
2222
2439
|
string: z.ZodEffects<z.ZodObject<{
|
|
2223
2440
|
equals: z.ZodOptional<z.ZodString>;
|
|
2441
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
2224
2442
|
contains: z.ZodOptional<z.ZodString>;
|
|
2225
2443
|
beginsWith: z.ZodOptional<z.ZodString>;
|
|
2226
2444
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
2227
2445
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
2228
|
-
}, "
|
|
2446
|
+
}, "strict", z.ZodTypeAny, {
|
|
2229
2447
|
equals?: string | undefined;
|
|
2448
|
+
not_equals?: string | undefined;
|
|
2230
2449
|
contains?: string | undefined;
|
|
2231
2450
|
beginsWith?: string | undefined;
|
|
2232
2451
|
is_empty?: boolean | undefined;
|
|
2233
2452
|
is_not_empty?: boolean | undefined;
|
|
2234
2453
|
}, {
|
|
2235
2454
|
equals?: string | undefined;
|
|
2455
|
+
not_equals?: string | undefined;
|
|
2236
2456
|
contains?: string | undefined;
|
|
2237
2457
|
beginsWith?: string | undefined;
|
|
2238
2458
|
is_empty?: boolean | undefined;
|
|
2239
2459
|
is_not_empty?: boolean | undefined;
|
|
2240
2460
|
}>, {
|
|
2241
2461
|
equals?: string | undefined;
|
|
2462
|
+
not_equals?: string | undefined;
|
|
2242
2463
|
contains?: string | undefined;
|
|
2243
2464
|
beginsWith?: string | undefined;
|
|
2244
2465
|
is_empty?: boolean | undefined;
|
|
2245
2466
|
is_not_empty?: boolean | undefined;
|
|
2246
2467
|
}, {
|
|
2247
2468
|
equals?: string | undefined;
|
|
2469
|
+
not_equals?: string | undefined;
|
|
2248
2470
|
contains?: string | undefined;
|
|
2249
2471
|
beginsWith?: string | undefined;
|
|
2250
2472
|
is_empty?: boolean | undefined;
|
|
@@ -2253,6 +2475,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2253
2475
|
}, "strip", z.ZodTypeAny, {
|
|
2254
2476
|
string: {
|
|
2255
2477
|
equals?: string | undefined;
|
|
2478
|
+
not_equals?: string | undefined;
|
|
2256
2479
|
contains?: string | undefined;
|
|
2257
2480
|
beginsWith?: string | undefined;
|
|
2258
2481
|
is_empty?: boolean | undefined;
|
|
@@ -2262,6 +2485,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2262
2485
|
}, {
|
|
2263
2486
|
string: {
|
|
2264
2487
|
equals?: string | undefined;
|
|
2488
|
+
not_equals?: string | undefined;
|
|
2265
2489
|
contains?: string | undefined;
|
|
2266
2490
|
beginsWith?: string | undefined;
|
|
2267
2491
|
is_empty?: boolean | undefined;
|
|
@@ -2272,45 +2496,45 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2272
2496
|
attribute: z.ZodString;
|
|
2273
2497
|
number: z.ZodEffects<z.ZodObject<{
|
|
2274
2498
|
equals: z.ZodOptional<z.ZodNumber>;
|
|
2275
|
-
|
|
2499
|
+
not_equals: z.ZodOptional<z.ZodNumber>;
|
|
2276
2500
|
greater_than: z.ZodOptional<z.ZodNumber>;
|
|
2277
2501
|
greater_than_or_equal_to: z.ZodOptional<z.ZodNumber>;
|
|
2278
2502
|
less_than: z.ZodOptional<z.ZodNumber>;
|
|
2279
2503
|
less_than_or_equal_to: z.ZodOptional<z.ZodNumber>;
|
|
2280
2504
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
2281
2505
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
2282
|
-
}, "
|
|
2506
|
+
}, "strict", z.ZodTypeAny, {
|
|
2283
2507
|
equals?: number | undefined;
|
|
2508
|
+
not_equals?: number | undefined;
|
|
2284
2509
|
is_empty?: boolean | undefined;
|
|
2285
2510
|
is_not_empty?: boolean | undefined;
|
|
2286
|
-
does_not_equal?: number | undefined;
|
|
2287
2511
|
greater_than?: number | undefined;
|
|
2288
2512
|
greater_than_or_equal_to?: number | undefined;
|
|
2289
2513
|
less_than?: number | undefined;
|
|
2290
2514
|
less_than_or_equal_to?: number | undefined;
|
|
2291
2515
|
}, {
|
|
2292
2516
|
equals?: number | undefined;
|
|
2517
|
+
not_equals?: number | undefined;
|
|
2293
2518
|
is_empty?: boolean | undefined;
|
|
2294
2519
|
is_not_empty?: boolean | undefined;
|
|
2295
|
-
does_not_equal?: number | undefined;
|
|
2296
2520
|
greater_than?: number | undefined;
|
|
2297
2521
|
greater_than_or_equal_to?: number | undefined;
|
|
2298
2522
|
less_than?: number | undefined;
|
|
2299
2523
|
less_than_or_equal_to?: number | undefined;
|
|
2300
2524
|
}>, {
|
|
2301
2525
|
equals?: number | undefined;
|
|
2526
|
+
not_equals?: number | undefined;
|
|
2302
2527
|
is_empty?: boolean | undefined;
|
|
2303
2528
|
is_not_empty?: boolean | undefined;
|
|
2304
|
-
does_not_equal?: number | undefined;
|
|
2305
2529
|
greater_than?: number | undefined;
|
|
2306
2530
|
greater_than_or_equal_to?: number | undefined;
|
|
2307
2531
|
less_than?: number | undefined;
|
|
2308
2532
|
less_than_or_equal_to?: number | undefined;
|
|
2309
2533
|
}, {
|
|
2310
2534
|
equals?: number | undefined;
|
|
2535
|
+
not_equals?: number | undefined;
|
|
2311
2536
|
is_empty?: boolean | undefined;
|
|
2312
2537
|
is_not_empty?: boolean | undefined;
|
|
2313
|
-
does_not_equal?: number | undefined;
|
|
2314
2538
|
greater_than?: number | undefined;
|
|
2315
2539
|
greater_than_or_equal_to?: number | undefined;
|
|
2316
2540
|
less_than?: number | undefined;
|
|
@@ -2319,9 +2543,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2319
2543
|
}, "strip", z.ZodTypeAny, {
|
|
2320
2544
|
number: {
|
|
2321
2545
|
equals?: number | undefined;
|
|
2546
|
+
not_equals?: number | undefined;
|
|
2322
2547
|
is_empty?: boolean | undefined;
|
|
2323
2548
|
is_not_empty?: boolean | undefined;
|
|
2324
|
-
does_not_equal?: number | undefined;
|
|
2325
2549
|
greater_than?: number | undefined;
|
|
2326
2550
|
greater_than_or_equal_to?: number | undefined;
|
|
2327
2551
|
less_than?: number | undefined;
|
|
@@ -2331,9 +2555,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2331
2555
|
}, {
|
|
2332
2556
|
number: {
|
|
2333
2557
|
equals?: number | undefined;
|
|
2558
|
+
not_equals?: number | undefined;
|
|
2334
2559
|
is_empty?: boolean | undefined;
|
|
2335
2560
|
is_not_empty?: boolean | undefined;
|
|
2336
|
-
does_not_equal?: number | undefined;
|
|
2337
2561
|
greater_than?: number | undefined;
|
|
2338
2562
|
greater_than_or_equal_to?: number | undefined;
|
|
2339
2563
|
less_than?: number | undefined;
|
|
@@ -2342,16 +2566,18 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2342
2566
|
attribute: string;
|
|
2343
2567
|
}>, z.ZodObject<{
|
|
2344
2568
|
attribute: z.ZodString;
|
|
2345
|
-
date: z.ZodObject<{
|
|
2569
|
+
date: z.ZodEffects<z.ZodObject<{
|
|
2346
2570
|
after: z.ZodOptional<z.ZodString>;
|
|
2347
2571
|
before: z.ZodOptional<z.ZodString>;
|
|
2348
2572
|
equals: z.ZodOptional<z.ZodString>;
|
|
2573
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
2349
2574
|
on_or_after: z.ZodOptional<z.ZodString>;
|
|
2350
2575
|
on_or_before: z.ZodOptional<z.ZodString>;
|
|
2351
2576
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
2352
2577
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
2353
|
-
}, "
|
|
2578
|
+
}, "strict", z.ZodTypeAny, {
|
|
2354
2579
|
equals?: string | undefined;
|
|
2580
|
+
not_equals?: string | undefined;
|
|
2355
2581
|
is_empty?: boolean | undefined;
|
|
2356
2582
|
is_not_empty?: boolean | undefined;
|
|
2357
2583
|
after?: string | undefined;
|
|
@@ -2360,6 +2586,25 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2360
2586
|
on_or_before?: string | undefined;
|
|
2361
2587
|
}, {
|
|
2362
2588
|
equals?: string | undefined;
|
|
2589
|
+
not_equals?: string | undefined;
|
|
2590
|
+
is_empty?: boolean | undefined;
|
|
2591
|
+
is_not_empty?: boolean | undefined;
|
|
2592
|
+
after?: string | undefined;
|
|
2593
|
+
before?: string | undefined;
|
|
2594
|
+
on_or_after?: string | undefined;
|
|
2595
|
+
on_or_before?: string | undefined;
|
|
2596
|
+
}>, {
|
|
2597
|
+
equals?: string | undefined;
|
|
2598
|
+
not_equals?: string | undefined;
|
|
2599
|
+
is_empty?: boolean | undefined;
|
|
2600
|
+
is_not_empty?: boolean | undefined;
|
|
2601
|
+
after?: string | undefined;
|
|
2602
|
+
before?: string | undefined;
|
|
2603
|
+
on_or_after?: string | undefined;
|
|
2604
|
+
on_or_before?: string | undefined;
|
|
2605
|
+
}, {
|
|
2606
|
+
equals?: string | undefined;
|
|
2607
|
+
not_equals?: string | undefined;
|
|
2363
2608
|
is_empty?: boolean | undefined;
|
|
2364
2609
|
is_not_empty?: boolean | undefined;
|
|
2365
2610
|
after?: string | undefined;
|
|
@@ -2370,6 +2615,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2370
2615
|
}, "strip", z.ZodTypeAny, {
|
|
2371
2616
|
date: {
|
|
2372
2617
|
equals?: string | undefined;
|
|
2618
|
+
not_equals?: string | undefined;
|
|
2373
2619
|
is_empty?: boolean | undefined;
|
|
2374
2620
|
is_not_empty?: boolean | undefined;
|
|
2375
2621
|
after?: string | undefined;
|
|
@@ -2381,6 +2627,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2381
2627
|
}, {
|
|
2382
2628
|
date: {
|
|
2383
2629
|
equals?: string | undefined;
|
|
2630
|
+
not_equals?: string | undefined;
|
|
2384
2631
|
is_empty?: boolean | undefined;
|
|
2385
2632
|
is_not_empty?: boolean | undefined;
|
|
2386
2633
|
after?: string | undefined;
|
|
@@ -2393,28 +2640,34 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2393
2640
|
attribute: z.ZodString;
|
|
2394
2641
|
reference: z.ZodEffects<z.ZodObject<{
|
|
2395
2642
|
equals: z.ZodOptional<z.ZodString>;
|
|
2643
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
2396
2644
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
2397
2645
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
2398
|
-
}, "
|
|
2646
|
+
}, "strict", z.ZodTypeAny, {
|
|
2399
2647
|
equals?: string | undefined;
|
|
2648
|
+
not_equals?: string | undefined;
|
|
2400
2649
|
is_empty?: boolean | undefined;
|
|
2401
2650
|
is_not_empty?: boolean | undefined;
|
|
2402
2651
|
}, {
|
|
2403
2652
|
equals?: string | undefined;
|
|
2653
|
+
not_equals?: string | undefined;
|
|
2404
2654
|
is_empty?: boolean | undefined;
|
|
2405
2655
|
is_not_empty?: boolean | undefined;
|
|
2406
2656
|
}>, {
|
|
2407
2657
|
equals?: string | undefined;
|
|
2658
|
+
not_equals?: string | undefined;
|
|
2408
2659
|
is_empty?: boolean | undefined;
|
|
2409
2660
|
is_not_empty?: boolean | undefined;
|
|
2410
2661
|
}, {
|
|
2411
2662
|
equals?: string | undefined;
|
|
2663
|
+
not_equals?: string | undefined;
|
|
2412
2664
|
is_empty?: boolean | undefined;
|
|
2413
2665
|
is_not_empty?: boolean | undefined;
|
|
2414
2666
|
}>;
|
|
2415
2667
|
}, "strip", z.ZodTypeAny, {
|
|
2416
2668
|
reference: {
|
|
2417
2669
|
equals?: string | undefined;
|
|
2670
|
+
not_equals?: string | undefined;
|
|
2418
2671
|
is_empty?: boolean | undefined;
|
|
2419
2672
|
is_not_empty?: boolean | undefined;
|
|
2420
2673
|
};
|
|
@@ -2422,27 +2675,39 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2422
2675
|
}, {
|
|
2423
2676
|
reference: {
|
|
2424
2677
|
equals?: string | undefined;
|
|
2678
|
+
not_equals?: string | undefined;
|
|
2425
2679
|
is_empty?: boolean | undefined;
|
|
2426
2680
|
is_not_empty?: boolean | undefined;
|
|
2427
2681
|
};
|
|
2428
2682
|
attribute: string;
|
|
2429
2683
|
}>, z.ZodObject<{
|
|
2430
2684
|
attribute: z.ZodString;
|
|
2431
|
-
boolean: z.ZodObject<{
|
|
2432
|
-
equals: z.ZodBoolean
|
|
2433
|
-
|
|
2434
|
-
|
|
2685
|
+
boolean: z.ZodEffects<z.ZodObject<{
|
|
2686
|
+
equals: z.ZodOptional<z.ZodBoolean>;
|
|
2687
|
+
not_equals: z.ZodOptional<z.ZodBoolean>;
|
|
2688
|
+
}, "strict", z.ZodTypeAny, {
|
|
2689
|
+
equals?: boolean | undefined;
|
|
2690
|
+
not_equals?: boolean | undefined;
|
|
2435
2691
|
}, {
|
|
2436
|
-
equals
|
|
2692
|
+
equals?: boolean | undefined;
|
|
2693
|
+
not_equals?: boolean | undefined;
|
|
2694
|
+
}>, {
|
|
2695
|
+
equals?: boolean | undefined;
|
|
2696
|
+
not_equals?: boolean | undefined;
|
|
2697
|
+
}, {
|
|
2698
|
+
equals?: boolean | undefined;
|
|
2699
|
+
not_equals?: boolean | undefined;
|
|
2437
2700
|
}>;
|
|
2438
2701
|
}, "strip", z.ZodTypeAny, {
|
|
2439
2702
|
boolean: {
|
|
2440
|
-
equals
|
|
2703
|
+
equals?: boolean | undefined;
|
|
2704
|
+
not_equals?: boolean | undefined;
|
|
2441
2705
|
};
|
|
2442
2706
|
attribute: string;
|
|
2443
2707
|
}, {
|
|
2444
2708
|
boolean: {
|
|
2445
|
-
equals
|
|
2709
|
+
equals?: boolean | undefined;
|
|
2710
|
+
not_equals?: boolean | undefined;
|
|
2446
2711
|
};
|
|
2447
2712
|
attribute: string;
|
|
2448
2713
|
}>, z.ZodObject<{
|
|
@@ -2658,6 +2923,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2658
2923
|
} | {
|
|
2659
2924
|
string: {
|
|
2660
2925
|
equals?: string | undefined;
|
|
2926
|
+
not_equals?: string | undefined;
|
|
2661
2927
|
contains?: string | undefined;
|
|
2662
2928
|
beginsWith?: string | undefined;
|
|
2663
2929
|
is_empty?: boolean | undefined;
|
|
@@ -2671,9 +2937,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2671
2937
|
} | {
|
|
2672
2938
|
number: {
|
|
2673
2939
|
equals?: number | undefined;
|
|
2940
|
+
not_equals?: number | undefined;
|
|
2674
2941
|
is_empty?: boolean | undefined;
|
|
2675
2942
|
is_not_empty?: boolean | undefined;
|
|
2676
|
-
does_not_equal?: number | undefined;
|
|
2677
2943
|
greater_than?: number | undefined;
|
|
2678
2944
|
greater_than_or_equal_to?: number | undefined;
|
|
2679
2945
|
less_than?: number | undefined;
|
|
@@ -2683,6 +2949,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2683
2949
|
} | {
|
|
2684
2950
|
date: {
|
|
2685
2951
|
equals?: string | undefined;
|
|
2952
|
+
not_equals?: string | undefined;
|
|
2686
2953
|
is_empty?: boolean | undefined;
|
|
2687
2954
|
is_not_empty?: boolean | undefined;
|
|
2688
2955
|
after?: string | undefined;
|
|
@@ -2694,13 +2961,15 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2694
2961
|
} | {
|
|
2695
2962
|
reference: {
|
|
2696
2963
|
equals?: string | undefined;
|
|
2964
|
+
not_equals?: string | undefined;
|
|
2697
2965
|
is_empty?: boolean | undefined;
|
|
2698
2966
|
is_not_empty?: boolean | undefined;
|
|
2699
2967
|
};
|
|
2700
2968
|
attribute: string;
|
|
2701
2969
|
} | {
|
|
2702
2970
|
boolean: {
|
|
2703
|
-
equals
|
|
2971
|
+
equals?: boolean | undefined;
|
|
2972
|
+
not_equals?: boolean | undefined;
|
|
2704
2973
|
};
|
|
2705
2974
|
attribute: string;
|
|
2706
2975
|
})[];
|
|
@@ -2748,6 +3017,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2748
3017
|
} | {
|
|
2749
3018
|
string: {
|
|
2750
3019
|
equals?: string | undefined;
|
|
3020
|
+
not_equals?: string | undefined;
|
|
2751
3021
|
contains?: string | undefined;
|
|
2752
3022
|
beginsWith?: string | undefined;
|
|
2753
3023
|
is_empty?: boolean | undefined;
|
|
@@ -2761,9 +3031,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2761
3031
|
} | {
|
|
2762
3032
|
number: {
|
|
2763
3033
|
equals?: number | undefined;
|
|
3034
|
+
not_equals?: number | undefined;
|
|
2764
3035
|
is_empty?: boolean | undefined;
|
|
2765
3036
|
is_not_empty?: boolean | undefined;
|
|
2766
|
-
does_not_equal?: number | undefined;
|
|
2767
3037
|
greater_than?: number | undefined;
|
|
2768
3038
|
greater_than_or_equal_to?: number | undefined;
|
|
2769
3039
|
less_than?: number | undefined;
|
|
@@ -2773,6 +3043,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2773
3043
|
} | {
|
|
2774
3044
|
date: {
|
|
2775
3045
|
equals?: string | undefined;
|
|
3046
|
+
not_equals?: string | undefined;
|
|
2776
3047
|
is_empty?: boolean | undefined;
|
|
2777
3048
|
is_not_empty?: boolean | undefined;
|
|
2778
3049
|
after?: string | undefined;
|
|
@@ -2784,13 +3055,15 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2784
3055
|
} | {
|
|
2785
3056
|
reference: {
|
|
2786
3057
|
equals?: string | undefined;
|
|
3058
|
+
not_equals?: string | undefined;
|
|
2787
3059
|
is_empty?: boolean | undefined;
|
|
2788
3060
|
is_not_empty?: boolean | undefined;
|
|
2789
3061
|
};
|
|
2790
3062
|
attribute: string;
|
|
2791
3063
|
} | {
|
|
2792
3064
|
boolean: {
|
|
2793
|
-
equals
|
|
3065
|
+
equals?: boolean | undefined;
|
|
3066
|
+
not_equals?: boolean | undefined;
|
|
2794
3067
|
};
|
|
2795
3068
|
attribute: string;
|
|
2796
3069
|
})[];
|
|
@@ -2839,6 +3112,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2839
3112
|
} | {
|
|
2840
3113
|
string: {
|
|
2841
3114
|
equals?: string | undefined;
|
|
3115
|
+
not_equals?: string | undefined;
|
|
2842
3116
|
contains?: string | undefined;
|
|
2843
3117
|
beginsWith?: string | undefined;
|
|
2844
3118
|
is_empty?: boolean | undefined;
|
|
@@ -2852,9 +3126,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2852
3126
|
} | {
|
|
2853
3127
|
number: {
|
|
2854
3128
|
equals?: number | undefined;
|
|
3129
|
+
not_equals?: number | undefined;
|
|
2855
3130
|
is_empty?: boolean | undefined;
|
|
2856
3131
|
is_not_empty?: boolean | undefined;
|
|
2857
|
-
does_not_equal?: number | undefined;
|
|
2858
3132
|
greater_than?: number | undefined;
|
|
2859
3133
|
greater_than_or_equal_to?: number | undefined;
|
|
2860
3134
|
less_than?: number | undefined;
|
|
@@ -2864,6 +3138,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2864
3138
|
} | {
|
|
2865
3139
|
date: {
|
|
2866
3140
|
equals?: string | undefined;
|
|
3141
|
+
not_equals?: string | undefined;
|
|
2867
3142
|
is_empty?: boolean | undefined;
|
|
2868
3143
|
is_not_empty?: boolean | undefined;
|
|
2869
3144
|
after?: string | undefined;
|
|
@@ -2875,13 +3150,15 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2875
3150
|
} | {
|
|
2876
3151
|
reference: {
|
|
2877
3152
|
equals?: string | undefined;
|
|
3153
|
+
not_equals?: string | undefined;
|
|
2878
3154
|
is_empty?: boolean | undefined;
|
|
2879
3155
|
is_not_empty?: boolean | undefined;
|
|
2880
3156
|
};
|
|
2881
3157
|
attribute: string;
|
|
2882
3158
|
} | {
|
|
2883
3159
|
boolean: {
|
|
2884
|
-
equals
|
|
3160
|
+
equals?: boolean | undefined;
|
|
3161
|
+
not_equals?: boolean | undefined;
|
|
2885
3162
|
};
|
|
2886
3163
|
attribute: string;
|
|
2887
3164
|
} | {
|
|
@@ -2928,6 +3205,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2928
3205
|
} | {
|
|
2929
3206
|
string: {
|
|
2930
3207
|
equals?: string | undefined;
|
|
3208
|
+
not_equals?: string | undefined;
|
|
2931
3209
|
contains?: string | undefined;
|
|
2932
3210
|
beginsWith?: string | undefined;
|
|
2933
3211
|
is_empty?: boolean | undefined;
|
|
@@ -2941,9 +3219,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2941
3219
|
} | {
|
|
2942
3220
|
number: {
|
|
2943
3221
|
equals?: number | undefined;
|
|
3222
|
+
not_equals?: number | undefined;
|
|
2944
3223
|
is_empty?: boolean | undefined;
|
|
2945
3224
|
is_not_empty?: boolean | undefined;
|
|
2946
|
-
does_not_equal?: number | undefined;
|
|
2947
3225
|
greater_than?: number | undefined;
|
|
2948
3226
|
greater_than_or_equal_to?: number | undefined;
|
|
2949
3227
|
less_than?: number | undefined;
|
|
@@ -2953,6 +3231,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2953
3231
|
} | {
|
|
2954
3232
|
date: {
|
|
2955
3233
|
equals?: string | undefined;
|
|
3234
|
+
not_equals?: string | undefined;
|
|
2956
3235
|
is_empty?: boolean | undefined;
|
|
2957
3236
|
is_not_empty?: boolean | undefined;
|
|
2958
3237
|
after?: string | undefined;
|
|
@@ -2964,13 +3243,15 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
2964
3243
|
} | {
|
|
2965
3244
|
reference: {
|
|
2966
3245
|
equals?: string | undefined;
|
|
3246
|
+
not_equals?: string | undefined;
|
|
2967
3247
|
is_empty?: boolean | undefined;
|
|
2968
3248
|
is_not_empty?: boolean | undefined;
|
|
2969
3249
|
};
|
|
2970
3250
|
attribute: string;
|
|
2971
3251
|
} | {
|
|
2972
3252
|
boolean: {
|
|
2973
|
-
equals
|
|
3253
|
+
equals?: boolean | undefined;
|
|
3254
|
+
not_equals?: boolean | undefined;
|
|
2974
3255
|
};
|
|
2975
3256
|
attribute: string;
|
|
2976
3257
|
})[];
|
|
@@ -3019,6 +3300,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
3019
3300
|
} | {
|
|
3020
3301
|
string: {
|
|
3021
3302
|
equals?: string | undefined;
|
|
3303
|
+
not_equals?: string | undefined;
|
|
3022
3304
|
contains?: string | undefined;
|
|
3023
3305
|
beginsWith?: string | undefined;
|
|
3024
3306
|
is_empty?: boolean | undefined;
|
|
@@ -3032,9 +3314,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
3032
3314
|
} | {
|
|
3033
3315
|
number: {
|
|
3034
3316
|
equals?: number | undefined;
|
|
3317
|
+
not_equals?: number | undefined;
|
|
3035
3318
|
is_empty?: boolean | undefined;
|
|
3036
3319
|
is_not_empty?: boolean | undefined;
|
|
3037
|
-
does_not_equal?: number | undefined;
|
|
3038
3320
|
greater_than?: number | undefined;
|
|
3039
3321
|
greater_than_or_equal_to?: number | undefined;
|
|
3040
3322
|
less_than?: number | undefined;
|
|
@@ -3044,6 +3326,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
3044
3326
|
} | {
|
|
3045
3327
|
date: {
|
|
3046
3328
|
equals?: string | undefined;
|
|
3329
|
+
not_equals?: string | undefined;
|
|
3047
3330
|
is_empty?: boolean | undefined;
|
|
3048
3331
|
is_not_empty?: boolean | undefined;
|
|
3049
3332
|
after?: string | undefined;
|
|
@@ -3055,13 +3338,15 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
3055
3338
|
} | {
|
|
3056
3339
|
reference: {
|
|
3057
3340
|
equals?: string | undefined;
|
|
3341
|
+
not_equals?: string | undefined;
|
|
3058
3342
|
is_empty?: boolean | undefined;
|
|
3059
3343
|
is_not_empty?: boolean | undefined;
|
|
3060
3344
|
};
|
|
3061
3345
|
attribute: string;
|
|
3062
3346
|
} | {
|
|
3063
3347
|
boolean: {
|
|
3064
|
-
equals
|
|
3348
|
+
equals?: boolean | undefined;
|
|
3349
|
+
not_equals?: boolean | undefined;
|
|
3065
3350
|
};
|
|
3066
3351
|
attribute: string;
|
|
3067
3352
|
} | {
|
|
@@ -3108,6 +3393,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
3108
3393
|
} | {
|
|
3109
3394
|
string: {
|
|
3110
3395
|
equals?: string | undefined;
|
|
3396
|
+
not_equals?: string | undefined;
|
|
3111
3397
|
contains?: string | undefined;
|
|
3112
3398
|
beginsWith?: string | undefined;
|
|
3113
3399
|
is_empty?: boolean | undefined;
|
|
@@ -3121,9 +3407,9 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
3121
3407
|
} | {
|
|
3122
3408
|
number: {
|
|
3123
3409
|
equals?: number | undefined;
|
|
3410
|
+
not_equals?: number | undefined;
|
|
3124
3411
|
is_empty?: boolean | undefined;
|
|
3125
3412
|
is_not_empty?: boolean | undefined;
|
|
3126
|
-
does_not_equal?: number | undefined;
|
|
3127
3413
|
greater_than?: number | undefined;
|
|
3128
3414
|
greater_than_or_equal_to?: number | undefined;
|
|
3129
3415
|
less_than?: number | undefined;
|
|
@@ -3133,6 +3419,7 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
3133
3419
|
} | {
|
|
3134
3420
|
date: {
|
|
3135
3421
|
equals?: string | undefined;
|
|
3422
|
+
not_equals?: string | undefined;
|
|
3136
3423
|
is_empty?: boolean | undefined;
|
|
3137
3424
|
is_not_empty?: boolean | undefined;
|
|
3138
3425
|
after?: string | undefined;
|
|
@@ -3144,13 +3431,15 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
3144
3431
|
} | {
|
|
3145
3432
|
reference: {
|
|
3146
3433
|
equals?: string | undefined;
|
|
3434
|
+
not_equals?: string | undefined;
|
|
3147
3435
|
is_empty?: boolean | undefined;
|
|
3148
3436
|
is_not_empty?: boolean | undefined;
|
|
3149
3437
|
};
|
|
3150
3438
|
attribute: string;
|
|
3151
3439
|
} | {
|
|
3152
3440
|
boolean: {
|
|
3153
|
-
equals
|
|
3441
|
+
equals?: boolean | undefined;
|
|
3442
|
+
not_equals?: boolean | undefined;
|
|
3154
3443
|
};
|
|
3155
3444
|
attribute: string;
|
|
3156
3445
|
})[];
|
|
@@ -3168,12 +3457,14 @@ export declare const SEARCH_TOOL_DEFINITIONS: {
|
|
|
3168
3457
|
};
|
|
3169
3458
|
};
|
|
3170
3459
|
readonly cplace_search_pages_fulltext: {
|
|
3171
|
-
readonly description: "
|
|
3460
|
+
readonly description: "Search for pages by text content in cplace. Optionally filter by type and workspace. Use this for simple keyword searches. For complex queries with structured filters, use cplace_search_pages instead.";
|
|
3172
3461
|
readonly inputSchema: {
|
|
3173
3462
|
readonly workspaceId: z.ZodOptional<z.ZodString>;
|
|
3174
3463
|
readonly fulltext: z.ZodString;
|
|
3464
|
+
readonly internalTypeName: z.ZodOptional<z.ZodString>;
|
|
3175
3465
|
readonly limit: z.ZodDefault<z.ZodNumber>;
|
|
3176
3466
|
readonly offset: z.ZodDefault<z.ZodNumber>;
|
|
3467
|
+
readonly responseFormat: z.ZodOptional<z.ZodEnum<["minimal", "count"]>>;
|
|
3177
3468
|
};
|
|
3178
3469
|
readonly annotations: {
|
|
3179
3470
|
readonly title: "Search Pages by Fulltext";
|