@cplace/mcp-server 1.4.1 → 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 +7 -24
- 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/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/searchSchema.d.ts
CHANGED
|
@@ -19,30 +19,35 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
19
19
|
attribute: z.ZodString;
|
|
20
20
|
string: z.ZodEffects<z.ZodObject<{
|
|
21
21
|
equals: z.ZodOptional<z.ZodString>;
|
|
22
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
22
23
|
contains: z.ZodOptional<z.ZodString>;
|
|
23
24
|
beginsWith: z.ZodOptional<z.ZodString>;
|
|
24
25
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
25
26
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
26
|
-
}, "
|
|
27
|
+
}, "strict", z.ZodTypeAny, {
|
|
27
28
|
equals?: string | undefined;
|
|
29
|
+
not_equals?: string | undefined;
|
|
28
30
|
contains?: string | undefined;
|
|
29
31
|
beginsWith?: string | undefined;
|
|
30
32
|
is_empty?: boolean | undefined;
|
|
31
33
|
is_not_empty?: boolean | undefined;
|
|
32
34
|
}, {
|
|
33
35
|
equals?: string | undefined;
|
|
36
|
+
not_equals?: string | undefined;
|
|
34
37
|
contains?: string | undefined;
|
|
35
38
|
beginsWith?: string | undefined;
|
|
36
39
|
is_empty?: boolean | undefined;
|
|
37
40
|
is_not_empty?: boolean | undefined;
|
|
38
41
|
}>, {
|
|
39
42
|
equals?: string | undefined;
|
|
43
|
+
not_equals?: string | undefined;
|
|
40
44
|
contains?: string | undefined;
|
|
41
45
|
beginsWith?: string | undefined;
|
|
42
46
|
is_empty?: boolean | undefined;
|
|
43
47
|
is_not_empty?: boolean | undefined;
|
|
44
48
|
}, {
|
|
45
49
|
equals?: string | undefined;
|
|
50
|
+
not_equals?: string | undefined;
|
|
46
51
|
contains?: string | undefined;
|
|
47
52
|
beginsWith?: string | undefined;
|
|
48
53
|
is_empty?: boolean | undefined;
|
|
@@ -51,6 +56,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
51
56
|
}, "strip", z.ZodTypeAny, {
|
|
52
57
|
string: {
|
|
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;
|
|
@@ -60,6 +66,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
60
66
|
}, {
|
|
61
67
|
string: {
|
|
62
68
|
equals?: string | undefined;
|
|
69
|
+
not_equals?: string | undefined;
|
|
63
70
|
contains?: string | undefined;
|
|
64
71
|
beginsWith?: string | undefined;
|
|
65
72
|
is_empty?: boolean | undefined;
|
|
@@ -70,45 +77,45 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
70
77
|
attribute: z.ZodString;
|
|
71
78
|
number: z.ZodEffects<z.ZodObject<{
|
|
72
79
|
equals: z.ZodOptional<z.ZodNumber>;
|
|
73
|
-
|
|
80
|
+
not_equals: z.ZodOptional<z.ZodNumber>;
|
|
74
81
|
greater_than: z.ZodOptional<z.ZodNumber>;
|
|
75
82
|
greater_than_or_equal_to: z.ZodOptional<z.ZodNumber>;
|
|
76
83
|
less_than: z.ZodOptional<z.ZodNumber>;
|
|
77
84
|
less_than_or_equal_to: z.ZodOptional<z.ZodNumber>;
|
|
78
85
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
79
86
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
80
|
-
}, "
|
|
87
|
+
}, "strict", z.ZodTypeAny, {
|
|
81
88
|
equals?: number | undefined;
|
|
89
|
+
not_equals?: number | undefined;
|
|
82
90
|
is_empty?: boolean | undefined;
|
|
83
91
|
is_not_empty?: boolean | undefined;
|
|
84
|
-
does_not_equal?: number | undefined;
|
|
85
92
|
greater_than?: number | undefined;
|
|
86
93
|
greater_than_or_equal_to?: number | undefined;
|
|
87
94
|
less_than?: number | undefined;
|
|
88
95
|
less_than_or_equal_to?: number | undefined;
|
|
89
96
|
}, {
|
|
90
97
|
equals?: number | undefined;
|
|
98
|
+
not_equals?: number | undefined;
|
|
91
99
|
is_empty?: boolean | undefined;
|
|
92
100
|
is_not_empty?: boolean | undefined;
|
|
93
|
-
does_not_equal?: number | undefined;
|
|
94
101
|
greater_than?: number | undefined;
|
|
95
102
|
greater_than_or_equal_to?: number | undefined;
|
|
96
103
|
less_than?: number | undefined;
|
|
97
104
|
less_than_or_equal_to?: number | undefined;
|
|
98
105
|
}>, {
|
|
99
106
|
equals?: number | undefined;
|
|
107
|
+
not_equals?: number | undefined;
|
|
100
108
|
is_empty?: boolean | undefined;
|
|
101
109
|
is_not_empty?: boolean | undefined;
|
|
102
|
-
does_not_equal?: number | undefined;
|
|
103
110
|
greater_than?: number | undefined;
|
|
104
111
|
greater_than_or_equal_to?: number | undefined;
|
|
105
112
|
less_than?: number | undefined;
|
|
106
113
|
less_than_or_equal_to?: number | undefined;
|
|
107
114
|
}, {
|
|
108
115
|
equals?: number | undefined;
|
|
116
|
+
not_equals?: number | undefined;
|
|
109
117
|
is_empty?: boolean | undefined;
|
|
110
118
|
is_not_empty?: boolean | undefined;
|
|
111
|
-
does_not_equal?: number | undefined;
|
|
112
119
|
greater_than?: number | undefined;
|
|
113
120
|
greater_than_or_equal_to?: number | undefined;
|
|
114
121
|
less_than?: number | undefined;
|
|
@@ -117,9 +124,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
117
124
|
}, "strip", z.ZodTypeAny, {
|
|
118
125
|
number: {
|
|
119
126
|
equals?: number | undefined;
|
|
127
|
+
not_equals?: number | undefined;
|
|
120
128
|
is_empty?: boolean | undefined;
|
|
121
129
|
is_not_empty?: boolean | undefined;
|
|
122
|
-
does_not_equal?: number | undefined;
|
|
123
130
|
greater_than?: number | undefined;
|
|
124
131
|
greater_than_or_equal_to?: number | undefined;
|
|
125
132
|
less_than?: number | undefined;
|
|
@@ -129,9 +136,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
129
136
|
}, {
|
|
130
137
|
number: {
|
|
131
138
|
equals?: number | undefined;
|
|
139
|
+
not_equals?: number | undefined;
|
|
132
140
|
is_empty?: boolean | undefined;
|
|
133
141
|
is_not_empty?: boolean | undefined;
|
|
134
|
-
does_not_equal?: number | undefined;
|
|
135
142
|
greater_than?: number | undefined;
|
|
136
143
|
greater_than_or_equal_to?: number | undefined;
|
|
137
144
|
less_than?: number | undefined;
|
|
@@ -140,16 +147,18 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
140
147
|
attribute: string;
|
|
141
148
|
}>, z.ZodObject<{
|
|
142
149
|
attribute: z.ZodString;
|
|
143
|
-
date: z.ZodObject<{
|
|
150
|
+
date: z.ZodEffects<z.ZodObject<{
|
|
144
151
|
after: z.ZodOptional<z.ZodString>;
|
|
145
152
|
before: z.ZodOptional<z.ZodString>;
|
|
146
153
|
equals: z.ZodOptional<z.ZodString>;
|
|
154
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
147
155
|
on_or_after: z.ZodOptional<z.ZodString>;
|
|
148
156
|
on_or_before: z.ZodOptional<z.ZodString>;
|
|
149
157
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
150
158
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
151
|
-
}, "
|
|
159
|
+
}, "strict", z.ZodTypeAny, {
|
|
152
160
|
equals?: string | undefined;
|
|
161
|
+
not_equals?: string | undefined;
|
|
153
162
|
is_empty?: boolean | undefined;
|
|
154
163
|
is_not_empty?: boolean | undefined;
|
|
155
164
|
after?: string | undefined;
|
|
@@ -158,6 +167,25 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
158
167
|
on_or_before?: string | undefined;
|
|
159
168
|
}, {
|
|
160
169
|
equals?: string | undefined;
|
|
170
|
+
not_equals?: string | undefined;
|
|
171
|
+
is_empty?: boolean | undefined;
|
|
172
|
+
is_not_empty?: boolean | undefined;
|
|
173
|
+
after?: string | undefined;
|
|
174
|
+
before?: string | undefined;
|
|
175
|
+
on_or_after?: string | undefined;
|
|
176
|
+
on_or_before?: string | undefined;
|
|
177
|
+
}>, {
|
|
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;
|
|
161
189
|
is_empty?: boolean | undefined;
|
|
162
190
|
is_not_empty?: boolean | undefined;
|
|
163
191
|
after?: string | undefined;
|
|
@@ -168,6 +196,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
168
196
|
}, "strip", z.ZodTypeAny, {
|
|
169
197
|
date: {
|
|
170
198
|
equals?: string | undefined;
|
|
199
|
+
not_equals?: string | undefined;
|
|
171
200
|
is_empty?: boolean | undefined;
|
|
172
201
|
is_not_empty?: boolean | undefined;
|
|
173
202
|
after?: string | undefined;
|
|
@@ -179,6 +208,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
179
208
|
}, {
|
|
180
209
|
date: {
|
|
181
210
|
equals?: string | undefined;
|
|
211
|
+
not_equals?: string | undefined;
|
|
182
212
|
is_empty?: boolean | undefined;
|
|
183
213
|
is_not_empty?: boolean | undefined;
|
|
184
214
|
after?: string | undefined;
|
|
@@ -191,28 +221,34 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
191
221
|
attribute: z.ZodString;
|
|
192
222
|
reference: z.ZodEffects<z.ZodObject<{
|
|
193
223
|
equals: z.ZodOptional<z.ZodString>;
|
|
224
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
194
225
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
195
226
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
196
|
-
}, "
|
|
227
|
+
}, "strict", z.ZodTypeAny, {
|
|
197
228
|
equals?: string | undefined;
|
|
229
|
+
not_equals?: string | undefined;
|
|
198
230
|
is_empty?: boolean | undefined;
|
|
199
231
|
is_not_empty?: boolean | undefined;
|
|
200
232
|
}, {
|
|
201
233
|
equals?: string | undefined;
|
|
234
|
+
not_equals?: string | undefined;
|
|
202
235
|
is_empty?: boolean | undefined;
|
|
203
236
|
is_not_empty?: boolean | undefined;
|
|
204
237
|
}>, {
|
|
205
238
|
equals?: string | undefined;
|
|
239
|
+
not_equals?: string | undefined;
|
|
206
240
|
is_empty?: boolean | undefined;
|
|
207
241
|
is_not_empty?: boolean | undefined;
|
|
208
242
|
}, {
|
|
209
243
|
equals?: string | undefined;
|
|
244
|
+
not_equals?: string | undefined;
|
|
210
245
|
is_empty?: boolean | undefined;
|
|
211
246
|
is_not_empty?: boolean | undefined;
|
|
212
247
|
}>;
|
|
213
248
|
}, "strip", z.ZodTypeAny, {
|
|
214
249
|
reference: {
|
|
215
250
|
equals?: string | undefined;
|
|
251
|
+
not_equals?: string | undefined;
|
|
216
252
|
is_empty?: boolean | undefined;
|
|
217
253
|
is_not_empty?: boolean | undefined;
|
|
218
254
|
};
|
|
@@ -220,27 +256,39 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
220
256
|
}, {
|
|
221
257
|
reference: {
|
|
222
258
|
equals?: string | undefined;
|
|
259
|
+
not_equals?: string | undefined;
|
|
223
260
|
is_empty?: boolean | undefined;
|
|
224
261
|
is_not_empty?: boolean | undefined;
|
|
225
262
|
};
|
|
226
263
|
attribute: string;
|
|
227
264
|
}>, z.ZodObject<{
|
|
228
265
|
attribute: z.ZodString;
|
|
229
|
-
boolean: z.ZodObject<{
|
|
230
|
-
equals: z.ZodBoolean
|
|
231
|
-
|
|
232
|
-
|
|
266
|
+
boolean: z.ZodEffects<z.ZodObject<{
|
|
267
|
+
equals: z.ZodOptional<z.ZodBoolean>;
|
|
268
|
+
not_equals: z.ZodOptional<z.ZodBoolean>;
|
|
269
|
+
}, "strict", z.ZodTypeAny, {
|
|
270
|
+
equals?: boolean | undefined;
|
|
271
|
+
not_equals?: boolean | undefined;
|
|
272
|
+
}, {
|
|
273
|
+
equals?: boolean | undefined;
|
|
274
|
+
not_equals?: boolean | undefined;
|
|
275
|
+
}>, {
|
|
276
|
+
equals?: boolean | undefined;
|
|
277
|
+
not_equals?: boolean | undefined;
|
|
233
278
|
}, {
|
|
234
|
-
equals
|
|
279
|
+
equals?: boolean | undefined;
|
|
280
|
+
not_equals?: boolean | undefined;
|
|
235
281
|
}>;
|
|
236
282
|
}, "strip", z.ZodTypeAny, {
|
|
237
283
|
boolean: {
|
|
238
|
-
equals
|
|
284
|
+
equals?: boolean | undefined;
|
|
285
|
+
not_equals?: boolean | undefined;
|
|
239
286
|
};
|
|
240
287
|
attribute: string;
|
|
241
288
|
}, {
|
|
242
289
|
boolean: {
|
|
243
|
-
equals
|
|
290
|
+
equals?: boolean | undefined;
|
|
291
|
+
not_equals?: boolean | undefined;
|
|
244
292
|
};
|
|
245
293
|
attribute: string;
|
|
246
294
|
}>, z.ZodObject<{
|
|
@@ -432,30 +480,35 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
432
480
|
attribute: z.ZodString;
|
|
433
481
|
string: z.ZodEffects<z.ZodObject<{
|
|
434
482
|
equals: z.ZodOptional<z.ZodString>;
|
|
483
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
435
484
|
contains: z.ZodOptional<z.ZodString>;
|
|
436
485
|
beginsWith: z.ZodOptional<z.ZodString>;
|
|
437
486
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
438
487
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
439
|
-
}, "
|
|
488
|
+
}, "strict", z.ZodTypeAny, {
|
|
440
489
|
equals?: string | undefined;
|
|
490
|
+
not_equals?: string | undefined;
|
|
441
491
|
contains?: string | undefined;
|
|
442
492
|
beginsWith?: string | undefined;
|
|
443
493
|
is_empty?: boolean | undefined;
|
|
444
494
|
is_not_empty?: boolean | undefined;
|
|
445
495
|
}, {
|
|
446
496
|
equals?: string | undefined;
|
|
497
|
+
not_equals?: string | undefined;
|
|
447
498
|
contains?: string | undefined;
|
|
448
499
|
beginsWith?: string | undefined;
|
|
449
500
|
is_empty?: boolean | undefined;
|
|
450
501
|
is_not_empty?: boolean | undefined;
|
|
451
502
|
}>, {
|
|
452
503
|
equals?: string | undefined;
|
|
504
|
+
not_equals?: string | undefined;
|
|
453
505
|
contains?: string | undefined;
|
|
454
506
|
beginsWith?: string | undefined;
|
|
455
507
|
is_empty?: boolean | undefined;
|
|
456
508
|
is_not_empty?: boolean | undefined;
|
|
457
509
|
}, {
|
|
458
510
|
equals?: string | undefined;
|
|
511
|
+
not_equals?: string | undefined;
|
|
459
512
|
contains?: string | undefined;
|
|
460
513
|
beginsWith?: string | undefined;
|
|
461
514
|
is_empty?: boolean | undefined;
|
|
@@ -464,6 +517,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
464
517
|
}, "strip", z.ZodTypeAny, {
|
|
465
518
|
string: {
|
|
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;
|
|
@@ -473,6 +527,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
473
527
|
}, {
|
|
474
528
|
string: {
|
|
475
529
|
equals?: string | undefined;
|
|
530
|
+
not_equals?: string | undefined;
|
|
476
531
|
contains?: string | undefined;
|
|
477
532
|
beginsWith?: string | undefined;
|
|
478
533
|
is_empty?: boolean | undefined;
|
|
@@ -483,45 +538,45 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
483
538
|
attribute: z.ZodString;
|
|
484
539
|
number: z.ZodEffects<z.ZodObject<{
|
|
485
540
|
equals: z.ZodOptional<z.ZodNumber>;
|
|
486
|
-
|
|
541
|
+
not_equals: z.ZodOptional<z.ZodNumber>;
|
|
487
542
|
greater_than: z.ZodOptional<z.ZodNumber>;
|
|
488
543
|
greater_than_or_equal_to: z.ZodOptional<z.ZodNumber>;
|
|
489
544
|
less_than: z.ZodOptional<z.ZodNumber>;
|
|
490
545
|
less_than_or_equal_to: z.ZodOptional<z.ZodNumber>;
|
|
491
546
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
492
547
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
493
|
-
}, "
|
|
548
|
+
}, "strict", z.ZodTypeAny, {
|
|
494
549
|
equals?: number | undefined;
|
|
550
|
+
not_equals?: number | undefined;
|
|
495
551
|
is_empty?: boolean | undefined;
|
|
496
552
|
is_not_empty?: boolean | undefined;
|
|
497
|
-
does_not_equal?: number | undefined;
|
|
498
553
|
greater_than?: number | undefined;
|
|
499
554
|
greater_than_or_equal_to?: number | undefined;
|
|
500
555
|
less_than?: number | undefined;
|
|
501
556
|
less_than_or_equal_to?: number | undefined;
|
|
502
557
|
}, {
|
|
503
558
|
equals?: number | undefined;
|
|
559
|
+
not_equals?: number | undefined;
|
|
504
560
|
is_empty?: boolean | undefined;
|
|
505
561
|
is_not_empty?: boolean | undefined;
|
|
506
|
-
does_not_equal?: number | undefined;
|
|
507
562
|
greater_than?: number | undefined;
|
|
508
563
|
greater_than_or_equal_to?: number | undefined;
|
|
509
564
|
less_than?: number | undefined;
|
|
510
565
|
less_than_or_equal_to?: number | undefined;
|
|
511
566
|
}>, {
|
|
512
567
|
equals?: number | undefined;
|
|
568
|
+
not_equals?: number | undefined;
|
|
513
569
|
is_empty?: boolean | undefined;
|
|
514
570
|
is_not_empty?: boolean | undefined;
|
|
515
|
-
does_not_equal?: number | undefined;
|
|
516
571
|
greater_than?: number | undefined;
|
|
517
572
|
greater_than_or_equal_to?: number | undefined;
|
|
518
573
|
less_than?: number | undefined;
|
|
519
574
|
less_than_or_equal_to?: number | undefined;
|
|
520
575
|
}, {
|
|
521
576
|
equals?: number | undefined;
|
|
577
|
+
not_equals?: number | undefined;
|
|
522
578
|
is_empty?: boolean | undefined;
|
|
523
579
|
is_not_empty?: boolean | undefined;
|
|
524
|
-
does_not_equal?: number | undefined;
|
|
525
580
|
greater_than?: number | undefined;
|
|
526
581
|
greater_than_or_equal_to?: number | undefined;
|
|
527
582
|
less_than?: number | undefined;
|
|
@@ -530,9 +585,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
530
585
|
}, "strip", z.ZodTypeAny, {
|
|
531
586
|
number: {
|
|
532
587
|
equals?: number | undefined;
|
|
588
|
+
not_equals?: number | undefined;
|
|
533
589
|
is_empty?: boolean | undefined;
|
|
534
590
|
is_not_empty?: boolean | undefined;
|
|
535
|
-
does_not_equal?: number | undefined;
|
|
536
591
|
greater_than?: number | undefined;
|
|
537
592
|
greater_than_or_equal_to?: number | undefined;
|
|
538
593
|
less_than?: number | undefined;
|
|
@@ -542,9 +597,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
542
597
|
}, {
|
|
543
598
|
number: {
|
|
544
599
|
equals?: number | undefined;
|
|
600
|
+
not_equals?: number | undefined;
|
|
545
601
|
is_empty?: boolean | undefined;
|
|
546
602
|
is_not_empty?: boolean | undefined;
|
|
547
|
-
does_not_equal?: number | undefined;
|
|
548
603
|
greater_than?: number | undefined;
|
|
549
604
|
greater_than_or_equal_to?: number | undefined;
|
|
550
605
|
less_than?: number | undefined;
|
|
@@ -553,16 +608,36 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
553
608
|
attribute: string;
|
|
554
609
|
}>, z.ZodObject<{
|
|
555
610
|
attribute: z.ZodString;
|
|
556
|
-
date: z.ZodObject<{
|
|
611
|
+
date: z.ZodEffects<z.ZodObject<{
|
|
557
612
|
after: z.ZodOptional<z.ZodString>;
|
|
558
613
|
before: z.ZodOptional<z.ZodString>;
|
|
559
614
|
equals: z.ZodOptional<z.ZodString>;
|
|
615
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
560
616
|
on_or_after: z.ZodOptional<z.ZodString>;
|
|
561
617
|
on_or_before: z.ZodOptional<z.ZodString>;
|
|
562
618
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
563
619
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
564
|
-
}, "
|
|
620
|
+
}, "strict", z.ZodTypeAny, {
|
|
621
|
+
equals?: string | undefined;
|
|
622
|
+
not_equals?: string | undefined;
|
|
623
|
+
is_empty?: boolean | undefined;
|
|
624
|
+
is_not_empty?: boolean | undefined;
|
|
625
|
+
after?: string | undefined;
|
|
626
|
+
before?: string | undefined;
|
|
627
|
+
on_or_after?: string | undefined;
|
|
628
|
+
on_or_before?: string | undefined;
|
|
629
|
+
}, {
|
|
565
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
|
+
}>, {
|
|
639
|
+
equals?: string | undefined;
|
|
640
|
+
not_equals?: string | undefined;
|
|
566
641
|
is_empty?: boolean | undefined;
|
|
567
642
|
is_not_empty?: boolean | undefined;
|
|
568
643
|
after?: string | undefined;
|
|
@@ -571,6 +646,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
571
646
|
on_or_before?: string | undefined;
|
|
572
647
|
}, {
|
|
573
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;
|
|
@@ -581,6 +657,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
581
657
|
}, "strip", z.ZodTypeAny, {
|
|
582
658
|
date: {
|
|
583
659
|
equals?: string | undefined;
|
|
660
|
+
not_equals?: string | undefined;
|
|
584
661
|
is_empty?: boolean | undefined;
|
|
585
662
|
is_not_empty?: boolean | undefined;
|
|
586
663
|
after?: string | undefined;
|
|
@@ -592,6 +669,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
592
669
|
}, {
|
|
593
670
|
date: {
|
|
594
671
|
equals?: string | undefined;
|
|
672
|
+
not_equals?: string | undefined;
|
|
595
673
|
is_empty?: boolean | undefined;
|
|
596
674
|
is_not_empty?: boolean | undefined;
|
|
597
675
|
after?: string | undefined;
|
|
@@ -604,28 +682,34 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
604
682
|
attribute: z.ZodString;
|
|
605
683
|
reference: z.ZodEffects<z.ZodObject<{
|
|
606
684
|
equals: z.ZodOptional<z.ZodString>;
|
|
685
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
607
686
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
608
687
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
609
|
-
}, "
|
|
688
|
+
}, "strict", z.ZodTypeAny, {
|
|
610
689
|
equals?: string | undefined;
|
|
690
|
+
not_equals?: string | undefined;
|
|
611
691
|
is_empty?: boolean | undefined;
|
|
612
692
|
is_not_empty?: boolean | undefined;
|
|
613
693
|
}, {
|
|
614
694
|
equals?: string | undefined;
|
|
695
|
+
not_equals?: string | undefined;
|
|
615
696
|
is_empty?: boolean | undefined;
|
|
616
697
|
is_not_empty?: boolean | undefined;
|
|
617
698
|
}>, {
|
|
618
699
|
equals?: string | undefined;
|
|
700
|
+
not_equals?: string | undefined;
|
|
619
701
|
is_empty?: boolean | undefined;
|
|
620
702
|
is_not_empty?: boolean | undefined;
|
|
621
703
|
}, {
|
|
622
704
|
equals?: string | undefined;
|
|
705
|
+
not_equals?: string | undefined;
|
|
623
706
|
is_empty?: boolean | undefined;
|
|
624
707
|
is_not_empty?: boolean | undefined;
|
|
625
708
|
}>;
|
|
626
709
|
}, "strip", z.ZodTypeAny, {
|
|
627
710
|
reference: {
|
|
628
711
|
equals?: string | undefined;
|
|
712
|
+
not_equals?: string | undefined;
|
|
629
713
|
is_empty?: boolean | undefined;
|
|
630
714
|
is_not_empty?: boolean | undefined;
|
|
631
715
|
};
|
|
@@ -633,27 +717,39 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
633
717
|
}, {
|
|
634
718
|
reference: {
|
|
635
719
|
equals?: string | undefined;
|
|
720
|
+
not_equals?: string | undefined;
|
|
636
721
|
is_empty?: boolean | undefined;
|
|
637
722
|
is_not_empty?: boolean | undefined;
|
|
638
723
|
};
|
|
639
724
|
attribute: string;
|
|
640
725
|
}>, z.ZodObject<{
|
|
641
726
|
attribute: z.ZodString;
|
|
642
|
-
boolean: z.ZodObject<{
|
|
643
|
-
equals: z.ZodBoolean
|
|
644
|
-
|
|
645
|
-
|
|
727
|
+
boolean: z.ZodEffects<z.ZodObject<{
|
|
728
|
+
equals: z.ZodOptional<z.ZodBoolean>;
|
|
729
|
+
not_equals: z.ZodOptional<z.ZodBoolean>;
|
|
730
|
+
}, "strict", z.ZodTypeAny, {
|
|
731
|
+
equals?: boolean | undefined;
|
|
732
|
+
not_equals?: boolean | undefined;
|
|
646
733
|
}, {
|
|
647
|
-
equals
|
|
734
|
+
equals?: boolean | undefined;
|
|
735
|
+
not_equals?: boolean | undefined;
|
|
736
|
+
}>, {
|
|
737
|
+
equals?: boolean | undefined;
|
|
738
|
+
not_equals?: boolean | undefined;
|
|
739
|
+
}, {
|
|
740
|
+
equals?: boolean | undefined;
|
|
741
|
+
not_equals?: boolean | undefined;
|
|
648
742
|
}>;
|
|
649
743
|
}, "strip", z.ZodTypeAny, {
|
|
650
744
|
boolean: {
|
|
651
|
-
equals
|
|
745
|
+
equals?: boolean | undefined;
|
|
746
|
+
not_equals?: boolean | undefined;
|
|
652
747
|
};
|
|
653
748
|
attribute: string;
|
|
654
749
|
}, {
|
|
655
750
|
boolean: {
|
|
656
|
-
equals
|
|
751
|
+
equals?: boolean | undefined;
|
|
752
|
+
not_equals?: boolean | undefined;
|
|
657
753
|
};
|
|
658
754
|
attribute: string;
|
|
659
755
|
}>, z.ZodObject<{
|
|
@@ -845,30 +941,35 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
845
941
|
attribute: z.ZodString;
|
|
846
942
|
string: z.ZodEffects<z.ZodObject<{
|
|
847
943
|
equals: z.ZodOptional<z.ZodString>;
|
|
944
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
848
945
|
contains: z.ZodOptional<z.ZodString>;
|
|
849
946
|
beginsWith: z.ZodOptional<z.ZodString>;
|
|
850
947
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
851
948
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
852
|
-
}, "
|
|
949
|
+
}, "strict", z.ZodTypeAny, {
|
|
853
950
|
equals?: string | undefined;
|
|
951
|
+
not_equals?: string | undefined;
|
|
854
952
|
contains?: string | undefined;
|
|
855
953
|
beginsWith?: string | undefined;
|
|
856
954
|
is_empty?: boolean | undefined;
|
|
857
955
|
is_not_empty?: boolean | undefined;
|
|
858
956
|
}, {
|
|
859
957
|
equals?: string | undefined;
|
|
958
|
+
not_equals?: string | undefined;
|
|
860
959
|
contains?: string | undefined;
|
|
861
960
|
beginsWith?: string | undefined;
|
|
862
961
|
is_empty?: boolean | undefined;
|
|
863
962
|
is_not_empty?: boolean | undefined;
|
|
864
963
|
}>, {
|
|
865
964
|
equals?: string | undefined;
|
|
965
|
+
not_equals?: string | undefined;
|
|
866
966
|
contains?: string | undefined;
|
|
867
967
|
beginsWith?: string | undefined;
|
|
868
968
|
is_empty?: boolean | undefined;
|
|
869
969
|
is_not_empty?: boolean | undefined;
|
|
870
970
|
}, {
|
|
871
971
|
equals?: string | undefined;
|
|
972
|
+
not_equals?: string | undefined;
|
|
872
973
|
contains?: string | undefined;
|
|
873
974
|
beginsWith?: string | undefined;
|
|
874
975
|
is_empty?: boolean | undefined;
|
|
@@ -877,6 +978,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
877
978
|
}, "strip", z.ZodTypeAny, {
|
|
878
979
|
string: {
|
|
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;
|
|
@@ -886,6 +988,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
886
988
|
}, {
|
|
887
989
|
string: {
|
|
888
990
|
equals?: string | undefined;
|
|
991
|
+
not_equals?: string | undefined;
|
|
889
992
|
contains?: string | undefined;
|
|
890
993
|
beginsWith?: string | undefined;
|
|
891
994
|
is_empty?: boolean | undefined;
|
|
@@ -896,45 +999,45 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
896
999
|
attribute: z.ZodString;
|
|
897
1000
|
number: z.ZodEffects<z.ZodObject<{
|
|
898
1001
|
equals: z.ZodOptional<z.ZodNumber>;
|
|
899
|
-
|
|
1002
|
+
not_equals: z.ZodOptional<z.ZodNumber>;
|
|
900
1003
|
greater_than: z.ZodOptional<z.ZodNumber>;
|
|
901
1004
|
greater_than_or_equal_to: z.ZodOptional<z.ZodNumber>;
|
|
902
1005
|
less_than: z.ZodOptional<z.ZodNumber>;
|
|
903
1006
|
less_than_or_equal_to: z.ZodOptional<z.ZodNumber>;
|
|
904
1007
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
905
1008
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
906
|
-
}, "
|
|
1009
|
+
}, "strict", z.ZodTypeAny, {
|
|
907
1010
|
equals?: number | undefined;
|
|
1011
|
+
not_equals?: number | undefined;
|
|
908
1012
|
is_empty?: boolean | undefined;
|
|
909
1013
|
is_not_empty?: boolean | undefined;
|
|
910
|
-
does_not_equal?: number | undefined;
|
|
911
1014
|
greater_than?: number | undefined;
|
|
912
1015
|
greater_than_or_equal_to?: number | undefined;
|
|
913
1016
|
less_than?: number | undefined;
|
|
914
1017
|
less_than_or_equal_to?: number | undefined;
|
|
915
1018
|
}, {
|
|
916
1019
|
equals?: number | undefined;
|
|
1020
|
+
not_equals?: number | undefined;
|
|
917
1021
|
is_empty?: boolean | undefined;
|
|
918
1022
|
is_not_empty?: boolean | undefined;
|
|
919
|
-
does_not_equal?: number | undefined;
|
|
920
1023
|
greater_than?: number | undefined;
|
|
921
1024
|
greater_than_or_equal_to?: number | undefined;
|
|
922
1025
|
less_than?: number | undefined;
|
|
923
1026
|
less_than_or_equal_to?: number | undefined;
|
|
924
1027
|
}>, {
|
|
925
1028
|
equals?: number | undefined;
|
|
1029
|
+
not_equals?: number | undefined;
|
|
926
1030
|
is_empty?: boolean | undefined;
|
|
927
1031
|
is_not_empty?: boolean | undefined;
|
|
928
|
-
does_not_equal?: number | undefined;
|
|
929
1032
|
greater_than?: number | undefined;
|
|
930
1033
|
greater_than_or_equal_to?: number | undefined;
|
|
931
1034
|
less_than?: number | undefined;
|
|
932
1035
|
less_than_or_equal_to?: number | undefined;
|
|
933
1036
|
}, {
|
|
934
1037
|
equals?: number | undefined;
|
|
1038
|
+
not_equals?: number | undefined;
|
|
935
1039
|
is_empty?: boolean | undefined;
|
|
936
1040
|
is_not_empty?: boolean | undefined;
|
|
937
|
-
does_not_equal?: number | undefined;
|
|
938
1041
|
greater_than?: number | undefined;
|
|
939
1042
|
greater_than_or_equal_to?: number | undefined;
|
|
940
1043
|
less_than?: number | undefined;
|
|
@@ -943,9 +1046,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
943
1046
|
}, "strip", z.ZodTypeAny, {
|
|
944
1047
|
number: {
|
|
945
1048
|
equals?: number | undefined;
|
|
1049
|
+
not_equals?: number | undefined;
|
|
946
1050
|
is_empty?: boolean | undefined;
|
|
947
1051
|
is_not_empty?: boolean | undefined;
|
|
948
|
-
does_not_equal?: number | undefined;
|
|
949
1052
|
greater_than?: number | undefined;
|
|
950
1053
|
greater_than_or_equal_to?: number | undefined;
|
|
951
1054
|
less_than?: number | undefined;
|
|
@@ -955,9 +1058,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
955
1058
|
}, {
|
|
956
1059
|
number: {
|
|
957
1060
|
equals?: number | undefined;
|
|
1061
|
+
not_equals?: number | undefined;
|
|
958
1062
|
is_empty?: boolean | undefined;
|
|
959
1063
|
is_not_empty?: boolean | undefined;
|
|
960
|
-
does_not_equal?: number | undefined;
|
|
961
1064
|
greater_than?: number | undefined;
|
|
962
1065
|
greater_than_or_equal_to?: number | undefined;
|
|
963
1066
|
less_than?: number | undefined;
|
|
@@ -966,16 +1069,18 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
966
1069
|
attribute: string;
|
|
967
1070
|
}>, z.ZodObject<{
|
|
968
1071
|
attribute: z.ZodString;
|
|
969
|
-
date: z.ZodObject<{
|
|
1072
|
+
date: z.ZodEffects<z.ZodObject<{
|
|
970
1073
|
after: z.ZodOptional<z.ZodString>;
|
|
971
1074
|
before: z.ZodOptional<z.ZodString>;
|
|
972
1075
|
equals: z.ZodOptional<z.ZodString>;
|
|
1076
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
973
1077
|
on_or_after: z.ZodOptional<z.ZodString>;
|
|
974
1078
|
on_or_before: z.ZodOptional<z.ZodString>;
|
|
975
1079
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
976
1080
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
977
|
-
}, "
|
|
1081
|
+
}, "strict", z.ZodTypeAny, {
|
|
978
1082
|
equals?: string | undefined;
|
|
1083
|
+
not_equals?: string | undefined;
|
|
979
1084
|
is_empty?: boolean | undefined;
|
|
980
1085
|
is_not_empty?: boolean | undefined;
|
|
981
1086
|
after?: string | undefined;
|
|
@@ -984,6 +1089,25 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
984
1089
|
on_or_before?: string | undefined;
|
|
985
1090
|
}, {
|
|
986
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
|
+
}, {
|
|
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;
|
|
@@ -994,6 +1118,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
994
1118
|
}, "strip", z.ZodTypeAny, {
|
|
995
1119
|
date: {
|
|
996
1120
|
equals?: string | undefined;
|
|
1121
|
+
not_equals?: string | undefined;
|
|
997
1122
|
is_empty?: boolean | undefined;
|
|
998
1123
|
is_not_empty?: boolean | undefined;
|
|
999
1124
|
after?: string | undefined;
|
|
@@ -1005,6 +1130,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1005
1130
|
}, {
|
|
1006
1131
|
date: {
|
|
1007
1132
|
equals?: string | undefined;
|
|
1133
|
+
not_equals?: string | undefined;
|
|
1008
1134
|
is_empty?: boolean | undefined;
|
|
1009
1135
|
is_not_empty?: boolean | undefined;
|
|
1010
1136
|
after?: string | undefined;
|
|
@@ -1017,28 +1143,34 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1017
1143
|
attribute: z.ZodString;
|
|
1018
1144
|
reference: z.ZodEffects<z.ZodObject<{
|
|
1019
1145
|
equals: z.ZodOptional<z.ZodString>;
|
|
1146
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
1020
1147
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1021
1148
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1022
|
-
}, "
|
|
1149
|
+
}, "strict", z.ZodTypeAny, {
|
|
1023
1150
|
equals?: string | undefined;
|
|
1151
|
+
not_equals?: string | undefined;
|
|
1024
1152
|
is_empty?: boolean | undefined;
|
|
1025
1153
|
is_not_empty?: boolean | undefined;
|
|
1026
1154
|
}, {
|
|
1027
1155
|
equals?: string | undefined;
|
|
1156
|
+
not_equals?: string | undefined;
|
|
1028
1157
|
is_empty?: boolean | undefined;
|
|
1029
1158
|
is_not_empty?: boolean | undefined;
|
|
1030
1159
|
}>, {
|
|
1031
1160
|
equals?: string | undefined;
|
|
1161
|
+
not_equals?: string | undefined;
|
|
1032
1162
|
is_empty?: boolean | undefined;
|
|
1033
1163
|
is_not_empty?: boolean | undefined;
|
|
1034
1164
|
}, {
|
|
1035
1165
|
equals?: string | undefined;
|
|
1166
|
+
not_equals?: string | undefined;
|
|
1036
1167
|
is_empty?: boolean | undefined;
|
|
1037
1168
|
is_not_empty?: boolean | undefined;
|
|
1038
1169
|
}>;
|
|
1039
1170
|
}, "strip", z.ZodTypeAny, {
|
|
1040
1171
|
reference: {
|
|
1041
1172
|
equals?: string | undefined;
|
|
1173
|
+
not_equals?: string | undefined;
|
|
1042
1174
|
is_empty?: boolean | undefined;
|
|
1043
1175
|
is_not_empty?: boolean | undefined;
|
|
1044
1176
|
};
|
|
@@ -1046,27 +1178,39 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1046
1178
|
}, {
|
|
1047
1179
|
reference: {
|
|
1048
1180
|
equals?: string | undefined;
|
|
1181
|
+
not_equals?: string | undefined;
|
|
1049
1182
|
is_empty?: boolean | undefined;
|
|
1050
1183
|
is_not_empty?: boolean | undefined;
|
|
1051
1184
|
};
|
|
1052
1185
|
attribute: string;
|
|
1053
1186
|
}>, z.ZodObject<{
|
|
1054
1187
|
attribute: z.ZodString;
|
|
1055
|
-
boolean: z.ZodObject<{
|
|
1056
|
-
equals: z.ZodBoolean
|
|
1057
|
-
|
|
1058
|
-
|
|
1188
|
+
boolean: z.ZodEffects<z.ZodObject<{
|
|
1189
|
+
equals: z.ZodOptional<z.ZodBoolean>;
|
|
1190
|
+
not_equals: z.ZodOptional<z.ZodBoolean>;
|
|
1191
|
+
}, "strict", z.ZodTypeAny, {
|
|
1192
|
+
equals?: boolean | undefined;
|
|
1193
|
+
not_equals?: boolean | undefined;
|
|
1194
|
+
}, {
|
|
1195
|
+
equals?: boolean | undefined;
|
|
1196
|
+
not_equals?: boolean | undefined;
|
|
1197
|
+
}>, {
|
|
1198
|
+
equals?: boolean | undefined;
|
|
1199
|
+
not_equals?: boolean | undefined;
|
|
1059
1200
|
}, {
|
|
1060
|
-
equals
|
|
1201
|
+
equals?: boolean | undefined;
|
|
1202
|
+
not_equals?: boolean | undefined;
|
|
1061
1203
|
}>;
|
|
1062
1204
|
}, "strip", z.ZodTypeAny, {
|
|
1063
1205
|
boolean: {
|
|
1064
|
-
equals
|
|
1206
|
+
equals?: boolean | undefined;
|
|
1207
|
+
not_equals?: boolean | undefined;
|
|
1065
1208
|
};
|
|
1066
1209
|
attribute: string;
|
|
1067
1210
|
}, {
|
|
1068
1211
|
boolean: {
|
|
1069
|
-
equals
|
|
1212
|
+
equals?: boolean | undefined;
|
|
1213
|
+
not_equals?: boolean | undefined;
|
|
1070
1214
|
};
|
|
1071
1215
|
attribute: string;
|
|
1072
1216
|
}>, z.ZodObject<{
|
|
@@ -1282,6 +1426,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1282
1426
|
} | {
|
|
1283
1427
|
string: {
|
|
1284
1428
|
equals?: string | undefined;
|
|
1429
|
+
not_equals?: string | undefined;
|
|
1285
1430
|
contains?: string | undefined;
|
|
1286
1431
|
beginsWith?: string | undefined;
|
|
1287
1432
|
is_empty?: boolean | undefined;
|
|
@@ -1295,9 +1440,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1295
1440
|
} | {
|
|
1296
1441
|
number: {
|
|
1297
1442
|
equals?: number | undefined;
|
|
1443
|
+
not_equals?: number | undefined;
|
|
1298
1444
|
is_empty?: boolean | undefined;
|
|
1299
1445
|
is_not_empty?: boolean | undefined;
|
|
1300
|
-
does_not_equal?: number | undefined;
|
|
1301
1446
|
greater_than?: number | undefined;
|
|
1302
1447
|
greater_than_or_equal_to?: number | undefined;
|
|
1303
1448
|
less_than?: number | undefined;
|
|
@@ -1307,6 +1452,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1307
1452
|
} | {
|
|
1308
1453
|
date: {
|
|
1309
1454
|
equals?: string | undefined;
|
|
1455
|
+
not_equals?: string | undefined;
|
|
1310
1456
|
is_empty?: boolean | undefined;
|
|
1311
1457
|
is_not_empty?: boolean | undefined;
|
|
1312
1458
|
after?: string | undefined;
|
|
@@ -1318,13 +1464,15 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1318
1464
|
} | {
|
|
1319
1465
|
reference: {
|
|
1320
1466
|
equals?: string | undefined;
|
|
1467
|
+
not_equals?: string | undefined;
|
|
1321
1468
|
is_empty?: boolean | undefined;
|
|
1322
1469
|
is_not_empty?: boolean | undefined;
|
|
1323
1470
|
};
|
|
1324
1471
|
attribute: string;
|
|
1325
1472
|
} | {
|
|
1326
1473
|
boolean: {
|
|
1327
|
-
equals
|
|
1474
|
+
equals?: boolean | undefined;
|
|
1475
|
+
not_equals?: boolean | undefined;
|
|
1328
1476
|
};
|
|
1329
1477
|
attribute: string;
|
|
1330
1478
|
})[];
|
|
@@ -1372,6 +1520,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1372
1520
|
} | {
|
|
1373
1521
|
string: {
|
|
1374
1522
|
equals?: string | undefined;
|
|
1523
|
+
not_equals?: string | undefined;
|
|
1375
1524
|
contains?: string | undefined;
|
|
1376
1525
|
beginsWith?: string | undefined;
|
|
1377
1526
|
is_empty?: boolean | undefined;
|
|
@@ -1385,9 +1534,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1385
1534
|
} | {
|
|
1386
1535
|
number: {
|
|
1387
1536
|
equals?: number | undefined;
|
|
1537
|
+
not_equals?: number | undefined;
|
|
1388
1538
|
is_empty?: boolean | undefined;
|
|
1389
1539
|
is_not_empty?: boolean | undefined;
|
|
1390
|
-
does_not_equal?: number | undefined;
|
|
1391
1540
|
greater_than?: number | undefined;
|
|
1392
1541
|
greater_than_or_equal_to?: number | undefined;
|
|
1393
1542
|
less_than?: number | undefined;
|
|
@@ -1397,6 +1546,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1397
1546
|
} | {
|
|
1398
1547
|
date: {
|
|
1399
1548
|
equals?: string | undefined;
|
|
1549
|
+
not_equals?: string | undefined;
|
|
1400
1550
|
is_empty?: boolean | undefined;
|
|
1401
1551
|
is_not_empty?: boolean | undefined;
|
|
1402
1552
|
after?: string | undefined;
|
|
@@ -1408,13 +1558,15 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1408
1558
|
} | {
|
|
1409
1559
|
reference: {
|
|
1410
1560
|
equals?: string | undefined;
|
|
1561
|
+
not_equals?: string | undefined;
|
|
1411
1562
|
is_empty?: boolean | undefined;
|
|
1412
1563
|
is_not_empty?: boolean | undefined;
|
|
1413
1564
|
};
|
|
1414
1565
|
attribute: string;
|
|
1415
1566
|
} | {
|
|
1416
1567
|
boolean: {
|
|
1417
|
-
equals
|
|
1568
|
+
equals?: boolean | undefined;
|
|
1569
|
+
not_equals?: boolean | undefined;
|
|
1418
1570
|
};
|
|
1419
1571
|
attribute: string;
|
|
1420
1572
|
})[];
|
|
@@ -1463,6 +1615,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1463
1615
|
} | {
|
|
1464
1616
|
string: {
|
|
1465
1617
|
equals?: string | undefined;
|
|
1618
|
+
not_equals?: string | undefined;
|
|
1466
1619
|
contains?: string | undefined;
|
|
1467
1620
|
beginsWith?: string | undefined;
|
|
1468
1621
|
is_empty?: boolean | undefined;
|
|
@@ -1476,9 +1629,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1476
1629
|
} | {
|
|
1477
1630
|
number: {
|
|
1478
1631
|
equals?: number | undefined;
|
|
1632
|
+
not_equals?: number | undefined;
|
|
1479
1633
|
is_empty?: boolean | undefined;
|
|
1480
1634
|
is_not_empty?: boolean | undefined;
|
|
1481
|
-
does_not_equal?: number | undefined;
|
|
1482
1635
|
greater_than?: number | undefined;
|
|
1483
1636
|
greater_than_or_equal_to?: number | undefined;
|
|
1484
1637
|
less_than?: number | undefined;
|
|
@@ -1488,6 +1641,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1488
1641
|
} | {
|
|
1489
1642
|
date: {
|
|
1490
1643
|
equals?: string | undefined;
|
|
1644
|
+
not_equals?: string | undefined;
|
|
1491
1645
|
is_empty?: boolean | undefined;
|
|
1492
1646
|
is_not_empty?: boolean | undefined;
|
|
1493
1647
|
after?: string | undefined;
|
|
@@ -1499,13 +1653,15 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1499
1653
|
} | {
|
|
1500
1654
|
reference: {
|
|
1501
1655
|
equals?: string | undefined;
|
|
1656
|
+
not_equals?: string | undefined;
|
|
1502
1657
|
is_empty?: boolean | undefined;
|
|
1503
1658
|
is_not_empty?: boolean | undefined;
|
|
1504
1659
|
};
|
|
1505
1660
|
attribute: string;
|
|
1506
1661
|
} | {
|
|
1507
1662
|
boolean: {
|
|
1508
|
-
equals
|
|
1663
|
+
equals?: boolean | undefined;
|
|
1664
|
+
not_equals?: boolean | undefined;
|
|
1509
1665
|
};
|
|
1510
1666
|
attribute: string;
|
|
1511
1667
|
} | {
|
|
@@ -1552,6 +1708,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1552
1708
|
} | {
|
|
1553
1709
|
string: {
|
|
1554
1710
|
equals?: string | undefined;
|
|
1711
|
+
not_equals?: string | undefined;
|
|
1555
1712
|
contains?: string | undefined;
|
|
1556
1713
|
beginsWith?: string | undefined;
|
|
1557
1714
|
is_empty?: boolean | undefined;
|
|
@@ -1565,9 +1722,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1565
1722
|
} | {
|
|
1566
1723
|
number: {
|
|
1567
1724
|
equals?: number | undefined;
|
|
1725
|
+
not_equals?: number | undefined;
|
|
1568
1726
|
is_empty?: boolean | undefined;
|
|
1569
1727
|
is_not_empty?: boolean | undefined;
|
|
1570
|
-
does_not_equal?: number | undefined;
|
|
1571
1728
|
greater_than?: number | undefined;
|
|
1572
1729
|
greater_than_or_equal_to?: number | undefined;
|
|
1573
1730
|
less_than?: number | undefined;
|
|
@@ -1577,6 +1734,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1577
1734
|
} | {
|
|
1578
1735
|
date: {
|
|
1579
1736
|
equals?: string | undefined;
|
|
1737
|
+
not_equals?: string | undefined;
|
|
1580
1738
|
is_empty?: boolean | undefined;
|
|
1581
1739
|
is_not_empty?: boolean | undefined;
|
|
1582
1740
|
after?: string | undefined;
|
|
@@ -1588,13 +1746,15 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1588
1746
|
} | {
|
|
1589
1747
|
reference: {
|
|
1590
1748
|
equals?: string | undefined;
|
|
1749
|
+
not_equals?: string | undefined;
|
|
1591
1750
|
is_empty?: boolean | undefined;
|
|
1592
1751
|
is_not_empty?: boolean | undefined;
|
|
1593
1752
|
};
|
|
1594
1753
|
attribute: string;
|
|
1595
1754
|
} | {
|
|
1596
1755
|
boolean: {
|
|
1597
|
-
equals
|
|
1756
|
+
equals?: boolean | undefined;
|
|
1757
|
+
not_equals?: boolean | undefined;
|
|
1598
1758
|
};
|
|
1599
1759
|
attribute: string;
|
|
1600
1760
|
})[];
|
|
@@ -1643,6 +1803,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1643
1803
|
} | {
|
|
1644
1804
|
string: {
|
|
1645
1805
|
equals?: string | undefined;
|
|
1806
|
+
not_equals?: string | undefined;
|
|
1646
1807
|
contains?: string | undefined;
|
|
1647
1808
|
beginsWith?: string | undefined;
|
|
1648
1809
|
is_empty?: boolean | undefined;
|
|
@@ -1656,9 +1817,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1656
1817
|
} | {
|
|
1657
1818
|
number: {
|
|
1658
1819
|
equals?: number | undefined;
|
|
1820
|
+
not_equals?: number | undefined;
|
|
1659
1821
|
is_empty?: boolean | undefined;
|
|
1660
1822
|
is_not_empty?: boolean | undefined;
|
|
1661
|
-
does_not_equal?: number | undefined;
|
|
1662
1823
|
greater_than?: number | undefined;
|
|
1663
1824
|
greater_than_or_equal_to?: number | undefined;
|
|
1664
1825
|
less_than?: number | undefined;
|
|
@@ -1668,6 +1829,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1668
1829
|
} | {
|
|
1669
1830
|
date: {
|
|
1670
1831
|
equals?: string | undefined;
|
|
1832
|
+
not_equals?: string | undefined;
|
|
1671
1833
|
is_empty?: boolean | undefined;
|
|
1672
1834
|
is_not_empty?: boolean | undefined;
|
|
1673
1835
|
after?: string | undefined;
|
|
@@ -1679,13 +1841,15 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1679
1841
|
} | {
|
|
1680
1842
|
reference: {
|
|
1681
1843
|
equals?: string | undefined;
|
|
1844
|
+
not_equals?: string | undefined;
|
|
1682
1845
|
is_empty?: boolean | undefined;
|
|
1683
1846
|
is_not_empty?: boolean | undefined;
|
|
1684
1847
|
};
|
|
1685
1848
|
attribute: string;
|
|
1686
1849
|
} | {
|
|
1687
1850
|
boolean: {
|
|
1688
|
-
equals
|
|
1851
|
+
equals?: boolean | undefined;
|
|
1852
|
+
not_equals?: boolean | undefined;
|
|
1689
1853
|
};
|
|
1690
1854
|
attribute: string;
|
|
1691
1855
|
} | {
|
|
@@ -1732,6 +1896,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1732
1896
|
} | {
|
|
1733
1897
|
string: {
|
|
1734
1898
|
equals?: string | undefined;
|
|
1899
|
+
not_equals?: string | undefined;
|
|
1735
1900
|
contains?: string | undefined;
|
|
1736
1901
|
beginsWith?: string | undefined;
|
|
1737
1902
|
is_empty?: boolean | undefined;
|
|
@@ -1745,9 +1910,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1745
1910
|
} | {
|
|
1746
1911
|
number: {
|
|
1747
1912
|
equals?: number | undefined;
|
|
1913
|
+
not_equals?: number | undefined;
|
|
1748
1914
|
is_empty?: boolean | undefined;
|
|
1749
1915
|
is_not_empty?: boolean | undefined;
|
|
1750
|
-
does_not_equal?: number | undefined;
|
|
1751
1916
|
greater_than?: number | undefined;
|
|
1752
1917
|
greater_than_or_equal_to?: number | undefined;
|
|
1753
1918
|
less_than?: number | undefined;
|
|
@@ -1757,6 +1922,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1757
1922
|
} | {
|
|
1758
1923
|
date: {
|
|
1759
1924
|
equals?: string | undefined;
|
|
1925
|
+
not_equals?: string | undefined;
|
|
1760
1926
|
is_empty?: boolean | undefined;
|
|
1761
1927
|
is_not_empty?: boolean | undefined;
|
|
1762
1928
|
after?: string | undefined;
|
|
@@ -1768,13 +1934,15 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1768
1934
|
} | {
|
|
1769
1935
|
reference: {
|
|
1770
1936
|
equals?: string | undefined;
|
|
1937
|
+
not_equals?: string | undefined;
|
|
1771
1938
|
is_empty?: boolean | undefined;
|
|
1772
1939
|
is_not_empty?: boolean | undefined;
|
|
1773
1940
|
};
|
|
1774
1941
|
attribute: string;
|
|
1775
1942
|
} | {
|
|
1776
1943
|
boolean: {
|
|
1777
|
-
equals
|
|
1944
|
+
equals?: boolean | undefined;
|
|
1945
|
+
not_equals?: boolean | undefined;
|
|
1778
1946
|
};
|
|
1779
1947
|
attribute: string;
|
|
1780
1948
|
})[];
|
|
@@ -1800,30 +1968,35 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1800
1968
|
attribute: z.ZodString;
|
|
1801
1969
|
string: z.ZodEffects<z.ZodObject<{
|
|
1802
1970
|
equals: z.ZodOptional<z.ZodString>;
|
|
1971
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
1803
1972
|
contains: z.ZodOptional<z.ZodString>;
|
|
1804
1973
|
beginsWith: z.ZodOptional<z.ZodString>;
|
|
1805
1974
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1806
1975
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1807
|
-
}, "
|
|
1976
|
+
}, "strict", z.ZodTypeAny, {
|
|
1808
1977
|
equals?: string | undefined;
|
|
1978
|
+
not_equals?: string | undefined;
|
|
1809
1979
|
contains?: string | undefined;
|
|
1810
1980
|
beginsWith?: string | undefined;
|
|
1811
1981
|
is_empty?: boolean | undefined;
|
|
1812
1982
|
is_not_empty?: boolean | undefined;
|
|
1813
1983
|
}, {
|
|
1814
1984
|
equals?: string | undefined;
|
|
1985
|
+
not_equals?: string | undefined;
|
|
1815
1986
|
contains?: string | undefined;
|
|
1816
1987
|
beginsWith?: string | undefined;
|
|
1817
1988
|
is_empty?: boolean | undefined;
|
|
1818
1989
|
is_not_empty?: boolean | undefined;
|
|
1819
1990
|
}>, {
|
|
1820
1991
|
equals?: string | undefined;
|
|
1992
|
+
not_equals?: string | undefined;
|
|
1821
1993
|
contains?: string | undefined;
|
|
1822
1994
|
beginsWith?: string | undefined;
|
|
1823
1995
|
is_empty?: boolean | undefined;
|
|
1824
1996
|
is_not_empty?: boolean | undefined;
|
|
1825
1997
|
}, {
|
|
1826
1998
|
equals?: string | undefined;
|
|
1999
|
+
not_equals?: string | undefined;
|
|
1827
2000
|
contains?: string | undefined;
|
|
1828
2001
|
beginsWith?: string | undefined;
|
|
1829
2002
|
is_empty?: boolean | undefined;
|
|
@@ -1832,6 +2005,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1832
2005
|
}, "strip", z.ZodTypeAny, {
|
|
1833
2006
|
string: {
|
|
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;
|
|
@@ -1841,6 +2015,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1841
2015
|
}, {
|
|
1842
2016
|
string: {
|
|
1843
2017
|
equals?: string | undefined;
|
|
2018
|
+
not_equals?: string | undefined;
|
|
1844
2019
|
contains?: string | undefined;
|
|
1845
2020
|
beginsWith?: string | undefined;
|
|
1846
2021
|
is_empty?: boolean | undefined;
|
|
@@ -1851,45 +2026,45 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1851
2026
|
attribute: z.ZodString;
|
|
1852
2027
|
number: z.ZodEffects<z.ZodObject<{
|
|
1853
2028
|
equals: z.ZodOptional<z.ZodNumber>;
|
|
1854
|
-
|
|
2029
|
+
not_equals: z.ZodOptional<z.ZodNumber>;
|
|
1855
2030
|
greater_than: z.ZodOptional<z.ZodNumber>;
|
|
1856
2031
|
greater_than_or_equal_to: z.ZodOptional<z.ZodNumber>;
|
|
1857
2032
|
less_than: z.ZodOptional<z.ZodNumber>;
|
|
1858
2033
|
less_than_or_equal_to: z.ZodOptional<z.ZodNumber>;
|
|
1859
2034
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1860
2035
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1861
|
-
}, "
|
|
2036
|
+
}, "strict", z.ZodTypeAny, {
|
|
1862
2037
|
equals?: number | undefined;
|
|
2038
|
+
not_equals?: number | undefined;
|
|
1863
2039
|
is_empty?: boolean | undefined;
|
|
1864
2040
|
is_not_empty?: boolean | undefined;
|
|
1865
|
-
does_not_equal?: number | undefined;
|
|
1866
2041
|
greater_than?: number | undefined;
|
|
1867
2042
|
greater_than_or_equal_to?: number | undefined;
|
|
1868
2043
|
less_than?: number | undefined;
|
|
1869
2044
|
less_than_or_equal_to?: number | undefined;
|
|
1870
2045
|
}, {
|
|
1871
2046
|
equals?: number | undefined;
|
|
2047
|
+
not_equals?: number | undefined;
|
|
1872
2048
|
is_empty?: boolean | undefined;
|
|
1873
2049
|
is_not_empty?: boolean | undefined;
|
|
1874
|
-
does_not_equal?: number | undefined;
|
|
1875
2050
|
greater_than?: number | undefined;
|
|
1876
2051
|
greater_than_or_equal_to?: number | undefined;
|
|
1877
2052
|
less_than?: number | undefined;
|
|
1878
2053
|
less_than_or_equal_to?: number | undefined;
|
|
1879
2054
|
}>, {
|
|
1880
2055
|
equals?: number | undefined;
|
|
2056
|
+
not_equals?: number | undefined;
|
|
1881
2057
|
is_empty?: boolean | undefined;
|
|
1882
2058
|
is_not_empty?: boolean | undefined;
|
|
1883
|
-
does_not_equal?: number | undefined;
|
|
1884
2059
|
greater_than?: number | undefined;
|
|
1885
2060
|
greater_than_or_equal_to?: number | undefined;
|
|
1886
2061
|
less_than?: number | undefined;
|
|
1887
2062
|
less_than_or_equal_to?: number | undefined;
|
|
1888
2063
|
}, {
|
|
1889
2064
|
equals?: number | undefined;
|
|
2065
|
+
not_equals?: number | undefined;
|
|
1890
2066
|
is_empty?: boolean | undefined;
|
|
1891
2067
|
is_not_empty?: boolean | undefined;
|
|
1892
|
-
does_not_equal?: number | undefined;
|
|
1893
2068
|
greater_than?: number | undefined;
|
|
1894
2069
|
greater_than_or_equal_to?: number | undefined;
|
|
1895
2070
|
less_than?: number | undefined;
|
|
@@ -1898,9 +2073,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1898
2073
|
}, "strip", z.ZodTypeAny, {
|
|
1899
2074
|
number: {
|
|
1900
2075
|
equals?: number | undefined;
|
|
2076
|
+
not_equals?: number | undefined;
|
|
1901
2077
|
is_empty?: boolean | undefined;
|
|
1902
2078
|
is_not_empty?: boolean | undefined;
|
|
1903
|
-
does_not_equal?: number | undefined;
|
|
1904
2079
|
greater_than?: number | undefined;
|
|
1905
2080
|
greater_than_or_equal_to?: number | undefined;
|
|
1906
2081
|
less_than?: number | undefined;
|
|
@@ -1910,9 +2085,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1910
2085
|
}, {
|
|
1911
2086
|
number: {
|
|
1912
2087
|
equals?: number | undefined;
|
|
2088
|
+
not_equals?: number | undefined;
|
|
1913
2089
|
is_empty?: boolean | undefined;
|
|
1914
2090
|
is_not_empty?: boolean | undefined;
|
|
1915
|
-
does_not_equal?: number | undefined;
|
|
1916
2091
|
greater_than?: number | undefined;
|
|
1917
2092
|
greater_than_or_equal_to?: number | undefined;
|
|
1918
2093
|
less_than?: number | undefined;
|
|
@@ -1921,16 +2096,18 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1921
2096
|
attribute: string;
|
|
1922
2097
|
}>, z.ZodObject<{
|
|
1923
2098
|
attribute: z.ZodString;
|
|
1924
|
-
date: z.ZodObject<{
|
|
2099
|
+
date: z.ZodEffects<z.ZodObject<{
|
|
1925
2100
|
after: z.ZodOptional<z.ZodString>;
|
|
1926
2101
|
before: z.ZodOptional<z.ZodString>;
|
|
1927
2102
|
equals: z.ZodOptional<z.ZodString>;
|
|
2103
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
1928
2104
|
on_or_after: z.ZodOptional<z.ZodString>;
|
|
1929
2105
|
on_or_before: z.ZodOptional<z.ZodString>;
|
|
1930
2106
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1931
2107
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1932
|
-
}, "
|
|
2108
|
+
}, "strict", z.ZodTypeAny, {
|
|
1933
2109
|
equals?: string | undefined;
|
|
2110
|
+
not_equals?: string | undefined;
|
|
1934
2111
|
is_empty?: boolean | undefined;
|
|
1935
2112
|
is_not_empty?: boolean | undefined;
|
|
1936
2113
|
after?: string | undefined;
|
|
@@ -1939,6 +2116,25 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1939
2116
|
on_or_before?: string | undefined;
|
|
1940
2117
|
}, {
|
|
1941
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
|
+
}, {
|
|
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;
|
|
@@ -1949,6 +2145,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1949
2145
|
}, "strip", z.ZodTypeAny, {
|
|
1950
2146
|
date: {
|
|
1951
2147
|
equals?: string | undefined;
|
|
2148
|
+
not_equals?: string | undefined;
|
|
1952
2149
|
is_empty?: boolean | undefined;
|
|
1953
2150
|
is_not_empty?: boolean | undefined;
|
|
1954
2151
|
after?: string | undefined;
|
|
@@ -1960,6 +2157,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1960
2157
|
}, {
|
|
1961
2158
|
date: {
|
|
1962
2159
|
equals?: string | undefined;
|
|
2160
|
+
not_equals?: string | undefined;
|
|
1963
2161
|
is_empty?: boolean | undefined;
|
|
1964
2162
|
is_not_empty?: boolean | undefined;
|
|
1965
2163
|
after?: string | undefined;
|
|
@@ -1972,28 +2170,34 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1972
2170
|
attribute: z.ZodString;
|
|
1973
2171
|
reference: z.ZodEffects<z.ZodObject<{
|
|
1974
2172
|
equals: z.ZodOptional<z.ZodString>;
|
|
2173
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
1975
2174
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1976
2175
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
1977
|
-
}, "
|
|
2176
|
+
}, "strict", z.ZodTypeAny, {
|
|
1978
2177
|
equals?: string | undefined;
|
|
2178
|
+
not_equals?: string | undefined;
|
|
1979
2179
|
is_empty?: boolean | undefined;
|
|
1980
2180
|
is_not_empty?: boolean | undefined;
|
|
1981
2181
|
}, {
|
|
1982
2182
|
equals?: string | undefined;
|
|
2183
|
+
not_equals?: string | undefined;
|
|
1983
2184
|
is_empty?: boolean | undefined;
|
|
1984
2185
|
is_not_empty?: boolean | undefined;
|
|
1985
2186
|
}>, {
|
|
1986
2187
|
equals?: string | undefined;
|
|
2188
|
+
not_equals?: string | undefined;
|
|
1987
2189
|
is_empty?: boolean | undefined;
|
|
1988
2190
|
is_not_empty?: boolean | undefined;
|
|
1989
2191
|
}, {
|
|
1990
2192
|
equals?: string | undefined;
|
|
2193
|
+
not_equals?: string | undefined;
|
|
1991
2194
|
is_empty?: boolean | undefined;
|
|
1992
2195
|
is_not_empty?: boolean | undefined;
|
|
1993
2196
|
}>;
|
|
1994
2197
|
}, "strip", z.ZodTypeAny, {
|
|
1995
2198
|
reference: {
|
|
1996
2199
|
equals?: string | undefined;
|
|
2200
|
+
not_equals?: string | undefined;
|
|
1997
2201
|
is_empty?: boolean | undefined;
|
|
1998
2202
|
is_not_empty?: boolean | undefined;
|
|
1999
2203
|
};
|
|
@@ -2001,27 +2205,39 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2001
2205
|
}, {
|
|
2002
2206
|
reference: {
|
|
2003
2207
|
equals?: string | undefined;
|
|
2208
|
+
not_equals?: string | undefined;
|
|
2004
2209
|
is_empty?: boolean | undefined;
|
|
2005
2210
|
is_not_empty?: boolean | undefined;
|
|
2006
2211
|
};
|
|
2007
2212
|
attribute: string;
|
|
2008
2213
|
}>, z.ZodObject<{
|
|
2009
2214
|
attribute: z.ZodString;
|
|
2010
|
-
boolean: z.ZodObject<{
|
|
2011
|
-
equals: z.ZodBoolean
|
|
2012
|
-
|
|
2013
|
-
|
|
2215
|
+
boolean: z.ZodEffects<z.ZodObject<{
|
|
2216
|
+
equals: z.ZodOptional<z.ZodBoolean>;
|
|
2217
|
+
not_equals: z.ZodOptional<z.ZodBoolean>;
|
|
2218
|
+
}, "strict", z.ZodTypeAny, {
|
|
2219
|
+
equals?: boolean | undefined;
|
|
2220
|
+
not_equals?: boolean | undefined;
|
|
2014
2221
|
}, {
|
|
2015
|
-
equals
|
|
2222
|
+
equals?: boolean | undefined;
|
|
2223
|
+
not_equals?: boolean | undefined;
|
|
2224
|
+
}>, {
|
|
2225
|
+
equals?: boolean | undefined;
|
|
2226
|
+
not_equals?: boolean | undefined;
|
|
2227
|
+
}, {
|
|
2228
|
+
equals?: boolean | undefined;
|
|
2229
|
+
not_equals?: boolean | undefined;
|
|
2016
2230
|
}>;
|
|
2017
2231
|
}, "strip", z.ZodTypeAny, {
|
|
2018
2232
|
boolean: {
|
|
2019
|
-
equals
|
|
2233
|
+
equals?: boolean | undefined;
|
|
2234
|
+
not_equals?: boolean | undefined;
|
|
2020
2235
|
};
|
|
2021
2236
|
attribute: string;
|
|
2022
2237
|
}, {
|
|
2023
2238
|
boolean: {
|
|
2024
|
-
equals
|
|
2239
|
+
equals?: boolean | undefined;
|
|
2240
|
+
not_equals?: boolean | undefined;
|
|
2025
2241
|
};
|
|
2026
2242
|
attribute: string;
|
|
2027
2243
|
}>, z.ZodObject<{
|
|
@@ -2213,30 +2429,35 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2213
2429
|
attribute: z.ZodString;
|
|
2214
2430
|
string: z.ZodEffects<z.ZodObject<{
|
|
2215
2431
|
equals: z.ZodOptional<z.ZodString>;
|
|
2432
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
2216
2433
|
contains: z.ZodOptional<z.ZodString>;
|
|
2217
2434
|
beginsWith: z.ZodOptional<z.ZodString>;
|
|
2218
2435
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
2219
2436
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
2220
|
-
}, "
|
|
2437
|
+
}, "strict", z.ZodTypeAny, {
|
|
2221
2438
|
equals?: string | undefined;
|
|
2439
|
+
not_equals?: string | undefined;
|
|
2222
2440
|
contains?: string | undefined;
|
|
2223
2441
|
beginsWith?: string | undefined;
|
|
2224
2442
|
is_empty?: boolean | undefined;
|
|
2225
2443
|
is_not_empty?: boolean | undefined;
|
|
2226
2444
|
}, {
|
|
2227
2445
|
equals?: string | undefined;
|
|
2446
|
+
not_equals?: string | undefined;
|
|
2228
2447
|
contains?: string | undefined;
|
|
2229
2448
|
beginsWith?: string | undefined;
|
|
2230
2449
|
is_empty?: boolean | undefined;
|
|
2231
2450
|
is_not_empty?: boolean | undefined;
|
|
2232
2451
|
}>, {
|
|
2233
2452
|
equals?: string | undefined;
|
|
2453
|
+
not_equals?: string | undefined;
|
|
2234
2454
|
contains?: string | undefined;
|
|
2235
2455
|
beginsWith?: string | undefined;
|
|
2236
2456
|
is_empty?: boolean | undefined;
|
|
2237
2457
|
is_not_empty?: boolean | undefined;
|
|
2238
2458
|
}, {
|
|
2239
2459
|
equals?: string | undefined;
|
|
2460
|
+
not_equals?: string | undefined;
|
|
2240
2461
|
contains?: string | undefined;
|
|
2241
2462
|
beginsWith?: string | undefined;
|
|
2242
2463
|
is_empty?: boolean | undefined;
|
|
@@ -2245,6 +2466,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2245
2466
|
}, "strip", z.ZodTypeAny, {
|
|
2246
2467
|
string: {
|
|
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;
|
|
@@ -2254,6 +2476,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2254
2476
|
}, {
|
|
2255
2477
|
string: {
|
|
2256
2478
|
equals?: string | undefined;
|
|
2479
|
+
not_equals?: string | undefined;
|
|
2257
2480
|
contains?: string | undefined;
|
|
2258
2481
|
beginsWith?: string | undefined;
|
|
2259
2482
|
is_empty?: boolean | undefined;
|
|
@@ -2264,45 +2487,45 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2264
2487
|
attribute: z.ZodString;
|
|
2265
2488
|
number: z.ZodEffects<z.ZodObject<{
|
|
2266
2489
|
equals: z.ZodOptional<z.ZodNumber>;
|
|
2267
|
-
|
|
2490
|
+
not_equals: z.ZodOptional<z.ZodNumber>;
|
|
2268
2491
|
greater_than: z.ZodOptional<z.ZodNumber>;
|
|
2269
2492
|
greater_than_or_equal_to: z.ZodOptional<z.ZodNumber>;
|
|
2270
2493
|
less_than: z.ZodOptional<z.ZodNumber>;
|
|
2271
2494
|
less_than_or_equal_to: z.ZodOptional<z.ZodNumber>;
|
|
2272
2495
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
2273
2496
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
2274
|
-
}, "
|
|
2497
|
+
}, "strict", z.ZodTypeAny, {
|
|
2275
2498
|
equals?: number | undefined;
|
|
2499
|
+
not_equals?: number | undefined;
|
|
2276
2500
|
is_empty?: boolean | undefined;
|
|
2277
2501
|
is_not_empty?: boolean | undefined;
|
|
2278
|
-
does_not_equal?: number | undefined;
|
|
2279
2502
|
greater_than?: number | undefined;
|
|
2280
2503
|
greater_than_or_equal_to?: number | undefined;
|
|
2281
2504
|
less_than?: number | undefined;
|
|
2282
2505
|
less_than_or_equal_to?: number | undefined;
|
|
2283
2506
|
}, {
|
|
2284
2507
|
equals?: number | undefined;
|
|
2508
|
+
not_equals?: number | undefined;
|
|
2285
2509
|
is_empty?: boolean | undefined;
|
|
2286
2510
|
is_not_empty?: boolean | undefined;
|
|
2287
|
-
does_not_equal?: number | undefined;
|
|
2288
2511
|
greater_than?: number | undefined;
|
|
2289
2512
|
greater_than_or_equal_to?: number | undefined;
|
|
2290
2513
|
less_than?: number | undefined;
|
|
2291
2514
|
less_than_or_equal_to?: number | undefined;
|
|
2292
2515
|
}>, {
|
|
2293
2516
|
equals?: number | undefined;
|
|
2517
|
+
not_equals?: number | undefined;
|
|
2294
2518
|
is_empty?: boolean | undefined;
|
|
2295
2519
|
is_not_empty?: boolean | undefined;
|
|
2296
|
-
does_not_equal?: number | undefined;
|
|
2297
2520
|
greater_than?: number | undefined;
|
|
2298
2521
|
greater_than_or_equal_to?: number | undefined;
|
|
2299
2522
|
less_than?: number | undefined;
|
|
2300
2523
|
less_than_or_equal_to?: number | undefined;
|
|
2301
2524
|
}, {
|
|
2302
2525
|
equals?: number | undefined;
|
|
2526
|
+
not_equals?: number | undefined;
|
|
2303
2527
|
is_empty?: boolean | undefined;
|
|
2304
2528
|
is_not_empty?: boolean | undefined;
|
|
2305
|
-
does_not_equal?: number | undefined;
|
|
2306
2529
|
greater_than?: number | undefined;
|
|
2307
2530
|
greater_than_or_equal_to?: number | undefined;
|
|
2308
2531
|
less_than?: number | undefined;
|
|
@@ -2311,9 +2534,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2311
2534
|
}, "strip", z.ZodTypeAny, {
|
|
2312
2535
|
number: {
|
|
2313
2536
|
equals?: number | undefined;
|
|
2537
|
+
not_equals?: number | undefined;
|
|
2314
2538
|
is_empty?: boolean | undefined;
|
|
2315
2539
|
is_not_empty?: boolean | undefined;
|
|
2316
|
-
does_not_equal?: number | undefined;
|
|
2317
2540
|
greater_than?: number | undefined;
|
|
2318
2541
|
greater_than_or_equal_to?: number | undefined;
|
|
2319
2542
|
less_than?: number | undefined;
|
|
@@ -2323,9 +2546,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2323
2546
|
}, {
|
|
2324
2547
|
number: {
|
|
2325
2548
|
equals?: number | undefined;
|
|
2549
|
+
not_equals?: number | undefined;
|
|
2326
2550
|
is_empty?: boolean | undefined;
|
|
2327
2551
|
is_not_empty?: boolean | undefined;
|
|
2328
|
-
does_not_equal?: number | undefined;
|
|
2329
2552
|
greater_than?: number | undefined;
|
|
2330
2553
|
greater_than_or_equal_to?: number | undefined;
|
|
2331
2554
|
less_than?: number | undefined;
|
|
@@ -2334,16 +2557,36 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2334
2557
|
attribute: string;
|
|
2335
2558
|
}>, z.ZodObject<{
|
|
2336
2559
|
attribute: z.ZodString;
|
|
2337
|
-
date: z.ZodObject<{
|
|
2560
|
+
date: z.ZodEffects<z.ZodObject<{
|
|
2338
2561
|
after: z.ZodOptional<z.ZodString>;
|
|
2339
2562
|
before: z.ZodOptional<z.ZodString>;
|
|
2340
2563
|
equals: z.ZodOptional<z.ZodString>;
|
|
2564
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
2341
2565
|
on_or_after: z.ZodOptional<z.ZodString>;
|
|
2342
2566
|
on_or_before: z.ZodOptional<z.ZodString>;
|
|
2343
2567
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
2344
2568
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
2345
|
-
}, "
|
|
2569
|
+
}, "strict", z.ZodTypeAny, {
|
|
2570
|
+
equals?: string | undefined;
|
|
2571
|
+
not_equals?: string | undefined;
|
|
2572
|
+
is_empty?: boolean | undefined;
|
|
2573
|
+
is_not_empty?: boolean | undefined;
|
|
2574
|
+
after?: string | undefined;
|
|
2575
|
+
before?: string | undefined;
|
|
2576
|
+
on_or_after?: string | undefined;
|
|
2577
|
+
on_or_before?: string | undefined;
|
|
2578
|
+
}, {
|
|
2579
|
+
equals?: string | undefined;
|
|
2580
|
+
not_equals?: string | undefined;
|
|
2581
|
+
is_empty?: boolean | undefined;
|
|
2582
|
+
is_not_empty?: boolean | undefined;
|
|
2583
|
+
after?: string | undefined;
|
|
2584
|
+
before?: string | undefined;
|
|
2585
|
+
on_or_after?: string | undefined;
|
|
2586
|
+
on_or_before?: string | undefined;
|
|
2587
|
+
}>, {
|
|
2346
2588
|
equals?: string | undefined;
|
|
2589
|
+
not_equals?: string | undefined;
|
|
2347
2590
|
is_empty?: boolean | undefined;
|
|
2348
2591
|
is_not_empty?: boolean | undefined;
|
|
2349
2592
|
after?: string | undefined;
|
|
@@ -2352,6 +2595,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2352
2595
|
on_or_before?: string | undefined;
|
|
2353
2596
|
}, {
|
|
2354
2597
|
equals?: string | undefined;
|
|
2598
|
+
not_equals?: string | undefined;
|
|
2355
2599
|
is_empty?: boolean | undefined;
|
|
2356
2600
|
is_not_empty?: boolean | undefined;
|
|
2357
2601
|
after?: string | undefined;
|
|
@@ -2362,6 +2606,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2362
2606
|
}, "strip", z.ZodTypeAny, {
|
|
2363
2607
|
date: {
|
|
2364
2608
|
equals?: string | undefined;
|
|
2609
|
+
not_equals?: string | undefined;
|
|
2365
2610
|
is_empty?: boolean | undefined;
|
|
2366
2611
|
is_not_empty?: boolean | undefined;
|
|
2367
2612
|
after?: string | undefined;
|
|
@@ -2373,6 +2618,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2373
2618
|
}, {
|
|
2374
2619
|
date: {
|
|
2375
2620
|
equals?: string | undefined;
|
|
2621
|
+
not_equals?: string | undefined;
|
|
2376
2622
|
is_empty?: boolean | undefined;
|
|
2377
2623
|
is_not_empty?: boolean | undefined;
|
|
2378
2624
|
after?: string | undefined;
|
|
@@ -2385,28 +2631,34 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2385
2631
|
attribute: z.ZodString;
|
|
2386
2632
|
reference: z.ZodEffects<z.ZodObject<{
|
|
2387
2633
|
equals: z.ZodOptional<z.ZodString>;
|
|
2634
|
+
not_equals: z.ZodOptional<z.ZodString>;
|
|
2388
2635
|
is_empty: z.ZodOptional<z.ZodBoolean>;
|
|
2389
2636
|
is_not_empty: z.ZodOptional<z.ZodBoolean>;
|
|
2390
|
-
}, "
|
|
2637
|
+
}, "strict", z.ZodTypeAny, {
|
|
2391
2638
|
equals?: string | undefined;
|
|
2639
|
+
not_equals?: string | undefined;
|
|
2392
2640
|
is_empty?: boolean | undefined;
|
|
2393
2641
|
is_not_empty?: boolean | undefined;
|
|
2394
2642
|
}, {
|
|
2395
2643
|
equals?: string | undefined;
|
|
2644
|
+
not_equals?: string | undefined;
|
|
2396
2645
|
is_empty?: boolean | undefined;
|
|
2397
2646
|
is_not_empty?: boolean | undefined;
|
|
2398
2647
|
}>, {
|
|
2399
2648
|
equals?: string | undefined;
|
|
2649
|
+
not_equals?: string | undefined;
|
|
2400
2650
|
is_empty?: boolean | undefined;
|
|
2401
2651
|
is_not_empty?: boolean | undefined;
|
|
2402
2652
|
}, {
|
|
2403
2653
|
equals?: string | undefined;
|
|
2654
|
+
not_equals?: string | undefined;
|
|
2404
2655
|
is_empty?: boolean | undefined;
|
|
2405
2656
|
is_not_empty?: boolean | undefined;
|
|
2406
2657
|
}>;
|
|
2407
2658
|
}, "strip", z.ZodTypeAny, {
|
|
2408
2659
|
reference: {
|
|
2409
2660
|
equals?: string | undefined;
|
|
2661
|
+
not_equals?: string | undefined;
|
|
2410
2662
|
is_empty?: boolean | undefined;
|
|
2411
2663
|
is_not_empty?: boolean | undefined;
|
|
2412
2664
|
};
|
|
@@ -2414,27 +2666,39 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2414
2666
|
}, {
|
|
2415
2667
|
reference: {
|
|
2416
2668
|
equals?: string | undefined;
|
|
2669
|
+
not_equals?: string | undefined;
|
|
2417
2670
|
is_empty?: boolean | undefined;
|
|
2418
2671
|
is_not_empty?: boolean | undefined;
|
|
2419
2672
|
};
|
|
2420
2673
|
attribute: string;
|
|
2421
2674
|
}>, z.ZodObject<{
|
|
2422
2675
|
attribute: z.ZodString;
|
|
2423
|
-
boolean: z.ZodObject<{
|
|
2424
|
-
equals: z.ZodBoolean
|
|
2425
|
-
|
|
2426
|
-
|
|
2676
|
+
boolean: z.ZodEffects<z.ZodObject<{
|
|
2677
|
+
equals: z.ZodOptional<z.ZodBoolean>;
|
|
2678
|
+
not_equals: z.ZodOptional<z.ZodBoolean>;
|
|
2679
|
+
}, "strict", z.ZodTypeAny, {
|
|
2680
|
+
equals?: boolean | undefined;
|
|
2681
|
+
not_equals?: boolean | undefined;
|
|
2682
|
+
}, {
|
|
2683
|
+
equals?: boolean | undefined;
|
|
2684
|
+
not_equals?: boolean | undefined;
|
|
2685
|
+
}>, {
|
|
2686
|
+
equals?: boolean | undefined;
|
|
2687
|
+
not_equals?: boolean | undefined;
|
|
2427
2688
|
}, {
|
|
2428
|
-
equals
|
|
2689
|
+
equals?: boolean | undefined;
|
|
2690
|
+
not_equals?: boolean | undefined;
|
|
2429
2691
|
}>;
|
|
2430
2692
|
}, "strip", z.ZodTypeAny, {
|
|
2431
2693
|
boolean: {
|
|
2432
|
-
equals
|
|
2694
|
+
equals?: boolean | undefined;
|
|
2695
|
+
not_equals?: boolean | undefined;
|
|
2433
2696
|
};
|
|
2434
2697
|
attribute: string;
|
|
2435
2698
|
}, {
|
|
2436
2699
|
boolean: {
|
|
2437
|
-
equals
|
|
2700
|
+
equals?: boolean | undefined;
|
|
2701
|
+
not_equals?: boolean | undefined;
|
|
2438
2702
|
};
|
|
2439
2703
|
attribute: string;
|
|
2440
2704
|
}>, z.ZodObject<{
|
|
@@ -2650,6 +2914,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2650
2914
|
} | {
|
|
2651
2915
|
string: {
|
|
2652
2916
|
equals?: string | undefined;
|
|
2917
|
+
not_equals?: string | undefined;
|
|
2653
2918
|
contains?: string | undefined;
|
|
2654
2919
|
beginsWith?: string | undefined;
|
|
2655
2920
|
is_empty?: boolean | undefined;
|
|
@@ -2663,9 +2928,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2663
2928
|
} | {
|
|
2664
2929
|
number: {
|
|
2665
2930
|
equals?: number | undefined;
|
|
2931
|
+
not_equals?: number | undefined;
|
|
2666
2932
|
is_empty?: boolean | undefined;
|
|
2667
2933
|
is_not_empty?: boolean | undefined;
|
|
2668
|
-
does_not_equal?: number | undefined;
|
|
2669
2934
|
greater_than?: number | undefined;
|
|
2670
2935
|
greater_than_or_equal_to?: number | undefined;
|
|
2671
2936
|
less_than?: number | undefined;
|
|
@@ -2675,6 +2940,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2675
2940
|
} | {
|
|
2676
2941
|
date: {
|
|
2677
2942
|
equals?: string | undefined;
|
|
2943
|
+
not_equals?: string | undefined;
|
|
2678
2944
|
is_empty?: boolean | undefined;
|
|
2679
2945
|
is_not_empty?: boolean | undefined;
|
|
2680
2946
|
after?: string | undefined;
|
|
@@ -2686,13 +2952,15 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2686
2952
|
} | {
|
|
2687
2953
|
reference: {
|
|
2688
2954
|
equals?: string | undefined;
|
|
2955
|
+
not_equals?: string | undefined;
|
|
2689
2956
|
is_empty?: boolean | undefined;
|
|
2690
2957
|
is_not_empty?: boolean | undefined;
|
|
2691
2958
|
};
|
|
2692
2959
|
attribute: string;
|
|
2693
2960
|
} | {
|
|
2694
2961
|
boolean: {
|
|
2695
|
-
equals
|
|
2962
|
+
equals?: boolean | undefined;
|
|
2963
|
+
not_equals?: boolean | undefined;
|
|
2696
2964
|
};
|
|
2697
2965
|
attribute: string;
|
|
2698
2966
|
})[];
|
|
@@ -2740,6 +3008,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2740
3008
|
} | {
|
|
2741
3009
|
string: {
|
|
2742
3010
|
equals?: string | undefined;
|
|
3011
|
+
not_equals?: string | undefined;
|
|
2743
3012
|
contains?: string | undefined;
|
|
2744
3013
|
beginsWith?: string | undefined;
|
|
2745
3014
|
is_empty?: boolean | undefined;
|
|
@@ -2753,9 +3022,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2753
3022
|
} | {
|
|
2754
3023
|
number: {
|
|
2755
3024
|
equals?: number | undefined;
|
|
3025
|
+
not_equals?: number | undefined;
|
|
2756
3026
|
is_empty?: boolean | undefined;
|
|
2757
3027
|
is_not_empty?: boolean | undefined;
|
|
2758
|
-
does_not_equal?: number | undefined;
|
|
2759
3028
|
greater_than?: number | undefined;
|
|
2760
3029
|
greater_than_or_equal_to?: number | undefined;
|
|
2761
3030
|
less_than?: number | undefined;
|
|
@@ -2765,6 +3034,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2765
3034
|
} | {
|
|
2766
3035
|
date: {
|
|
2767
3036
|
equals?: string | undefined;
|
|
3037
|
+
not_equals?: string | undefined;
|
|
2768
3038
|
is_empty?: boolean | undefined;
|
|
2769
3039
|
is_not_empty?: boolean | undefined;
|
|
2770
3040
|
after?: string | undefined;
|
|
@@ -2776,13 +3046,15 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2776
3046
|
} | {
|
|
2777
3047
|
reference: {
|
|
2778
3048
|
equals?: string | undefined;
|
|
3049
|
+
not_equals?: string | undefined;
|
|
2779
3050
|
is_empty?: boolean | undefined;
|
|
2780
3051
|
is_not_empty?: boolean | undefined;
|
|
2781
3052
|
};
|
|
2782
3053
|
attribute: string;
|
|
2783
3054
|
} | {
|
|
2784
3055
|
boolean: {
|
|
2785
|
-
equals
|
|
3056
|
+
equals?: boolean | undefined;
|
|
3057
|
+
not_equals?: boolean | undefined;
|
|
2786
3058
|
};
|
|
2787
3059
|
attribute: string;
|
|
2788
3060
|
})[];
|
|
@@ -2831,6 +3103,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2831
3103
|
} | {
|
|
2832
3104
|
string: {
|
|
2833
3105
|
equals?: string | undefined;
|
|
3106
|
+
not_equals?: string | undefined;
|
|
2834
3107
|
contains?: string | undefined;
|
|
2835
3108
|
beginsWith?: string | undefined;
|
|
2836
3109
|
is_empty?: boolean | undefined;
|
|
@@ -2844,9 +3117,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2844
3117
|
} | {
|
|
2845
3118
|
number: {
|
|
2846
3119
|
equals?: number | undefined;
|
|
3120
|
+
not_equals?: number | undefined;
|
|
2847
3121
|
is_empty?: boolean | undefined;
|
|
2848
3122
|
is_not_empty?: boolean | undefined;
|
|
2849
|
-
does_not_equal?: number | undefined;
|
|
2850
3123
|
greater_than?: number | undefined;
|
|
2851
3124
|
greater_than_or_equal_to?: number | undefined;
|
|
2852
3125
|
less_than?: number | undefined;
|
|
@@ -2856,6 +3129,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2856
3129
|
} | {
|
|
2857
3130
|
date: {
|
|
2858
3131
|
equals?: string | undefined;
|
|
3132
|
+
not_equals?: string | undefined;
|
|
2859
3133
|
is_empty?: boolean | undefined;
|
|
2860
3134
|
is_not_empty?: boolean | undefined;
|
|
2861
3135
|
after?: string | undefined;
|
|
@@ -2867,13 +3141,15 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2867
3141
|
} | {
|
|
2868
3142
|
reference: {
|
|
2869
3143
|
equals?: string | undefined;
|
|
3144
|
+
not_equals?: string | undefined;
|
|
2870
3145
|
is_empty?: boolean | undefined;
|
|
2871
3146
|
is_not_empty?: boolean | undefined;
|
|
2872
3147
|
};
|
|
2873
3148
|
attribute: string;
|
|
2874
3149
|
} | {
|
|
2875
3150
|
boolean: {
|
|
2876
|
-
equals
|
|
3151
|
+
equals?: boolean | undefined;
|
|
3152
|
+
not_equals?: boolean | undefined;
|
|
2877
3153
|
};
|
|
2878
3154
|
attribute: string;
|
|
2879
3155
|
} | {
|
|
@@ -2920,6 +3196,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2920
3196
|
} | {
|
|
2921
3197
|
string: {
|
|
2922
3198
|
equals?: string | undefined;
|
|
3199
|
+
not_equals?: string | undefined;
|
|
2923
3200
|
contains?: string | undefined;
|
|
2924
3201
|
beginsWith?: string | undefined;
|
|
2925
3202
|
is_empty?: boolean | undefined;
|
|
@@ -2933,9 +3210,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2933
3210
|
} | {
|
|
2934
3211
|
number: {
|
|
2935
3212
|
equals?: number | undefined;
|
|
3213
|
+
not_equals?: number | undefined;
|
|
2936
3214
|
is_empty?: boolean | undefined;
|
|
2937
3215
|
is_not_empty?: boolean | undefined;
|
|
2938
|
-
does_not_equal?: number | undefined;
|
|
2939
3216
|
greater_than?: number | undefined;
|
|
2940
3217
|
greater_than_or_equal_to?: number | undefined;
|
|
2941
3218
|
less_than?: number | undefined;
|
|
@@ -2945,6 +3222,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2945
3222
|
} | {
|
|
2946
3223
|
date: {
|
|
2947
3224
|
equals?: string | undefined;
|
|
3225
|
+
not_equals?: string | undefined;
|
|
2948
3226
|
is_empty?: boolean | undefined;
|
|
2949
3227
|
is_not_empty?: boolean | undefined;
|
|
2950
3228
|
after?: string | undefined;
|
|
@@ -2956,13 +3234,15 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
2956
3234
|
} | {
|
|
2957
3235
|
reference: {
|
|
2958
3236
|
equals?: string | undefined;
|
|
3237
|
+
not_equals?: string | undefined;
|
|
2959
3238
|
is_empty?: boolean | undefined;
|
|
2960
3239
|
is_not_empty?: boolean | undefined;
|
|
2961
3240
|
};
|
|
2962
3241
|
attribute: string;
|
|
2963
3242
|
} | {
|
|
2964
3243
|
boolean: {
|
|
2965
|
-
equals
|
|
3244
|
+
equals?: boolean | undefined;
|
|
3245
|
+
not_equals?: boolean | undefined;
|
|
2966
3246
|
};
|
|
2967
3247
|
attribute: string;
|
|
2968
3248
|
})[];
|
|
@@ -3011,6 +3291,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
3011
3291
|
} | {
|
|
3012
3292
|
string: {
|
|
3013
3293
|
equals?: string | undefined;
|
|
3294
|
+
not_equals?: string | undefined;
|
|
3014
3295
|
contains?: string | undefined;
|
|
3015
3296
|
beginsWith?: string | undefined;
|
|
3016
3297
|
is_empty?: boolean | undefined;
|
|
@@ -3024,9 +3305,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
3024
3305
|
} | {
|
|
3025
3306
|
number: {
|
|
3026
3307
|
equals?: number | undefined;
|
|
3308
|
+
not_equals?: number | undefined;
|
|
3027
3309
|
is_empty?: boolean | undefined;
|
|
3028
3310
|
is_not_empty?: boolean | undefined;
|
|
3029
|
-
does_not_equal?: number | undefined;
|
|
3030
3311
|
greater_than?: number | undefined;
|
|
3031
3312
|
greater_than_or_equal_to?: number | undefined;
|
|
3032
3313
|
less_than?: number | undefined;
|
|
@@ -3036,6 +3317,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
3036
3317
|
} | {
|
|
3037
3318
|
date: {
|
|
3038
3319
|
equals?: string | undefined;
|
|
3320
|
+
not_equals?: string | undefined;
|
|
3039
3321
|
is_empty?: boolean | undefined;
|
|
3040
3322
|
is_not_empty?: boolean | undefined;
|
|
3041
3323
|
after?: string | undefined;
|
|
@@ -3047,13 +3329,15 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
3047
3329
|
} | {
|
|
3048
3330
|
reference: {
|
|
3049
3331
|
equals?: string | undefined;
|
|
3332
|
+
not_equals?: string | undefined;
|
|
3050
3333
|
is_empty?: boolean | undefined;
|
|
3051
3334
|
is_not_empty?: boolean | undefined;
|
|
3052
3335
|
};
|
|
3053
3336
|
attribute: string;
|
|
3054
3337
|
} | {
|
|
3055
3338
|
boolean: {
|
|
3056
|
-
equals
|
|
3339
|
+
equals?: boolean | undefined;
|
|
3340
|
+
not_equals?: boolean | undefined;
|
|
3057
3341
|
};
|
|
3058
3342
|
attribute: string;
|
|
3059
3343
|
} | {
|
|
@@ -3100,6 +3384,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
3100
3384
|
} | {
|
|
3101
3385
|
string: {
|
|
3102
3386
|
equals?: string | undefined;
|
|
3387
|
+
not_equals?: string | undefined;
|
|
3103
3388
|
contains?: string | undefined;
|
|
3104
3389
|
beginsWith?: string | undefined;
|
|
3105
3390
|
is_empty?: boolean | undefined;
|
|
@@ -3113,9 +3398,9 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
3113
3398
|
} | {
|
|
3114
3399
|
number: {
|
|
3115
3400
|
equals?: number | undefined;
|
|
3401
|
+
not_equals?: number | undefined;
|
|
3116
3402
|
is_empty?: boolean | undefined;
|
|
3117
3403
|
is_not_empty?: boolean | undefined;
|
|
3118
|
-
does_not_equal?: number | undefined;
|
|
3119
3404
|
greater_than?: number | undefined;
|
|
3120
3405
|
greater_than_or_equal_to?: number | undefined;
|
|
3121
3406
|
less_than?: number | undefined;
|
|
@@ -3125,6 +3410,7 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
3125
3410
|
} | {
|
|
3126
3411
|
date: {
|
|
3127
3412
|
equals?: string | undefined;
|
|
3413
|
+
not_equals?: string | undefined;
|
|
3128
3414
|
is_empty?: boolean | undefined;
|
|
3129
3415
|
is_not_empty?: boolean | undefined;
|
|
3130
3416
|
after?: string | undefined;
|
|
@@ -3136,13 +3422,15 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
3136
3422
|
} | {
|
|
3137
3423
|
reference: {
|
|
3138
3424
|
equals?: string | undefined;
|
|
3425
|
+
not_equals?: string | undefined;
|
|
3139
3426
|
is_empty?: boolean | undefined;
|
|
3140
3427
|
is_not_empty?: boolean | undefined;
|
|
3141
3428
|
};
|
|
3142
3429
|
attribute: string;
|
|
3143
3430
|
} | {
|
|
3144
3431
|
boolean: {
|
|
3145
|
-
equals
|
|
3432
|
+
equals?: boolean | undefined;
|
|
3433
|
+
not_equals?: boolean | undefined;
|
|
3146
3434
|
};
|
|
3147
3435
|
attribute: string;
|
|
3148
3436
|
})[];
|