@rlvt/datasources-query-openapi-client 1.0.256 → 1.0.258

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.
@@ -8,6 +8,7 @@ export declare type CPMeta = {
8
8
  index: number;
9
9
  };
10
10
  };
11
+ export declare type AnyValue = unknown | null;
11
12
  export declare type WorkerFetcherFetchOpts = {
12
13
  group?: {
13
14
  field: string;
@@ -27,7 +28,410 @@ export declare type WorkerFetcherFetchOpts = {
27
28
  pickId: string;
28
29
  };
29
30
  filters?: {
30
- locale: string;
31
+ datetime?: {
32
+ or: ({
33
+ $eq: string | number | string[] | null[];
34
+ } | {
35
+ $ne: string | number | string[] | null[];
36
+ } | {
37
+ $contains: string | string[];
38
+ } | {
39
+ $notcontains: string | string[];
40
+ } | {
41
+ $empty: boolean;
42
+ } | {
43
+ eq: string | number | string[] | null[];
44
+ } | {
45
+ ne: string | number | string[] | null[];
46
+ } | {
47
+ contains: string | string[];
48
+ } | {
49
+ notcontains: string | string[];
50
+ } | {
51
+ empty: boolean;
52
+ } | {
53
+ $neq: AnyValue;
54
+ } | {
55
+ $nne: AnyValue;
56
+ } | {
57
+ $lt: AnyValue;
58
+ } | {
59
+ $lte: AnyValue;
60
+ } | {
61
+ $gt: AnyValue;
62
+ } | {
63
+ $gte: AnyValue;
64
+ } | {
65
+ neq: AnyValue;
66
+ } | {
67
+ nne: AnyValue;
68
+ } | {
69
+ lt: AnyValue;
70
+ } | {
71
+ lte: AnyValue;
72
+ } | {
73
+ gt: AnyValue;
74
+ } | {
75
+ gte: AnyValue;
76
+ } | {
77
+ $range: AnyValue;
78
+ } | {
79
+ range: AnyValue;
80
+ })[];
81
+ } | {
82
+ and: ({
83
+ $eq: string | number | string[] | null[];
84
+ } | {
85
+ $ne: string | number | string[] | null[];
86
+ } | {
87
+ $contains: string | string[];
88
+ } | {
89
+ $notcontains: string | string[];
90
+ } | {
91
+ $empty: boolean;
92
+ } | {
93
+ eq: string | number | string[] | null[];
94
+ } | {
95
+ ne: string | number | string[] | null[];
96
+ } | {
97
+ contains: string | string[];
98
+ } | {
99
+ notcontains: string | string[];
100
+ } | {
101
+ empty: boolean;
102
+ } | {
103
+ $neq: AnyValue;
104
+ } | {
105
+ $nne: AnyValue;
106
+ } | {
107
+ $lt: AnyValue;
108
+ } | {
109
+ $lte: AnyValue;
110
+ } | {
111
+ $gt: AnyValue;
112
+ } | {
113
+ $gte: AnyValue;
114
+ } | {
115
+ neq: AnyValue;
116
+ } | {
117
+ nne: AnyValue;
118
+ } | {
119
+ lt: AnyValue;
120
+ } | {
121
+ lte: AnyValue;
122
+ } | {
123
+ gt: AnyValue;
124
+ } | {
125
+ gte: AnyValue;
126
+ } | {
127
+ $range: AnyValue;
128
+ } | {
129
+ range: AnyValue;
130
+ })[];
131
+ };
132
+ reference_id?: {
133
+ or: ({
134
+ $eq: string | number | string[] | null[];
135
+ } | {
136
+ $ne: string | number | string[] | null[];
137
+ } | {
138
+ $contains: string | string[];
139
+ } | {
140
+ $notcontains: string | string[];
141
+ } | {
142
+ $empty: boolean;
143
+ } | {
144
+ eq: string | number | string[] | null[];
145
+ } | {
146
+ ne: string | number | string[] | null[];
147
+ } | {
148
+ contains: string | string[];
149
+ } | {
150
+ notcontains: string | string[];
151
+ } | {
152
+ empty: boolean;
153
+ } | {
154
+ $neq: AnyValue;
155
+ } | {
156
+ $nne: AnyValue;
157
+ } | {
158
+ $lt: AnyValue;
159
+ } | {
160
+ $lte: AnyValue;
161
+ } | {
162
+ $gt: AnyValue;
163
+ } | {
164
+ $gte: AnyValue;
165
+ } | {
166
+ neq: AnyValue;
167
+ } | {
168
+ nne: AnyValue;
169
+ } | {
170
+ lt: AnyValue;
171
+ } | {
172
+ lte: AnyValue;
173
+ } | {
174
+ gt: AnyValue;
175
+ } | {
176
+ gte: AnyValue;
177
+ } | {
178
+ $range: AnyValue;
179
+ } | {
180
+ range: AnyValue;
181
+ })[];
182
+ } | {
183
+ and: ({
184
+ $eq: string | number | string[] | null[];
185
+ } | {
186
+ $ne: string | number | string[] | null[];
187
+ } | {
188
+ $contains: string | string[];
189
+ } | {
190
+ $notcontains: string | string[];
191
+ } | {
192
+ $empty: boolean;
193
+ } | {
194
+ eq: string | number | string[] | null[];
195
+ } | {
196
+ ne: string | number | string[] | null[];
197
+ } | {
198
+ contains: string | string[];
199
+ } | {
200
+ notcontains: string | string[];
201
+ } | {
202
+ empty: boolean;
203
+ } | {
204
+ $neq: AnyValue;
205
+ } | {
206
+ $nne: AnyValue;
207
+ } | {
208
+ $lt: AnyValue;
209
+ } | {
210
+ $lte: AnyValue;
211
+ } | {
212
+ $gt: AnyValue;
213
+ } | {
214
+ $gte: AnyValue;
215
+ } | {
216
+ neq: AnyValue;
217
+ } | {
218
+ nne: AnyValue;
219
+ } | {
220
+ lt: AnyValue;
221
+ } | {
222
+ lte: AnyValue;
223
+ } | {
224
+ gt: AnyValue;
225
+ } | {
226
+ gte: AnyValue;
227
+ } | {
228
+ $range: AnyValue;
229
+ } | {
230
+ range: AnyValue;
231
+ })[];
232
+ };
233
+ product_id?: {
234
+ or: ({
235
+ $eq: string | number | string[] | null[];
236
+ } | {
237
+ $ne: string | number | string[] | null[];
238
+ } | {
239
+ $contains: string | string[];
240
+ } | {
241
+ $notcontains: string | string[];
242
+ } | {
243
+ $empty: boolean;
244
+ } | {
245
+ eq: string | number | string[] | null[];
246
+ } | {
247
+ ne: string | number | string[] | null[];
248
+ } | {
249
+ contains: string | string[];
250
+ } | {
251
+ notcontains: string | string[];
252
+ } | {
253
+ empty: boolean;
254
+ } | {
255
+ $neq: AnyValue;
256
+ } | {
257
+ $nne: AnyValue;
258
+ } | {
259
+ $lt: AnyValue;
260
+ } | {
261
+ $lte: AnyValue;
262
+ } | {
263
+ $gt: AnyValue;
264
+ } | {
265
+ $gte: AnyValue;
266
+ } | {
267
+ neq: AnyValue;
268
+ } | {
269
+ nne: AnyValue;
270
+ } | {
271
+ lt: AnyValue;
272
+ } | {
273
+ lte: AnyValue;
274
+ } | {
275
+ gt: AnyValue;
276
+ } | {
277
+ gte: AnyValue;
278
+ } | {
279
+ $range: AnyValue;
280
+ } | {
281
+ range: AnyValue;
282
+ })[];
283
+ } | {
284
+ and: ({
285
+ $eq: string | number | string[] | null[];
286
+ } | {
287
+ $ne: string | number | string[] | null[];
288
+ } | {
289
+ $contains: string | string[];
290
+ } | {
291
+ $notcontains: string | string[];
292
+ } | {
293
+ $empty: boolean;
294
+ } | {
295
+ eq: string | number | string[] | null[];
296
+ } | {
297
+ ne: string | number | string[] | null[];
298
+ } | {
299
+ contains: string | string[];
300
+ } | {
301
+ notcontains: string | string[];
302
+ } | {
303
+ empty: boolean;
304
+ } | {
305
+ $neq: AnyValue;
306
+ } | {
307
+ $nne: AnyValue;
308
+ } | {
309
+ $lt: AnyValue;
310
+ } | {
311
+ $lte: AnyValue;
312
+ } | {
313
+ $gt: AnyValue;
314
+ } | {
315
+ $gte: AnyValue;
316
+ } | {
317
+ neq: AnyValue;
318
+ } | {
319
+ nne: AnyValue;
320
+ } | {
321
+ lt: AnyValue;
322
+ } | {
323
+ lte: AnyValue;
324
+ } | {
325
+ gt: AnyValue;
326
+ } | {
327
+ gte: AnyValue;
328
+ } | {
329
+ $range: AnyValue;
330
+ } | {
331
+ range: AnyValue;
332
+ })[];
333
+ };
334
+ locale?: {
335
+ or: ({
336
+ $eq: string | number | string[] | null[];
337
+ } | {
338
+ $ne: string | number | string[] | null[];
339
+ } | {
340
+ $contains: string | string[];
341
+ } | {
342
+ $notcontains: string | string[];
343
+ } | {
344
+ $empty: boolean;
345
+ } | {
346
+ eq: string | number | string[] | null[];
347
+ } | {
348
+ ne: string | number | string[] | null[];
349
+ } | {
350
+ contains: string | string[];
351
+ } | {
352
+ notcontains: string | string[];
353
+ } | {
354
+ empty: boolean;
355
+ } | {
356
+ $neq: AnyValue;
357
+ } | {
358
+ $nne: AnyValue;
359
+ } | {
360
+ $lt: AnyValue;
361
+ } | {
362
+ $lte: AnyValue;
363
+ } | {
364
+ $gt: AnyValue;
365
+ } | {
366
+ $gte: AnyValue;
367
+ } | {
368
+ neq: AnyValue;
369
+ } | {
370
+ nne: AnyValue;
371
+ } | {
372
+ lt: AnyValue;
373
+ } | {
374
+ lte: AnyValue;
375
+ } | {
376
+ gt: AnyValue;
377
+ } | {
378
+ gte: AnyValue;
379
+ } | {
380
+ $range: AnyValue;
381
+ } | {
382
+ range: AnyValue;
383
+ })[];
384
+ } | {
385
+ and: ({
386
+ $eq: string | number | string[] | null[];
387
+ } | {
388
+ $ne: string | number | string[] | null[];
389
+ } | {
390
+ $contains: string | string[];
391
+ } | {
392
+ $notcontains: string | string[];
393
+ } | {
394
+ $empty: boolean;
395
+ } | {
396
+ eq: string | number | string[] | null[];
397
+ } | {
398
+ ne: string | number | string[] | null[];
399
+ } | {
400
+ contains: string | string[];
401
+ } | {
402
+ notcontains: string | string[];
403
+ } | {
404
+ empty: boolean;
405
+ } | {
406
+ $neq: AnyValue;
407
+ } | {
408
+ $nne: AnyValue;
409
+ } | {
410
+ $lt: AnyValue;
411
+ } | {
412
+ $lte: AnyValue;
413
+ } | {
414
+ $gt: AnyValue;
415
+ } | {
416
+ $gte: AnyValue;
417
+ } | {
418
+ neq: AnyValue;
419
+ } | {
420
+ nne: AnyValue;
421
+ } | {
422
+ lt: AnyValue;
423
+ } | {
424
+ lte: AnyValue;
425
+ } | {
426
+ gt: AnyValue;
427
+ } | {
428
+ gte: AnyValue;
429
+ } | {
430
+ $range: AnyValue;
431
+ } | {
432
+ range: AnyValue;
433
+ })[];
434
+ };
31
435
  };
32
436
  datasourceId: string;
33
437
  query: string;
@@ -147,7 +551,410 @@ export declare type RenaultPricesFetcherFetchOpts = {
147
551
  };
148
552
  };
149
553
  filters?: {
150
- locale: string;
554
+ datetime?: {
555
+ or: ({
556
+ $eq: string | number | string[] | null[];
557
+ } | {
558
+ $ne: string | number | string[] | null[];
559
+ } | {
560
+ $contains: string | string[];
561
+ } | {
562
+ $notcontains: string | string[];
563
+ } | {
564
+ $empty: boolean;
565
+ } | {
566
+ eq: string | number | string[] | null[];
567
+ } | {
568
+ ne: string | number | string[] | null[];
569
+ } | {
570
+ contains: string | string[];
571
+ } | {
572
+ notcontains: string | string[];
573
+ } | {
574
+ empty: boolean;
575
+ } | {
576
+ $neq: AnyValue;
577
+ } | {
578
+ $nne: AnyValue;
579
+ } | {
580
+ $lt: AnyValue;
581
+ } | {
582
+ $lte: AnyValue;
583
+ } | {
584
+ $gt: AnyValue;
585
+ } | {
586
+ $gte: AnyValue;
587
+ } | {
588
+ neq: AnyValue;
589
+ } | {
590
+ nne: AnyValue;
591
+ } | {
592
+ lt: AnyValue;
593
+ } | {
594
+ lte: AnyValue;
595
+ } | {
596
+ gt: AnyValue;
597
+ } | {
598
+ gte: AnyValue;
599
+ } | {
600
+ $range: AnyValue;
601
+ } | {
602
+ range: AnyValue;
603
+ })[];
604
+ } | {
605
+ and: ({
606
+ $eq: string | number | string[] | null[];
607
+ } | {
608
+ $ne: string | number | string[] | null[];
609
+ } | {
610
+ $contains: string | string[];
611
+ } | {
612
+ $notcontains: string | string[];
613
+ } | {
614
+ $empty: boolean;
615
+ } | {
616
+ eq: string | number | string[] | null[];
617
+ } | {
618
+ ne: string | number | string[] | null[];
619
+ } | {
620
+ contains: string | string[];
621
+ } | {
622
+ notcontains: string | string[];
623
+ } | {
624
+ empty: boolean;
625
+ } | {
626
+ $neq: AnyValue;
627
+ } | {
628
+ $nne: AnyValue;
629
+ } | {
630
+ $lt: AnyValue;
631
+ } | {
632
+ $lte: AnyValue;
633
+ } | {
634
+ $gt: AnyValue;
635
+ } | {
636
+ $gte: AnyValue;
637
+ } | {
638
+ neq: AnyValue;
639
+ } | {
640
+ nne: AnyValue;
641
+ } | {
642
+ lt: AnyValue;
643
+ } | {
644
+ lte: AnyValue;
645
+ } | {
646
+ gt: AnyValue;
647
+ } | {
648
+ gte: AnyValue;
649
+ } | {
650
+ $range: AnyValue;
651
+ } | {
652
+ range: AnyValue;
653
+ })[];
654
+ };
655
+ reference_id?: {
656
+ or: ({
657
+ $eq: string | number | string[] | null[];
658
+ } | {
659
+ $ne: string | number | string[] | null[];
660
+ } | {
661
+ $contains: string | string[];
662
+ } | {
663
+ $notcontains: string | string[];
664
+ } | {
665
+ $empty: boolean;
666
+ } | {
667
+ eq: string | number | string[] | null[];
668
+ } | {
669
+ ne: string | number | string[] | null[];
670
+ } | {
671
+ contains: string | string[];
672
+ } | {
673
+ notcontains: string | string[];
674
+ } | {
675
+ empty: boolean;
676
+ } | {
677
+ $neq: AnyValue;
678
+ } | {
679
+ $nne: AnyValue;
680
+ } | {
681
+ $lt: AnyValue;
682
+ } | {
683
+ $lte: AnyValue;
684
+ } | {
685
+ $gt: AnyValue;
686
+ } | {
687
+ $gte: AnyValue;
688
+ } | {
689
+ neq: AnyValue;
690
+ } | {
691
+ nne: AnyValue;
692
+ } | {
693
+ lt: AnyValue;
694
+ } | {
695
+ lte: AnyValue;
696
+ } | {
697
+ gt: AnyValue;
698
+ } | {
699
+ gte: AnyValue;
700
+ } | {
701
+ $range: AnyValue;
702
+ } | {
703
+ range: AnyValue;
704
+ })[];
705
+ } | {
706
+ and: ({
707
+ $eq: string | number | string[] | null[];
708
+ } | {
709
+ $ne: string | number | string[] | null[];
710
+ } | {
711
+ $contains: string | string[];
712
+ } | {
713
+ $notcontains: string | string[];
714
+ } | {
715
+ $empty: boolean;
716
+ } | {
717
+ eq: string | number | string[] | null[];
718
+ } | {
719
+ ne: string | number | string[] | null[];
720
+ } | {
721
+ contains: string | string[];
722
+ } | {
723
+ notcontains: string | string[];
724
+ } | {
725
+ empty: boolean;
726
+ } | {
727
+ $neq: AnyValue;
728
+ } | {
729
+ $nne: AnyValue;
730
+ } | {
731
+ $lt: AnyValue;
732
+ } | {
733
+ $lte: AnyValue;
734
+ } | {
735
+ $gt: AnyValue;
736
+ } | {
737
+ $gte: AnyValue;
738
+ } | {
739
+ neq: AnyValue;
740
+ } | {
741
+ nne: AnyValue;
742
+ } | {
743
+ lt: AnyValue;
744
+ } | {
745
+ lte: AnyValue;
746
+ } | {
747
+ gt: AnyValue;
748
+ } | {
749
+ gte: AnyValue;
750
+ } | {
751
+ $range: AnyValue;
752
+ } | {
753
+ range: AnyValue;
754
+ })[];
755
+ };
756
+ product_id?: {
757
+ or: ({
758
+ $eq: string | number | string[] | null[];
759
+ } | {
760
+ $ne: string | number | string[] | null[];
761
+ } | {
762
+ $contains: string | string[];
763
+ } | {
764
+ $notcontains: string | string[];
765
+ } | {
766
+ $empty: boolean;
767
+ } | {
768
+ eq: string | number | string[] | null[];
769
+ } | {
770
+ ne: string | number | string[] | null[];
771
+ } | {
772
+ contains: string | string[];
773
+ } | {
774
+ notcontains: string | string[];
775
+ } | {
776
+ empty: boolean;
777
+ } | {
778
+ $neq: AnyValue;
779
+ } | {
780
+ $nne: AnyValue;
781
+ } | {
782
+ $lt: AnyValue;
783
+ } | {
784
+ $lte: AnyValue;
785
+ } | {
786
+ $gt: AnyValue;
787
+ } | {
788
+ $gte: AnyValue;
789
+ } | {
790
+ neq: AnyValue;
791
+ } | {
792
+ nne: AnyValue;
793
+ } | {
794
+ lt: AnyValue;
795
+ } | {
796
+ lte: AnyValue;
797
+ } | {
798
+ gt: AnyValue;
799
+ } | {
800
+ gte: AnyValue;
801
+ } | {
802
+ $range: AnyValue;
803
+ } | {
804
+ range: AnyValue;
805
+ })[];
806
+ } | {
807
+ and: ({
808
+ $eq: string | number | string[] | null[];
809
+ } | {
810
+ $ne: string | number | string[] | null[];
811
+ } | {
812
+ $contains: string | string[];
813
+ } | {
814
+ $notcontains: string | string[];
815
+ } | {
816
+ $empty: boolean;
817
+ } | {
818
+ eq: string | number | string[] | null[];
819
+ } | {
820
+ ne: string | number | string[] | null[];
821
+ } | {
822
+ contains: string | string[];
823
+ } | {
824
+ notcontains: string | string[];
825
+ } | {
826
+ empty: boolean;
827
+ } | {
828
+ $neq: AnyValue;
829
+ } | {
830
+ $nne: AnyValue;
831
+ } | {
832
+ $lt: AnyValue;
833
+ } | {
834
+ $lte: AnyValue;
835
+ } | {
836
+ $gt: AnyValue;
837
+ } | {
838
+ $gte: AnyValue;
839
+ } | {
840
+ neq: AnyValue;
841
+ } | {
842
+ nne: AnyValue;
843
+ } | {
844
+ lt: AnyValue;
845
+ } | {
846
+ lte: AnyValue;
847
+ } | {
848
+ gt: AnyValue;
849
+ } | {
850
+ gte: AnyValue;
851
+ } | {
852
+ $range: AnyValue;
853
+ } | {
854
+ range: AnyValue;
855
+ })[];
856
+ };
857
+ locale?: {
858
+ or: ({
859
+ $eq: string | number | string[] | null[];
860
+ } | {
861
+ $ne: string | number | string[] | null[];
862
+ } | {
863
+ $contains: string | string[];
864
+ } | {
865
+ $notcontains: string | string[];
866
+ } | {
867
+ $empty: boolean;
868
+ } | {
869
+ eq: string | number | string[] | null[];
870
+ } | {
871
+ ne: string | number | string[] | null[];
872
+ } | {
873
+ contains: string | string[];
874
+ } | {
875
+ notcontains: string | string[];
876
+ } | {
877
+ empty: boolean;
878
+ } | {
879
+ $neq: AnyValue;
880
+ } | {
881
+ $nne: AnyValue;
882
+ } | {
883
+ $lt: AnyValue;
884
+ } | {
885
+ $lte: AnyValue;
886
+ } | {
887
+ $gt: AnyValue;
888
+ } | {
889
+ $gte: AnyValue;
890
+ } | {
891
+ neq: AnyValue;
892
+ } | {
893
+ nne: AnyValue;
894
+ } | {
895
+ lt: AnyValue;
896
+ } | {
897
+ lte: AnyValue;
898
+ } | {
899
+ gt: AnyValue;
900
+ } | {
901
+ gte: AnyValue;
902
+ } | {
903
+ $range: AnyValue;
904
+ } | {
905
+ range: AnyValue;
906
+ })[];
907
+ } | {
908
+ and: ({
909
+ $eq: string | number | string[] | null[];
910
+ } | {
911
+ $ne: string | number | string[] | null[];
912
+ } | {
913
+ $contains: string | string[];
914
+ } | {
915
+ $notcontains: string | string[];
916
+ } | {
917
+ $empty: boolean;
918
+ } | {
919
+ eq: string | number | string[] | null[];
920
+ } | {
921
+ ne: string | number | string[] | null[];
922
+ } | {
923
+ contains: string | string[];
924
+ } | {
925
+ notcontains: string | string[];
926
+ } | {
927
+ empty: boolean;
928
+ } | {
929
+ $neq: AnyValue;
930
+ } | {
931
+ $nne: AnyValue;
932
+ } | {
933
+ $lt: AnyValue;
934
+ } | {
935
+ $lte: AnyValue;
936
+ } | {
937
+ $gt: AnyValue;
938
+ } | {
939
+ $gte: AnyValue;
940
+ } | {
941
+ neq: AnyValue;
942
+ } | {
943
+ nne: AnyValue;
944
+ } | {
945
+ lt: AnyValue;
946
+ } | {
947
+ lte: AnyValue;
948
+ } | {
949
+ gt: AnyValue;
950
+ } | {
951
+ gte: AnyValue;
952
+ } | {
953
+ $range: AnyValue;
954
+ } | {
955
+ range: AnyValue;
956
+ })[];
957
+ };
151
958
  };
152
959
  };
153
960
  export declare type DecathlonProductFallbackFetcherFetchOpts = {
@@ -173,7 +980,410 @@ export declare type DecathlonProductFallbackFetcherFetchOpts = {
173
980
  };
174
981
  };
175
982
  filters?: {
176
- locale: string;
983
+ datetime?: {
984
+ or: ({
985
+ $eq: string | number | string[] | null[];
986
+ } | {
987
+ $ne: string | number | string[] | null[];
988
+ } | {
989
+ $contains: string | string[];
990
+ } | {
991
+ $notcontains: string | string[];
992
+ } | {
993
+ $empty: boolean;
994
+ } | {
995
+ eq: string | number | string[] | null[];
996
+ } | {
997
+ ne: string | number | string[] | null[];
998
+ } | {
999
+ contains: string | string[];
1000
+ } | {
1001
+ notcontains: string | string[];
1002
+ } | {
1003
+ empty: boolean;
1004
+ } | {
1005
+ $neq: AnyValue;
1006
+ } | {
1007
+ $nne: AnyValue;
1008
+ } | {
1009
+ $lt: AnyValue;
1010
+ } | {
1011
+ $lte: AnyValue;
1012
+ } | {
1013
+ $gt: AnyValue;
1014
+ } | {
1015
+ $gte: AnyValue;
1016
+ } | {
1017
+ neq: AnyValue;
1018
+ } | {
1019
+ nne: AnyValue;
1020
+ } | {
1021
+ lt: AnyValue;
1022
+ } | {
1023
+ lte: AnyValue;
1024
+ } | {
1025
+ gt: AnyValue;
1026
+ } | {
1027
+ gte: AnyValue;
1028
+ } | {
1029
+ $range: AnyValue;
1030
+ } | {
1031
+ range: AnyValue;
1032
+ })[];
1033
+ } | {
1034
+ and: ({
1035
+ $eq: string | number | string[] | null[];
1036
+ } | {
1037
+ $ne: string | number | string[] | null[];
1038
+ } | {
1039
+ $contains: string | string[];
1040
+ } | {
1041
+ $notcontains: string | string[];
1042
+ } | {
1043
+ $empty: boolean;
1044
+ } | {
1045
+ eq: string | number | string[] | null[];
1046
+ } | {
1047
+ ne: string | number | string[] | null[];
1048
+ } | {
1049
+ contains: string | string[];
1050
+ } | {
1051
+ notcontains: string | string[];
1052
+ } | {
1053
+ empty: boolean;
1054
+ } | {
1055
+ $neq: AnyValue;
1056
+ } | {
1057
+ $nne: AnyValue;
1058
+ } | {
1059
+ $lt: AnyValue;
1060
+ } | {
1061
+ $lte: AnyValue;
1062
+ } | {
1063
+ $gt: AnyValue;
1064
+ } | {
1065
+ $gte: AnyValue;
1066
+ } | {
1067
+ neq: AnyValue;
1068
+ } | {
1069
+ nne: AnyValue;
1070
+ } | {
1071
+ lt: AnyValue;
1072
+ } | {
1073
+ lte: AnyValue;
1074
+ } | {
1075
+ gt: AnyValue;
1076
+ } | {
1077
+ gte: AnyValue;
1078
+ } | {
1079
+ $range: AnyValue;
1080
+ } | {
1081
+ range: AnyValue;
1082
+ })[];
1083
+ };
1084
+ reference_id?: {
1085
+ or: ({
1086
+ $eq: string | number | string[] | null[];
1087
+ } | {
1088
+ $ne: string | number | string[] | null[];
1089
+ } | {
1090
+ $contains: string | string[];
1091
+ } | {
1092
+ $notcontains: string | string[];
1093
+ } | {
1094
+ $empty: boolean;
1095
+ } | {
1096
+ eq: string | number | string[] | null[];
1097
+ } | {
1098
+ ne: string | number | string[] | null[];
1099
+ } | {
1100
+ contains: string | string[];
1101
+ } | {
1102
+ notcontains: string | string[];
1103
+ } | {
1104
+ empty: boolean;
1105
+ } | {
1106
+ $neq: AnyValue;
1107
+ } | {
1108
+ $nne: AnyValue;
1109
+ } | {
1110
+ $lt: AnyValue;
1111
+ } | {
1112
+ $lte: AnyValue;
1113
+ } | {
1114
+ $gt: AnyValue;
1115
+ } | {
1116
+ $gte: AnyValue;
1117
+ } | {
1118
+ neq: AnyValue;
1119
+ } | {
1120
+ nne: AnyValue;
1121
+ } | {
1122
+ lt: AnyValue;
1123
+ } | {
1124
+ lte: AnyValue;
1125
+ } | {
1126
+ gt: AnyValue;
1127
+ } | {
1128
+ gte: AnyValue;
1129
+ } | {
1130
+ $range: AnyValue;
1131
+ } | {
1132
+ range: AnyValue;
1133
+ })[];
1134
+ } | {
1135
+ and: ({
1136
+ $eq: string | number | string[] | null[];
1137
+ } | {
1138
+ $ne: string | number | string[] | null[];
1139
+ } | {
1140
+ $contains: string | string[];
1141
+ } | {
1142
+ $notcontains: string | string[];
1143
+ } | {
1144
+ $empty: boolean;
1145
+ } | {
1146
+ eq: string | number | string[] | null[];
1147
+ } | {
1148
+ ne: string | number | string[] | null[];
1149
+ } | {
1150
+ contains: string | string[];
1151
+ } | {
1152
+ notcontains: string | string[];
1153
+ } | {
1154
+ empty: boolean;
1155
+ } | {
1156
+ $neq: AnyValue;
1157
+ } | {
1158
+ $nne: AnyValue;
1159
+ } | {
1160
+ $lt: AnyValue;
1161
+ } | {
1162
+ $lte: AnyValue;
1163
+ } | {
1164
+ $gt: AnyValue;
1165
+ } | {
1166
+ $gte: AnyValue;
1167
+ } | {
1168
+ neq: AnyValue;
1169
+ } | {
1170
+ nne: AnyValue;
1171
+ } | {
1172
+ lt: AnyValue;
1173
+ } | {
1174
+ lte: AnyValue;
1175
+ } | {
1176
+ gt: AnyValue;
1177
+ } | {
1178
+ gte: AnyValue;
1179
+ } | {
1180
+ $range: AnyValue;
1181
+ } | {
1182
+ range: AnyValue;
1183
+ })[];
1184
+ };
1185
+ product_id?: {
1186
+ or: ({
1187
+ $eq: string | number | string[] | null[];
1188
+ } | {
1189
+ $ne: string | number | string[] | null[];
1190
+ } | {
1191
+ $contains: string | string[];
1192
+ } | {
1193
+ $notcontains: string | string[];
1194
+ } | {
1195
+ $empty: boolean;
1196
+ } | {
1197
+ eq: string | number | string[] | null[];
1198
+ } | {
1199
+ ne: string | number | string[] | null[];
1200
+ } | {
1201
+ contains: string | string[];
1202
+ } | {
1203
+ notcontains: string | string[];
1204
+ } | {
1205
+ empty: boolean;
1206
+ } | {
1207
+ $neq: AnyValue;
1208
+ } | {
1209
+ $nne: AnyValue;
1210
+ } | {
1211
+ $lt: AnyValue;
1212
+ } | {
1213
+ $lte: AnyValue;
1214
+ } | {
1215
+ $gt: AnyValue;
1216
+ } | {
1217
+ $gte: AnyValue;
1218
+ } | {
1219
+ neq: AnyValue;
1220
+ } | {
1221
+ nne: AnyValue;
1222
+ } | {
1223
+ lt: AnyValue;
1224
+ } | {
1225
+ lte: AnyValue;
1226
+ } | {
1227
+ gt: AnyValue;
1228
+ } | {
1229
+ gte: AnyValue;
1230
+ } | {
1231
+ $range: AnyValue;
1232
+ } | {
1233
+ range: AnyValue;
1234
+ })[];
1235
+ } | {
1236
+ and: ({
1237
+ $eq: string | number | string[] | null[];
1238
+ } | {
1239
+ $ne: string | number | string[] | null[];
1240
+ } | {
1241
+ $contains: string | string[];
1242
+ } | {
1243
+ $notcontains: string | string[];
1244
+ } | {
1245
+ $empty: boolean;
1246
+ } | {
1247
+ eq: string | number | string[] | null[];
1248
+ } | {
1249
+ ne: string | number | string[] | null[];
1250
+ } | {
1251
+ contains: string | string[];
1252
+ } | {
1253
+ notcontains: string | string[];
1254
+ } | {
1255
+ empty: boolean;
1256
+ } | {
1257
+ $neq: AnyValue;
1258
+ } | {
1259
+ $nne: AnyValue;
1260
+ } | {
1261
+ $lt: AnyValue;
1262
+ } | {
1263
+ $lte: AnyValue;
1264
+ } | {
1265
+ $gt: AnyValue;
1266
+ } | {
1267
+ $gte: AnyValue;
1268
+ } | {
1269
+ neq: AnyValue;
1270
+ } | {
1271
+ nne: AnyValue;
1272
+ } | {
1273
+ lt: AnyValue;
1274
+ } | {
1275
+ lte: AnyValue;
1276
+ } | {
1277
+ gt: AnyValue;
1278
+ } | {
1279
+ gte: AnyValue;
1280
+ } | {
1281
+ $range: AnyValue;
1282
+ } | {
1283
+ range: AnyValue;
1284
+ })[];
1285
+ };
1286
+ locale?: {
1287
+ or: ({
1288
+ $eq: string | number | string[] | null[];
1289
+ } | {
1290
+ $ne: string | number | string[] | null[];
1291
+ } | {
1292
+ $contains: string | string[];
1293
+ } | {
1294
+ $notcontains: string | string[];
1295
+ } | {
1296
+ $empty: boolean;
1297
+ } | {
1298
+ eq: string | number | string[] | null[];
1299
+ } | {
1300
+ ne: string | number | string[] | null[];
1301
+ } | {
1302
+ contains: string | string[];
1303
+ } | {
1304
+ notcontains: string | string[];
1305
+ } | {
1306
+ empty: boolean;
1307
+ } | {
1308
+ $neq: AnyValue;
1309
+ } | {
1310
+ $nne: AnyValue;
1311
+ } | {
1312
+ $lt: AnyValue;
1313
+ } | {
1314
+ $lte: AnyValue;
1315
+ } | {
1316
+ $gt: AnyValue;
1317
+ } | {
1318
+ $gte: AnyValue;
1319
+ } | {
1320
+ neq: AnyValue;
1321
+ } | {
1322
+ nne: AnyValue;
1323
+ } | {
1324
+ lt: AnyValue;
1325
+ } | {
1326
+ lte: AnyValue;
1327
+ } | {
1328
+ gt: AnyValue;
1329
+ } | {
1330
+ gte: AnyValue;
1331
+ } | {
1332
+ $range: AnyValue;
1333
+ } | {
1334
+ range: AnyValue;
1335
+ })[];
1336
+ } | {
1337
+ and: ({
1338
+ $eq: string | number | string[] | null[];
1339
+ } | {
1340
+ $ne: string | number | string[] | null[];
1341
+ } | {
1342
+ $contains: string | string[];
1343
+ } | {
1344
+ $notcontains: string | string[];
1345
+ } | {
1346
+ $empty: boolean;
1347
+ } | {
1348
+ eq: string | number | string[] | null[];
1349
+ } | {
1350
+ ne: string | number | string[] | null[];
1351
+ } | {
1352
+ contains: string | string[];
1353
+ } | {
1354
+ notcontains: string | string[];
1355
+ } | {
1356
+ empty: boolean;
1357
+ } | {
1358
+ $neq: AnyValue;
1359
+ } | {
1360
+ $nne: AnyValue;
1361
+ } | {
1362
+ $lt: AnyValue;
1363
+ } | {
1364
+ $lte: AnyValue;
1365
+ } | {
1366
+ $gt: AnyValue;
1367
+ } | {
1368
+ $gte: AnyValue;
1369
+ } | {
1370
+ neq: AnyValue;
1371
+ } | {
1372
+ nne: AnyValue;
1373
+ } | {
1374
+ lt: AnyValue;
1375
+ } | {
1376
+ lte: AnyValue;
1377
+ } | {
1378
+ gt: AnyValue;
1379
+ } | {
1380
+ gte: AnyValue;
1381
+ } | {
1382
+ $range: AnyValue;
1383
+ } | {
1384
+ range: AnyValue;
1385
+ })[];
1386
+ };
177
1387
  };
178
1388
  };
179
1389
  export declare type GenericUnwindRowsFetcherFetchOpts = {
@@ -199,7 +1409,410 @@ export declare type GenericUnwindRowsFetcherFetchOpts = {
199
1409
  };
200
1410
  };
201
1411
  filters?: {
202
- locale: string;
1412
+ datetime?: {
1413
+ or: ({
1414
+ $eq: string | number | string[] | null[];
1415
+ } | {
1416
+ $ne: string | number | string[] | null[];
1417
+ } | {
1418
+ $contains: string | string[];
1419
+ } | {
1420
+ $notcontains: string | string[];
1421
+ } | {
1422
+ $empty: boolean;
1423
+ } | {
1424
+ eq: string | number | string[] | null[];
1425
+ } | {
1426
+ ne: string | number | string[] | null[];
1427
+ } | {
1428
+ contains: string | string[];
1429
+ } | {
1430
+ notcontains: string | string[];
1431
+ } | {
1432
+ empty: boolean;
1433
+ } | {
1434
+ $neq: AnyValue;
1435
+ } | {
1436
+ $nne: AnyValue;
1437
+ } | {
1438
+ $lt: AnyValue;
1439
+ } | {
1440
+ $lte: AnyValue;
1441
+ } | {
1442
+ $gt: AnyValue;
1443
+ } | {
1444
+ $gte: AnyValue;
1445
+ } | {
1446
+ neq: AnyValue;
1447
+ } | {
1448
+ nne: AnyValue;
1449
+ } | {
1450
+ lt: AnyValue;
1451
+ } | {
1452
+ lte: AnyValue;
1453
+ } | {
1454
+ gt: AnyValue;
1455
+ } | {
1456
+ gte: AnyValue;
1457
+ } | {
1458
+ $range: AnyValue;
1459
+ } | {
1460
+ range: AnyValue;
1461
+ })[];
1462
+ } | {
1463
+ and: ({
1464
+ $eq: string | number | string[] | null[];
1465
+ } | {
1466
+ $ne: string | number | string[] | null[];
1467
+ } | {
1468
+ $contains: string | string[];
1469
+ } | {
1470
+ $notcontains: string | string[];
1471
+ } | {
1472
+ $empty: boolean;
1473
+ } | {
1474
+ eq: string | number | string[] | null[];
1475
+ } | {
1476
+ ne: string | number | string[] | null[];
1477
+ } | {
1478
+ contains: string | string[];
1479
+ } | {
1480
+ notcontains: string | string[];
1481
+ } | {
1482
+ empty: boolean;
1483
+ } | {
1484
+ $neq: AnyValue;
1485
+ } | {
1486
+ $nne: AnyValue;
1487
+ } | {
1488
+ $lt: AnyValue;
1489
+ } | {
1490
+ $lte: AnyValue;
1491
+ } | {
1492
+ $gt: AnyValue;
1493
+ } | {
1494
+ $gte: AnyValue;
1495
+ } | {
1496
+ neq: AnyValue;
1497
+ } | {
1498
+ nne: AnyValue;
1499
+ } | {
1500
+ lt: AnyValue;
1501
+ } | {
1502
+ lte: AnyValue;
1503
+ } | {
1504
+ gt: AnyValue;
1505
+ } | {
1506
+ gte: AnyValue;
1507
+ } | {
1508
+ $range: AnyValue;
1509
+ } | {
1510
+ range: AnyValue;
1511
+ })[];
1512
+ };
1513
+ reference_id?: {
1514
+ or: ({
1515
+ $eq: string | number | string[] | null[];
1516
+ } | {
1517
+ $ne: string | number | string[] | null[];
1518
+ } | {
1519
+ $contains: string | string[];
1520
+ } | {
1521
+ $notcontains: string | string[];
1522
+ } | {
1523
+ $empty: boolean;
1524
+ } | {
1525
+ eq: string | number | string[] | null[];
1526
+ } | {
1527
+ ne: string | number | string[] | null[];
1528
+ } | {
1529
+ contains: string | string[];
1530
+ } | {
1531
+ notcontains: string | string[];
1532
+ } | {
1533
+ empty: boolean;
1534
+ } | {
1535
+ $neq: AnyValue;
1536
+ } | {
1537
+ $nne: AnyValue;
1538
+ } | {
1539
+ $lt: AnyValue;
1540
+ } | {
1541
+ $lte: AnyValue;
1542
+ } | {
1543
+ $gt: AnyValue;
1544
+ } | {
1545
+ $gte: AnyValue;
1546
+ } | {
1547
+ neq: AnyValue;
1548
+ } | {
1549
+ nne: AnyValue;
1550
+ } | {
1551
+ lt: AnyValue;
1552
+ } | {
1553
+ lte: AnyValue;
1554
+ } | {
1555
+ gt: AnyValue;
1556
+ } | {
1557
+ gte: AnyValue;
1558
+ } | {
1559
+ $range: AnyValue;
1560
+ } | {
1561
+ range: AnyValue;
1562
+ })[];
1563
+ } | {
1564
+ and: ({
1565
+ $eq: string | number | string[] | null[];
1566
+ } | {
1567
+ $ne: string | number | string[] | null[];
1568
+ } | {
1569
+ $contains: string | string[];
1570
+ } | {
1571
+ $notcontains: string | string[];
1572
+ } | {
1573
+ $empty: boolean;
1574
+ } | {
1575
+ eq: string | number | string[] | null[];
1576
+ } | {
1577
+ ne: string | number | string[] | null[];
1578
+ } | {
1579
+ contains: string | string[];
1580
+ } | {
1581
+ notcontains: string | string[];
1582
+ } | {
1583
+ empty: boolean;
1584
+ } | {
1585
+ $neq: AnyValue;
1586
+ } | {
1587
+ $nne: AnyValue;
1588
+ } | {
1589
+ $lt: AnyValue;
1590
+ } | {
1591
+ $lte: AnyValue;
1592
+ } | {
1593
+ $gt: AnyValue;
1594
+ } | {
1595
+ $gte: AnyValue;
1596
+ } | {
1597
+ neq: AnyValue;
1598
+ } | {
1599
+ nne: AnyValue;
1600
+ } | {
1601
+ lt: AnyValue;
1602
+ } | {
1603
+ lte: AnyValue;
1604
+ } | {
1605
+ gt: AnyValue;
1606
+ } | {
1607
+ gte: AnyValue;
1608
+ } | {
1609
+ $range: AnyValue;
1610
+ } | {
1611
+ range: AnyValue;
1612
+ })[];
1613
+ };
1614
+ product_id?: {
1615
+ or: ({
1616
+ $eq: string | number | string[] | null[];
1617
+ } | {
1618
+ $ne: string | number | string[] | null[];
1619
+ } | {
1620
+ $contains: string | string[];
1621
+ } | {
1622
+ $notcontains: string | string[];
1623
+ } | {
1624
+ $empty: boolean;
1625
+ } | {
1626
+ eq: string | number | string[] | null[];
1627
+ } | {
1628
+ ne: string | number | string[] | null[];
1629
+ } | {
1630
+ contains: string | string[];
1631
+ } | {
1632
+ notcontains: string | string[];
1633
+ } | {
1634
+ empty: boolean;
1635
+ } | {
1636
+ $neq: AnyValue;
1637
+ } | {
1638
+ $nne: AnyValue;
1639
+ } | {
1640
+ $lt: AnyValue;
1641
+ } | {
1642
+ $lte: AnyValue;
1643
+ } | {
1644
+ $gt: AnyValue;
1645
+ } | {
1646
+ $gte: AnyValue;
1647
+ } | {
1648
+ neq: AnyValue;
1649
+ } | {
1650
+ nne: AnyValue;
1651
+ } | {
1652
+ lt: AnyValue;
1653
+ } | {
1654
+ lte: AnyValue;
1655
+ } | {
1656
+ gt: AnyValue;
1657
+ } | {
1658
+ gte: AnyValue;
1659
+ } | {
1660
+ $range: AnyValue;
1661
+ } | {
1662
+ range: AnyValue;
1663
+ })[];
1664
+ } | {
1665
+ and: ({
1666
+ $eq: string | number | string[] | null[];
1667
+ } | {
1668
+ $ne: string | number | string[] | null[];
1669
+ } | {
1670
+ $contains: string | string[];
1671
+ } | {
1672
+ $notcontains: string | string[];
1673
+ } | {
1674
+ $empty: boolean;
1675
+ } | {
1676
+ eq: string | number | string[] | null[];
1677
+ } | {
1678
+ ne: string | number | string[] | null[];
1679
+ } | {
1680
+ contains: string | string[];
1681
+ } | {
1682
+ notcontains: string | string[];
1683
+ } | {
1684
+ empty: boolean;
1685
+ } | {
1686
+ $neq: AnyValue;
1687
+ } | {
1688
+ $nne: AnyValue;
1689
+ } | {
1690
+ $lt: AnyValue;
1691
+ } | {
1692
+ $lte: AnyValue;
1693
+ } | {
1694
+ $gt: AnyValue;
1695
+ } | {
1696
+ $gte: AnyValue;
1697
+ } | {
1698
+ neq: AnyValue;
1699
+ } | {
1700
+ nne: AnyValue;
1701
+ } | {
1702
+ lt: AnyValue;
1703
+ } | {
1704
+ lte: AnyValue;
1705
+ } | {
1706
+ gt: AnyValue;
1707
+ } | {
1708
+ gte: AnyValue;
1709
+ } | {
1710
+ $range: AnyValue;
1711
+ } | {
1712
+ range: AnyValue;
1713
+ })[];
1714
+ };
1715
+ locale?: {
1716
+ or: ({
1717
+ $eq: string | number | string[] | null[];
1718
+ } | {
1719
+ $ne: string | number | string[] | null[];
1720
+ } | {
1721
+ $contains: string | string[];
1722
+ } | {
1723
+ $notcontains: string | string[];
1724
+ } | {
1725
+ $empty: boolean;
1726
+ } | {
1727
+ eq: string | number | string[] | null[];
1728
+ } | {
1729
+ ne: string | number | string[] | null[];
1730
+ } | {
1731
+ contains: string | string[];
1732
+ } | {
1733
+ notcontains: string | string[];
1734
+ } | {
1735
+ empty: boolean;
1736
+ } | {
1737
+ $neq: AnyValue;
1738
+ } | {
1739
+ $nne: AnyValue;
1740
+ } | {
1741
+ $lt: AnyValue;
1742
+ } | {
1743
+ $lte: AnyValue;
1744
+ } | {
1745
+ $gt: AnyValue;
1746
+ } | {
1747
+ $gte: AnyValue;
1748
+ } | {
1749
+ neq: AnyValue;
1750
+ } | {
1751
+ nne: AnyValue;
1752
+ } | {
1753
+ lt: AnyValue;
1754
+ } | {
1755
+ lte: AnyValue;
1756
+ } | {
1757
+ gt: AnyValue;
1758
+ } | {
1759
+ gte: AnyValue;
1760
+ } | {
1761
+ $range: AnyValue;
1762
+ } | {
1763
+ range: AnyValue;
1764
+ })[];
1765
+ } | {
1766
+ and: ({
1767
+ $eq: string | number | string[] | null[];
1768
+ } | {
1769
+ $ne: string | number | string[] | null[];
1770
+ } | {
1771
+ $contains: string | string[];
1772
+ } | {
1773
+ $notcontains: string | string[];
1774
+ } | {
1775
+ $empty: boolean;
1776
+ } | {
1777
+ eq: string | number | string[] | null[];
1778
+ } | {
1779
+ ne: string | number | string[] | null[];
1780
+ } | {
1781
+ contains: string | string[];
1782
+ } | {
1783
+ notcontains: string | string[];
1784
+ } | {
1785
+ empty: boolean;
1786
+ } | {
1787
+ $neq: AnyValue;
1788
+ } | {
1789
+ $nne: AnyValue;
1790
+ } | {
1791
+ $lt: AnyValue;
1792
+ } | {
1793
+ $lte: AnyValue;
1794
+ } | {
1795
+ $gt: AnyValue;
1796
+ } | {
1797
+ $gte: AnyValue;
1798
+ } | {
1799
+ neq: AnyValue;
1800
+ } | {
1801
+ nne: AnyValue;
1802
+ } | {
1803
+ lt: AnyValue;
1804
+ } | {
1805
+ lte: AnyValue;
1806
+ } | {
1807
+ gt: AnyValue;
1808
+ } | {
1809
+ gte: AnyValue;
1810
+ } | {
1811
+ $range: AnyValue;
1812
+ } | {
1813
+ range: AnyValue;
1814
+ })[];
1815
+ };
203
1816
  };
204
1817
  };
205
1818
  export declare type WorkflowEventsFetcherFetchOpts = {
@@ -234,7 +1847,410 @@ export declare type PerUserFetcherFetchOpts = {
234
1847
  };
235
1848
  };
236
1849
  filters?: {
237
- locale: string;
1850
+ datetime?: {
1851
+ or: ({
1852
+ $eq: string | number | string[] | null[];
1853
+ } | {
1854
+ $ne: string | number | string[] | null[];
1855
+ } | {
1856
+ $contains: string | string[];
1857
+ } | {
1858
+ $notcontains: string | string[];
1859
+ } | {
1860
+ $empty: boolean;
1861
+ } | {
1862
+ eq: string | number | string[] | null[];
1863
+ } | {
1864
+ ne: string | number | string[] | null[];
1865
+ } | {
1866
+ contains: string | string[];
1867
+ } | {
1868
+ notcontains: string | string[];
1869
+ } | {
1870
+ empty: boolean;
1871
+ } | {
1872
+ $neq: AnyValue;
1873
+ } | {
1874
+ $nne: AnyValue;
1875
+ } | {
1876
+ $lt: AnyValue;
1877
+ } | {
1878
+ $lte: AnyValue;
1879
+ } | {
1880
+ $gt: AnyValue;
1881
+ } | {
1882
+ $gte: AnyValue;
1883
+ } | {
1884
+ neq: AnyValue;
1885
+ } | {
1886
+ nne: AnyValue;
1887
+ } | {
1888
+ lt: AnyValue;
1889
+ } | {
1890
+ lte: AnyValue;
1891
+ } | {
1892
+ gt: AnyValue;
1893
+ } | {
1894
+ gte: AnyValue;
1895
+ } | {
1896
+ $range: AnyValue;
1897
+ } | {
1898
+ range: AnyValue;
1899
+ })[];
1900
+ } | {
1901
+ and: ({
1902
+ $eq: string | number | string[] | null[];
1903
+ } | {
1904
+ $ne: string | number | string[] | null[];
1905
+ } | {
1906
+ $contains: string | string[];
1907
+ } | {
1908
+ $notcontains: string | string[];
1909
+ } | {
1910
+ $empty: boolean;
1911
+ } | {
1912
+ eq: string | number | string[] | null[];
1913
+ } | {
1914
+ ne: string | number | string[] | null[];
1915
+ } | {
1916
+ contains: string | string[];
1917
+ } | {
1918
+ notcontains: string | string[];
1919
+ } | {
1920
+ empty: boolean;
1921
+ } | {
1922
+ $neq: AnyValue;
1923
+ } | {
1924
+ $nne: AnyValue;
1925
+ } | {
1926
+ $lt: AnyValue;
1927
+ } | {
1928
+ $lte: AnyValue;
1929
+ } | {
1930
+ $gt: AnyValue;
1931
+ } | {
1932
+ $gte: AnyValue;
1933
+ } | {
1934
+ neq: AnyValue;
1935
+ } | {
1936
+ nne: AnyValue;
1937
+ } | {
1938
+ lt: AnyValue;
1939
+ } | {
1940
+ lte: AnyValue;
1941
+ } | {
1942
+ gt: AnyValue;
1943
+ } | {
1944
+ gte: AnyValue;
1945
+ } | {
1946
+ $range: AnyValue;
1947
+ } | {
1948
+ range: AnyValue;
1949
+ })[];
1950
+ };
1951
+ reference_id?: {
1952
+ or: ({
1953
+ $eq: string | number | string[] | null[];
1954
+ } | {
1955
+ $ne: string | number | string[] | null[];
1956
+ } | {
1957
+ $contains: string | string[];
1958
+ } | {
1959
+ $notcontains: string | string[];
1960
+ } | {
1961
+ $empty: boolean;
1962
+ } | {
1963
+ eq: string | number | string[] | null[];
1964
+ } | {
1965
+ ne: string | number | string[] | null[];
1966
+ } | {
1967
+ contains: string | string[];
1968
+ } | {
1969
+ notcontains: string | string[];
1970
+ } | {
1971
+ empty: boolean;
1972
+ } | {
1973
+ $neq: AnyValue;
1974
+ } | {
1975
+ $nne: AnyValue;
1976
+ } | {
1977
+ $lt: AnyValue;
1978
+ } | {
1979
+ $lte: AnyValue;
1980
+ } | {
1981
+ $gt: AnyValue;
1982
+ } | {
1983
+ $gte: AnyValue;
1984
+ } | {
1985
+ neq: AnyValue;
1986
+ } | {
1987
+ nne: AnyValue;
1988
+ } | {
1989
+ lt: AnyValue;
1990
+ } | {
1991
+ lte: AnyValue;
1992
+ } | {
1993
+ gt: AnyValue;
1994
+ } | {
1995
+ gte: AnyValue;
1996
+ } | {
1997
+ $range: AnyValue;
1998
+ } | {
1999
+ range: AnyValue;
2000
+ })[];
2001
+ } | {
2002
+ and: ({
2003
+ $eq: string | number | string[] | null[];
2004
+ } | {
2005
+ $ne: string | number | string[] | null[];
2006
+ } | {
2007
+ $contains: string | string[];
2008
+ } | {
2009
+ $notcontains: string | string[];
2010
+ } | {
2011
+ $empty: boolean;
2012
+ } | {
2013
+ eq: string | number | string[] | null[];
2014
+ } | {
2015
+ ne: string | number | string[] | null[];
2016
+ } | {
2017
+ contains: string | string[];
2018
+ } | {
2019
+ notcontains: string | string[];
2020
+ } | {
2021
+ empty: boolean;
2022
+ } | {
2023
+ $neq: AnyValue;
2024
+ } | {
2025
+ $nne: AnyValue;
2026
+ } | {
2027
+ $lt: AnyValue;
2028
+ } | {
2029
+ $lte: AnyValue;
2030
+ } | {
2031
+ $gt: AnyValue;
2032
+ } | {
2033
+ $gte: AnyValue;
2034
+ } | {
2035
+ neq: AnyValue;
2036
+ } | {
2037
+ nne: AnyValue;
2038
+ } | {
2039
+ lt: AnyValue;
2040
+ } | {
2041
+ lte: AnyValue;
2042
+ } | {
2043
+ gt: AnyValue;
2044
+ } | {
2045
+ gte: AnyValue;
2046
+ } | {
2047
+ $range: AnyValue;
2048
+ } | {
2049
+ range: AnyValue;
2050
+ })[];
2051
+ };
2052
+ product_id?: {
2053
+ or: ({
2054
+ $eq: string | number | string[] | null[];
2055
+ } | {
2056
+ $ne: string | number | string[] | null[];
2057
+ } | {
2058
+ $contains: string | string[];
2059
+ } | {
2060
+ $notcontains: string | string[];
2061
+ } | {
2062
+ $empty: boolean;
2063
+ } | {
2064
+ eq: string | number | string[] | null[];
2065
+ } | {
2066
+ ne: string | number | string[] | null[];
2067
+ } | {
2068
+ contains: string | string[];
2069
+ } | {
2070
+ notcontains: string | string[];
2071
+ } | {
2072
+ empty: boolean;
2073
+ } | {
2074
+ $neq: AnyValue;
2075
+ } | {
2076
+ $nne: AnyValue;
2077
+ } | {
2078
+ $lt: AnyValue;
2079
+ } | {
2080
+ $lte: AnyValue;
2081
+ } | {
2082
+ $gt: AnyValue;
2083
+ } | {
2084
+ $gte: AnyValue;
2085
+ } | {
2086
+ neq: AnyValue;
2087
+ } | {
2088
+ nne: AnyValue;
2089
+ } | {
2090
+ lt: AnyValue;
2091
+ } | {
2092
+ lte: AnyValue;
2093
+ } | {
2094
+ gt: AnyValue;
2095
+ } | {
2096
+ gte: AnyValue;
2097
+ } | {
2098
+ $range: AnyValue;
2099
+ } | {
2100
+ range: AnyValue;
2101
+ })[];
2102
+ } | {
2103
+ and: ({
2104
+ $eq: string | number | string[] | null[];
2105
+ } | {
2106
+ $ne: string | number | string[] | null[];
2107
+ } | {
2108
+ $contains: string | string[];
2109
+ } | {
2110
+ $notcontains: string | string[];
2111
+ } | {
2112
+ $empty: boolean;
2113
+ } | {
2114
+ eq: string | number | string[] | null[];
2115
+ } | {
2116
+ ne: string | number | string[] | null[];
2117
+ } | {
2118
+ contains: string | string[];
2119
+ } | {
2120
+ notcontains: string | string[];
2121
+ } | {
2122
+ empty: boolean;
2123
+ } | {
2124
+ $neq: AnyValue;
2125
+ } | {
2126
+ $nne: AnyValue;
2127
+ } | {
2128
+ $lt: AnyValue;
2129
+ } | {
2130
+ $lte: AnyValue;
2131
+ } | {
2132
+ $gt: AnyValue;
2133
+ } | {
2134
+ $gte: AnyValue;
2135
+ } | {
2136
+ neq: AnyValue;
2137
+ } | {
2138
+ nne: AnyValue;
2139
+ } | {
2140
+ lt: AnyValue;
2141
+ } | {
2142
+ lte: AnyValue;
2143
+ } | {
2144
+ gt: AnyValue;
2145
+ } | {
2146
+ gte: AnyValue;
2147
+ } | {
2148
+ $range: AnyValue;
2149
+ } | {
2150
+ range: AnyValue;
2151
+ })[];
2152
+ };
2153
+ locale?: {
2154
+ or: ({
2155
+ $eq: string | number | string[] | null[];
2156
+ } | {
2157
+ $ne: string | number | string[] | null[];
2158
+ } | {
2159
+ $contains: string | string[];
2160
+ } | {
2161
+ $notcontains: string | string[];
2162
+ } | {
2163
+ $empty: boolean;
2164
+ } | {
2165
+ eq: string | number | string[] | null[];
2166
+ } | {
2167
+ ne: string | number | string[] | null[];
2168
+ } | {
2169
+ contains: string | string[];
2170
+ } | {
2171
+ notcontains: string | string[];
2172
+ } | {
2173
+ empty: boolean;
2174
+ } | {
2175
+ $neq: AnyValue;
2176
+ } | {
2177
+ $nne: AnyValue;
2178
+ } | {
2179
+ $lt: AnyValue;
2180
+ } | {
2181
+ $lte: AnyValue;
2182
+ } | {
2183
+ $gt: AnyValue;
2184
+ } | {
2185
+ $gte: AnyValue;
2186
+ } | {
2187
+ neq: AnyValue;
2188
+ } | {
2189
+ nne: AnyValue;
2190
+ } | {
2191
+ lt: AnyValue;
2192
+ } | {
2193
+ lte: AnyValue;
2194
+ } | {
2195
+ gt: AnyValue;
2196
+ } | {
2197
+ gte: AnyValue;
2198
+ } | {
2199
+ $range: AnyValue;
2200
+ } | {
2201
+ range: AnyValue;
2202
+ })[];
2203
+ } | {
2204
+ and: ({
2205
+ $eq: string | number | string[] | null[];
2206
+ } | {
2207
+ $ne: string | number | string[] | null[];
2208
+ } | {
2209
+ $contains: string | string[];
2210
+ } | {
2211
+ $notcontains: string | string[];
2212
+ } | {
2213
+ $empty: boolean;
2214
+ } | {
2215
+ eq: string | number | string[] | null[];
2216
+ } | {
2217
+ ne: string | number | string[] | null[];
2218
+ } | {
2219
+ contains: string | string[];
2220
+ } | {
2221
+ notcontains: string | string[];
2222
+ } | {
2223
+ empty: boolean;
2224
+ } | {
2225
+ $neq: AnyValue;
2226
+ } | {
2227
+ $nne: AnyValue;
2228
+ } | {
2229
+ $lt: AnyValue;
2230
+ } | {
2231
+ $lte: AnyValue;
2232
+ } | {
2233
+ $gt: AnyValue;
2234
+ } | {
2235
+ $gte: AnyValue;
2236
+ } | {
2237
+ neq: AnyValue;
2238
+ } | {
2239
+ nne: AnyValue;
2240
+ } | {
2241
+ lt: AnyValue;
2242
+ } | {
2243
+ lte: AnyValue;
2244
+ } | {
2245
+ gt: AnyValue;
2246
+ } | {
2247
+ gte: AnyValue;
2248
+ } | {
2249
+ $range: AnyValue;
2250
+ } | {
2251
+ range: AnyValue;
2252
+ })[];
2253
+ };
238
2254
  };
239
2255
  };
240
2256
  export declare type WorkerFetcherCountOpts = {
@@ -345,7 +2361,410 @@ export declare type PerUserFetcherCountOpts = {
345
2361
  };
346
2362
  };
347
2363
  filters?: {
348
- locale: string;
2364
+ datetime?: {
2365
+ or: ({
2366
+ $eq: string | number | string[] | null[];
2367
+ } | {
2368
+ $ne: string | number | string[] | null[];
2369
+ } | {
2370
+ $contains: string | string[];
2371
+ } | {
2372
+ $notcontains: string | string[];
2373
+ } | {
2374
+ $empty: boolean;
2375
+ } | {
2376
+ eq: string | number | string[] | null[];
2377
+ } | {
2378
+ ne: string | number | string[] | null[];
2379
+ } | {
2380
+ contains: string | string[];
2381
+ } | {
2382
+ notcontains: string | string[];
2383
+ } | {
2384
+ empty: boolean;
2385
+ } | {
2386
+ $neq: AnyValue;
2387
+ } | {
2388
+ $nne: AnyValue;
2389
+ } | {
2390
+ $lt: AnyValue;
2391
+ } | {
2392
+ $lte: AnyValue;
2393
+ } | {
2394
+ $gt: AnyValue;
2395
+ } | {
2396
+ $gte: AnyValue;
2397
+ } | {
2398
+ neq: AnyValue;
2399
+ } | {
2400
+ nne: AnyValue;
2401
+ } | {
2402
+ lt: AnyValue;
2403
+ } | {
2404
+ lte: AnyValue;
2405
+ } | {
2406
+ gt: AnyValue;
2407
+ } | {
2408
+ gte: AnyValue;
2409
+ } | {
2410
+ $range: AnyValue;
2411
+ } | {
2412
+ range: AnyValue;
2413
+ })[];
2414
+ } | {
2415
+ and: ({
2416
+ $eq: string | number | string[] | null[];
2417
+ } | {
2418
+ $ne: string | number | string[] | null[];
2419
+ } | {
2420
+ $contains: string | string[];
2421
+ } | {
2422
+ $notcontains: string | string[];
2423
+ } | {
2424
+ $empty: boolean;
2425
+ } | {
2426
+ eq: string | number | string[] | null[];
2427
+ } | {
2428
+ ne: string | number | string[] | null[];
2429
+ } | {
2430
+ contains: string | string[];
2431
+ } | {
2432
+ notcontains: string | string[];
2433
+ } | {
2434
+ empty: boolean;
2435
+ } | {
2436
+ $neq: AnyValue;
2437
+ } | {
2438
+ $nne: AnyValue;
2439
+ } | {
2440
+ $lt: AnyValue;
2441
+ } | {
2442
+ $lte: AnyValue;
2443
+ } | {
2444
+ $gt: AnyValue;
2445
+ } | {
2446
+ $gte: AnyValue;
2447
+ } | {
2448
+ neq: AnyValue;
2449
+ } | {
2450
+ nne: AnyValue;
2451
+ } | {
2452
+ lt: AnyValue;
2453
+ } | {
2454
+ lte: AnyValue;
2455
+ } | {
2456
+ gt: AnyValue;
2457
+ } | {
2458
+ gte: AnyValue;
2459
+ } | {
2460
+ $range: AnyValue;
2461
+ } | {
2462
+ range: AnyValue;
2463
+ })[];
2464
+ };
2465
+ reference_id?: {
2466
+ or: ({
2467
+ $eq: string | number | string[] | null[];
2468
+ } | {
2469
+ $ne: string | number | string[] | null[];
2470
+ } | {
2471
+ $contains: string | string[];
2472
+ } | {
2473
+ $notcontains: string | string[];
2474
+ } | {
2475
+ $empty: boolean;
2476
+ } | {
2477
+ eq: string | number | string[] | null[];
2478
+ } | {
2479
+ ne: string | number | string[] | null[];
2480
+ } | {
2481
+ contains: string | string[];
2482
+ } | {
2483
+ notcontains: string | string[];
2484
+ } | {
2485
+ empty: boolean;
2486
+ } | {
2487
+ $neq: AnyValue;
2488
+ } | {
2489
+ $nne: AnyValue;
2490
+ } | {
2491
+ $lt: AnyValue;
2492
+ } | {
2493
+ $lte: AnyValue;
2494
+ } | {
2495
+ $gt: AnyValue;
2496
+ } | {
2497
+ $gte: AnyValue;
2498
+ } | {
2499
+ neq: AnyValue;
2500
+ } | {
2501
+ nne: AnyValue;
2502
+ } | {
2503
+ lt: AnyValue;
2504
+ } | {
2505
+ lte: AnyValue;
2506
+ } | {
2507
+ gt: AnyValue;
2508
+ } | {
2509
+ gte: AnyValue;
2510
+ } | {
2511
+ $range: AnyValue;
2512
+ } | {
2513
+ range: AnyValue;
2514
+ })[];
2515
+ } | {
2516
+ and: ({
2517
+ $eq: string | number | string[] | null[];
2518
+ } | {
2519
+ $ne: string | number | string[] | null[];
2520
+ } | {
2521
+ $contains: string | string[];
2522
+ } | {
2523
+ $notcontains: string | string[];
2524
+ } | {
2525
+ $empty: boolean;
2526
+ } | {
2527
+ eq: string | number | string[] | null[];
2528
+ } | {
2529
+ ne: string | number | string[] | null[];
2530
+ } | {
2531
+ contains: string | string[];
2532
+ } | {
2533
+ notcontains: string | string[];
2534
+ } | {
2535
+ empty: boolean;
2536
+ } | {
2537
+ $neq: AnyValue;
2538
+ } | {
2539
+ $nne: AnyValue;
2540
+ } | {
2541
+ $lt: AnyValue;
2542
+ } | {
2543
+ $lte: AnyValue;
2544
+ } | {
2545
+ $gt: AnyValue;
2546
+ } | {
2547
+ $gte: AnyValue;
2548
+ } | {
2549
+ neq: AnyValue;
2550
+ } | {
2551
+ nne: AnyValue;
2552
+ } | {
2553
+ lt: AnyValue;
2554
+ } | {
2555
+ lte: AnyValue;
2556
+ } | {
2557
+ gt: AnyValue;
2558
+ } | {
2559
+ gte: AnyValue;
2560
+ } | {
2561
+ $range: AnyValue;
2562
+ } | {
2563
+ range: AnyValue;
2564
+ })[];
2565
+ };
2566
+ product_id?: {
2567
+ or: ({
2568
+ $eq: string | number | string[] | null[];
2569
+ } | {
2570
+ $ne: string | number | string[] | null[];
2571
+ } | {
2572
+ $contains: string | string[];
2573
+ } | {
2574
+ $notcontains: string | string[];
2575
+ } | {
2576
+ $empty: boolean;
2577
+ } | {
2578
+ eq: string | number | string[] | null[];
2579
+ } | {
2580
+ ne: string | number | string[] | null[];
2581
+ } | {
2582
+ contains: string | string[];
2583
+ } | {
2584
+ notcontains: string | string[];
2585
+ } | {
2586
+ empty: boolean;
2587
+ } | {
2588
+ $neq: AnyValue;
2589
+ } | {
2590
+ $nne: AnyValue;
2591
+ } | {
2592
+ $lt: AnyValue;
2593
+ } | {
2594
+ $lte: AnyValue;
2595
+ } | {
2596
+ $gt: AnyValue;
2597
+ } | {
2598
+ $gte: AnyValue;
2599
+ } | {
2600
+ neq: AnyValue;
2601
+ } | {
2602
+ nne: AnyValue;
2603
+ } | {
2604
+ lt: AnyValue;
2605
+ } | {
2606
+ lte: AnyValue;
2607
+ } | {
2608
+ gt: AnyValue;
2609
+ } | {
2610
+ gte: AnyValue;
2611
+ } | {
2612
+ $range: AnyValue;
2613
+ } | {
2614
+ range: AnyValue;
2615
+ })[];
2616
+ } | {
2617
+ and: ({
2618
+ $eq: string | number | string[] | null[];
2619
+ } | {
2620
+ $ne: string | number | string[] | null[];
2621
+ } | {
2622
+ $contains: string | string[];
2623
+ } | {
2624
+ $notcontains: string | string[];
2625
+ } | {
2626
+ $empty: boolean;
2627
+ } | {
2628
+ eq: string | number | string[] | null[];
2629
+ } | {
2630
+ ne: string | number | string[] | null[];
2631
+ } | {
2632
+ contains: string | string[];
2633
+ } | {
2634
+ notcontains: string | string[];
2635
+ } | {
2636
+ empty: boolean;
2637
+ } | {
2638
+ $neq: AnyValue;
2639
+ } | {
2640
+ $nne: AnyValue;
2641
+ } | {
2642
+ $lt: AnyValue;
2643
+ } | {
2644
+ $lte: AnyValue;
2645
+ } | {
2646
+ $gt: AnyValue;
2647
+ } | {
2648
+ $gte: AnyValue;
2649
+ } | {
2650
+ neq: AnyValue;
2651
+ } | {
2652
+ nne: AnyValue;
2653
+ } | {
2654
+ lt: AnyValue;
2655
+ } | {
2656
+ lte: AnyValue;
2657
+ } | {
2658
+ gt: AnyValue;
2659
+ } | {
2660
+ gte: AnyValue;
2661
+ } | {
2662
+ $range: AnyValue;
2663
+ } | {
2664
+ range: AnyValue;
2665
+ })[];
2666
+ };
2667
+ locale?: {
2668
+ or: ({
2669
+ $eq: string | number | string[] | null[];
2670
+ } | {
2671
+ $ne: string | number | string[] | null[];
2672
+ } | {
2673
+ $contains: string | string[];
2674
+ } | {
2675
+ $notcontains: string | string[];
2676
+ } | {
2677
+ $empty: boolean;
2678
+ } | {
2679
+ eq: string | number | string[] | null[];
2680
+ } | {
2681
+ ne: string | number | string[] | null[];
2682
+ } | {
2683
+ contains: string | string[];
2684
+ } | {
2685
+ notcontains: string | string[];
2686
+ } | {
2687
+ empty: boolean;
2688
+ } | {
2689
+ $neq: AnyValue;
2690
+ } | {
2691
+ $nne: AnyValue;
2692
+ } | {
2693
+ $lt: AnyValue;
2694
+ } | {
2695
+ $lte: AnyValue;
2696
+ } | {
2697
+ $gt: AnyValue;
2698
+ } | {
2699
+ $gte: AnyValue;
2700
+ } | {
2701
+ neq: AnyValue;
2702
+ } | {
2703
+ nne: AnyValue;
2704
+ } | {
2705
+ lt: AnyValue;
2706
+ } | {
2707
+ lte: AnyValue;
2708
+ } | {
2709
+ gt: AnyValue;
2710
+ } | {
2711
+ gte: AnyValue;
2712
+ } | {
2713
+ $range: AnyValue;
2714
+ } | {
2715
+ range: AnyValue;
2716
+ })[];
2717
+ } | {
2718
+ and: ({
2719
+ $eq: string | number | string[] | null[];
2720
+ } | {
2721
+ $ne: string | number | string[] | null[];
2722
+ } | {
2723
+ $contains: string | string[];
2724
+ } | {
2725
+ $notcontains: string | string[];
2726
+ } | {
2727
+ $empty: boolean;
2728
+ } | {
2729
+ eq: string | number | string[] | null[];
2730
+ } | {
2731
+ ne: string | number | string[] | null[];
2732
+ } | {
2733
+ contains: string | string[];
2734
+ } | {
2735
+ notcontains: string | string[];
2736
+ } | {
2737
+ empty: boolean;
2738
+ } | {
2739
+ $neq: AnyValue;
2740
+ } | {
2741
+ $nne: AnyValue;
2742
+ } | {
2743
+ $lt: AnyValue;
2744
+ } | {
2745
+ $lte: AnyValue;
2746
+ } | {
2747
+ $gt: AnyValue;
2748
+ } | {
2749
+ $gte: AnyValue;
2750
+ } | {
2751
+ neq: AnyValue;
2752
+ } | {
2753
+ nne: AnyValue;
2754
+ } | {
2755
+ lt: AnyValue;
2756
+ } | {
2757
+ lte: AnyValue;
2758
+ } | {
2759
+ gt: AnyValue;
2760
+ } | {
2761
+ gte: AnyValue;
2762
+ } | {
2763
+ $range: AnyValue;
2764
+ } | {
2765
+ range: AnyValue;
2766
+ })[];
2767
+ };
349
2768
  };
350
2769
  };
351
2770
  export declare type WorkerFetcherFetchOpts_Without_Query_Limit_Geo_Sort_Select_Cp_Group_Filters = {
@@ -376,7 +2795,410 @@ export declare type WorkerFetcherFetchOpts_Without_Query_Limit_Geo_Sort_Select_C
376
2795
  };
377
2796
  };
378
2797
  filters?: {
379
- locale: string;
2798
+ datetime?: {
2799
+ or: ({
2800
+ $eq: string | number | string[] | null[];
2801
+ } | {
2802
+ $ne: string | number | string[] | null[];
2803
+ } | {
2804
+ $contains: string | string[];
2805
+ } | {
2806
+ $notcontains: string | string[];
2807
+ } | {
2808
+ $empty: boolean;
2809
+ } | {
2810
+ eq: string | number | string[] | null[];
2811
+ } | {
2812
+ ne: string | number | string[] | null[];
2813
+ } | {
2814
+ contains: string | string[];
2815
+ } | {
2816
+ notcontains: string | string[];
2817
+ } | {
2818
+ empty: boolean;
2819
+ } | {
2820
+ $neq: AnyValue;
2821
+ } | {
2822
+ $nne: AnyValue;
2823
+ } | {
2824
+ $lt: AnyValue;
2825
+ } | {
2826
+ $lte: AnyValue;
2827
+ } | {
2828
+ $gt: AnyValue;
2829
+ } | {
2830
+ $gte: AnyValue;
2831
+ } | {
2832
+ neq: AnyValue;
2833
+ } | {
2834
+ nne: AnyValue;
2835
+ } | {
2836
+ lt: AnyValue;
2837
+ } | {
2838
+ lte: AnyValue;
2839
+ } | {
2840
+ gt: AnyValue;
2841
+ } | {
2842
+ gte: AnyValue;
2843
+ } | {
2844
+ $range: AnyValue;
2845
+ } | {
2846
+ range: AnyValue;
2847
+ })[];
2848
+ } | {
2849
+ and: ({
2850
+ $eq: string | number | string[] | null[];
2851
+ } | {
2852
+ $ne: string | number | string[] | null[];
2853
+ } | {
2854
+ $contains: string | string[];
2855
+ } | {
2856
+ $notcontains: string | string[];
2857
+ } | {
2858
+ $empty: boolean;
2859
+ } | {
2860
+ eq: string | number | string[] | null[];
2861
+ } | {
2862
+ ne: string | number | string[] | null[];
2863
+ } | {
2864
+ contains: string | string[];
2865
+ } | {
2866
+ notcontains: string | string[];
2867
+ } | {
2868
+ empty: boolean;
2869
+ } | {
2870
+ $neq: AnyValue;
2871
+ } | {
2872
+ $nne: AnyValue;
2873
+ } | {
2874
+ $lt: AnyValue;
2875
+ } | {
2876
+ $lte: AnyValue;
2877
+ } | {
2878
+ $gt: AnyValue;
2879
+ } | {
2880
+ $gte: AnyValue;
2881
+ } | {
2882
+ neq: AnyValue;
2883
+ } | {
2884
+ nne: AnyValue;
2885
+ } | {
2886
+ lt: AnyValue;
2887
+ } | {
2888
+ lte: AnyValue;
2889
+ } | {
2890
+ gt: AnyValue;
2891
+ } | {
2892
+ gte: AnyValue;
2893
+ } | {
2894
+ $range: AnyValue;
2895
+ } | {
2896
+ range: AnyValue;
2897
+ })[];
2898
+ };
2899
+ reference_id?: {
2900
+ or: ({
2901
+ $eq: string | number | string[] | null[];
2902
+ } | {
2903
+ $ne: string | number | string[] | null[];
2904
+ } | {
2905
+ $contains: string | string[];
2906
+ } | {
2907
+ $notcontains: string | string[];
2908
+ } | {
2909
+ $empty: boolean;
2910
+ } | {
2911
+ eq: string | number | string[] | null[];
2912
+ } | {
2913
+ ne: string | number | string[] | null[];
2914
+ } | {
2915
+ contains: string | string[];
2916
+ } | {
2917
+ notcontains: string | string[];
2918
+ } | {
2919
+ empty: boolean;
2920
+ } | {
2921
+ $neq: AnyValue;
2922
+ } | {
2923
+ $nne: AnyValue;
2924
+ } | {
2925
+ $lt: AnyValue;
2926
+ } | {
2927
+ $lte: AnyValue;
2928
+ } | {
2929
+ $gt: AnyValue;
2930
+ } | {
2931
+ $gte: AnyValue;
2932
+ } | {
2933
+ neq: AnyValue;
2934
+ } | {
2935
+ nne: AnyValue;
2936
+ } | {
2937
+ lt: AnyValue;
2938
+ } | {
2939
+ lte: AnyValue;
2940
+ } | {
2941
+ gt: AnyValue;
2942
+ } | {
2943
+ gte: AnyValue;
2944
+ } | {
2945
+ $range: AnyValue;
2946
+ } | {
2947
+ range: AnyValue;
2948
+ })[];
2949
+ } | {
2950
+ and: ({
2951
+ $eq: string | number | string[] | null[];
2952
+ } | {
2953
+ $ne: string | number | string[] | null[];
2954
+ } | {
2955
+ $contains: string | string[];
2956
+ } | {
2957
+ $notcontains: string | string[];
2958
+ } | {
2959
+ $empty: boolean;
2960
+ } | {
2961
+ eq: string | number | string[] | null[];
2962
+ } | {
2963
+ ne: string | number | string[] | null[];
2964
+ } | {
2965
+ contains: string | string[];
2966
+ } | {
2967
+ notcontains: string | string[];
2968
+ } | {
2969
+ empty: boolean;
2970
+ } | {
2971
+ $neq: AnyValue;
2972
+ } | {
2973
+ $nne: AnyValue;
2974
+ } | {
2975
+ $lt: AnyValue;
2976
+ } | {
2977
+ $lte: AnyValue;
2978
+ } | {
2979
+ $gt: AnyValue;
2980
+ } | {
2981
+ $gte: AnyValue;
2982
+ } | {
2983
+ neq: AnyValue;
2984
+ } | {
2985
+ nne: AnyValue;
2986
+ } | {
2987
+ lt: AnyValue;
2988
+ } | {
2989
+ lte: AnyValue;
2990
+ } | {
2991
+ gt: AnyValue;
2992
+ } | {
2993
+ gte: AnyValue;
2994
+ } | {
2995
+ $range: AnyValue;
2996
+ } | {
2997
+ range: AnyValue;
2998
+ })[];
2999
+ };
3000
+ product_id?: {
3001
+ or: ({
3002
+ $eq: string | number | string[] | null[];
3003
+ } | {
3004
+ $ne: string | number | string[] | null[];
3005
+ } | {
3006
+ $contains: string | string[];
3007
+ } | {
3008
+ $notcontains: string | string[];
3009
+ } | {
3010
+ $empty: boolean;
3011
+ } | {
3012
+ eq: string | number | string[] | null[];
3013
+ } | {
3014
+ ne: string | number | string[] | null[];
3015
+ } | {
3016
+ contains: string | string[];
3017
+ } | {
3018
+ notcontains: string | string[];
3019
+ } | {
3020
+ empty: boolean;
3021
+ } | {
3022
+ $neq: AnyValue;
3023
+ } | {
3024
+ $nne: AnyValue;
3025
+ } | {
3026
+ $lt: AnyValue;
3027
+ } | {
3028
+ $lte: AnyValue;
3029
+ } | {
3030
+ $gt: AnyValue;
3031
+ } | {
3032
+ $gte: AnyValue;
3033
+ } | {
3034
+ neq: AnyValue;
3035
+ } | {
3036
+ nne: AnyValue;
3037
+ } | {
3038
+ lt: AnyValue;
3039
+ } | {
3040
+ lte: AnyValue;
3041
+ } | {
3042
+ gt: AnyValue;
3043
+ } | {
3044
+ gte: AnyValue;
3045
+ } | {
3046
+ $range: AnyValue;
3047
+ } | {
3048
+ range: AnyValue;
3049
+ })[];
3050
+ } | {
3051
+ and: ({
3052
+ $eq: string | number | string[] | null[];
3053
+ } | {
3054
+ $ne: string | number | string[] | null[];
3055
+ } | {
3056
+ $contains: string | string[];
3057
+ } | {
3058
+ $notcontains: string | string[];
3059
+ } | {
3060
+ $empty: boolean;
3061
+ } | {
3062
+ eq: string | number | string[] | null[];
3063
+ } | {
3064
+ ne: string | number | string[] | null[];
3065
+ } | {
3066
+ contains: string | string[];
3067
+ } | {
3068
+ notcontains: string | string[];
3069
+ } | {
3070
+ empty: boolean;
3071
+ } | {
3072
+ $neq: AnyValue;
3073
+ } | {
3074
+ $nne: AnyValue;
3075
+ } | {
3076
+ $lt: AnyValue;
3077
+ } | {
3078
+ $lte: AnyValue;
3079
+ } | {
3080
+ $gt: AnyValue;
3081
+ } | {
3082
+ $gte: AnyValue;
3083
+ } | {
3084
+ neq: AnyValue;
3085
+ } | {
3086
+ nne: AnyValue;
3087
+ } | {
3088
+ lt: AnyValue;
3089
+ } | {
3090
+ lte: AnyValue;
3091
+ } | {
3092
+ gt: AnyValue;
3093
+ } | {
3094
+ gte: AnyValue;
3095
+ } | {
3096
+ $range: AnyValue;
3097
+ } | {
3098
+ range: AnyValue;
3099
+ })[];
3100
+ };
3101
+ locale?: {
3102
+ or: ({
3103
+ $eq: string | number | string[] | null[];
3104
+ } | {
3105
+ $ne: string | number | string[] | null[];
3106
+ } | {
3107
+ $contains: string | string[];
3108
+ } | {
3109
+ $notcontains: string | string[];
3110
+ } | {
3111
+ $empty: boolean;
3112
+ } | {
3113
+ eq: string | number | string[] | null[];
3114
+ } | {
3115
+ ne: string | number | string[] | null[];
3116
+ } | {
3117
+ contains: string | string[];
3118
+ } | {
3119
+ notcontains: string | string[];
3120
+ } | {
3121
+ empty: boolean;
3122
+ } | {
3123
+ $neq: AnyValue;
3124
+ } | {
3125
+ $nne: AnyValue;
3126
+ } | {
3127
+ $lt: AnyValue;
3128
+ } | {
3129
+ $lte: AnyValue;
3130
+ } | {
3131
+ $gt: AnyValue;
3132
+ } | {
3133
+ $gte: AnyValue;
3134
+ } | {
3135
+ neq: AnyValue;
3136
+ } | {
3137
+ nne: AnyValue;
3138
+ } | {
3139
+ lt: AnyValue;
3140
+ } | {
3141
+ lte: AnyValue;
3142
+ } | {
3143
+ gt: AnyValue;
3144
+ } | {
3145
+ gte: AnyValue;
3146
+ } | {
3147
+ $range: AnyValue;
3148
+ } | {
3149
+ range: AnyValue;
3150
+ })[];
3151
+ } | {
3152
+ and: ({
3153
+ $eq: string | number | string[] | null[];
3154
+ } | {
3155
+ $ne: string | number | string[] | null[];
3156
+ } | {
3157
+ $contains: string | string[];
3158
+ } | {
3159
+ $notcontains: string | string[];
3160
+ } | {
3161
+ $empty: boolean;
3162
+ } | {
3163
+ eq: string | number | string[] | null[];
3164
+ } | {
3165
+ ne: string | number | string[] | null[];
3166
+ } | {
3167
+ contains: string | string[];
3168
+ } | {
3169
+ notcontains: string | string[];
3170
+ } | {
3171
+ empty: boolean;
3172
+ } | {
3173
+ $neq: AnyValue;
3174
+ } | {
3175
+ $nne: AnyValue;
3176
+ } | {
3177
+ $lt: AnyValue;
3178
+ } | {
3179
+ $lte: AnyValue;
3180
+ } | {
3181
+ $gt: AnyValue;
3182
+ } | {
3183
+ $gte: AnyValue;
3184
+ } | {
3185
+ neq: AnyValue;
3186
+ } | {
3187
+ nne: AnyValue;
3188
+ } | {
3189
+ lt: AnyValue;
3190
+ } | {
3191
+ lte: AnyValue;
3192
+ } | {
3193
+ gt: AnyValue;
3194
+ } | {
3195
+ gte: AnyValue;
3196
+ } | {
3197
+ $range: AnyValue;
3198
+ } | {
3199
+ range: AnyValue;
3200
+ })[];
3201
+ };
380
3202
  };
381
3203
  };
382
3204
  export declare enum DatasourceGenericSubType {
@@ -417,7 +3239,8 @@ export declare enum DatasourceAnalyticsSubType {
417
3239
  GOOGLE_TAG_MANAGER = "google_tag_manager",
418
3240
  SHOPIFY = "shopify",
419
3241
  WORKFLOW_EVENTS = "workflow_events",
420
- USER = "user"
3242
+ USER = "user",
3243
+ PURCHASES = "purchases"
421
3244
  }
422
3245
  export declare type DatasourceAnalytics = {
423
3246
  name: "analytics";
@@ -522,7 +3345,410 @@ export declare type RenaultPricesFetcherFetchOpts_Without_Query_Limit_Geo_Sort_S
522
3345
  };
523
3346
  };
524
3347
  filters?: {
525
- locale: string;
3348
+ datetime?: {
3349
+ or: ({
3350
+ $eq: string | number | string[] | null[];
3351
+ } | {
3352
+ $ne: string | number | string[] | null[];
3353
+ } | {
3354
+ $contains: string | string[];
3355
+ } | {
3356
+ $notcontains: string | string[];
3357
+ } | {
3358
+ $empty: boolean;
3359
+ } | {
3360
+ eq: string | number | string[] | null[];
3361
+ } | {
3362
+ ne: string | number | string[] | null[];
3363
+ } | {
3364
+ contains: string | string[];
3365
+ } | {
3366
+ notcontains: string | string[];
3367
+ } | {
3368
+ empty: boolean;
3369
+ } | {
3370
+ $neq: AnyValue;
3371
+ } | {
3372
+ $nne: AnyValue;
3373
+ } | {
3374
+ $lt: AnyValue;
3375
+ } | {
3376
+ $lte: AnyValue;
3377
+ } | {
3378
+ $gt: AnyValue;
3379
+ } | {
3380
+ $gte: AnyValue;
3381
+ } | {
3382
+ neq: AnyValue;
3383
+ } | {
3384
+ nne: AnyValue;
3385
+ } | {
3386
+ lt: AnyValue;
3387
+ } | {
3388
+ lte: AnyValue;
3389
+ } | {
3390
+ gt: AnyValue;
3391
+ } | {
3392
+ gte: AnyValue;
3393
+ } | {
3394
+ $range: AnyValue;
3395
+ } | {
3396
+ range: AnyValue;
3397
+ })[];
3398
+ } | {
3399
+ and: ({
3400
+ $eq: string | number | string[] | null[];
3401
+ } | {
3402
+ $ne: string | number | string[] | null[];
3403
+ } | {
3404
+ $contains: string | string[];
3405
+ } | {
3406
+ $notcontains: string | string[];
3407
+ } | {
3408
+ $empty: boolean;
3409
+ } | {
3410
+ eq: string | number | string[] | null[];
3411
+ } | {
3412
+ ne: string | number | string[] | null[];
3413
+ } | {
3414
+ contains: string | string[];
3415
+ } | {
3416
+ notcontains: string | string[];
3417
+ } | {
3418
+ empty: boolean;
3419
+ } | {
3420
+ $neq: AnyValue;
3421
+ } | {
3422
+ $nne: AnyValue;
3423
+ } | {
3424
+ $lt: AnyValue;
3425
+ } | {
3426
+ $lte: AnyValue;
3427
+ } | {
3428
+ $gt: AnyValue;
3429
+ } | {
3430
+ $gte: AnyValue;
3431
+ } | {
3432
+ neq: AnyValue;
3433
+ } | {
3434
+ nne: AnyValue;
3435
+ } | {
3436
+ lt: AnyValue;
3437
+ } | {
3438
+ lte: AnyValue;
3439
+ } | {
3440
+ gt: AnyValue;
3441
+ } | {
3442
+ gte: AnyValue;
3443
+ } | {
3444
+ $range: AnyValue;
3445
+ } | {
3446
+ range: AnyValue;
3447
+ })[];
3448
+ };
3449
+ reference_id?: {
3450
+ or: ({
3451
+ $eq: string | number | string[] | null[];
3452
+ } | {
3453
+ $ne: string | number | string[] | null[];
3454
+ } | {
3455
+ $contains: string | string[];
3456
+ } | {
3457
+ $notcontains: string | string[];
3458
+ } | {
3459
+ $empty: boolean;
3460
+ } | {
3461
+ eq: string | number | string[] | null[];
3462
+ } | {
3463
+ ne: string | number | string[] | null[];
3464
+ } | {
3465
+ contains: string | string[];
3466
+ } | {
3467
+ notcontains: string | string[];
3468
+ } | {
3469
+ empty: boolean;
3470
+ } | {
3471
+ $neq: AnyValue;
3472
+ } | {
3473
+ $nne: AnyValue;
3474
+ } | {
3475
+ $lt: AnyValue;
3476
+ } | {
3477
+ $lte: AnyValue;
3478
+ } | {
3479
+ $gt: AnyValue;
3480
+ } | {
3481
+ $gte: AnyValue;
3482
+ } | {
3483
+ neq: AnyValue;
3484
+ } | {
3485
+ nne: AnyValue;
3486
+ } | {
3487
+ lt: AnyValue;
3488
+ } | {
3489
+ lte: AnyValue;
3490
+ } | {
3491
+ gt: AnyValue;
3492
+ } | {
3493
+ gte: AnyValue;
3494
+ } | {
3495
+ $range: AnyValue;
3496
+ } | {
3497
+ range: AnyValue;
3498
+ })[];
3499
+ } | {
3500
+ and: ({
3501
+ $eq: string | number | string[] | null[];
3502
+ } | {
3503
+ $ne: string | number | string[] | null[];
3504
+ } | {
3505
+ $contains: string | string[];
3506
+ } | {
3507
+ $notcontains: string | string[];
3508
+ } | {
3509
+ $empty: boolean;
3510
+ } | {
3511
+ eq: string | number | string[] | null[];
3512
+ } | {
3513
+ ne: string | number | string[] | null[];
3514
+ } | {
3515
+ contains: string | string[];
3516
+ } | {
3517
+ notcontains: string | string[];
3518
+ } | {
3519
+ empty: boolean;
3520
+ } | {
3521
+ $neq: AnyValue;
3522
+ } | {
3523
+ $nne: AnyValue;
3524
+ } | {
3525
+ $lt: AnyValue;
3526
+ } | {
3527
+ $lte: AnyValue;
3528
+ } | {
3529
+ $gt: AnyValue;
3530
+ } | {
3531
+ $gte: AnyValue;
3532
+ } | {
3533
+ neq: AnyValue;
3534
+ } | {
3535
+ nne: AnyValue;
3536
+ } | {
3537
+ lt: AnyValue;
3538
+ } | {
3539
+ lte: AnyValue;
3540
+ } | {
3541
+ gt: AnyValue;
3542
+ } | {
3543
+ gte: AnyValue;
3544
+ } | {
3545
+ $range: AnyValue;
3546
+ } | {
3547
+ range: AnyValue;
3548
+ })[];
3549
+ };
3550
+ product_id?: {
3551
+ or: ({
3552
+ $eq: string | number | string[] | null[];
3553
+ } | {
3554
+ $ne: string | number | string[] | null[];
3555
+ } | {
3556
+ $contains: string | string[];
3557
+ } | {
3558
+ $notcontains: string | string[];
3559
+ } | {
3560
+ $empty: boolean;
3561
+ } | {
3562
+ eq: string | number | string[] | null[];
3563
+ } | {
3564
+ ne: string | number | string[] | null[];
3565
+ } | {
3566
+ contains: string | string[];
3567
+ } | {
3568
+ notcontains: string | string[];
3569
+ } | {
3570
+ empty: boolean;
3571
+ } | {
3572
+ $neq: AnyValue;
3573
+ } | {
3574
+ $nne: AnyValue;
3575
+ } | {
3576
+ $lt: AnyValue;
3577
+ } | {
3578
+ $lte: AnyValue;
3579
+ } | {
3580
+ $gt: AnyValue;
3581
+ } | {
3582
+ $gte: AnyValue;
3583
+ } | {
3584
+ neq: AnyValue;
3585
+ } | {
3586
+ nne: AnyValue;
3587
+ } | {
3588
+ lt: AnyValue;
3589
+ } | {
3590
+ lte: AnyValue;
3591
+ } | {
3592
+ gt: AnyValue;
3593
+ } | {
3594
+ gte: AnyValue;
3595
+ } | {
3596
+ $range: AnyValue;
3597
+ } | {
3598
+ range: AnyValue;
3599
+ })[];
3600
+ } | {
3601
+ and: ({
3602
+ $eq: string | number | string[] | null[];
3603
+ } | {
3604
+ $ne: string | number | string[] | null[];
3605
+ } | {
3606
+ $contains: string | string[];
3607
+ } | {
3608
+ $notcontains: string | string[];
3609
+ } | {
3610
+ $empty: boolean;
3611
+ } | {
3612
+ eq: string | number | string[] | null[];
3613
+ } | {
3614
+ ne: string | number | string[] | null[];
3615
+ } | {
3616
+ contains: string | string[];
3617
+ } | {
3618
+ notcontains: string | string[];
3619
+ } | {
3620
+ empty: boolean;
3621
+ } | {
3622
+ $neq: AnyValue;
3623
+ } | {
3624
+ $nne: AnyValue;
3625
+ } | {
3626
+ $lt: AnyValue;
3627
+ } | {
3628
+ $lte: AnyValue;
3629
+ } | {
3630
+ $gt: AnyValue;
3631
+ } | {
3632
+ $gte: AnyValue;
3633
+ } | {
3634
+ neq: AnyValue;
3635
+ } | {
3636
+ nne: AnyValue;
3637
+ } | {
3638
+ lt: AnyValue;
3639
+ } | {
3640
+ lte: AnyValue;
3641
+ } | {
3642
+ gt: AnyValue;
3643
+ } | {
3644
+ gte: AnyValue;
3645
+ } | {
3646
+ $range: AnyValue;
3647
+ } | {
3648
+ range: AnyValue;
3649
+ })[];
3650
+ };
3651
+ locale?: {
3652
+ or: ({
3653
+ $eq: string | number | string[] | null[];
3654
+ } | {
3655
+ $ne: string | number | string[] | null[];
3656
+ } | {
3657
+ $contains: string | string[];
3658
+ } | {
3659
+ $notcontains: string | string[];
3660
+ } | {
3661
+ $empty: boolean;
3662
+ } | {
3663
+ eq: string | number | string[] | null[];
3664
+ } | {
3665
+ ne: string | number | string[] | null[];
3666
+ } | {
3667
+ contains: string | string[];
3668
+ } | {
3669
+ notcontains: string | string[];
3670
+ } | {
3671
+ empty: boolean;
3672
+ } | {
3673
+ $neq: AnyValue;
3674
+ } | {
3675
+ $nne: AnyValue;
3676
+ } | {
3677
+ $lt: AnyValue;
3678
+ } | {
3679
+ $lte: AnyValue;
3680
+ } | {
3681
+ $gt: AnyValue;
3682
+ } | {
3683
+ $gte: AnyValue;
3684
+ } | {
3685
+ neq: AnyValue;
3686
+ } | {
3687
+ nne: AnyValue;
3688
+ } | {
3689
+ lt: AnyValue;
3690
+ } | {
3691
+ lte: AnyValue;
3692
+ } | {
3693
+ gt: AnyValue;
3694
+ } | {
3695
+ gte: AnyValue;
3696
+ } | {
3697
+ $range: AnyValue;
3698
+ } | {
3699
+ range: AnyValue;
3700
+ })[];
3701
+ } | {
3702
+ and: ({
3703
+ $eq: string | number | string[] | null[];
3704
+ } | {
3705
+ $ne: string | number | string[] | null[];
3706
+ } | {
3707
+ $contains: string | string[];
3708
+ } | {
3709
+ $notcontains: string | string[];
3710
+ } | {
3711
+ $empty: boolean;
3712
+ } | {
3713
+ eq: string | number | string[] | null[];
3714
+ } | {
3715
+ ne: string | number | string[] | null[];
3716
+ } | {
3717
+ contains: string | string[];
3718
+ } | {
3719
+ notcontains: string | string[];
3720
+ } | {
3721
+ empty: boolean;
3722
+ } | {
3723
+ $neq: AnyValue;
3724
+ } | {
3725
+ $nne: AnyValue;
3726
+ } | {
3727
+ $lt: AnyValue;
3728
+ } | {
3729
+ $lte: AnyValue;
3730
+ } | {
3731
+ $gt: AnyValue;
3732
+ } | {
3733
+ $gte: AnyValue;
3734
+ } | {
3735
+ neq: AnyValue;
3736
+ } | {
3737
+ nne: AnyValue;
3738
+ } | {
3739
+ lt: AnyValue;
3740
+ } | {
3741
+ lte: AnyValue;
3742
+ } | {
3743
+ gt: AnyValue;
3744
+ } | {
3745
+ gte: AnyValue;
3746
+ } | {
3747
+ $range: AnyValue;
3748
+ } | {
3749
+ range: AnyValue;
3750
+ })[];
3751
+ };
526
3752
  };
527
3753
  };
528
3754
  export declare type DecathlonProductFallbackFetcherFetchOpts_Without_Query_Limit_Geo_Sort_Select_Group_Filters = {
@@ -547,7 +3773,410 @@ export declare type DecathlonProductFallbackFetcherFetchOpts_Without_Query_Limit
547
3773
  };
548
3774
  };
549
3775
  filters?: {
550
- locale: string;
3776
+ datetime?: {
3777
+ or: ({
3778
+ $eq: string | number | string[] | null[];
3779
+ } | {
3780
+ $ne: string | number | string[] | null[];
3781
+ } | {
3782
+ $contains: string | string[];
3783
+ } | {
3784
+ $notcontains: string | string[];
3785
+ } | {
3786
+ $empty: boolean;
3787
+ } | {
3788
+ eq: string | number | string[] | null[];
3789
+ } | {
3790
+ ne: string | number | string[] | null[];
3791
+ } | {
3792
+ contains: string | string[];
3793
+ } | {
3794
+ notcontains: string | string[];
3795
+ } | {
3796
+ empty: boolean;
3797
+ } | {
3798
+ $neq: AnyValue;
3799
+ } | {
3800
+ $nne: AnyValue;
3801
+ } | {
3802
+ $lt: AnyValue;
3803
+ } | {
3804
+ $lte: AnyValue;
3805
+ } | {
3806
+ $gt: AnyValue;
3807
+ } | {
3808
+ $gte: AnyValue;
3809
+ } | {
3810
+ neq: AnyValue;
3811
+ } | {
3812
+ nne: AnyValue;
3813
+ } | {
3814
+ lt: AnyValue;
3815
+ } | {
3816
+ lte: AnyValue;
3817
+ } | {
3818
+ gt: AnyValue;
3819
+ } | {
3820
+ gte: AnyValue;
3821
+ } | {
3822
+ $range: AnyValue;
3823
+ } | {
3824
+ range: AnyValue;
3825
+ })[];
3826
+ } | {
3827
+ and: ({
3828
+ $eq: string | number | string[] | null[];
3829
+ } | {
3830
+ $ne: string | number | string[] | null[];
3831
+ } | {
3832
+ $contains: string | string[];
3833
+ } | {
3834
+ $notcontains: string | string[];
3835
+ } | {
3836
+ $empty: boolean;
3837
+ } | {
3838
+ eq: string | number | string[] | null[];
3839
+ } | {
3840
+ ne: string | number | string[] | null[];
3841
+ } | {
3842
+ contains: string | string[];
3843
+ } | {
3844
+ notcontains: string | string[];
3845
+ } | {
3846
+ empty: boolean;
3847
+ } | {
3848
+ $neq: AnyValue;
3849
+ } | {
3850
+ $nne: AnyValue;
3851
+ } | {
3852
+ $lt: AnyValue;
3853
+ } | {
3854
+ $lte: AnyValue;
3855
+ } | {
3856
+ $gt: AnyValue;
3857
+ } | {
3858
+ $gte: AnyValue;
3859
+ } | {
3860
+ neq: AnyValue;
3861
+ } | {
3862
+ nne: AnyValue;
3863
+ } | {
3864
+ lt: AnyValue;
3865
+ } | {
3866
+ lte: AnyValue;
3867
+ } | {
3868
+ gt: AnyValue;
3869
+ } | {
3870
+ gte: AnyValue;
3871
+ } | {
3872
+ $range: AnyValue;
3873
+ } | {
3874
+ range: AnyValue;
3875
+ })[];
3876
+ };
3877
+ reference_id?: {
3878
+ or: ({
3879
+ $eq: string | number | string[] | null[];
3880
+ } | {
3881
+ $ne: string | number | string[] | null[];
3882
+ } | {
3883
+ $contains: string | string[];
3884
+ } | {
3885
+ $notcontains: string | string[];
3886
+ } | {
3887
+ $empty: boolean;
3888
+ } | {
3889
+ eq: string | number | string[] | null[];
3890
+ } | {
3891
+ ne: string | number | string[] | null[];
3892
+ } | {
3893
+ contains: string | string[];
3894
+ } | {
3895
+ notcontains: string | string[];
3896
+ } | {
3897
+ empty: boolean;
3898
+ } | {
3899
+ $neq: AnyValue;
3900
+ } | {
3901
+ $nne: AnyValue;
3902
+ } | {
3903
+ $lt: AnyValue;
3904
+ } | {
3905
+ $lte: AnyValue;
3906
+ } | {
3907
+ $gt: AnyValue;
3908
+ } | {
3909
+ $gte: AnyValue;
3910
+ } | {
3911
+ neq: AnyValue;
3912
+ } | {
3913
+ nne: AnyValue;
3914
+ } | {
3915
+ lt: AnyValue;
3916
+ } | {
3917
+ lte: AnyValue;
3918
+ } | {
3919
+ gt: AnyValue;
3920
+ } | {
3921
+ gte: AnyValue;
3922
+ } | {
3923
+ $range: AnyValue;
3924
+ } | {
3925
+ range: AnyValue;
3926
+ })[];
3927
+ } | {
3928
+ and: ({
3929
+ $eq: string | number | string[] | null[];
3930
+ } | {
3931
+ $ne: string | number | string[] | null[];
3932
+ } | {
3933
+ $contains: string | string[];
3934
+ } | {
3935
+ $notcontains: string | string[];
3936
+ } | {
3937
+ $empty: boolean;
3938
+ } | {
3939
+ eq: string | number | string[] | null[];
3940
+ } | {
3941
+ ne: string | number | string[] | null[];
3942
+ } | {
3943
+ contains: string | string[];
3944
+ } | {
3945
+ notcontains: string | string[];
3946
+ } | {
3947
+ empty: boolean;
3948
+ } | {
3949
+ $neq: AnyValue;
3950
+ } | {
3951
+ $nne: AnyValue;
3952
+ } | {
3953
+ $lt: AnyValue;
3954
+ } | {
3955
+ $lte: AnyValue;
3956
+ } | {
3957
+ $gt: AnyValue;
3958
+ } | {
3959
+ $gte: AnyValue;
3960
+ } | {
3961
+ neq: AnyValue;
3962
+ } | {
3963
+ nne: AnyValue;
3964
+ } | {
3965
+ lt: AnyValue;
3966
+ } | {
3967
+ lte: AnyValue;
3968
+ } | {
3969
+ gt: AnyValue;
3970
+ } | {
3971
+ gte: AnyValue;
3972
+ } | {
3973
+ $range: AnyValue;
3974
+ } | {
3975
+ range: AnyValue;
3976
+ })[];
3977
+ };
3978
+ product_id?: {
3979
+ or: ({
3980
+ $eq: string | number | string[] | null[];
3981
+ } | {
3982
+ $ne: string | number | string[] | null[];
3983
+ } | {
3984
+ $contains: string | string[];
3985
+ } | {
3986
+ $notcontains: string | string[];
3987
+ } | {
3988
+ $empty: boolean;
3989
+ } | {
3990
+ eq: string | number | string[] | null[];
3991
+ } | {
3992
+ ne: string | number | string[] | null[];
3993
+ } | {
3994
+ contains: string | string[];
3995
+ } | {
3996
+ notcontains: string | string[];
3997
+ } | {
3998
+ empty: boolean;
3999
+ } | {
4000
+ $neq: AnyValue;
4001
+ } | {
4002
+ $nne: AnyValue;
4003
+ } | {
4004
+ $lt: AnyValue;
4005
+ } | {
4006
+ $lte: AnyValue;
4007
+ } | {
4008
+ $gt: AnyValue;
4009
+ } | {
4010
+ $gte: AnyValue;
4011
+ } | {
4012
+ neq: AnyValue;
4013
+ } | {
4014
+ nne: AnyValue;
4015
+ } | {
4016
+ lt: AnyValue;
4017
+ } | {
4018
+ lte: AnyValue;
4019
+ } | {
4020
+ gt: AnyValue;
4021
+ } | {
4022
+ gte: AnyValue;
4023
+ } | {
4024
+ $range: AnyValue;
4025
+ } | {
4026
+ range: AnyValue;
4027
+ })[];
4028
+ } | {
4029
+ and: ({
4030
+ $eq: string | number | string[] | null[];
4031
+ } | {
4032
+ $ne: string | number | string[] | null[];
4033
+ } | {
4034
+ $contains: string | string[];
4035
+ } | {
4036
+ $notcontains: string | string[];
4037
+ } | {
4038
+ $empty: boolean;
4039
+ } | {
4040
+ eq: string | number | string[] | null[];
4041
+ } | {
4042
+ ne: string | number | string[] | null[];
4043
+ } | {
4044
+ contains: string | string[];
4045
+ } | {
4046
+ notcontains: string | string[];
4047
+ } | {
4048
+ empty: boolean;
4049
+ } | {
4050
+ $neq: AnyValue;
4051
+ } | {
4052
+ $nne: AnyValue;
4053
+ } | {
4054
+ $lt: AnyValue;
4055
+ } | {
4056
+ $lte: AnyValue;
4057
+ } | {
4058
+ $gt: AnyValue;
4059
+ } | {
4060
+ $gte: AnyValue;
4061
+ } | {
4062
+ neq: AnyValue;
4063
+ } | {
4064
+ nne: AnyValue;
4065
+ } | {
4066
+ lt: AnyValue;
4067
+ } | {
4068
+ lte: AnyValue;
4069
+ } | {
4070
+ gt: AnyValue;
4071
+ } | {
4072
+ gte: AnyValue;
4073
+ } | {
4074
+ $range: AnyValue;
4075
+ } | {
4076
+ range: AnyValue;
4077
+ })[];
4078
+ };
4079
+ locale?: {
4080
+ or: ({
4081
+ $eq: string | number | string[] | null[];
4082
+ } | {
4083
+ $ne: string | number | string[] | null[];
4084
+ } | {
4085
+ $contains: string | string[];
4086
+ } | {
4087
+ $notcontains: string | string[];
4088
+ } | {
4089
+ $empty: boolean;
4090
+ } | {
4091
+ eq: string | number | string[] | null[];
4092
+ } | {
4093
+ ne: string | number | string[] | null[];
4094
+ } | {
4095
+ contains: string | string[];
4096
+ } | {
4097
+ notcontains: string | string[];
4098
+ } | {
4099
+ empty: boolean;
4100
+ } | {
4101
+ $neq: AnyValue;
4102
+ } | {
4103
+ $nne: AnyValue;
4104
+ } | {
4105
+ $lt: AnyValue;
4106
+ } | {
4107
+ $lte: AnyValue;
4108
+ } | {
4109
+ $gt: AnyValue;
4110
+ } | {
4111
+ $gte: AnyValue;
4112
+ } | {
4113
+ neq: AnyValue;
4114
+ } | {
4115
+ nne: AnyValue;
4116
+ } | {
4117
+ lt: AnyValue;
4118
+ } | {
4119
+ lte: AnyValue;
4120
+ } | {
4121
+ gt: AnyValue;
4122
+ } | {
4123
+ gte: AnyValue;
4124
+ } | {
4125
+ $range: AnyValue;
4126
+ } | {
4127
+ range: AnyValue;
4128
+ })[];
4129
+ } | {
4130
+ and: ({
4131
+ $eq: string | number | string[] | null[];
4132
+ } | {
4133
+ $ne: string | number | string[] | null[];
4134
+ } | {
4135
+ $contains: string | string[];
4136
+ } | {
4137
+ $notcontains: string | string[];
4138
+ } | {
4139
+ $empty: boolean;
4140
+ } | {
4141
+ eq: string | number | string[] | null[];
4142
+ } | {
4143
+ ne: string | number | string[] | null[];
4144
+ } | {
4145
+ contains: string | string[];
4146
+ } | {
4147
+ notcontains: string | string[];
4148
+ } | {
4149
+ empty: boolean;
4150
+ } | {
4151
+ $neq: AnyValue;
4152
+ } | {
4153
+ $nne: AnyValue;
4154
+ } | {
4155
+ $lt: AnyValue;
4156
+ } | {
4157
+ $lte: AnyValue;
4158
+ } | {
4159
+ $gt: AnyValue;
4160
+ } | {
4161
+ $gte: AnyValue;
4162
+ } | {
4163
+ neq: AnyValue;
4164
+ } | {
4165
+ nne: AnyValue;
4166
+ } | {
4167
+ lt: AnyValue;
4168
+ } | {
4169
+ lte: AnyValue;
4170
+ } | {
4171
+ gt: AnyValue;
4172
+ } | {
4173
+ gte: AnyValue;
4174
+ } | {
4175
+ $range: AnyValue;
4176
+ } | {
4177
+ range: AnyValue;
4178
+ })[];
4179
+ };
551
4180
  };
552
4181
  };
553
4182
  export declare type GenericUnwindRowsFetcherFetchOpts_Without_Query_Limit_Geo_Sort_Select_Group_Filters = {
@@ -572,7 +4201,410 @@ export declare type GenericUnwindRowsFetcherFetchOpts_Without_Query_Limit_Geo_So
572
4201
  };
573
4202
  };
574
4203
  filters?: {
575
- locale: string;
4204
+ datetime?: {
4205
+ or: ({
4206
+ $eq: string | number | string[] | null[];
4207
+ } | {
4208
+ $ne: string | number | string[] | null[];
4209
+ } | {
4210
+ $contains: string | string[];
4211
+ } | {
4212
+ $notcontains: string | string[];
4213
+ } | {
4214
+ $empty: boolean;
4215
+ } | {
4216
+ eq: string | number | string[] | null[];
4217
+ } | {
4218
+ ne: string | number | string[] | null[];
4219
+ } | {
4220
+ contains: string | string[];
4221
+ } | {
4222
+ notcontains: string | string[];
4223
+ } | {
4224
+ empty: boolean;
4225
+ } | {
4226
+ $neq: AnyValue;
4227
+ } | {
4228
+ $nne: AnyValue;
4229
+ } | {
4230
+ $lt: AnyValue;
4231
+ } | {
4232
+ $lte: AnyValue;
4233
+ } | {
4234
+ $gt: AnyValue;
4235
+ } | {
4236
+ $gte: AnyValue;
4237
+ } | {
4238
+ neq: AnyValue;
4239
+ } | {
4240
+ nne: AnyValue;
4241
+ } | {
4242
+ lt: AnyValue;
4243
+ } | {
4244
+ lte: AnyValue;
4245
+ } | {
4246
+ gt: AnyValue;
4247
+ } | {
4248
+ gte: AnyValue;
4249
+ } | {
4250
+ $range: AnyValue;
4251
+ } | {
4252
+ range: AnyValue;
4253
+ })[];
4254
+ } | {
4255
+ and: ({
4256
+ $eq: string | number | string[] | null[];
4257
+ } | {
4258
+ $ne: string | number | string[] | null[];
4259
+ } | {
4260
+ $contains: string | string[];
4261
+ } | {
4262
+ $notcontains: string | string[];
4263
+ } | {
4264
+ $empty: boolean;
4265
+ } | {
4266
+ eq: string | number | string[] | null[];
4267
+ } | {
4268
+ ne: string | number | string[] | null[];
4269
+ } | {
4270
+ contains: string | string[];
4271
+ } | {
4272
+ notcontains: string | string[];
4273
+ } | {
4274
+ empty: boolean;
4275
+ } | {
4276
+ $neq: AnyValue;
4277
+ } | {
4278
+ $nne: AnyValue;
4279
+ } | {
4280
+ $lt: AnyValue;
4281
+ } | {
4282
+ $lte: AnyValue;
4283
+ } | {
4284
+ $gt: AnyValue;
4285
+ } | {
4286
+ $gte: AnyValue;
4287
+ } | {
4288
+ neq: AnyValue;
4289
+ } | {
4290
+ nne: AnyValue;
4291
+ } | {
4292
+ lt: AnyValue;
4293
+ } | {
4294
+ lte: AnyValue;
4295
+ } | {
4296
+ gt: AnyValue;
4297
+ } | {
4298
+ gte: AnyValue;
4299
+ } | {
4300
+ $range: AnyValue;
4301
+ } | {
4302
+ range: AnyValue;
4303
+ })[];
4304
+ };
4305
+ reference_id?: {
4306
+ or: ({
4307
+ $eq: string | number | string[] | null[];
4308
+ } | {
4309
+ $ne: string | number | string[] | null[];
4310
+ } | {
4311
+ $contains: string | string[];
4312
+ } | {
4313
+ $notcontains: string | string[];
4314
+ } | {
4315
+ $empty: boolean;
4316
+ } | {
4317
+ eq: string | number | string[] | null[];
4318
+ } | {
4319
+ ne: string | number | string[] | null[];
4320
+ } | {
4321
+ contains: string | string[];
4322
+ } | {
4323
+ notcontains: string | string[];
4324
+ } | {
4325
+ empty: boolean;
4326
+ } | {
4327
+ $neq: AnyValue;
4328
+ } | {
4329
+ $nne: AnyValue;
4330
+ } | {
4331
+ $lt: AnyValue;
4332
+ } | {
4333
+ $lte: AnyValue;
4334
+ } | {
4335
+ $gt: AnyValue;
4336
+ } | {
4337
+ $gte: AnyValue;
4338
+ } | {
4339
+ neq: AnyValue;
4340
+ } | {
4341
+ nne: AnyValue;
4342
+ } | {
4343
+ lt: AnyValue;
4344
+ } | {
4345
+ lte: AnyValue;
4346
+ } | {
4347
+ gt: AnyValue;
4348
+ } | {
4349
+ gte: AnyValue;
4350
+ } | {
4351
+ $range: AnyValue;
4352
+ } | {
4353
+ range: AnyValue;
4354
+ })[];
4355
+ } | {
4356
+ and: ({
4357
+ $eq: string | number | string[] | null[];
4358
+ } | {
4359
+ $ne: string | number | string[] | null[];
4360
+ } | {
4361
+ $contains: string | string[];
4362
+ } | {
4363
+ $notcontains: string | string[];
4364
+ } | {
4365
+ $empty: boolean;
4366
+ } | {
4367
+ eq: string | number | string[] | null[];
4368
+ } | {
4369
+ ne: string | number | string[] | null[];
4370
+ } | {
4371
+ contains: string | string[];
4372
+ } | {
4373
+ notcontains: string | string[];
4374
+ } | {
4375
+ empty: boolean;
4376
+ } | {
4377
+ $neq: AnyValue;
4378
+ } | {
4379
+ $nne: AnyValue;
4380
+ } | {
4381
+ $lt: AnyValue;
4382
+ } | {
4383
+ $lte: AnyValue;
4384
+ } | {
4385
+ $gt: AnyValue;
4386
+ } | {
4387
+ $gte: AnyValue;
4388
+ } | {
4389
+ neq: AnyValue;
4390
+ } | {
4391
+ nne: AnyValue;
4392
+ } | {
4393
+ lt: AnyValue;
4394
+ } | {
4395
+ lte: AnyValue;
4396
+ } | {
4397
+ gt: AnyValue;
4398
+ } | {
4399
+ gte: AnyValue;
4400
+ } | {
4401
+ $range: AnyValue;
4402
+ } | {
4403
+ range: AnyValue;
4404
+ })[];
4405
+ };
4406
+ product_id?: {
4407
+ or: ({
4408
+ $eq: string | number | string[] | null[];
4409
+ } | {
4410
+ $ne: string | number | string[] | null[];
4411
+ } | {
4412
+ $contains: string | string[];
4413
+ } | {
4414
+ $notcontains: string | string[];
4415
+ } | {
4416
+ $empty: boolean;
4417
+ } | {
4418
+ eq: string | number | string[] | null[];
4419
+ } | {
4420
+ ne: string | number | string[] | null[];
4421
+ } | {
4422
+ contains: string | string[];
4423
+ } | {
4424
+ notcontains: string | string[];
4425
+ } | {
4426
+ empty: boolean;
4427
+ } | {
4428
+ $neq: AnyValue;
4429
+ } | {
4430
+ $nne: AnyValue;
4431
+ } | {
4432
+ $lt: AnyValue;
4433
+ } | {
4434
+ $lte: AnyValue;
4435
+ } | {
4436
+ $gt: AnyValue;
4437
+ } | {
4438
+ $gte: AnyValue;
4439
+ } | {
4440
+ neq: AnyValue;
4441
+ } | {
4442
+ nne: AnyValue;
4443
+ } | {
4444
+ lt: AnyValue;
4445
+ } | {
4446
+ lte: AnyValue;
4447
+ } | {
4448
+ gt: AnyValue;
4449
+ } | {
4450
+ gte: AnyValue;
4451
+ } | {
4452
+ $range: AnyValue;
4453
+ } | {
4454
+ range: AnyValue;
4455
+ })[];
4456
+ } | {
4457
+ and: ({
4458
+ $eq: string | number | string[] | null[];
4459
+ } | {
4460
+ $ne: string | number | string[] | null[];
4461
+ } | {
4462
+ $contains: string | string[];
4463
+ } | {
4464
+ $notcontains: string | string[];
4465
+ } | {
4466
+ $empty: boolean;
4467
+ } | {
4468
+ eq: string | number | string[] | null[];
4469
+ } | {
4470
+ ne: string | number | string[] | null[];
4471
+ } | {
4472
+ contains: string | string[];
4473
+ } | {
4474
+ notcontains: string | string[];
4475
+ } | {
4476
+ empty: boolean;
4477
+ } | {
4478
+ $neq: AnyValue;
4479
+ } | {
4480
+ $nne: AnyValue;
4481
+ } | {
4482
+ $lt: AnyValue;
4483
+ } | {
4484
+ $lte: AnyValue;
4485
+ } | {
4486
+ $gt: AnyValue;
4487
+ } | {
4488
+ $gte: AnyValue;
4489
+ } | {
4490
+ neq: AnyValue;
4491
+ } | {
4492
+ nne: AnyValue;
4493
+ } | {
4494
+ lt: AnyValue;
4495
+ } | {
4496
+ lte: AnyValue;
4497
+ } | {
4498
+ gt: AnyValue;
4499
+ } | {
4500
+ gte: AnyValue;
4501
+ } | {
4502
+ $range: AnyValue;
4503
+ } | {
4504
+ range: AnyValue;
4505
+ })[];
4506
+ };
4507
+ locale?: {
4508
+ or: ({
4509
+ $eq: string | number | string[] | null[];
4510
+ } | {
4511
+ $ne: string | number | string[] | null[];
4512
+ } | {
4513
+ $contains: string | string[];
4514
+ } | {
4515
+ $notcontains: string | string[];
4516
+ } | {
4517
+ $empty: boolean;
4518
+ } | {
4519
+ eq: string | number | string[] | null[];
4520
+ } | {
4521
+ ne: string | number | string[] | null[];
4522
+ } | {
4523
+ contains: string | string[];
4524
+ } | {
4525
+ notcontains: string | string[];
4526
+ } | {
4527
+ empty: boolean;
4528
+ } | {
4529
+ $neq: AnyValue;
4530
+ } | {
4531
+ $nne: AnyValue;
4532
+ } | {
4533
+ $lt: AnyValue;
4534
+ } | {
4535
+ $lte: AnyValue;
4536
+ } | {
4537
+ $gt: AnyValue;
4538
+ } | {
4539
+ $gte: AnyValue;
4540
+ } | {
4541
+ neq: AnyValue;
4542
+ } | {
4543
+ nne: AnyValue;
4544
+ } | {
4545
+ lt: AnyValue;
4546
+ } | {
4547
+ lte: AnyValue;
4548
+ } | {
4549
+ gt: AnyValue;
4550
+ } | {
4551
+ gte: AnyValue;
4552
+ } | {
4553
+ $range: AnyValue;
4554
+ } | {
4555
+ range: AnyValue;
4556
+ })[];
4557
+ } | {
4558
+ and: ({
4559
+ $eq: string | number | string[] | null[];
4560
+ } | {
4561
+ $ne: string | number | string[] | null[];
4562
+ } | {
4563
+ $contains: string | string[];
4564
+ } | {
4565
+ $notcontains: string | string[];
4566
+ } | {
4567
+ $empty: boolean;
4568
+ } | {
4569
+ eq: string | number | string[] | null[];
4570
+ } | {
4571
+ ne: string | number | string[] | null[];
4572
+ } | {
4573
+ contains: string | string[];
4574
+ } | {
4575
+ notcontains: string | string[];
4576
+ } | {
4577
+ empty: boolean;
4578
+ } | {
4579
+ $neq: AnyValue;
4580
+ } | {
4581
+ $nne: AnyValue;
4582
+ } | {
4583
+ $lt: AnyValue;
4584
+ } | {
4585
+ $lte: AnyValue;
4586
+ } | {
4587
+ $gt: AnyValue;
4588
+ } | {
4589
+ $gte: AnyValue;
4590
+ } | {
4591
+ neq: AnyValue;
4592
+ } | {
4593
+ nne: AnyValue;
4594
+ } | {
4595
+ lt: AnyValue;
4596
+ } | {
4597
+ lte: AnyValue;
4598
+ } | {
4599
+ gt: AnyValue;
4600
+ } | {
4601
+ gte: AnyValue;
4602
+ } | {
4603
+ $range: AnyValue;
4604
+ } | {
4605
+ range: AnyValue;
4606
+ })[];
4607
+ };
576
4608
  };
577
4609
  };
578
4610
  export declare type WorkflowEventsFetcherFetchOpts_Without_Query_Limit_Sort_Group = {
@@ -603,7 +4635,410 @@ export declare type PerUserFetcherFetchOpts_Without_Query_Limit_Select_Group_Fil
603
4635
  };
604
4636
  };
605
4637
  filters?: {
606
- locale: string;
4638
+ datetime?: {
4639
+ or: ({
4640
+ $eq: string | number | string[] | null[];
4641
+ } | {
4642
+ $ne: string | number | string[] | null[];
4643
+ } | {
4644
+ $contains: string | string[];
4645
+ } | {
4646
+ $notcontains: string | string[];
4647
+ } | {
4648
+ $empty: boolean;
4649
+ } | {
4650
+ eq: string | number | string[] | null[];
4651
+ } | {
4652
+ ne: string | number | string[] | null[];
4653
+ } | {
4654
+ contains: string | string[];
4655
+ } | {
4656
+ notcontains: string | string[];
4657
+ } | {
4658
+ empty: boolean;
4659
+ } | {
4660
+ $neq: AnyValue;
4661
+ } | {
4662
+ $nne: AnyValue;
4663
+ } | {
4664
+ $lt: AnyValue;
4665
+ } | {
4666
+ $lte: AnyValue;
4667
+ } | {
4668
+ $gt: AnyValue;
4669
+ } | {
4670
+ $gte: AnyValue;
4671
+ } | {
4672
+ neq: AnyValue;
4673
+ } | {
4674
+ nne: AnyValue;
4675
+ } | {
4676
+ lt: AnyValue;
4677
+ } | {
4678
+ lte: AnyValue;
4679
+ } | {
4680
+ gt: AnyValue;
4681
+ } | {
4682
+ gte: AnyValue;
4683
+ } | {
4684
+ $range: AnyValue;
4685
+ } | {
4686
+ range: AnyValue;
4687
+ })[];
4688
+ } | {
4689
+ and: ({
4690
+ $eq: string | number | string[] | null[];
4691
+ } | {
4692
+ $ne: string | number | string[] | null[];
4693
+ } | {
4694
+ $contains: string | string[];
4695
+ } | {
4696
+ $notcontains: string | string[];
4697
+ } | {
4698
+ $empty: boolean;
4699
+ } | {
4700
+ eq: string | number | string[] | null[];
4701
+ } | {
4702
+ ne: string | number | string[] | null[];
4703
+ } | {
4704
+ contains: string | string[];
4705
+ } | {
4706
+ notcontains: string | string[];
4707
+ } | {
4708
+ empty: boolean;
4709
+ } | {
4710
+ $neq: AnyValue;
4711
+ } | {
4712
+ $nne: AnyValue;
4713
+ } | {
4714
+ $lt: AnyValue;
4715
+ } | {
4716
+ $lte: AnyValue;
4717
+ } | {
4718
+ $gt: AnyValue;
4719
+ } | {
4720
+ $gte: AnyValue;
4721
+ } | {
4722
+ neq: AnyValue;
4723
+ } | {
4724
+ nne: AnyValue;
4725
+ } | {
4726
+ lt: AnyValue;
4727
+ } | {
4728
+ lte: AnyValue;
4729
+ } | {
4730
+ gt: AnyValue;
4731
+ } | {
4732
+ gte: AnyValue;
4733
+ } | {
4734
+ $range: AnyValue;
4735
+ } | {
4736
+ range: AnyValue;
4737
+ })[];
4738
+ };
4739
+ reference_id?: {
4740
+ or: ({
4741
+ $eq: string | number | string[] | null[];
4742
+ } | {
4743
+ $ne: string | number | string[] | null[];
4744
+ } | {
4745
+ $contains: string | string[];
4746
+ } | {
4747
+ $notcontains: string | string[];
4748
+ } | {
4749
+ $empty: boolean;
4750
+ } | {
4751
+ eq: string | number | string[] | null[];
4752
+ } | {
4753
+ ne: string | number | string[] | null[];
4754
+ } | {
4755
+ contains: string | string[];
4756
+ } | {
4757
+ notcontains: string | string[];
4758
+ } | {
4759
+ empty: boolean;
4760
+ } | {
4761
+ $neq: AnyValue;
4762
+ } | {
4763
+ $nne: AnyValue;
4764
+ } | {
4765
+ $lt: AnyValue;
4766
+ } | {
4767
+ $lte: AnyValue;
4768
+ } | {
4769
+ $gt: AnyValue;
4770
+ } | {
4771
+ $gte: AnyValue;
4772
+ } | {
4773
+ neq: AnyValue;
4774
+ } | {
4775
+ nne: AnyValue;
4776
+ } | {
4777
+ lt: AnyValue;
4778
+ } | {
4779
+ lte: AnyValue;
4780
+ } | {
4781
+ gt: AnyValue;
4782
+ } | {
4783
+ gte: AnyValue;
4784
+ } | {
4785
+ $range: AnyValue;
4786
+ } | {
4787
+ range: AnyValue;
4788
+ })[];
4789
+ } | {
4790
+ and: ({
4791
+ $eq: string | number | string[] | null[];
4792
+ } | {
4793
+ $ne: string | number | string[] | null[];
4794
+ } | {
4795
+ $contains: string | string[];
4796
+ } | {
4797
+ $notcontains: string | string[];
4798
+ } | {
4799
+ $empty: boolean;
4800
+ } | {
4801
+ eq: string | number | string[] | null[];
4802
+ } | {
4803
+ ne: string | number | string[] | null[];
4804
+ } | {
4805
+ contains: string | string[];
4806
+ } | {
4807
+ notcontains: string | string[];
4808
+ } | {
4809
+ empty: boolean;
4810
+ } | {
4811
+ $neq: AnyValue;
4812
+ } | {
4813
+ $nne: AnyValue;
4814
+ } | {
4815
+ $lt: AnyValue;
4816
+ } | {
4817
+ $lte: AnyValue;
4818
+ } | {
4819
+ $gt: AnyValue;
4820
+ } | {
4821
+ $gte: AnyValue;
4822
+ } | {
4823
+ neq: AnyValue;
4824
+ } | {
4825
+ nne: AnyValue;
4826
+ } | {
4827
+ lt: AnyValue;
4828
+ } | {
4829
+ lte: AnyValue;
4830
+ } | {
4831
+ gt: AnyValue;
4832
+ } | {
4833
+ gte: AnyValue;
4834
+ } | {
4835
+ $range: AnyValue;
4836
+ } | {
4837
+ range: AnyValue;
4838
+ })[];
4839
+ };
4840
+ product_id?: {
4841
+ or: ({
4842
+ $eq: string | number | string[] | null[];
4843
+ } | {
4844
+ $ne: string | number | string[] | null[];
4845
+ } | {
4846
+ $contains: string | string[];
4847
+ } | {
4848
+ $notcontains: string | string[];
4849
+ } | {
4850
+ $empty: boolean;
4851
+ } | {
4852
+ eq: string | number | string[] | null[];
4853
+ } | {
4854
+ ne: string | number | string[] | null[];
4855
+ } | {
4856
+ contains: string | string[];
4857
+ } | {
4858
+ notcontains: string | string[];
4859
+ } | {
4860
+ empty: boolean;
4861
+ } | {
4862
+ $neq: AnyValue;
4863
+ } | {
4864
+ $nne: AnyValue;
4865
+ } | {
4866
+ $lt: AnyValue;
4867
+ } | {
4868
+ $lte: AnyValue;
4869
+ } | {
4870
+ $gt: AnyValue;
4871
+ } | {
4872
+ $gte: AnyValue;
4873
+ } | {
4874
+ neq: AnyValue;
4875
+ } | {
4876
+ nne: AnyValue;
4877
+ } | {
4878
+ lt: AnyValue;
4879
+ } | {
4880
+ lte: AnyValue;
4881
+ } | {
4882
+ gt: AnyValue;
4883
+ } | {
4884
+ gte: AnyValue;
4885
+ } | {
4886
+ $range: AnyValue;
4887
+ } | {
4888
+ range: AnyValue;
4889
+ })[];
4890
+ } | {
4891
+ and: ({
4892
+ $eq: string | number | string[] | null[];
4893
+ } | {
4894
+ $ne: string | number | string[] | null[];
4895
+ } | {
4896
+ $contains: string | string[];
4897
+ } | {
4898
+ $notcontains: string | string[];
4899
+ } | {
4900
+ $empty: boolean;
4901
+ } | {
4902
+ eq: string | number | string[] | null[];
4903
+ } | {
4904
+ ne: string | number | string[] | null[];
4905
+ } | {
4906
+ contains: string | string[];
4907
+ } | {
4908
+ notcontains: string | string[];
4909
+ } | {
4910
+ empty: boolean;
4911
+ } | {
4912
+ $neq: AnyValue;
4913
+ } | {
4914
+ $nne: AnyValue;
4915
+ } | {
4916
+ $lt: AnyValue;
4917
+ } | {
4918
+ $lte: AnyValue;
4919
+ } | {
4920
+ $gt: AnyValue;
4921
+ } | {
4922
+ $gte: AnyValue;
4923
+ } | {
4924
+ neq: AnyValue;
4925
+ } | {
4926
+ nne: AnyValue;
4927
+ } | {
4928
+ lt: AnyValue;
4929
+ } | {
4930
+ lte: AnyValue;
4931
+ } | {
4932
+ gt: AnyValue;
4933
+ } | {
4934
+ gte: AnyValue;
4935
+ } | {
4936
+ $range: AnyValue;
4937
+ } | {
4938
+ range: AnyValue;
4939
+ })[];
4940
+ };
4941
+ locale?: {
4942
+ or: ({
4943
+ $eq: string | number | string[] | null[];
4944
+ } | {
4945
+ $ne: string | number | string[] | null[];
4946
+ } | {
4947
+ $contains: string | string[];
4948
+ } | {
4949
+ $notcontains: string | string[];
4950
+ } | {
4951
+ $empty: boolean;
4952
+ } | {
4953
+ eq: string | number | string[] | null[];
4954
+ } | {
4955
+ ne: string | number | string[] | null[];
4956
+ } | {
4957
+ contains: string | string[];
4958
+ } | {
4959
+ notcontains: string | string[];
4960
+ } | {
4961
+ empty: boolean;
4962
+ } | {
4963
+ $neq: AnyValue;
4964
+ } | {
4965
+ $nne: AnyValue;
4966
+ } | {
4967
+ $lt: AnyValue;
4968
+ } | {
4969
+ $lte: AnyValue;
4970
+ } | {
4971
+ $gt: AnyValue;
4972
+ } | {
4973
+ $gte: AnyValue;
4974
+ } | {
4975
+ neq: AnyValue;
4976
+ } | {
4977
+ nne: AnyValue;
4978
+ } | {
4979
+ lt: AnyValue;
4980
+ } | {
4981
+ lte: AnyValue;
4982
+ } | {
4983
+ gt: AnyValue;
4984
+ } | {
4985
+ gte: AnyValue;
4986
+ } | {
4987
+ $range: AnyValue;
4988
+ } | {
4989
+ range: AnyValue;
4990
+ })[];
4991
+ } | {
4992
+ and: ({
4993
+ $eq: string | number | string[] | null[];
4994
+ } | {
4995
+ $ne: string | number | string[] | null[];
4996
+ } | {
4997
+ $contains: string | string[];
4998
+ } | {
4999
+ $notcontains: string | string[];
5000
+ } | {
5001
+ $empty: boolean;
5002
+ } | {
5003
+ eq: string | number | string[] | null[];
5004
+ } | {
5005
+ ne: string | number | string[] | null[];
5006
+ } | {
5007
+ contains: string | string[];
5008
+ } | {
5009
+ notcontains: string | string[];
5010
+ } | {
5011
+ empty: boolean;
5012
+ } | {
5013
+ $neq: AnyValue;
5014
+ } | {
5015
+ $nne: AnyValue;
5016
+ } | {
5017
+ $lt: AnyValue;
5018
+ } | {
5019
+ $lte: AnyValue;
5020
+ } | {
5021
+ $gt: AnyValue;
5022
+ } | {
5023
+ $gte: AnyValue;
5024
+ } | {
5025
+ neq: AnyValue;
5026
+ } | {
5027
+ nne: AnyValue;
5028
+ } | {
5029
+ lt: AnyValue;
5030
+ } | {
5031
+ lte: AnyValue;
5032
+ } | {
5033
+ gt: AnyValue;
5034
+ } | {
5035
+ gte: AnyValue;
5036
+ } | {
5037
+ $range: AnyValue;
5038
+ } | {
5039
+ range: AnyValue;
5040
+ })[];
5041
+ };
607
5042
  };
608
5043
  user?: string;
609
5044
  };
@@ -731,7 +5166,410 @@ export declare type PerUserFetcherQueryOpts = {
731
5166
  };
732
5167
  };
733
5168
  filters?: {
734
- locale: string;
5169
+ datetime?: {
5170
+ or: ({
5171
+ $eq: string | number | string[] | null[];
5172
+ } | {
5173
+ $ne: string | number | string[] | null[];
5174
+ } | {
5175
+ $contains: string | string[];
5176
+ } | {
5177
+ $notcontains: string | string[];
5178
+ } | {
5179
+ $empty: boolean;
5180
+ } | {
5181
+ eq: string | number | string[] | null[];
5182
+ } | {
5183
+ ne: string | number | string[] | null[];
5184
+ } | {
5185
+ contains: string | string[];
5186
+ } | {
5187
+ notcontains: string | string[];
5188
+ } | {
5189
+ empty: boolean;
5190
+ } | {
5191
+ $neq: AnyValue;
5192
+ } | {
5193
+ $nne: AnyValue;
5194
+ } | {
5195
+ $lt: AnyValue;
5196
+ } | {
5197
+ $lte: AnyValue;
5198
+ } | {
5199
+ $gt: AnyValue;
5200
+ } | {
5201
+ $gte: AnyValue;
5202
+ } | {
5203
+ neq: AnyValue;
5204
+ } | {
5205
+ nne: AnyValue;
5206
+ } | {
5207
+ lt: AnyValue;
5208
+ } | {
5209
+ lte: AnyValue;
5210
+ } | {
5211
+ gt: AnyValue;
5212
+ } | {
5213
+ gte: AnyValue;
5214
+ } | {
5215
+ $range: AnyValue;
5216
+ } | {
5217
+ range: AnyValue;
5218
+ })[];
5219
+ } | {
5220
+ and: ({
5221
+ $eq: string | number | string[] | null[];
5222
+ } | {
5223
+ $ne: string | number | string[] | null[];
5224
+ } | {
5225
+ $contains: string | string[];
5226
+ } | {
5227
+ $notcontains: string | string[];
5228
+ } | {
5229
+ $empty: boolean;
5230
+ } | {
5231
+ eq: string | number | string[] | null[];
5232
+ } | {
5233
+ ne: string | number | string[] | null[];
5234
+ } | {
5235
+ contains: string | string[];
5236
+ } | {
5237
+ notcontains: string | string[];
5238
+ } | {
5239
+ empty: boolean;
5240
+ } | {
5241
+ $neq: AnyValue;
5242
+ } | {
5243
+ $nne: AnyValue;
5244
+ } | {
5245
+ $lt: AnyValue;
5246
+ } | {
5247
+ $lte: AnyValue;
5248
+ } | {
5249
+ $gt: AnyValue;
5250
+ } | {
5251
+ $gte: AnyValue;
5252
+ } | {
5253
+ neq: AnyValue;
5254
+ } | {
5255
+ nne: AnyValue;
5256
+ } | {
5257
+ lt: AnyValue;
5258
+ } | {
5259
+ lte: AnyValue;
5260
+ } | {
5261
+ gt: AnyValue;
5262
+ } | {
5263
+ gte: AnyValue;
5264
+ } | {
5265
+ $range: AnyValue;
5266
+ } | {
5267
+ range: AnyValue;
5268
+ })[];
5269
+ };
5270
+ reference_id?: {
5271
+ or: ({
5272
+ $eq: string | number | string[] | null[];
5273
+ } | {
5274
+ $ne: string | number | string[] | null[];
5275
+ } | {
5276
+ $contains: string | string[];
5277
+ } | {
5278
+ $notcontains: string | string[];
5279
+ } | {
5280
+ $empty: boolean;
5281
+ } | {
5282
+ eq: string | number | string[] | null[];
5283
+ } | {
5284
+ ne: string | number | string[] | null[];
5285
+ } | {
5286
+ contains: string | string[];
5287
+ } | {
5288
+ notcontains: string | string[];
5289
+ } | {
5290
+ empty: boolean;
5291
+ } | {
5292
+ $neq: AnyValue;
5293
+ } | {
5294
+ $nne: AnyValue;
5295
+ } | {
5296
+ $lt: AnyValue;
5297
+ } | {
5298
+ $lte: AnyValue;
5299
+ } | {
5300
+ $gt: AnyValue;
5301
+ } | {
5302
+ $gte: AnyValue;
5303
+ } | {
5304
+ neq: AnyValue;
5305
+ } | {
5306
+ nne: AnyValue;
5307
+ } | {
5308
+ lt: AnyValue;
5309
+ } | {
5310
+ lte: AnyValue;
5311
+ } | {
5312
+ gt: AnyValue;
5313
+ } | {
5314
+ gte: AnyValue;
5315
+ } | {
5316
+ $range: AnyValue;
5317
+ } | {
5318
+ range: AnyValue;
5319
+ })[];
5320
+ } | {
5321
+ and: ({
5322
+ $eq: string | number | string[] | null[];
5323
+ } | {
5324
+ $ne: string | number | string[] | null[];
5325
+ } | {
5326
+ $contains: string | string[];
5327
+ } | {
5328
+ $notcontains: string | string[];
5329
+ } | {
5330
+ $empty: boolean;
5331
+ } | {
5332
+ eq: string | number | string[] | null[];
5333
+ } | {
5334
+ ne: string | number | string[] | null[];
5335
+ } | {
5336
+ contains: string | string[];
5337
+ } | {
5338
+ notcontains: string | string[];
5339
+ } | {
5340
+ empty: boolean;
5341
+ } | {
5342
+ $neq: AnyValue;
5343
+ } | {
5344
+ $nne: AnyValue;
5345
+ } | {
5346
+ $lt: AnyValue;
5347
+ } | {
5348
+ $lte: AnyValue;
5349
+ } | {
5350
+ $gt: AnyValue;
5351
+ } | {
5352
+ $gte: AnyValue;
5353
+ } | {
5354
+ neq: AnyValue;
5355
+ } | {
5356
+ nne: AnyValue;
5357
+ } | {
5358
+ lt: AnyValue;
5359
+ } | {
5360
+ lte: AnyValue;
5361
+ } | {
5362
+ gt: AnyValue;
5363
+ } | {
5364
+ gte: AnyValue;
5365
+ } | {
5366
+ $range: AnyValue;
5367
+ } | {
5368
+ range: AnyValue;
5369
+ })[];
5370
+ };
5371
+ product_id?: {
5372
+ or: ({
5373
+ $eq: string | number | string[] | null[];
5374
+ } | {
5375
+ $ne: string | number | string[] | null[];
5376
+ } | {
5377
+ $contains: string | string[];
5378
+ } | {
5379
+ $notcontains: string | string[];
5380
+ } | {
5381
+ $empty: boolean;
5382
+ } | {
5383
+ eq: string | number | string[] | null[];
5384
+ } | {
5385
+ ne: string | number | string[] | null[];
5386
+ } | {
5387
+ contains: string | string[];
5388
+ } | {
5389
+ notcontains: string | string[];
5390
+ } | {
5391
+ empty: boolean;
5392
+ } | {
5393
+ $neq: AnyValue;
5394
+ } | {
5395
+ $nne: AnyValue;
5396
+ } | {
5397
+ $lt: AnyValue;
5398
+ } | {
5399
+ $lte: AnyValue;
5400
+ } | {
5401
+ $gt: AnyValue;
5402
+ } | {
5403
+ $gte: AnyValue;
5404
+ } | {
5405
+ neq: AnyValue;
5406
+ } | {
5407
+ nne: AnyValue;
5408
+ } | {
5409
+ lt: AnyValue;
5410
+ } | {
5411
+ lte: AnyValue;
5412
+ } | {
5413
+ gt: AnyValue;
5414
+ } | {
5415
+ gte: AnyValue;
5416
+ } | {
5417
+ $range: AnyValue;
5418
+ } | {
5419
+ range: AnyValue;
5420
+ })[];
5421
+ } | {
5422
+ and: ({
5423
+ $eq: string | number | string[] | null[];
5424
+ } | {
5425
+ $ne: string | number | string[] | null[];
5426
+ } | {
5427
+ $contains: string | string[];
5428
+ } | {
5429
+ $notcontains: string | string[];
5430
+ } | {
5431
+ $empty: boolean;
5432
+ } | {
5433
+ eq: string | number | string[] | null[];
5434
+ } | {
5435
+ ne: string | number | string[] | null[];
5436
+ } | {
5437
+ contains: string | string[];
5438
+ } | {
5439
+ notcontains: string | string[];
5440
+ } | {
5441
+ empty: boolean;
5442
+ } | {
5443
+ $neq: AnyValue;
5444
+ } | {
5445
+ $nne: AnyValue;
5446
+ } | {
5447
+ $lt: AnyValue;
5448
+ } | {
5449
+ $lte: AnyValue;
5450
+ } | {
5451
+ $gt: AnyValue;
5452
+ } | {
5453
+ $gte: AnyValue;
5454
+ } | {
5455
+ neq: AnyValue;
5456
+ } | {
5457
+ nne: AnyValue;
5458
+ } | {
5459
+ lt: AnyValue;
5460
+ } | {
5461
+ lte: AnyValue;
5462
+ } | {
5463
+ gt: AnyValue;
5464
+ } | {
5465
+ gte: AnyValue;
5466
+ } | {
5467
+ $range: AnyValue;
5468
+ } | {
5469
+ range: AnyValue;
5470
+ })[];
5471
+ };
5472
+ locale?: {
5473
+ or: ({
5474
+ $eq: string | number | string[] | null[];
5475
+ } | {
5476
+ $ne: string | number | string[] | null[];
5477
+ } | {
5478
+ $contains: string | string[];
5479
+ } | {
5480
+ $notcontains: string | string[];
5481
+ } | {
5482
+ $empty: boolean;
5483
+ } | {
5484
+ eq: string | number | string[] | null[];
5485
+ } | {
5486
+ ne: string | number | string[] | null[];
5487
+ } | {
5488
+ contains: string | string[];
5489
+ } | {
5490
+ notcontains: string | string[];
5491
+ } | {
5492
+ empty: boolean;
5493
+ } | {
5494
+ $neq: AnyValue;
5495
+ } | {
5496
+ $nne: AnyValue;
5497
+ } | {
5498
+ $lt: AnyValue;
5499
+ } | {
5500
+ $lte: AnyValue;
5501
+ } | {
5502
+ $gt: AnyValue;
5503
+ } | {
5504
+ $gte: AnyValue;
5505
+ } | {
5506
+ neq: AnyValue;
5507
+ } | {
5508
+ nne: AnyValue;
5509
+ } | {
5510
+ lt: AnyValue;
5511
+ } | {
5512
+ lte: AnyValue;
5513
+ } | {
5514
+ gt: AnyValue;
5515
+ } | {
5516
+ gte: AnyValue;
5517
+ } | {
5518
+ $range: AnyValue;
5519
+ } | {
5520
+ range: AnyValue;
5521
+ })[];
5522
+ } | {
5523
+ and: ({
5524
+ $eq: string | number | string[] | null[];
5525
+ } | {
5526
+ $ne: string | number | string[] | null[];
5527
+ } | {
5528
+ $contains: string | string[];
5529
+ } | {
5530
+ $notcontains: string | string[];
5531
+ } | {
5532
+ $empty: boolean;
5533
+ } | {
5534
+ eq: string | number | string[] | null[];
5535
+ } | {
5536
+ ne: string | number | string[] | null[];
5537
+ } | {
5538
+ contains: string | string[];
5539
+ } | {
5540
+ notcontains: string | string[];
5541
+ } | {
5542
+ empty: boolean;
5543
+ } | {
5544
+ $neq: AnyValue;
5545
+ } | {
5546
+ $nne: AnyValue;
5547
+ } | {
5548
+ $lt: AnyValue;
5549
+ } | {
5550
+ $lte: AnyValue;
5551
+ } | {
5552
+ $gt: AnyValue;
5553
+ } | {
5554
+ $gte: AnyValue;
5555
+ } | {
5556
+ neq: AnyValue;
5557
+ } | {
5558
+ nne: AnyValue;
5559
+ } | {
5560
+ lt: AnyValue;
5561
+ } | {
5562
+ lte: AnyValue;
5563
+ } | {
5564
+ gt: AnyValue;
5565
+ } | {
5566
+ gte: AnyValue;
5567
+ } | {
5568
+ $range: AnyValue;
5569
+ } | {
5570
+ range: AnyValue;
5571
+ })[];
5572
+ };
735
5573
  };
736
5574
  };
737
5575
  export declare type DatasourceTypes = DatasourceGeneric | DatasourceProduct | DatasourceLocation | DatasourceCRM | DatasourceAnalytics;