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