@cplace/test-mcp-server 1.1.5 → 1.2.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/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 +47 -56
- package/dist/index.js.map +1 -1
- package/dist/profiles.js +1 -1
- package/dist/profiles.js.map +1 -1
- package/dist/searchConversion.d.ts.map +1 -1
- package/dist/searchConversion.js +98 -0
- package/dist/searchConversion.js.map +1 -1
- package/dist/searchSchema.d.ts +1320 -0
- package/dist/searchSchema.d.ts.map +1 -1
- package/dist/searchSchema.js +86 -0
- package/dist/searchSchema.js.map +1 -1
- package/dist/tools/csv-export.d.ts +1320 -0
- package/dist/tools/csv-export.d.ts.map +1 -1
- package/dist/tools/generic-layouts.d.ts +68 -0
- package/dist/tools/generic-layouts.d.ts.map +1 -1
- package/dist/tools/generic-layouts.js +273 -0
- package/dist/tools/generic-layouts.js.map +1 -1
- package/dist/tools/search.d.ts +1322 -0
- package/dist/tools/search.d.ts.map +1 -1
- package/dist/tools/search.js +48 -2
- package/dist/tools/search.js.map +1 -1
- package/dist/tools/url-resolution.d.ts +16 -0
- package/dist/tools/url-resolution.d.ts.map +1 -0
- package/dist/tools/url-resolution.js +35 -0
- package/dist/tools/url-resolution.js.map +1 -0
- package/dist/widget-specifications/cf.platform.embeddedSearchAsTable/search.md +13 -0
- package/package.json +1 -1
package/dist/searchSchema.d.ts
CHANGED
|
@@ -243,6 +243,174 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
243
243
|
equals: boolean;
|
|
244
244
|
};
|
|
245
245
|
attribute: string;
|
|
246
|
+
}>, z.ZodObject<{
|
|
247
|
+
relativeReference: z.ZodObject<{
|
|
248
|
+
attribute: z.ZodString;
|
|
249
|
+
operator: z.ZodString;
|
|
250
|
+
}, "strip", z.ZodTypeAny, {
|
|
251
|
+
attribute: string;
|
|
252
|
+
operator: string;
|
|
253
|
+
}, {
|
|
254
|
+
attribute: string;
|
|
255
|
+
operator: string;
|
|
256
|
+
}>;
|
|
257
|
+
}, "strip", z.ZodTypeAny, {
|
|
258
|
+
relativeReference: {
|
|
259
|
+
attribute: string;
|
|
260
|
+
operator: string;
|
|
261
|
+
};
|
|
262
|
+
}, {
|
|
263
|
+
relativeReference: {
|
|
264
|
+
attribute: string;
|
|
265
|
+
operator: string;
|
|
266
|
+
};
|
|
267
|
+
}>, z.ZodObject<{
|
|
268
|
+
relativeDate: z.ZodObject<{
|
|
269
|
+
attribute: z.ZodString;
|
|
270
|
+
operator: z.ZodEnum<["equals", "lessThan", "lessEquals", "greaterThan", "greaterEquals"]>;
|
|
271
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
272
|
+
relativeToAttribute: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
273
|
+
}, "strip", z.ZodTypeAny, {
|
|
274
|
+
attribute: string;
|
|
275
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
276
|
+
offset?: number | undefined;
|
|
277
|
+
relativeToAttribute?: string | null | undefined;
|
|
278
|
+
}, {
|
|
279
|
+
attribute: string;
|
|
280
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
281
|
+
offset?: number | undefined;
|
|
282
|
+
relativeToAttribute?: string | null | undefined;
|
|
283
|
+
}>;
|
|
284
|
+
}, "strip", z.ZodTypeAny, {
|
|
285
|
+
relativeDate: {
|
|
286
|
+
attribute: string;
|
|
287
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
288
|
+
offset?: number | undefined;
|
|
289
|
+
relativeToAttribute?: string | null | undefined;
|
|
290
|
+
};
|
|
291
|
+
}, {
|
|
292
|
+
relativeDate: {
|
|
293
|
+
attribute: string;
|
|
294
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
295
|
+
offset?: number | undefined;
|
|
296
|
+
relativeToAttribute?: string | null | undefined;
|
|
297
|
+
};
|
|
298
|
+
}>, z.ZodObject<{
|
|
299
|
+
relativeString: z.ZodObject<{
|
|
300
|
+
attribute: z.ZodString;
|
|
301
|
+
sourceAttribute: z.ZodString;
|
|
302
|
+
}, "strip", z.ZodTypeAny, {
|
|
303
|
+
attribute: string;
|
|
304
|
+
sourceAttribute: string;
|
|
305
|
+
}, {
|
|
306
|
+
attribute: string;
|
|
307
|
+
sourceAttribute: string;
|
|
308
|
+
}>;
|
|
309
|
+
}, "strip", z.ZodTypeAny, {
|
|
310
|
+
relativeString: {
|
|
311
|
+
attribute: string;
|
|
312
|
+
sourceAttribute: string;
|
|
313
|
+
};
|
|
314
|
+
}, {
|
|
315
|
+
relativeString: {
|
|
316
|
+
attribute: string;
|
|
317
|
+
sourceAttribute: string;
|
|
318
|
+
};
|
|
319
|
+
}>, z.ZodObject<{
|
|
320
|
+
relativeNumber: z.ZodObject<{
|
|
321
|
+
attribute: z.ZodString;
|
|
322
|
+
sourceAttribute: z.ZodString;
|
|
323
|
+
operator: z.ZodOptional<z.ZodEnum<["equals", "lessThan", "lessEquals", "greaterThan", "greaterEquals"]>>;
|
|
324
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
325
|
+
}, "strip", z.ZodTypeAny, {
|
|
326
|
+
attribute: string;
|
|
327
|
+
sourceAttribute: string;
|
|
328
|
+
offset?: number | undefined;
|
|
329
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
330
|
+
}, {
|
|
331
|
+
attribute: string;
|
|
332
|
+
sourceAttribute: string;
|
|
333
|
+
offset?: number | undefined;
|
|
334
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
335
|
+
}>;
|
|
336
|
+
}, "strip", z.ZodTypeAny, {
|
|
337
|
+
relativeNumber: {
|
|
338
|
+
attribute: string;
|
|
339
|
+
sourceAttribute: string;
|
|
340
|
+
offset?: number | undefined;
|
|
341
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
342
|
+
};
|
|
343
|
+
}, {
|
|
344
|
+
relativeNumber: {
|
|
345
|
+
attribute: string;
|
|
346
|
+
sourceAttribute: string;
|
|
347
|
+
offset?: number | undefined;
|
|
348
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
349
|
+
};
|
|
350
|
+
}>, z.ZodObject<{
|
|
351
|
+
relativeBoolean: z.ZodObject<{
|
|
352
|
+
attribute: z.ZodString;
|
|
353
|
+
sourceAttribute: z.ZodString;
|
|
354
|
+
}, "strip", z.ZodTypeAny, {
|
|
355
|
+
attribute: string;
|
|
356
|
+
sourceAttribute: string;
|
|
357
|
+
}, {
|
|
358
|
+
attribute: string;
|
|
359
|
+
sourceAttribute: string;
|
|
360
|
+
}>;
|
|
361
|
+
}, "strip", z.ZodTypeAny, {
|
|
362
|
+
relativeBoolean: {
|
|
363
|
+
attribute: string;
|
|
364
|
+
sourceAttribute: string;
|
|
365
|
+
};
|
|
366
|
+
}, {
|
|
367
|
+
relativeBoolean: {
|
|
368
|
+
attribute: string;
|
|
369
|
+
sourceAttribute: string;
|
|
370
|
+
};
|
|
371
|
+
}>, z.ZodObject<{
|
|
372
|
+
relativeSpace: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
373
|
+
}, "strip", z.ZodTypeAny, {
|
|
374
|
+
relativeSpace: {};
|
|
375
|
+
}, {
|
|
376
|
+
relativeSpace: {};
|
|
377
|
+
}>, z.ZodObject<{
|
|
378
|
+
relativeUid: z.ZodObject<{
|
|
379
|
+
operator: z.ZodString;
|
|
380
|
+
}, "strip", z.ZodTypeAny, {
|
|
381
|
+
operator: string;
|
|
382
|
+
}, {
|
|
383
|
+
operator: string;
|
|
384
|
+
}>;
|
|
385
|
+
}, "strip", z.ZodTypeAny, {
|
|
386
|
+
relativeUid: {
|
|
387
|
+
operator: string;
|
|
388
|
+
};
|
|
389
|
+
}, {
|
|
390
|
+
relativeUid: {
|
|
391
|
+
operator: string;
|
|
392
|
+
};
|
|
393
|
+
}>, z.ZodObject<{
|
|
394
|
+
relativeBuiltinReference: z.ZodObject<{
|
|
395
|
+
attribute: z.ZodString;
|
|
396
|
+
operator: z.ZodString;
|
|
397
|
+
}, "strip", z.ZodTypeAny, {
|
|
398
|
+
attribute: string;
|
|
399
|
+
operator: string;
|
|
400
|
+
}, {
|
|
401
|
+
attribute: string;
|
|
402
|
+
operator: string;
|
|
403
|
+
}>;
|
|
404
|
+
}, "strip", z.ZodTypeAny, {
|
|
405
|
+
relativeBuiltinReference: {
|
|
406
|
+
attribute: string;
|
|
407
|
+
operator: string;
|
|
408
|
+
};
|
|
409
|
+
}, {
|
|
410
|
+
relativeBuiltinReference: {
|
|
411
|
+
attribute: string;
|
|
412
|
+
operator: string;
|
|
413
|
+
};
|
|
246
414
|
}>]>, z.ZodObject<{
|
|
247
415
|
and: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
248
416
|
name: z.ZodObject<{
|
|
@@ -488,6 +656,174 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
488
656
|
equals: boolean;
|
|
489
657
|
};
|
|
490
658
|
attribute: string;
|
|
659
|
+
}>, z.ZodObject<{
|
|
660
|
+
relativeReference: z.ZodObject<{
|
|
661
|
+
attribute: z.ZodString;
|
|
662
|
+
operator: z.ZodString;
|
|
663
|
+
}, "strip", z.ZodTypeAny, {
|
|
664
|
+
attribute: string;
|
|
665
|
+
operator: string;
|
|
666
|
+
}, {
|
|
667
|
+
attribute: string;
|
|
668
|
+
operator: string;
|
|
669
|
+
}>;
|
|
670
|
+
}, "strip", z.ZodTypeAny, {
|
|
671
|
+
relativeReference: {
|
|
672
|
+
attribute: string;
|
|
673
|
+
operator: string;
|
|
674
|
+
};
|
|
675
|
+
}, {
|
|
676
|
+
relativeReference: {
|
|
677
|
+
attribute: string;
|
|
678
|
+
operator: string;
|
|
679
|
+
};
|
|
680
|
+
}>, z.ZodObject<{
|
|
681
|
+
relativeDate: z.ZodObject<{
|
|
682
|
+
attribute: z.ZodString;
|
|
683
|
+
operator: z.ZodEnum<["equals", "lessThan", "lessEquals", "greaterThan", "greaterEquals"]>;
|
|
684
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
685
|
+
relativeToAttribute: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
686
|
+
}, "strip", z.ZodTypeAny, {
|
|
687
|
+
attribute: string;
|
|
688
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
689
|
+
offset?: number | undefined;
|
|
690
|
+
relativeToAttribute?: string | null | undefined;
|
|
691
|
+
}, {
|
|
692
|
+
attribute: string;
|
|
693
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
694
|
+
offset?: number | undefined;
|
|
695
|
+
relativeToAttribute?: string | null | undefined;
|
|
696
|
+
}>;
|
|
697
|
+
}, "strip", z.ZodTypeAny, {
|
|
698
|
+
relativeDate: {
|
|
699
|
+
attribute: string;
|
|
700
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
701
|
+
offset?: number | undefined;
|
|
702
|
+
relativeToAttribute?: string | null | undefined;
|
|
703
|
+
};
|
|
704
|
+
}, {
|
|
705
|
+
relativeDate: {
|
|
706
|
+
attribute: string;
|
|
707
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
708
|
+
offset?: number | undefined;
|
|
709
|
+
relativeToAttribute?: string | null | undefined;
|
|
710
|
+
};
|
|
711
|
+
}>, z.ZodObject<{
|
|
712
|
+
relativeString: z.ZodObject<{
|
|
713
|
+
attribute: z.ZodString;
|
|
714
|
+
sourceAttribute: z.ZodString;
|
|
715
|
+
}, "strip", z.ZodTypeAny, {
|
|
716
|
+
attribute: string;
|
|
717
|
+
sourceAttribute: string;
|
|
718
|
+
}, {
|
|
719
|
+
attribute: string;
|
|
720
|
+
sourceAttribute: string;
|
|
721
|
+
}>;
|
|
722
|
+
}, "strip", z.ZodTypeAny, {
|
|
723
|
+
relativeString: {
|
|
724
|
+
attribute: string;
|
|
725
|
+
sourceAttribute: string;
|
|
726
|
+
};
|
|
727
|
+
}, {
|
|
728
|
+
relativeString: {
|
|
729
|
+
attribute: string;
|
|
730
|
+
sourceAttribute: string;
|
|
731
|
+
};
|
|
732
|
+
}>, z.ZodObject<{
|
|
733
|
+
relativeNumber: z.ZodObject<{
|
|
734
|
+
attribute: z.ZodString;
|
|
735
|
+
sourceAttribute: z.ZodString;
|
|
736
|
+
operator: z.ZodOptional<z.ZodEnum<["equals", "lessThan", "lessEquals", "greaterThan", "greaterEquals"]>>;
|
|
737
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
738
|
+
}, "strip", z.ZodTypeAny, {
|
|
739
|
+
attribute: string;
|
|
740
|
+
sourceAttribute: string;
|
|
741
|
+
offset?: number | undefined;
|
|
742
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
743
|
+
}, {
|
|
744
|
+
attribute: string;
|
|
745
|
+
sourceAttribute: string;
|
|
746
|
+
offset?: number | undefined;
|
|
747
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
748
|
+
}>;
|
|
749
|
+
}, "strip", z.ZodTypeAny, {
|
|
750
|
+
relativeNumber: {
|
|
751
|
+
attribute: string;
|
|
752
|
+
sourceAttribute: string;
|
|
753
|
+
offset?: number | undefined;
|
|
754
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
755
|
+
};
|
|
756
|
+
}, {
|
|
757
|
+
relativeNumber: {
|
|
758
|
+
attribute: string;
|
|
759
|
+
sourceAttribute: string;
|
|
760
|
+
offset?: number | undefined;
|
|
761
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
762
|
+
};
|
|
763
|
+
}>, z.ZodObject<{
|
|
764
|
+
relativeBoolean: z.ZodObject<{
|
|
765
|
+
attribute: z.ZodString;
|
|
766
|
+
sourceAttribute: z.ZodString;
|
|
767
|
+
}, "strip", z.ZodTypeAny, {
|
|
768
|
+
attribute: string;
|
|
769
|
+
sourceAttribute: string;
|
|
770
|
+
}, {
|
|
771
|
+
attribute: string;
|
|
772
|
+
sourceAttribute: string;
|
|
773
|
+
}>;
|
|
774
|
+
}, "strip", z.ZodTypeAny, {
|
|
775
|
+
relativeBoolean: {
|
|
776
|
+
attribute: string;
|
|
777
|
+
sourceAttribute: string;
|
|
778
|
+
};
|
|
779
|
+
}, {
|
|
780
|
+
relativeBoolean: {
|
|
781
|
+
attribute: string;
|
|
782
|
+
sourceAttribute: string;
|
|
783
|
+
};
|
|
784
|
+
}>, z.ZodObject<{
|
|
785
|
+
relativeSpace: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
786
|
+
}, "strip", z.ZodTypeAny, {
|
|
787
|
+
relativeSpace: {};
|
|
788
|
+
}, {
|
|
789
|
+
relativeSpace: {};
|
|
790
|
+
}>, z.ZodObject<{
|
|
791
|
+
relativeUid: z.ZodObject<{
|
|
792
|
+
operator: z.ZodString;
|
|
793
|
+
}, "strip", z.ZodTypeAny, {
|
|
794
|
+
operator: string;
|
|
795
|
+
}, {
|
|
796
|
+
operator: string;
|
|
797
|
+
}>;
|
|
798
|
+
}, "strip", z.ZodTypeAny, {
|
|
799
|
+
relativeUid: {
|
|
800
|
+
operator: string;
|
|
801
|
+
};
|
|
802
|
+
}, {
|
|
803
|
+
relativeUid: {
|
|
804
|
+
operator: string;
|
|
805
|
+
};
|
|
806
|
+
}>, z.ZodObject<{
|
|
807
|
+
relativeBuiltinReference: z.ZodObject<{
|
|
808
|
+
attribute: z.ZodString;
|
|
809
|
+
operator: z.ZodString;
|
|
810
|
+
}, "strip", z.ZodTypeAny, {
|
|
811
|
+
attribute: string;
|
|
812
|
+
operator: string;
|
|
813
|
+
}, {
|
|
814
|
+
attribute: string;
|
|
815
|
+
operator: string;
|
|
816
|
+
}>;
|
|
817
|
+
}, "strip", z.ZodTypeAny, {
|
|
818
|
+
relativeBuiltinReference: {
|
|
819
|
+
attribute: string;
|
|
820
|
+
operator: string;
|
|
821
|
+
};
|
|
822
|
+
}, {
|
|
823
|
+
relativeBuiltinReference: {
|
|
824
|
+
attribute: string;
|
|
825
|
+
operator: string;
|
|
826
|
+
};
|
|
491
827
|
}>]>, z.ZodObject<{
|
|
492
828
|
or: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
493
829
|
name: z.ZodObject<{
|
|
@@ -733,9 +1069,217 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
733
1069
|
equals: boolean;
|
|
734
1070
|
};
|
|
735
1071
|
attribute: string;
|
|
1072
|
+
}>, z.ZodObject<{
|
|
1073
|
+
relativeReference: z.ZodObject<{
|
|
1074
|
+
attribute: z.ZodString;
|
|
1075
|
+
operator: z.ZodString;
|
|
1076
|
+
}, "strip", z.ZodTypeAny, {
|
|
1077
|
+
attribute: string;
|
|
1078
|
+
operator: string;
|
|
1079
|
+
}, {
|
|
1080
|
+
attribute: string;
|
|
1081
|
+
operator: string;
|
|
1082
|
+
}>;
|
|
1083
|
+
}, "strip", z.ZodTypeAny, {
|
|
1084
|
+
relativeReference: {
|
|
1085
|
+
attribute: string;
|
|
1086
|
+
operator: string;
|
|
1087
|
+
};
|
|
1088
|
+
}, {
|
|
1089
|
+
relativeReference: {
|
|
1090
|
+
attribute: string;
|
|
1091
|
+
operator: string;
|
|
1092
|
+
};
|
|
1093
|
+
}>, z.ZodObject<{
|
|
1094
|
+
relativeDate: z.ZodObject<{
|
|
1095
|
+
attribute: z.ZodString;
|
|
1096
|
+
operator: z.ZodEnum<["equals", "lessThan", "lessEquals", "greaterThan", "greaterEquals"]>;
|
|
1097
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
1098
|
+
relativeToAttribute: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1099
|
+
}, "strip", z.ZodTypeAny, {
|
|
1100
|
+
attribute: string;
|
|
1101
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
1102
|
+
offset?: number | undefined;
|
|
1103
|
+
relativeToAttribute?: string | null | undefined;
|
|
1104
|
+
}, {
|
|
1105
|
+
attribute: string;
|
|
1106
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
1107
|
+
offset?: number | undefined;
|
|
1108
|
+
relativeToAttribute?: string | null | undefined;
|
|
1109
|
+
}>;
|
|
1110
|
+
}, "strip", z.ZodTypeAny, {
|
|
1111
|
+
relativeDate: {
|
|
1112
|
+
attribute: string;
|
|
1113
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
1114
|
+
offset?: number | undefined;
|
|
1115
|
+
relativeToAttribute?: string | null | undefined;
|
|
1116
|
+
};
|
|
1117
|
+
}, {
|
|
1118
|
+
relativeDate: {
|
|
1119
|
+
attribute: string;
|
|
1120
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
1121
|
+
offset?: number | undefined;
|
|
1122
|
+
relativeToAttribute?: string | null | undefined;
|
|
1123
|
+
};
|
|
1124
|
+
}>, z.ZodObject<{
|
|
1125
|
+
relativeString: z.ZodObject<{
|
|
1126
|
+
attribute: z.ZodString;
|
|
1127
|
+
sourceAttribute: z.ZodString;
|
|
1128
|
+
}, "strip", z.ZodTypeAny, {
|
|
1129
|
+
attribute: string;
|
|
1130
|
+
sourceAttribute: string;
|
|
1131
|
+
}, {
|
|
1132
|
+
attribute: string;
|
|
1133
|
+
sourceAttribute: string;
|
|
1134
|
+
}>;
|
|
1135
|
+
}, "strip", z.ZodTypeAny, {
|
|
1136
|
+
relativeString: {
|
|
1137
|
+
attribute: string;
|
|
1138
|
+
sourceAttribute: string;
|
|
1139
|
+
};
|
|
1140
|
+
}, {
|
|
1141
|
+
relativeString: {
|
|
1142
|
+
attribute: string;
|
|
1143
|
+
sourceAttribute: string;
|
|
1144
|
+
};
|
|
1145
|
+
}>, z.ZodObject<{
|
|
1146
|
+
relativeNumber: z.ZodObject<{
|
|
1147
|
+
attribute: z.ZodString;
|
|
1148
|
+
sourceAttribute: z.ZodString;
|
|
1149
|
+
operator: z.ZodOptional<z.ZodEnum<["equals", "lessThan", "lessEquals", "greaterThan", "greaterEquals"]>>;
|
|
1150
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
1151
|
+
}, "strip", z.ZodTypeAny, {
|
|
1152
|
+
attribute: string;
|
|
1153
|
+
sourceAttribute: string;
|
|
1154
|
+
offset?: number | undefined;
|
|
1155
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
1156
|
+
}, {
|
|
1157
|
+
attribute: string;
|
|
1158
|
+
sourceAttribute: string;
|
|
1159
|
+
offset?: number | undefined;
|
|
1160
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
1161
|
+
}>;
|
|
1162
|
+
}, "strip", z.ZodTypeAny, {
|
|
1163
|
+
relativeNumber: {
|
|
1164
|
+
attribute: string;
|
|
1165
|
+
sourceAttribute: string;
|
|
1166
|
+
offset?: number | undefined;
|
|
1167
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
1168
|
+
};
|
|
1169
|
+
}, {
|
|
1170
|
+
relativeNumber: {
|
|
1171
|
+
attribute: string;
|
|
1172
|
+
sourceAttribute: string;
|
|
1173
|
+
offset?: number | undefined;
|
|
1174
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
1175
|
+
};
|
|
1176
|
+
}>, z.ZodObject<{
|
|
1177
|
+
relativeBoolean: z.ZodObject<{
|
|
1178
|
+
attribute: z.ZodString;
|
|
1179
|
+
sourceAttribute: z.ZodString;
|
|
1180
|
+
}, "strip", z.ZodTypeAny, {
|
|
1181
|
+
attribute: string;
|
|
1182
|
+
sourceAttribute: string;
|
|
1183
|
+
}, {
|
|
1184
|
+
attribute: string;
|
|
1185
|
+
sourceAttribute: string;
|
|
1186
|
+
}>;
|
|
1187
|
+
}, "strip", z.ZodTypeAny, {
|
|
1188
|
+
relativeBoolean: {
|
|
1189
|
+
attribute: string;
|
|
1190
|
+
sourceAttribute: string;
|
|
1191
|
+
};
|
|
1192
|
+
}, {
|
|
1193
|
+
relativeBoolean: {
|
|
1194
|
+
attribute: string;
|
|
1195
|
+
sourceAttribute: string;
|
|
1196
|
+
};
|
|
1197
|
+
}>, z.ZodObject<{
|
|
1198
|
+
relativeSpace: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
1199
|
+
}, "strip", z.ZodTypeAny, {
|
|
1200
|
+
relativeSpace: {};
|
|
1201
|
+
}, {
|
|
1202
|
+
relativeSpace: {};
|
|
1203
|
+
}>, z.ZodObject<{
|
|
1204
|
+
relativeUid: z.ZodObject<{
|
|
1205
|
+
operator: z.ZodString;
|
|
1206
|
+
}, "strip", z.ZodTypeAny, {
|
|
1207
|
+
operator: string;
|
|
1208
|
+
}, {
|
|
1209
|
+
operator: string;
|
|
1210
|
+
}>;
|
|
1211
|
+
}, "strip", z.ZodTypeAny, {
|
|
1212
|
+
relativeUid: {
|
|
1213
|
+
operator: string;
|
|
1214
|
+
};
|
|
1215
|
+
}, {
|
|
1216
|
+
relativeUid: {
|
|
1217
|
+
operator: string;
|
|
1218
|
+
};
|
|
1219
|
+
}>, z.ZodObject<{
|
|
1220
|
+
relativeBuiltinReference: z.ZodObject<{
|
|
1221
|
+
attribute: z.ZodString;
|
|
1222
|
+
operator: z.ZodString;
|
|
1223
|
+
}, "strip", z.ZodTypeAny, {
|
|
1224
|
+
attribute: string;
|
|
1225
|
+
operator: string;
|
|
1226
|
+
}, {
|
|
1227
|
+
attribute: string;
|
|
1228
|
+
operator: string;
|
|
1229
|
+
}>;
|
|
1230
|
+
}, "strip", z.ZodTypeAny, {
|
|
1231
|
+
relativeBuiltinReference: {
|
|
1232
|
+
attribute: string;
|
|
1233
|
+
operator: string;
|
|
1234
|
+
};
|
|
1235
|
+
}, {
|
|
1236
|
+
relativeBuiltinReference: {
|
|
1237
|
+
attribute: string;
|
|
1238
|
+
operator: string;
|
|
1239
|
+
};
|
|
736
1240
|
}>]>, "many">;
|
|
737
1241
|
}, "strip", z.ZodTypeAny, {
|
|
738
1242
|
or: ({
|
|
1243
|
+
relativeReference: {
|
|
1244
|
+
attribute: string;
|
|
1245
|
+
operator: string;
|
|
1246
|
+
};
|
|
1247
|
+
} | {
|
|
1248
|
+
relativeDate: {
|
|
1249
|
+
attribute: string;
|
|
1250
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
1251
|
+
offset?: number | undefined;
|
|
1252
|
+
relativeToAttribute?: string | null | undefined;
|
|
1253
|
+
};
|
|
1254
|
+
} | {
|
|
1255
|
+
relativeString: {
|
|
1256
|
+
attribute: string;
|
|
1257
|
+
sourceAttribute: string;
|
|
1258
|
+
};
|
|
1259
|
+
} | {
|
|
1260
|
+
relativeNumber: {
|
|
1261
|
+
attribute: string;
|
|
1262
|
+
sourceAttribute: string;
|
|
1263
|
+
offset?: number | undefined;
|
|
1264
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
1265
|
+
};
|
|
1266
|
+
} | {
|
|
1267
|
+
relativeBoolean: {
|
|
1268
|
+
attribute: string;
|
|
1269
|
+
sourceAttribute: string;
|
|
1270
|
+
};
|
|
1271
|
+
} | {
|
|
1272
|
+
relativeSpace: {};
|
|
1273
|
+
} | {
|
|
1274
|
+
relativeUid: {
|
|
1275
|
+
operator: string;
|
|
1276
|
+
};
|
|
1277
|
+
} | {
|
|
1278
|
+
relativeBuiltinReference: {
|
|
1279
|
+
attribute: string;
|
|
1280
|
+
operator: string;
|
|
1281
|
+
};
|
|
1282
|
+
} | {
|
|
739
1283
|
string: {
|
|
740
1284
|
equals?: string | undefined;
|
|
741
1285
|
contains?: string | undefined;
|
|
@@ -786,6 +1330,46 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
786
1330
|
})[];
|
|
787
1331
|
}, {
|
|
788
1332
|
or: ({
|
|
1333
|
+
relativeReference: {
|
|
1334
|
+
attribute: string;
|
|
1335
|
+
operator: string;
|
|
1336
|
+
};
|
|
1337
|
+
} | {
|
|
1338
|
+
relativeDate: {
|
|
1339
|
+
attribute: string;
|
|
1340
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
1341
|
+
offset?: number | undefined;
|
|
1342
|
+
relativeToAttribute?: string | null | undefined;
|
|
1343
|
+
};
|
|
1344
|
+
} | {
|
|
1345
|
+
relativeString: {
|
|
1346
|
+
attribute: string;
|
|
1347
|
+
sourceAttribute: string;
|
|
1348
|
+
};
|
|
1349
|
+
} | {
|
|
1350
|
+
relativeNumber: {
|
|
1351
|
+
attribute: string;
|
|
1352
|
+
sourceAttribute: string;
|
|
1353
|
+
offset?: number | undefined;
|
|
1354
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
1355
|
+
};
|
|
1356
|
+
} | {
|
|
1357
|
+
relativeBoolean: {
|
|
1358
|
+
attribute: string;
|
|
1359
|
+
sourceAttribute: string;
|
|
1360
|
+
};
|
|
1361
|
+
} | {
|
|
1362
|
+
relativeSpace: {};
|
|
1363
|
+
} | {
|
|
1364
|
+
relativeUid: {
|
|
1365
|
+
operator: string;
|
|
1366
|
+
};
|
|
1367
|
+
} | {
|
|
1368
|
+
relativeBuiltinReference: {
|
|
1369
|
+
attribute: string;
|
|
1370
|
+
operator: string;
|
|
1371
|
+
};
|
|
1372
|
+
} | {
|
|
789
1373
|
string: {
|
|
790
1374
|
equals?: string | undefined;
|
|
791
1375
|
contains?: string | undefined;
|
|
@@ -837,6 +1421,46 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
837
1421
|
}>]>, "many">;
|
|
838
1422
|
}, "strip", z.ZodTypeAny, {
|
|
839
1423
|
and: ({
|
|
1424
|
+
relativeReference: {
|
|
1425
|
+
attribute: string;
|
|
1426
|
+
operator: string;
|
|
1427
|
+
};
|
|
1428
|
+
} | {
|
|
1429
|
+
relativeDate: {
|
|
1430
|
+
attribute: string;
|
|
1431
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
1432
|
+
offset?: number | undefined;
|
|
1433
|
+
relativeToAttribute?: string | null | undefined;
|
|
1434
|
+
};
|
|
1435
|
+
} | {
|
|
1436
|
+
relativeString: {
|
|
1437
|
+
attribute: string;
|
|
1438
|
+
sourceAttribute: string;
|
|
1439
|
+
};
|
|
1440
|
+
} | {
|
|
1441
|
+
relativeNumber: {
|
|
1442
|
+
attribute: string;
|
|
1443
|
+
sourceAttribute: string;
|
|
1444
|
+
offset?: number | undefined;
|
|
1445
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
1446
|
+
};
|
|
1447
|
+
} | {
|
|
1448
|
+
relativeBoolean: {
|
|
1449
|
+
attribute: string;
|
|
1450
|
+
sourceAttribute: string;
|
|
1451
|
+
};
|
|
1452
|
+
} | {
|
|
1453
|
+
relativeSpace: {};
|
|
1454
|
+
} | {
|
|
1455
|
+
relativeUid: {
|
|
1456
|
+
operator: string;
|
|
1457
|
+
};
|
|
1458
|
+
} | {
|
|
1459
|
+
relativeBuiltinReference: {
|
|
1460
|
+
attribute: string;
|
|
1461
|
+
operator: string;
|
|
1462
|
+
};
|
|
1463
|
+
} | {
|
|
840
1464
|
string: {
|
|
841
1465
|
equals?: string | undefined;
|
|
842
1466
|
contains?: string | undefined;
|
|
@@ -886,6 +1510,46 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
886
1510
|
attribute: string;
|
|
887
1511
|
} | {
|
|
888
1512
|
or: ({
|
|
1513
|
+
relativeReference: {
|
|
1514
|
+
attribute: string;
|
|
1515
|
+
operator: string;
|
|
1516
|
+
};
|
|
1517
|
+
} | {
|
|
1518
|
+
relativeDate: {
|
|
1519
|
+
attribute: string;
|
|
1520
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
1521
|
+
offset?: number | undefined;
|
|
1522
|
+
relativeToAttribute?: string | null | undefined;
|
|
1523
|
+
};
|
|
1524
|
+
} | {
|
|
1525
|
+
relativeString: {
|
|
1526
|
+
attribute: string;
|
|
1527
|
+
sourceAttribute: string;
|
|
1528
|
+
};
|
|
1529
|
+
} | {
|
|
1530
|
+
relativeNumber: {
|
|
1531
|
+
attribute: string;
|
|
1532
|
+
sourceAttribute: string;
|
|
1533
|
+
offset?: number | undefined;
|
|
1534
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
1535
|
+
};
|
|
1536
|
+
} | {
|
|
1537
|
+
relativeBoolean: {
|
|
1538
|
+
attribute: string;
|
|
1539
|
+
sourceAttribute: string;
|
|
1540
|
+
};
|
|
1541
|
+
} | {
|
|
1542
|
+
relativeSpace: {};
|
|
1543
|
+
} | {
|
|
1544
|
+
relativeUid: {
|
|
1545
|
+
operator: string;
|
|
1546
|
+
};
|
|
1547
|
+
} | {
|
|
1548
|
+
relativeBuiltinReference: {
|
|
1549
|
+
attribute: string;
|
|
1550
|
+
operator: string;
|
|
1551
|
+
};
|
|
1552
|
+
} | {
|
|
889
1553
|
string: {
|
|
890
1554
|
equals?: string | undefined;
|
|
891
1555
|
contains?: string | undefined;
|
|
@@ -937,6 +1601,46 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
937
1601
|
})[];
|
|
938
1602
|
}, {
|
|
939
1603
|
and: ({
|
|
1604
|
+
relativeReference: {
|
|
1605
|
+
attribute: string;
|
|
1606
|
+
operator: string;
|
|
1607
|
+
};
|
|
1608
|
+
} | {
|
|
1609
|
+
relativeDate: {
|
|
1610
|
+
attribute: string;
|
|
1611
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
1612
|
+
offset?: number | undefined;
|
|
1613
|
+
relativeToAttribute?: string | null | undefined;
|
|
1614
|
+
};
|
|
1615
|
+
} | {
|
|
1616
|
+
relativeString: {
|
|
1617
|
+
attribute: string;
|
|
1618
|
+
sourceAttribute: string;
|
|
1619
|
+
};
|
|
1620
|
+
} | {
|
|
1621
|
+
relativeNumber: {
|
|
1622
|
+
attribute: string;
|
|
1623
|
+
sourceAttribute: string;
|
|
1624
|
+
offset?: number | undefined;
|
|
1625
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
1626
|
+
};
|
|
1627
|
+
} | {
|
|
1628
|
+
relativeBoolean: {
|
|
1629
|
+
attribute: string;
|
|
1630
|
+
sourceAttribute: string;
|
|
1631
|
+
};
|
|
1632
|
+
} | {
|
|
1633
|
+
relativeSpace: {};
|
|
1634
|
+
} | {
|
|
1635
|
+
relativeUid: {
|
|
1636
|
+
operator: string;
|
|
1637
|
+
};
|
|
1638
|
+
} | {
|
|
1639
|
+
relativeBuiltinReference: {
|
|
1640
|
+
attribute: string;
|
|
1641
|
+
operator: string;
|
|
1642
|
+
};
|
|
1643
|
+
} | {
|
|
940
1644
|
string: {
|
|
941
1645
|
equals?: string | undefined;
|
|
942
1646
|
contains?: string | undefined;
|
|
@@ -986,6 +1690,46 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
986
1690
|
attribute: string;
|
|
987
1691
|
} | {
|
|
988
1692
|
or: ({
|
|
1693
|
+
relativeReference: {
|
|
1694
|
+
attribute: string;
|
|
1695
|
+
operator: string;
|
|
1696
|
+
};
|
|
1697
|
+
} | {
|
|
1698
|
+
relativeDate: {
|
|
1699
|
+
attribute: string;
|
|
1700
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
1701
|
+
offset?: number | undefined;
|
|
1702
|
+
relativeToAttribute?: string | null | undefined;
|
|
1703
|
+
};
|
|
1704
|
+
} | {
|
|
1705
|
+
relativeString: {
|
|
1706
|
+
attribute: string;
|
|
1707
|
+
sourceAttribute: string;
|
|
1708
|
+
};
|
|
1709
|
+
} | {
|
|
1710
|
+
relativeNumber: {
|
|
1711
|
+
attribute: string;
|
|
1712
|
+
sourceAttribute: string;
|
|
1713
|
+
offset?: number | undefined;
|
|
1714
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
1715
|
+
};
|
|
1716
|
+
} | {
|
|
1717
|
+
relativeBoolean: {
|
|
1718
|
+
attribute: string;
|
|
1719
|
+
sourceAttribute: string;
|
|
1720
|
+
};
|
|
1721
|
+
} | {
|
|
1722
|
+
relativeSpace: {};
|
|
1723
|
+
} | {
|
|
1724
|
+
relativeUid: {
|
|
1725
|
+
operator: string;
|
|
1726
|
+
};
|
|
1727
|
+
} | {
|
|
1728
|
+
relativeBuiltinReference: {
|
|
1729
|
+
attribute: string;
|
|
1730
|
+
operator: string;
|
|
1731
|
+
};
|
|
1732
|
+
} | {
|
|
989
1733
|
string: {
|
|
990
1734
|
equals?: string | undefined;
|
|
991
1735
|
contains?: string | undefined;
|
|
@@ -1280,6 +2024,174 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1280
2024
|
equals: boolean;
|
|
1281
2025
|
};
|
|
1282
2026
|
attribute: string;
|
|
2027
|
+
}>, z.ZodObject<{
|
|
2028
|
+
relativeReference: z.ZodObject<{
|
|
2029
|
+
attribute: z.ZodString;
|
|
2030
|
+
operator: z.ZodString;
|
|
2031
|
+
}, "strip", z.ZodTypeAny, {
|
|
2032
|
+
attribute: string;
|
|
2033
|
+
operator: string;
|
|
2034
|
+
}, {
|
|
2035
|
+
attribute: string;
|
|
2036
|
+
operator: string;
|
|
2037
|
+
}>;
|
|
2038
|
+
}, "strip", z.ZodTypeAny, {
|
|
2039
|
+
relativeReference: {
|
|
2040
|
+
attribute: string;
|
|
2041
|
+
operator: string;
|
|
2042
|
+
};
|
|
2043
|
+
}, {
|
|
2044
|
+
relativeReference: {
|
|
2045
|
+
attribute: string;
|
|
2046
|
+
operator: string;
|
|
2047
|
+
};
|
|
2048
|
+
}>, z.ZodObject<{
|
|
2049
|
+
relativeDate: z.ZodObject<{
|
|
2050
|
+
attribute: z.ZodString;
|
|
2051
|
+
operator: z.ZodEnum<["equals", "lessThan", "lessEquals", "greaterThan", "greaterEquals"]>;
|
|
2052
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
2053
|
+
relativeToAttribute: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2054
|
+
}, "strip", z.ZodTypeAny, {
|
|
2055
|
+
attribute: string;
|
|
2056
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
2057
|
+
offset?: number | undefined;
|
|
2058
|
+
relativeToAttribute?: string | null | undefined;
|
|
2059
|
+
}, {
|
|
2060
|
+
attribute: string;
|
|
2061
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
2062
|
+
offset?: number | undefined;
|
|
2063
|
+
relativeToAttribute?: string | null | undefined;
|
|
2064
|
+
}>;
|
|
2065
|
+
}, "strip", z.ZodTypeAny, {
|
|
2066
|
+
relativeDate: {
|
|
2067
|
+
attribute: string;
|
|
2068
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
2069
|
+
offset?: number | undefined;
|
|
2070
|
+
relativeToAttribute?: string | null | undefined;
|
|
2071
|
+
};
|
|
2072
|
+
}, {
|
|
2073
|
+
relativeDate: {
|
|
2074
|
+
attribute: string;
|
|
2075
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
2076
|
+
offset?: number | undefined;
|
|
2077
|
+
relativeToAttribute?: string | null | undefined;
|
|
2078
|
+
};
|
|
2079
|
+
}>, z.ZodObject<{
|
|
2080
|
+
relativeString: z.ZodObject<{
|
|
2081
|
+
attribute: z.ZodString;
|
|
2082
|
+
sourceAttribute: z.ZodString;
|
|
2083
|
+
}, "strip", z.ZodTypeAny, {
|
|
2084
|
+
attribute: string;
|
|
2085
|
+
sourceAttribute: string;
|
|
2086
|
+
}, {
|
|
2087
|
+
attribute: string;
|
|
2088
|
+
sourceAttribute: string;
|
|
2089
|
+
}>;
|
|
2090
|
+
}, "strip", z.ZodTypeAny, {
|
|
2091
|
+
relativeString: {
|
|
2092
|
+
attribute: string;
|
|
2093
|
+
sourceAttribute: string;
|
|
2094
|
+
};
|
|
2095
|
+
}, {
|
|
2096
|
+
relativeString: {
|
|
2097
|
+
attribute: string;
|
|
2098
|
+
sourceAttribute: string;
|
|
2099
|
+
};
|
|
2100
|
+
}>, z.ZodObject<{
|
|
2101
|
+
relativeNumber: z.ZodObject<{
|
|
2102
|
+
attribute: z.ZodString;
|
|
2103
|
+
sourceAttribute: z.ZodString;
|
|
2104
|
+
operator: z.ZodOptional<z.ZodEnum<["equals", "lessThan", "lessEquals", "greaterThan", "greaterEquals"]>>;
|
|
2105
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
2106
|
+
}, "strip", z.ZodTypeAny, {
|
|
2107
|
+
attribute: string;
|
|
2108
|
+
sourceAttribute: string;
|
|
2109
|
+
offset?: number | undefined;
|
|
2110
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
2111
|
+
}, {
|
|
2112
|
+
attribute: string;
|
|
2113
|
+
sourceAttribute: string;
|
|
2114
|
+
offset?: number | undefined;
|
|
2115
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
2116
|
+
}>;
|
|
2117
|
+
}, "strip", z.ZodTypeAny, {
|
|
2118
|
+
relativeNumber: {
|
|
2119
|
+
attribute: string;
|
|
2120
|
+
sourceAttribute: string;
|
|
2121
|
+
offset?: number | undefined;
|
|
2122
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
2123
|
+
};
|
|
2124
|
+
}, {
|
|
2125
|
+
relativeNumber: {
|
|
2126
|
+
attribute: string;
|
|
2127
|
+
sourceAttribute: string;
|
|
2128
|
+
offset?: number | undefined;
|
|
2129
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
2130
|
+
};
|
|
2131
|
+
}>, z.ZodObject<{
|
|
2132
|
+
relativeBoolean: z.ZodObject<{
|
|
2133
|
+
attribute: z.ZodString;
|
|
2134
|
+
sourceAttribute: z.ZodString;
|
|
2135
|
+
}, "strip", z.ZodTypeAny, {
|
|
2136
|
+
attribute: string;
|
|
2137
|
+
sourceAttribute: string;
|
|
2138
|
+
}, {
|
|
2139
|
+
attribute: string;
|
|
2140
|
+
sourceAttribute: string;
|
|
2141
|
+
}>;
|
|
2142
|
+
}, "strip", z.ZodTypeAny, {
|
|
2143
|
+
relativeBoolean: {
|
|
2144
|
+
attribute: string;
|
|
2145
|
+
sourceAttribute: string;
|
|
2146
|
+
};
|
|
2147
|
+
}, {
|
|
2148
|
+
relativeBoolean: {
|
|
2149
|
+
attribute: string;
|
|
2150
|
+
sourceAttribute: string;
|
|
2151
|
+
};
|
|
2152
|
+
}>, z.ZodObject<{
|
|
2153
|
+
relativeSpace: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
2154
|
+
}, "strip", z.ZodTypeAny, {
|
|
2155
|
+
relativeSpace: {};
|
|
2156
|
+
}, {
|
|
2157
|
+
relativeSpace: {};
|
|
2158
|
+
}>, z.ZodObject<{
|
|
2159
|
+
relativeUid: z.ZodObject<{
|
|
2160
|
+
operator: z.ZodString;
|
|
2161
|
+
}, "strip", z.ZodTypeAny, {
|
|
2162
|
+
operator: string;
|
|
2163
|
+
}, {
|
|
2164
|
+
operator: string;
|
|
2165
|
+
}>;
|
|
2166
|
+
}, "strip", z.ZodTypeAny, {
|
|
2167
|
+
relativeUid: {
|
|
2168
|
+
operator: string;
|
|
2169
|
+
};
|
|
2170
|
+
}, {
|
|
2171
|
+
relativeUid: {
|
|
2172
|
+
operator: string;
|
|
2173
|
+
};
|
|
2174
|
+
}>, z.ZodObject<{
|
|
2175
|
+
relativeBuiltinReference: z.ZodObject<{
|
|
2176
|
+
attribute: z.ZodString;
|
|
2177
|
+
operator: z.ZodString;
|
|
2178
|
+
}, "strip", z.ZodTypeAny, {
|
|
2179
|
+
attribute: string;
|
|
2180
|
+
operator: string;
|
|
2181
|
+
}, {
|
|
2182
|
+
attribute: string;
|
|
2183
|
+
operator: string;
|
|
2184
|
+
}>;
|
|
2185
|
+
}, "strip", z.ZodTypeAny, {
|
|
2186
|
+
relativeBuiltinReference: {
|
|
2187
|
+
attribute: string;
|
|
2188
|
+
operator: string;
|
|
2189
|
+
};
|
|
2190
|
+
}, {
|
|
2191
|
+
relativeBuiltinReference: {
|
|
2192
|
+
attribute: string;
|
|
2193
|
+
operator: string;
|
|
2194
|
+
};
|
|
1283
2195
|
}>]>, z.ZodObject<{
|
|
1284
2196
|
and: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
1285
2197
|
name: z.ZodObject<{
|
|
@@ -1525,9 +2437,217 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1525
2437
|
equals: boolean;
|
|
1526
2438
|
};
|
|
1527
2439
|
attribute: string;
|
|
2440
|
+
}>, z.ZodObject<{
|
|
2441
|
+
relativeReference: z.ZodObject<{
|
|
2442
|
+
attribute: z.ZodString;
|
|
2443
|
+
operator: z.ZodString;
|
|
2444
|
+
}, "strip", z.ZodTypeAny, {
|
|
2445
|
+
attribute: string;
|
|
2446
|
+
operator: string;
|
|
2447
|
+
}, {
|
|
2448
|
+
attribute: string;
|
|
2449
|
+
operator: string;
|
|
2450
|
+
}>;
|
|
2451
|
+
}, "strip", z.ZodTypeAny, {
|
|
2452
|
+
relativeReference: {
|
|
2453
|
+
attribute: string;
|
|
2454
|
+
operator: string;
|
|
2455
|
+
};
|
|
2456
|
+
}, {
|
|
2457
|
+
relativeReference: {
|
|
2458
|
+
attribute: string;
|
|
2459
|
+
operator: string;
|
|
2460
|
+
};
|
|
2461
|
+
}>, z.ZodObject<{
|
|
2462
|
+
relativeDate: z.ZodObject<{
|
|
2463
|
+
attribute: z.ZodString;
|
|
2464
|
+
operator: z.ZodEnum<["equals", "lessThan", "lessEquals", "greaterThan", "greaterEquals"]>;
|
|
2465
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
2466
|
+
relativeToAttribute: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2467
|
+
}, "strip", z.ZodTypeAny, {
|
|
2468
|
+
attribute: string;
|
|
2469
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
2470
|
+
offset?: number | undefined;
|
|
2471
|
+
relativeToAttribute?: string | null | undefined;
|
|
2472
|
+
}, {
|
|
2473
|
+
attribute: string;
|
|
2474
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
2475
|
+
offset?: number | undefined;
|
|
2476
|
+
relativeToAttribute?: string | null | undefined;
|
|
2477
|
+
}>;
|
|
2478
|
+
}, "strip", z.ZodTypeAny, {
|
|
2479
|
+
relativeDate: {
|
|
2480
|
+
attribute: string;
|
|
2481
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
2482
|
+
offset?: number | undefined;
|
|
2483
|
+
relativeToAttribute?: string | null | undefined;
|
|
2484
|
+
};
|
|
2485
|
+
}, {
|
|
2486
|
+
relativeDate: {
|
|
2487
|
+
attribute: string;
|
|
2488
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
2489
|
+
offset?: number | undefined;
|
|
2490
|
+
relativeToAttribute?: string | null | undefined;
|
|
2491
|
+
};
|
|
2492
|
+
}>, z.ZodObject<{
|
|
2493
|
+
relativeString: z.ZodObject<{
|
|
2494
|
+
attribute: z.ZodString;
|
|
2495
|
+
sourceAttribute: z.ZodString;
|
|
2496
|
+
}, "strip", z.ZodTypeAny, {
|
|
2497
|
+
attribute: string;
|
|
2498
|
+
sourceAttribute: string;
|
|
2499
|
+
}, {
|
|
2500
|
+
attribute: string;
|
|
2501
|
+
sourceAttribute: string;
|
|
2502
|
+
}>;
|
|
2503
|
+
}, "strip", z.ZodTypeAny, {
|
|
2504
|
+
relativeString: {
|
|
2505
|
+
attribute: string;
|
|
2506
|
+
sourceAttribute: string;
|
|
2507
|
+
};
|
|
2508
|
+
}, {
|
|
2509
|
+
relativeString: {
|
|
2510
|
+
attribute: string;
|
|
2511
|
+
sourceAttribute: string;
|
|
2512
|
+
};
|
|
2513
|
+
}>, z.ZodObject<{
|
|
2514
|
+
relativeNumber: z.ZodObject<{
|
|
2515
|
+
attribute: z.ZodString;
|
|
2516
|
+
sourceAttribute: z.ZodString;
|
|
2517
|
+
operator: z.ZodOptional<z.ZodEnum<["equals", "lessThan", "lessEquals", "greaterThan", "greaterEquals"]>>;
|
|
2518
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
2519
|
+
}, "strip", z.ZodTypeAny, {
|
|
2520
|
+
attribute: string;
|
|
2521
|
+
sourceAttribute: string;
|
|
2522
|
+
offset?: number | undefined;
|
|
2523
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
2524
|
+
}, {
|
|
2525
|
+
attribute: string;
|
|
2526
|
+
sourceAttribute: string;
|
|
2527
|
+
offset?: number | undefined;
|
|
2528
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
2529
|
+
}>;
|
|
2530
|
+
}, "strip", z.ZodTypeAny, {
|
|
2531
|
+
relativeNumber: {
|
|
2532
|
+
attribute: string;
|
|
2533
|
+
sourceAttribute: string;
|
|
2534
|
+
offset?: number | undefined;
|
|
2535
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
2536
|
+
};
|
|
2537
|
+
}, {
|
|
2538
|
+
relativeNumber: {
|
|
2539
|
+
attribute: string;
|
|
2540
|
+
sourceAttribute: string;
|
|
2541
|
+
offset?: number | undefined;
|
|
2542
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
2543
|
+
};
|
|
2544
|
+
}>, z.ZodObject<{
|
|
2545
|
+
relativeBoolean: z.ZodObject<{
|
|
2546
|
+
attribute: z.ZodString;
|
|
2547
|
+
sourceAttribute: z.ZodString;
|
|
2548
|
+
}, "strip", z.ZodTypeAny, {
|
|
2549
|
+
attribute: string;
|
|
2550
|
+
sourceAttribute: string;
|
|
2551
|
+
}, {
|
|
2552
|
+
attribute: string;
|
|
2553
|
+
sourceAttribute: string;
|
|
2554
|
+
}>;
|
|
2555
|
+
}, "strip", z.ZodTypeAny, {
|
|
2556
|
+
relativeBoolean: {
|
|
2557
|
+
attribute: string;
|
|
2558
|
+
sourceAttribute: string;
|
|
2559
|
+
};
|
|
2560
|
+
}, {
|
|
2561
|
+
relativeBoolean: {
|
|
2562
|
+
attribute: string;
|
|
2563
|
+
sourceAttribute: string;
|
|
2564
|
+
};
|
|
2565
|
+
}>, z.ZodObject<{
|
|
2566
|
+
relativeSpace: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
2567
|
+
}, "strip", z.ZodTypeAny, {
|
|
2568
|
+
relativeSpace: {};
|
|
2569
|
+
}, {
|
|
2570
|
+
relativeSpace: {};
|
|
2571
|
+
}>, z.ZodObject<{
|
|
2572
|
+
relativeUid: z.ZodObject<{
|
|
2573
|
+
operator: z.ZodString;
|
|
2574
|
+
}, "strip", z.ZodTypeAny, {
|
|
2575
|
+
operator: string;
|
|
2576
|
+
}, {
|
|
2577
|
+
operator: string;
|
|
2578
|
+
}>;
|
|
2579
|
+
}, "strip", z.ZodTypeAny, {
|
|
2580
|
+
relativeUid: {
|
|
2581
|
+
operator: string;
|
|
2582
|
+
};
|
|
2583
|
+
}, {
|
|
2584
|
+
relativeUid: {
|
|
2585
|
+
operator: string;
|
|
2586
|
+
};
|
|
2587
|
+
}>, z.ZodObject<{
|
|
2588
|
+
relativeBuiltinReference: z.ZodObject<{
|
|
2589
|
+
attribute: z.ZodString;
|
|
2590
|
+
operator: z.ZodString;
|
|
2591
|
+
}, "strip", z.ZodTypeAny, {
|
|
2592
|
+
attribute: string;
|
|
2593
|
+
operator: string;
|
|
2594
|
+
}, {
|
|
2595
|
+
attribute: string;
|
|
2596
|
+
operator: string;
|
|
2597
|
+
}>;
|
|
2598
|
+
}, "strip", z.ZodTypeAny, {
|
|
2599
|
+
relativeBuiltinReference: {
|
|
2600
|
+
attribute: string;
|
|
2601
|
+
operator: string;
|
|
2602
|
+
};
|
|
2603
|
+
}, {
|
|
2604
|
+
relativeBuiltinReference: {
|
|
2605
|
+
attribute: string;
|
|
2606
|
+
operator: string;
|
|
2607
|
+
};
|
|
1528
2608
|
}>]>, "many">;
|
|
1529
2609
|
}, "strip", z.ZodTypeAny, {
|
|
1530
2610
|
and: ({
|
|
2611
|
+
relativeReference: {
|
|
2612
|
+
attribute: string;
|
|
2613
|
+
operator: string;
|
|
2614
|
+
};
|
|
2615
|
+
} | {
|
|
2616
|
+
relativeDate: {
|
|
2617
|
+
attribute: string;
|
|
2618
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
2619
|
+
offset?: number | undefined;
|
|
2620
|
+
relativeToAttribute?: string | null | undefined;
|
|
2621
|
+
};
|
|
2622
|
+
} | {
|
|
2623
|
+
relativeString: {
|
|
2624
|
+
attribute: string;
|
|
2625
|
+
sourceAttribute: string;
|
|
2626
|
+
};
|
|
2627
|
+
} | {
|
|
2628
|
+
relativeNumber: {
|
|
2629
|
+
attribute: string;
|
|
2630
|
+
sourceAttribute: string;
|
|
2631
|
+
offset?: number | undefined;
|
|
2632
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
2633
|
+
};
|
|
2634
|
+
} | {
|
|
2635
|
+
relativeBoolean: {
|
|
2636
|
+
attribute: string;
|
|
2637
|
+
sourceAttribute: string;
|
|
2638
|
+
};
|
|
2639
|
+
} | {
|
|
2640
|
+
relativeSpace: {};
|
|
2641
|
+
} | {
|
|
2642
|
+
relativeUid: {
|
|
2643
|
+
operator: string;
|
|
2644
|
+
};
|
|
2645
|
+
} | {
|
|
2646
|
+
relativeBuiltinReference: {
|
|
2647
|
+
attribute: string;
|
|
2648
|
+
operator: string;
|
|
2649
|
+
};
|
|
2650
|
+
} | {
|
|
1531
2651
|
string: {
|
|
1532
2652
|
equals?: string | undefined;
|
|
1533
2653
|
contains?: string | undefined;
|
|
@@ -1578,6 +2698,46 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1578
2698
|
})[];
|
|
1579
2699
|
}, {
|
|
1580
2700
|
and: ({
|
|
2701
|
+
relativeReference: {
|
|
2702
|
+
attribute: string;
|
|
2703
|
+
operator: string;
|
|
2704
|
+
};
|
|
2705
|
+
} | {
|
|
2706
|
+
relativeDate: {
|
|
2707
|
+
attribute: string;
|
|
2708
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
2709
|
+
offset?: number | undefined;
|
|
2710
|
+
relativeToAttribute?: string | null | undefined;
|
|
2711
|
+
};
|
|
2712
|
+
} | {
|
|
2713
|
+
relativeString: {
|
|
2714
|
+
attribute: string;
|
|
2715
|
+
sourceAttribute: string;
|
|
2716
|
+
};
|
|
2717
|
+
} | {
|
|
2718
|
+
relativeNumber: {
|
|
2719
|
+
attribute: string;
|
|
2720
|
+
sourceAttribute: string;
|
|
2721
|
+
offset?: number | undefined;
|
|
2722
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
2723
|
+
};
|
|
2724
|
+
} | {
|
|
2725
|
+
relativeBoolean: {
|
|
2726
|
+
attribute: string;
|
|
2727
|
+
sourceAttribute: string;
|
|
2728
|
+
};
|
|
2729
|
+
} | {
|
|
2730
|
+
relativeSpace: {};
|
|
2731
|
+
} | {
|
|
2732
|
+
relativeUid: {
|
|
2733
|
+
operator: string;
|
|
2734
|
+
};
|
|
2735
|
+
} | {
|
|
2736
|
+
relativeBuiltinReference: {
|
|
2737
|
+
attribute: string;
|
|
2738
|
+
operator: string;
|
|
2739
|
+
};
|
|
2740
|
+
} | {
|
|
1581
2741
|
string: {
|
|
1582
2742
|
equals?: string | undefined;
|
|
1583
2743
|
contains?: string | undefined;
|
|
@@ -1629,6 +2789,46 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1629
2789
|
}>]>, "many">;
|
|
1630
2790
|
}, "strip", z.ZodTypeAny, {
|
|
1631
2791
|
or: ({
|
|
2792
|
+
relativeReference: {
|
|
2793
|
+
attribute: string;
|
|
2794
|
+
operator: string;
|
|
2795
|
+
};
|
|
2796
|
+
} | {
|
|
2797
|
+
relativeDate: {
|
|
2798
|
+
attribute: string;
|
|
2799
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
2800
|
+
offset?: number | undefined;
|
|
2801
|
+
relativeToAttribute?: string | null | undefined;
|
|
2802
|
+
};
|
|
2803
|
+
} | {
|
|
2804
|
+
relativeString: {
|
|
2805
|
+
attribute: string;
|
|
2806
|
+
sourceAttribute: string;
|
|
2807
|
+
};
|
|
2808
|
+
} | {
|
|
2809
|
+
relativeNumber: {
|
|
2810
|
+
attribute: string;
|
|
2811
|
+
sourceAttribute: string;
|
|
2812
|
+
offset?: number | undefined;
|
|
2813
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
2814
|
+
};
|
|
2815
|
+
} | {
|
|
2816
|
+
relativeBoolean: {
|
|
2817
|
+
attribute: string;
|
|
2818
|
+
sourceAttribute: string;
|
|
2819
|
+
};
|
|
2820
|
+
} | {
|
|
2821
|
+
relativeSpace: {};
|
|
2822
|
+
} | {
|
|
2823
|
+
relativeUid: {
|
|
2824
|
+
operator: string;
|
|
2825
|
+
};
|
|
2826
|
+
} | {
|
|
2827
|
+
relativeBuiltinReference: {
|
|
2828
|
+
attribute: string;
|
|
2829
|
+
operator: string;
|
|
2830
|
+
};
|
|
2831
|
+
} | {
|
|
1632
2832
|
string: {
|
|
1633
2833
|
equals?: string | undefined;
|
|
1634
2834
|
contains?: string | undefined;
|
|
@@ -1678,6 +2878,46 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1678
2878
|
attribute: string;
|
|
1679
2879
|
} | {
|
|
1680
2880
|
and: ({
|
|
2881
|
+
relativeReference: {
|
|
2882
|
+
attribute: string;
|
|
2883
|
+
operator: string;
|
|
2884
|
+
};
|
|
2885
|
+
} | {
|
|
2886
|
+
relativeDate: {
|
|
2887
|
+
attribute: string;
|
|
2888
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
2889
|
+
offset?: number | undefined;
|
|
2890
|
+
relativeToAttribute?: string | null | undefined;
|
|
2891
|
+
};
|
|
2892
|
+
} | {
|
|
2893
|
+
relativeString: {
|
|
2894
|
+
attribute: string;
|
|
2895
|
+
sourceAttribute: string;
|
|
2896
|
+
};
|
|
2897
|
+
} | {
|
|
2898
|
+
relativeNumber: {
|
|
2899
|
+
attribute: string;
|
|
2900
|
+
sourceAttribute: string;
|
|
2901
|
+
offset?: number | undefined;
|
|
2902
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
2903
|
+
};
|
|
2904
|
+
} | {
|
|
2905
|
+
relativeBoolean: {
|
|
2906
|
+
attribute: string;
|
|
2907
|
+
sourceAttribute: string;
|
|
2908
|
+
};
|
|
2909
|
+
} | {
|
|
2910
|
+
relativeSpace: {};
|
|
2911
|
+
} | {
|
|
2912
|
+
relativeUid: {
|
|
2913
|
+
operator: string;
|
|
2914
|
+
};
|
|
2915
|
+
} | {
|
|
2916
|
+
relativeBuiltinReference: {
|
|
2917
|
+
attribute: string;
|
|
2918
|
+
operator: string;
|
|
2919
|
+
};
|
|
2920
|
+
} | {
|
|
1681
2921
|
string: {
|
|
1682
2922
|
equals?: string | undefined;
|
|
1683
2923
|
contains?: string | undefined;
|
|
@@ -1729,6 +2969,46 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1729
2969
|
})[];
|
|
1730
2970
|
}, {
|
|
1731
2971
|
or: ({
|
|
2972
|
+
relativeReference: {
|
|
2973
|
+
attribute: string;
|
|
2974
|
+
operator: string;
|
|
2975
|
+
};
|
|
2976
|
+
} | {
|
|
2977
|
+
relativeDate: {
|
|
2978
|
+
attribute: string;
|
|
2979
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
2980
|
+
offset?: number | undefined;
|
|
2981
|
+
relativeToAttribute?: string | null | undefined;
|
|
2982
|
+
};
|
|
2983
|
+
} | {
|
|
2984
|
+
relativeString: {
|
|
2985
|
+
attribute: string;
|
|
2986
|
+
sourceAttribute: string;
|
|
2987
|
+
};
|
|
2988
|
+
} | {
|
|
2989
|
+
relativeNumber: {
|
|
2990
|
+
attribute: string;
|
|
2991
|
+
sourceAttribute: string;
|
|
2992
|
+
offset?: number | undefined;
|
|
2993
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
2994
|
+
};
|
|
2995
|
+
} | {
|
|
2996
|
+
relativeBoolean: {
|
|
2997
|
+
attribute: string;
|
|
2998
|
+
sourceAttribute: string;
|
|
2999
|
+
};
|
|
3000
|
+
} | {
|
|
3001
|
+
relativeSpace: {};
|
|
3002
|
+
} | {
|
|
3003
|
+
relativeUid: {
|
|
3004
|
+
operator: string;
|
|
3005
|
+
};
|
|
3006
|
+
} | {
|
|
3007
|
+
relativeBuiltinReference: {
|
|
3008
|
+
attribute: string;
|
|
3009
|
+
operator: string;
|
|
3010
|
+
};
|
|
3011
|
+
} | {
|
|
1732
3012
|
string: {
|
|
1733
3013
|
equals?: string | undefined;
|
|
1734
3014
|
contains?: string | undefined;
|
|
@@ -1778,6 +3058,46 @@ declare const SearchFilterSchema: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodObject
|
|
|
1778
3058
|
attribute: string;
|
|
1779
3059
|
} | {
|
|
1780
3060
|
and: ({
|
|
3061
|
+
relativeReference: {
|
|
3062
|
+
attribute: string;
|
|
3063
|
+
operator: string;
|
|
3064
|
+
};
|
|
3065
|
+
} | {
|
|
3066
|
+
relativeDate: {
|
|
3067
|
+
attribute: string;
|
|
3068
|
+
operator: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals";
|
|
3069
|
+
offset?: number | undefined;
|
|
3070
|
+
relativeToAttribute?: string | null | undefined;
|
|
3071
|
+
};
|
|
3072
|
+
} | {
|
|
3073
|
+
relativeString: {
|
|
3074
|
+
attribute: string;
|
|
3075
|
+
sourceAttribute: string;
|
|
3076
|
+
};
|
|
3077
|
+
} | {
|
|
3078
|
+
relativeNumber: {
|
|
3079
|
+
attribute: string;
|
|
3080
|
+
sourceAttribute: string;
|
|
3081
|
+
offset?: number | undefined;
|
|
3082
|
+
operator?: "equals" | "lessThan" | "lessEquals" | "greaterThan" | "greaterEquals" | undefined;
|
|
3083
|
+
};
|
|
3084
|
+
} | {
|
|
3085
|
+
relativeBoolean: {
|
|
3086
|
+
attribute: string;
|
|
3087
|
+
sourceAttribute: string;
|
|
3088
|
+
};
|
|
3089
|
+
} | {
|
|
3090
|
+
relativeSpace: {};
|
|
3091
|
+
} | {
|
|
3092
|
+
relativeUid: {
|
|
3093
|
+
operator: string;
|
|
3094
|
+
};
|
|
3095
|
+
} | {
|
|
3096
|
+
relativeBuiltinReference: {
|
|
3097
|
+
attribute: string;
|
|
3098
|
+
operator: string;
|
|
3099
|
+
};
|
|
3100
|
+
} | {
|
|
1781
3101
|
string: {
|
|
1782
3102
|
equals?: string | undefined;
|
|
1783
3103
|
contains?: string | undefined;
|