@rlvt/datasources-query-openapi-client 1.0.352 → 1.0.353
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/api.d.ts +31 -31
- package/build/definitions.d.ts +2084 -447
- package/build/definitions.js +12 -2
- package/package.json +1 -1
package/build/definitions.d.ts
CHANGED
|
@@ -43,14 +43,16 @@ export declare enum StepName {
|
|
|
43
43
|
CONFIGURE_MERGE_MAPPING = "configure_merge_mapping",
|
|
44
44
|
CONFIGURE_MERGE_DATASOURCE_SOURCE = "configure_merge_datasource_source",
|
|
45
45
|
CONFIGURE_MERGE_DATASOURCE_DEPENDENCY = "configure_merge_datasource_dependency",
|
|
46
|
-
CONFIGURE_TOP_ATTRIBUTES = "configure_top_attributes"
|
|
46
|
+
CONFIGURE_TOP_ATTRIBUTES = "configure_top_attributes",
|
|
47
|
+
CONFIGURE_DESTINATION = "configure_destination"
|
|
47
48
|
}
|
|
48
49
|
export declare enum DatasourceType {
|
|
49
50
|
GENERIC = "generic",
|
|
50
51
|
LOCATION = "location",
|
|
51
52
|
PRODUCT = "product",
|
|
52
53
|
ANALYTICS = "analytics",
|
|
53
|
-
CRM = "crm"
|
|
54
|
+
CRM = "crm",
|
|
55
|
+
PUSH = "push"
|
|
54
56
|
}
|
|
55
57
|
export declare type InternalResponse_entries_Array_distance_Union_undefined_number_rlvt_lat_Union_undefined_number_rlvt_lng_Union_undefined_number = {
|
|
56
58
|
program: string;
|
|
@@ -1880,26 +1882,6 @@ export declare type ExpiredProductLifetimeFetcherFetchOpts = {
|
|
|
1880
1882
|
by: string;
|
|
1881
1883
|
order: "desc" | "asc";
|
|
1882
1884
|
};
|
|
1883
|
-
};
|
|
1884
|
-
export declare type PerUserFetcherFetchOpts = {
|
|
1885
|
-
user?: string;
|
|
1886
|
-
query?: string;
|
|
1887
|
-
datasourceId: string;
|
|
1888
|
-
sort?: {
|
|
1889
|
-
by: string;
|
|
1890
|
-
order: "desc" | "asc";
|
|
1891
|
-
};
|
|
1892
|
-
group?: {
|
|
1893
|
-
field: string;
|
|
1894
|
-
matching?: {
|
|
1895
|
-
mode: "onePerValue";
|
|
1896
|
-
} | {
|
|
1897
|
-
mode: "oneValueOnly";
|
|
1898
|
-
valueIndex: number;
|
|
1899
|
-
};
|
|
1900
|
-
};
|
|
1901
|
-
limit?: number;
|
|
1902
|
-
select?: string[];
|
|
1903
1885
|
filters?: {
|
|
1904
1886
|
datetime?: {
|
|
1905
1887
|
or: ({
|
|
@@ -2307,108 +2289,7 @@ export declare type PerUserFetcherFetchOpts = {
|
|
|
2307
2289
|
};
|
|
2308
2290
|
};
|
|
2309
2291
|
};
|
|
2310
|
-
export declare type
|
|
2311
|
-
sort?: {
|
|
2312
|
-
by: string;
|
|
2313
|
-
order: "desc" | "asc";
|
|
2314
|
-
};
|
|
2315
|
-
datasourceId: string;
|
|
2316
|
-
query: string;
|
|
2317
|
-
};
|
|
2318
|
-
export declare type InternalResponse = {
|
|
2319
|
-
program: string;
|
|
2320
|
-
version: string;
|
|
2321
|
-
datetime: string;
|
|
2322
|
-
status: string;
|
|
2323
|
-
code?: number;
|
|
2324
|
-
message: string;
|
|
2325
|
-
data: number;
|
|
2326
|
-
};
|
|
2327
|
-
export declare type WorkerFetcherCountOpts = {
|
|
2328
|
-
datasourceId: string;
|
|
2329
|
-
query: string;
|
|
2330
|
-
geo?: {
|
|
2331
|
-
radius: number;
|
|
2332
|
-
center: (number | number)[];
|
|
2333
|
-
};
|
|
2334
|
-
};
|
|
2335
|
-
export declare type IngesterFetcherCountOpts = {
|
|
2336
|
-
datasourceId: string;
|
|
2337
|
-
query: string;
|
|
2338
|
-
};
|
|
2339
|
-
export declare type TrackingFetcherCountOpts = {
|
|
2340
|
-
datasourceId: string;
|
|
2341
|
-
query: string;
|
|
2342
|
-
};
|
|
2343
|
-
export declare type ProxyFetcherCountOpts = {
|
|
2344
|
-
datasourceId: string;
|
|
2345
|
-
query: string;
|
|
2346
|
-
};
|
|
2347
|
-
export declare type CarrefourStoresWithDriveSlotsFetcherCountOpts = {
|
|
2348
|
-
datasourceId: string;
|
|
2349
|
-
query: string;
|
|
2350
|
-
};
|
|
2351
|
-
export declare type BestWesternHotelsFetcherCountOpts = {
|
|
2352
|
-
datasourceId: string;
|
|
2353
|
-
query: string;
|
|
2354
|
-
geo?: {
|
|
2355
|
-
radius: number;
|
|
2356
|
-
center: (number | number)[];
|
|
2357
|
-
};
|
|
2358
|
-
sort?: {
|
|
2359
|
-
by: string;
|
|
2360
|
-
order: "desc" | "asc";
|
|
2361
|
-
};
|
|
2362
|
-
};
|
|
2363
|
-
export declare type FdjBetsFetcherCountOpts = {
|
|
2364
|
-
datasourceId: string;
|
|
2365
|
-
query: string;
|
|
2366
|
-
};
|
|
2367
|
-
export declare type SarenzaSizesFetcherCountOpts = {
|
|
2368
|
-
datasourceId: string;
|
|
2369
|
-
query: string;
|
|
2370
|
-
sort?: {
|
|
2371
|
-
by: string;
|
|
2372
|
-
order: "desc" | "asc";
|
|
2373
|
-
};
|
|
2374
|
-
};
|
|
2375
|
-
export declare type RenaultPricesFetcherCountOpts = {
|
|
2376
|
-
datasourceId: string;
|
|
2377
|
-
query: string;
|
|
2378
|
-
geo?: {
|
|
2379
|
-
radius: number;
|
|
2380
|
-
center: (number | number)[];
|
|
2381
|
-
};
|
|
2382
|
-
};
|
|
2383
|
-
export declare type DecathlonProductFallbackFetcherCountOpts = {
|
|
2384
|
-
datasourceId: string;
|
|
2385
|
-
query: string;
|
|
2386
|
-
geo?: {
|
|
2387
|
-
radius: number;
|
|
2388
|
-
center: (number | number)[];
|
|
2389
|
-
};
|
|
2390
|
-
};
|
|
2391
|
-
export declare type GenericUnwindRowsFetcherCountOpts = {
|
|
2392
|
-
datasourceId: string;
|
|
2393
|
-
query: string;
|
|
2394
|
-
geo?: {
|
|
2395
|
-
radius: number;
|
|
2396
|
-
center: (number | number)[];
|
|
2397
|
-
};
|
|
2398
|
-
};
|
|
2399
|
-
export declare type WorkflowEventsFetcherCountOpts = {
|
|
2400
|
-
datasourceId: string;
|
|
2401
|
-
query: string;
|
|
2402
|
-
};
|
|
2403
|
-
export declare type ExpiredProductLifetimeFetcherCountOpts = {
|
|
2404
|
-
datasourceId: string;
|
|
2405
|
-
query: string;
|
|
2406
|
-
sort?: {
|
|
2407
|
-
by: string;
|
|
2408
|
-
order: "desc" | "asc";
|
|
2409
|
-
};
|
|
2410
|
-
};
|
|
2411
|
-
export declare type PerUserFetcherCountOpts = {
|
|
2292
|
+
export declare type PerUserFetcherFetchOpts = {
|
|
2412
2293
|
user?: string;
|
|
2413
2294
|
query?: string;
|
|
2414
2295
|
datasourceId: string;
|
|
@@ -2416,17 +2297,6 @@ export declare type PerUserFetcherCountOpts = {
|
|
|
2416
2297
|
by: string;
|
|
2417
2298
|
order: "desc" | "asc";
|
|
2418
2299
|
};
|
|
2419
|
-
group?: {
|
|
2420
|
-
field: string;
|
|
2421
|
-
matching?: {
|
|
2422
|
-
mode: "onePerValue";
|
|
2423
|
-
} | {
|
|
2424
|
-
mode: "oneValueOnly";
|
|
2425
|
-
valueIndex: number;
|
|
2426
|
-
};
|
|
2427
|
-
};
|
|
2428
|
-
limit?: number;
|
|
2429
|
-
select?: string[];
|
|
2430
2300
|
filters?: {
|
|
2431
2301
|
datetime?: {
|
|
2432
2302
|
or: ({
|
|
@@ -2833,8 +2703,19 @@ export declare type PerUserFetcherCountOpts = {
|
|
|
2833
2703
|
})[];
|
|
2834
2704
|
};
|
|
2835
2705
|
};
|
|
2706
|
+
group?: {
|
|
2707
|
+
field: string;
|
|
2708
|
+
matching?: {
|
|
2709
|
+
mode: "onePerValue";
|
|
2710
|
+
} | {
|
|
2711
|
+
mode: "oneValueOnly";
|
|
2712
|
+
valueIndex: number;
|
|
2713
|
+
};
|
|
2714
|
+
};
|
|
2715
|
+
limit?: number;
|
|
2716
|
+
select?: string[];
|
|
2836
2717
|
};
|
|
2837
|
-
export declare type
|
|
2718
|
+
export declare type GenericProxyLockFetcherFetchOpts = {
|
|
2838
2719
|
sort?: {
|
|
2839
2720
|
by: string;
|
|
2840
2721
|
order: "desc" | "asc";
|
|
@@ -2842,7 +2723,41 @@ export declare type GenericProxyLockFetcherCountOpts = {
|
|
|
2842
2723
|
datasourceId: string;
|
|
2843
2724
|
query: string;
|
|
2844
2725
|
};
|
|
2845
|
-
export declare type
|
|
2726
|
+
export declare type InternalResponse = {
|
|
2727
|
+
program: string;
|
|
2728
|
+
version: string;
|
|
2729
|
+
datetime: string;
|
|
2730
|
+
status: string;
|
|
2731
|
+
code?: number;
|
|
2732
|
+
message: string;
|
|
2733
|
+
data: number;
|
|
2734
|
+
};
|
|
2735
|
+
export declare type WorkerFetcherCountOpts = {
|
|
2736
|
+
datasourceId: string;
|
|
2737
|
+
query: string;
|
|
2738
|
+
geo?: {
|
|
2739
|
+
radius: number;
|
|
2740
|
+
center: (number | number)[];
|
|
2741
|
+
};
|
|
2742
|
+
};
|
|
2743
|
+
export declare type IngesterFetcherCountOpts = {
|
|
2744
|
+
datasourceId: string;
|
|
2745
|
+
query: string;
|
|
2746
|
+
};
|
|
2747
|
+
export declare type TrackingFetcherCountOpts = {
|
|
2748
|
+
datasourceId: string;
|
|
2749
|
+
query: string;
|
|
2750
|
+
};
|
|
2751
|
+
export declare type ProxyFetcherCountOpts = {
|
|
2752
|
+
datasourceId: string;
|
|
2753
|
+
query: string;
|
|
2754
|
+
};
|
|
2755
|
+
export declare type CarrefourStoresWithDriveSlotsFetcherCountOpts = {
|
|
2756
|
+
datasourceId: string;
|
|
2757
|
+
query: string;
|
|
2758
|
+
};
|
|
2759
|
+
export declare type BestWesternHotelsFetcherCountOpts = {
|
|
2760
|
+
datasourceId: string;
|
|
2846
2761
|
query: string;
|
|
2847
2762
|
geo?: {
|
|
2848
2763
|
radius: number;
|
|
@@ -2852,17 +2767,54 @@ export declare type WorkerFetcherFetchOpts_Without_DatasourceId = {
|
|
|
2852
2767
|
by: string;
|
|
2853
2768
|
order: "desc" | "asc";
|
|
2854
2769
|
};
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
2770
|
+
};
|
|
2771
|
+
export declare type FdjBetsFetcherCountOpts = {
|
|
2772
|
+
datasourceId: string;
|
|
2773
|
+
query: string;
|
|
2774
|
+
};
|
|
2775
|
+
export declare type SarenzaSizesFetcherCountOpts = {
|
|
2776
|
+
datasourceId: string;
|
|
2777
|
+
query: string;
|
|
2778
|
+
sort?: {
|
|
2779
|
+
by: string;
|
|
2780
|
+
order: "desc" | "asc";
|
|
2781
|
+
};
|
|
2782
|
+
};
|
|
2783
|
+
export declare type RenaultPricesFetcherCountOpts = {
|
|
2784
|
+
datasourceId: string;
|
|
2785
|
+
query: string;
|
|
2786
|
+
geo?: {
|
|
2787
|
+
radius: number;
|
|
2788
|
+
center: (number | number)[];
|
|
2789
|
+
};
|
|
2790
|
+
};
|
|
2791
|
+
export declare type DecathlonProductFallbackFetcherCountOpts = {
|
|
2792
|
+
datasourceId: string;
|
|
2793
|
+
query: string;
|
|
2794
|
+
geo?: {
|
|
2795
|
+
radius: number;
|
|
2796
|
+
center: (number | number)[];
|
|
2797
|
+
};
|
|
2798
|
+
};
|
|
2799
|
+
export declare type GenericUnwindRowsFetcherCountOpts = {
|
|
2800
|
+
datasourceId: string;
|
|
2801
|
+
query: string;
|
|
2802
|
+
geo?: {
|
|
2803
|
+
radius: number;
|
|
2804
|
+
center: (number | number)[];
|
|
2805
|
+
};
|
|
2806
|
+
};
|
|
2807
|
+
export declare type WorkflowEventsFetcherCountOpts = {
|
|
2808
|
+
datasourceId: string;
|
|
2809
|
+
query: string;
|
|
2810
|
+
};
|
|
2811
|
+
export declare type ExpiredProductLifetimeFetcherCountOpts = {
|
|
2812
|
+
datasourceId: string;
|
|
2813
|
+
query: string;
|
|
2814
|
+
sort?: {
|
|
2815
|
+
by: string;
|
|
2816
|
+
order: "desc" | "asc";
|
|
2863
2817
|
};
|
|
2864
|
-
limit?: number;
|
|
2865
|
-
select?: string[];
|
|
2866
2818
|
filters?: {
|
|
2867
2819
|
datetime?: {
|
|
2868
2820
|
or: ({
|
|
@@ -3270,110 +3222,1839 @@ export declare type WorkerFetcherFetchOpts_Without_DatasourceId = {
|
|
|
3270
3222
|
};
|
|
3271
3223
|
};
|
|
3272
3224
|
};
|
|
3273
|
-
export declare
|
|
3274
|
-
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
WEATHER = "weather"
|
|
3278
|
-
}
|
|
3279
|
-
export declare type DatasourceLocation = {
|
|
3280
|
-
name: "location";
|
|
3281
|
-
subtype: DatasourceLocationSubType;
|
|
3282
|
-
};
|
|
3283
|
-
export declare enum DatasourceGenericSubType {
|
|
3284
|
-
USER = "user",
|
|
3285
|
-
TOP_ATTRIBUTES = "TOP_ATTRIBUTES"
|
|
3286
|
-
}
|
|
3287
|
-
export declare type DatasourceGeneric = {
|
|
3288
|
-
name: "generic";
|
|
3289
|
-
subtype: DatasourceGenericSubType;
|
|
3290
|
-
};
|
|
3291
|
-
export declare enum DatasourceProductSubType {
|
|
3292
|
-
USER = "user",
|
|
3293
|
-
LOCALIZED = "localized",
|
|
3294
|
-
SHOPIFY = "shopify",
|
|
3295
|
-
BEST_PRODUCT = "best_product",
|
|
3296
|
-
BOUGHT_TOGETHER = "bought_together"
|
|
3297
|
-
}
|
|
3298
|
-
export declare type DatasourceProduct = {
|
|
3299
|
-
name: "product";
|
|
3300
|
-
subtype: DatasourceProductSubType;
|
|
3301
|
-
};
|
|
3302
|
-
export declare type DatasourceCRM = {
|
|
3303
|
-
name: "crm";
|
|
3304
|
-
subtype: "user";
|
|
3305
|
-
};
|
|
3306
|
-
export declare type IngesterFetcherFetchOpts_Without_DatasourceId = {
|
|
3307
|
-
query: string;
|
|
3225
|
+
export declare type PerUserFetcherCountOpts = {
|
|
3226
|
+
user?: string;
|
|
3227
|
+
query?: string;
|
|
3228
|
+
datasourceId: string;
|
|
3308
3229
|
sort?: {
|
|
3309
3230
|
by: string;
|
|
3310
3231
|
order: "desc" | "asc";
|
|
3311
3232
|
};
|
|
3233
|
+
filters?: {
|
|
3234
|
+
datetime?: {
|
|
3235
|
+
or: ({
|
|
3236
|
+
$eq: string | number | string[] | null[];
|
|
3237
|
+
} | {
|
|
3238
|
+
$ne: string | number | string[] | null[];
|
|
3239
|
+
} | {
|
|
3240
|
+
$contains: string | string[];
|
|
3241
|
+
} | {
|
|
3242
|
+
$notcontains: string | string[];
|
|
3243
|
+
} | {
|
|
3244
|
+
$empty: boolean;
|
|
3245
|
+
} | {
|
|
3246
|
+
eq: string | number | string[] | null[];
|
|
3247
|
+
} | {
|
|
3248
|
+
ne: string | number | string[] | null[];
|
|
3249
|
+
} | {
|
|
3250
|
+
contains: string | string[];
|
|
3251
|
+
} | {
|
|
3252
|
+
notcontains: string | string[];
|
|
3253
|
+
} | {
|
|
3254
|
+
empty: boolean;
|
|
3255
|
+
} | {
|
|
3256
|
+
$neq: string | number | null[] | number[];
|
|
3257
|
+
} | {
|
|
3258
|
+
$nne: string | number | null[] | number[];
|
|
3259
|
+
} | {
|
|
3260
|
+
$lt: string | number;
|
|
3261
|
+
} | {
|
|
3262
|
+
$lte: string | number;
|
|
3263
|
+
} | {
|
|
3264
|
+
$gt: string | number;
|
|
3265
|
+
} | {
|
|
3266
|
+
$gte: string | number;
|
|
3267
|
+
} | {
|
|
3268
|
+
neq: string | number | null[] | number[];
|
|
3269
|
+
} | {
|
|
3270
|
+
nne: string | number | null[] | number[];
|
|
3271
|
+
} | {
|
|
3272
|
+
lt: string | number;
|
|
3273
|
+
} | {
|
|
3274
|
+
lte: string | number;
|
|
3275
|
+
} | {
|
|
3276
|
+
gt: string | number;
|
|
3277
|
+
} | {
|
|
3278
|
+
gte: string | number;
|
|
3279
|
+
} | {
|
|
3280
|
+
$range: string | number;
|
|
3281
|
+
} | {
|
|
3282
|
+
range: string | number;
|
|
3283
|
+
})[];
|
|
3284
|
+
} | {
|
|
3285
|
+
and: ({
|
|
3286
|
+
$eq: string | number | string[] | null[];
|
|
3287
|
+
} | {
|
|
3288
|
+
$ne: string | number | string[] | null[];
|
|
3289
|
+
} | {
|
|
3290
|
+
$contains: string | string[];
|
|
3291
|
+
} | {
|
|
3292
|
+
$notcontains: string | string[];
|
|
3293
|
+
} | {
|
|
3294
|
+
$empty: boolean;
|
|
3295
|
+
} | {
|
|
3296
|
+
eq: string | number | string[] | null[];
|
|
3297
|
+
} | {
|
|
3298
|
+
ne: string | number | string[] | null[];
|
|
3299
|
+
} | {
|
|
3300
|
+
contains: string | string[];
|
|
3301
|
+
} | {
|
|
3302
|
+
notcontains: string | string[];
|
|
3303
|
+
} | {
|
|
3304
|
+
empty: boolean;
|
|
3305
|
+
} | {
|
|
3306
|
+
$neq: string | number | null[] | number[];
|
|
3307
|
+
} | {
|
|
3308
|
+
$nne: string | number | null[] | number[];
|
|
3309
|
+
} | {
|
|
3310
|
+
$lt: string | number;
|
|
3311
|
+
} | {
|
|
3312
|
+
$lte: string | number;
|
|
3313
|
+
} | {
|
|
3314
|
+
$gt: string | number;
|
|
3315
|
+
} | {
|
|
3316
|
+
$gte: string | number;
|
|
3317
|
+
} | {
|
|
3318
|
+
neq: string | number | null[] | number[];
|
|
3319
|
+
} | {
|
|
3320
|
+
nne: string | number | null[] | number[];
|
|
3321
|
+
} | {
|
|
3322
|
+
lt: string | number;
|
|
3323
|
+
} | {
|
|
3324
|
+
lte: string | number;
|
|
3325
|
+
} | {
|
|
3326
|
+
gt: string | number;
|
|
3327
|
+
} | {
|
|
3328
|
+
gte: string | number;
|
|
3329
|
+
} | {
|
|
3330
|
+
$range: string | number;
|
|
3331
|
+
} | {
|
|
3332
|
+
range: string | number;
|
|
3333
|
+
})[];
|
|
3334
|
+
};
|
|
3335
|
+
reference_id?: {
|
|
3336
|
+
or: ({
|
|
3337
|
+
$eq: string | number | string[] | null[];
|
|
3338
|
+
} | {
|
|
3339
|
+
$ne: string | number | string[] | null[];
|
|
3340
|
+
} | {
|
|
3341
|
+
$contains: string | string[];
|
|
3342
|
+
} | {
|
|
3343
|
+
$notcontains: string | string[];
|
|
3344
|
+
} | {
|
|
3345
|
+
$empty: boolean;
|
|
3346
|
+
} | {
|
|
3347
|
+
eq: string | number | string[] | null[];
|
|
3348
|
+
} | {
|
|
3349
|
+
ne: string | number | string[] | null[];
|
|
3350
|
+
} | {
|
|
3351
|
+
contains: string | string[];
|
|
3352
|
+
} | {
|
|
3353
|
+
notcontains: string | string[];
|
|
3354
|
+
} | {
|
|
3355
|
+
empty: boolean;
|
|
3356
|
+
} | {
|
|
3357
|
+
$neq: string | number | null[] | number[];
|
|
3358
|
+
} | {
|
|
3359
|
+
$nne: string | number | null[] | number[];
|
|
3360
|
+
} | {
|
|
3361
|
+
$lt: string | number;
|
|
3362
|
+
} | {
|
|
3363
|
+
$lte: string | number;
|
|
3364
|
+
} | {
|
|
3365
|
+
$gt: string | number;
|
|
3366
|
+
} | {
|
|
3367
|
+
$gte: string | number;
|
|
3368
|
+
} | {
|
|
3369
|
+
neq: string | number | null[] | number[];
|
|
3370
|
+
} | {
|
|
3371
|
+
nne: string | number | null[] | number[];
|
|
3372
|
+
} | {
|
|
3373
|
+
lt: string | number;
|
|
3374
|
+
} | {
|
|
3375
|
+
lte: string | number;
|
|
3376
|
+
} | {
|
|
3377
|
+
gt: string | number;
|
|
3378
|
+
} | {
|
|
3379
|
+
gte: string | number;
|
|
3380
|
+
} | {
|
|
3381
|
+
$range: string | number;
|
|
3382
|
+
} | {
|
|
3383
|
+
range: string | number;
|
|
3384
|
+
})[];
|
|
3385
|
+
} | {
|
|
3386
|
+
and: ({
|
|
3387
|
+
$eq: string | number | string[] | null[];
|
|
3388
|
+
} | {
|
|
3389
|
+
$ne: string | number | string[] | null[];
|
|
3390
|
+
} | {
|
|
3391
|
+
$contains: string | string[];
|
|
3392
|
+
} | {
|
|
3393
|
+
$notcontains: string | string[];
|
|
3394
|
+
} | {
|
|
3395
|
+
$empty: boolean;
|
|
3396
|
+
} | {
|
|
3397
|
+
eq: string | number | string[] | null[];
|
|
3398
|
+
} | {
|
|
3399
|
+
ne: string | number | string[] | null[];
|
|
3400
|
+
} | {
|
|
3401
|
+
contains: string | string[];
|
|
3402
|
+
} | {
|
|
3403
|
+
notcontains: string | string[];
|
|
3404
|
+
} | {
|
|
3405
|
+
empty: boolean;
|
|
3406
|
+
} | {
|
|
3407
|
+
$neq: string | number | null[] | number[];
|
|
3408
|
+
} | {
|
|
3409
|
+
$nne: string | number | null[] | number[];
|
|
3410
|
+
} | {
|
|
3411
|
+
$lt: string | number;
|
|
3412
|
+
} | {
|
|
3413
|
+
$lte: string | number;
|
|
3414
|
+
} | {
|
|
3415
|
+
$gt: string | number;
|
|
3416
|
+
} | {
|
|
3417
|
+
$gte: string | number;
|
|
3418
|
+
} | {
|
|
3419
|
+
neq: string | number | null[] | number[];
|
|
3420
|
+
} | {
|
|
3421
|
+
nne: string | number | null[] | number[];
|
|
3422
|
+
} | {
|
|
3423
|
+
lt: string | number;
|
|
3424
|
+
} | {
|
|
3425
|
+
lte: string | number;
|
|
3426
|
+
} | {
|
|
3427
|
+
gt: string | number;
|
|
3428
|
+
} | {
|
|
3429
|
+
gte: string | number;
|
|
3430
|
+
} | {
|
|
3431
|
+
$range: string | number;
|
|
3432
|
+
} | {
|
|
3433
|
+
range: string | number;
|
|
3434
|
+
})[];
|
|
3435
|
+
};
|
|
3436
|
+
product_id?: {
|
|
3437
|
+
or: ({
|
|
3438
|
+
$eq: string | number | string[] | null[];
|
|
3439
|
+
} | {
|
|
3440
|
+
$ne: string | number | string[] | null[];
|
|
3441
|
+
} | {
|
|
3442
|
+
$contains: string | string[];
|
|
3443
|
+
} | {
|
|
3444
|
+
$notcontains: string | string[];
|
|
3445
|
+
} | {
|
|
3446
|
+
$empty: boolean;
|
|
3447
|
+
} | {
|
|
3448
|
+
eq: string | number | string[] | null[];
|
|
3449
|
+
} | {
|
|
3450
|
+
ne: string | number | string[] | null[];
|
|
3451
|
+
} | {
|
|
3452
|
+
contains: string | string[];
|
|
3453
|
+
} | {
|
|
3454
|
+
notcontains: string | string[];
|
|
3455
|
+
} | {
|
|
3456
|
+
empty: boolean;
|
|
3457
|
+
} | {
|
|
3458
|
+
$neq: string | number | null[] | number[];
|
|
3459
|
+
} | {
|
|
3460
|
+
$nne: string | number | null[] | number[];
|
|
3461
|
+
} | {
|
|
3462
|
+
$lt: string | number;
|
|
3463
|
+
} | {
|
|
3464
|
+
$lte: string | number;
|
|
3465
|
+
} | {
|
|
3466
|
+
$gt: string | number;
|
|
3467
|
+
} | {
|
|
3468
|
+
$gte: string | number;
|
|
3469
|
+
} | {
|
|
3470
|
+
neq: string | number | null[] | number[];
|
|
3471
|
+
} | {
|
|
3472
|
+
nne: string | number | null[] | number[];
|
|
3473
|
+
} | {
|
|
3474
|
+
lt: string | number;
|
|
3475
|
+
} | {
|
|
3476
|
+
lte: string | number;
|
|
3477
|
+
} | {
|
|
3478
|
+
gt: string | number;
|
|
3479
|
+
} | {
|
|
3480
|
+
gte: string | number;
|
|
3481
|
+
} | {
|
|
3482
|
+
$range: string | number;
|
|
3483
|
+
} | {
|
|
3484
|
+
range: string | number;
|
|
3485
|
+
})[];
|
|
3486
|
+
} | {
|
|
3487
|
+
and: ({
|
|
3488
|
+
$eq: string | number | string[] | null[];
|
|
3489
|
+
} | {
|
|
3490
|
+
$ne: string | number | string[] | null[];
|
|
3491
|
+
} | {
|
|
3492
|
+
$contains: string | string[];
|
|
3493
|
+
} | {
|
|
3494
|
+
$notcontains: string | string[];
|
|
3495
|
+
} | {
|
|
3496
|
+
$empty: boolean;
|
|
3497
|
+
} | {
|
|
3498
|
+
eq: string | number | string[] | null[];
|
|
3499
|
+
} | {
|
|
3500
|
+
ne: string | number | string[] | null[];
|
|
3501
|
+
} | {
|
|
3502
|
+
contains: string | string[];
|
|
3503
|
+
} | {
|
|
3504
|
+
notcontains: string | string[];
|
|
3505
|
+
} | {
|
|
3506
|
+
empty: boolean;
|
|
3507
|
+
} | {
|
|
3508
|
+
$neq: string | number | null[] | number[];
|
|
3509
|
+
} | {
|
|
3510
|
+
$nne: string | number | null[] | number[];
|
|
3511
|
+
} | {
|
|
3512
|
+
$lt: string | number;
|
|
3513
|
+
} | {
|
|
3514
|
+
$lte: string | number;
|
|
3515
|
+
} | {
|
|
3516
|
+
$gt: string | number;
|
|
3517
|
+
} | {
|
|
3518
|
+
$gte: string | number;
|
|
3519
|
+
} | {
|
|
3520
|
+
neq: string | number | null[] | number[];
|
|
3521
|
+
} | {
|
|
3522
|
+
nne: string | number | null[] | number[];
|
|
3523
|
+
} | {
|
|
3524
|
+
lt: string | number;
|
|
3525
|
+
} | {
|
|
3526
|
+
lte: string | number;
|
|
3527
|
+
} | {
|
|
3528
|
+
gt: string | number;
|
|
3529
|
+
} | {
|
|
3530
|
+
gte: string | number;
|
|
3531
|
+
} | {
|
|
3532
|
+
$range: string | number;
|
|
3533
|
+
} | {
|
|
3534
|
+
range: string | number;
|
|
3535
|
+
})[];
|
|
3536
|
+
};
|
|
3537
|
+
locale?: {
|
|
3538
|
+
or: ({
|
|
3539
|
+
$eq: string | number | string[] | null[];
|
|
3540
|
+
} | {
|
|
3541
|
+
$ne: string | number | string[] | null[];
|
|
3542
|
+
} | {
|
|
3543
|
+
$contains: string | string[];
|
|
3544
|
+
} | {
|
|
3545
|
+
$notcontains: string | string[];
|
|
3546
|
+
} | {
|
|
3547
|
+
$empty: boolean;
|
|
3548
|
+
} | {
|
|
3549
|
+
eq: string | number | string[] | null[];
|
|
3550
|
+
} | {
|
|
3551
|
+
ne: string | number | string[] | null[];
|
|
3552
|
+
} | {
|
|
3553
|
+
contains: string | string[];
|
|
3554
|
+
} | {
|
|
3555
|
+
notcontains: string | string[];
|
|
3556
|
+
} | {
|
|
3557
|
+
empty: boolean;
|
|
3558
|
+
} | {
|
|
3559
|
+
$neq: string | number | null[] | number[];
|
|
3560
|
+
} | {
|
|
3561
|
+
$nne: string | number | null[] | number[];
|
|
3562
|
+
} | {
|
|
3563
|
+
$lt: string | number;
|
|
3564
|
+
} | {
|
|
3565
|
+
$lte: string | number;
|
|
3566
|
+
} | {
|
|
3567
|
+
$gt: string | number;
|
|
3568
|
+
} | {
|
|
3569
|
+
$gte: string | number;
|
|
3570
|
+
} | {
|
|
3571
|
+
neq: string | number | null[] | number[];
|
|
3572
|
+
} | {
|
|
3573
|
+
nne: string | number | null[] | number[];
|
|
3574
|
+
} | {
|
|
3575
|
+
lt: string | number;
|
|
3576
|
+
} | {
|
|
3577
|
+
lte: string | number;
|
|
3578
|
+
} | {
|
|
3579
|
+
gt: string | number;
|
|
3580
|
+
} | {
|
|
3581
|
+
gte: string | number;
|
|
3582
|
+
} | {
|
|
3583
|
+
$range: string | number;
|
|
3584
|
+
} | {
|
|
3585
|
+
range: string | number;
|
|
3586
|
+
})[];
|
|
3587
|
+
} | {
|
|
3588
|
+
and: ({
|
|
3589
|
+
$eq: string | number | string[] | null[];
|
|
3590
|
+
} | {
|
|
3591
|
+
$ne: string | number | string[] | null[];
|
|
3592
|
+
} | {
|
|
3593
|
+
$contains: string | string[];
|
|
3594
|
+
} | {
|
|
3595
|
+
$notcontains: string | string[];
|
|
3596
|
+
} | {
|
|
3597
|
+
$empty: boolean;
|
|
3598
|
+
} | {
|
|
3599
|
+
eq: string | number | string[] | null[];
|
|
3600
|
+
} | {
|
|
3601
|
+
ne: string | number | string[] | null[];
|
|
3602
|
+
} | {
|
|
3603
|
+
contains: string | string[];
|
|
3604
|
+
} | {
|
|
3605
|
+
notcontains: string | string[];
|
|
3606
|
+
} | {
|
|
3607
|
+
empty: boolean;
|
|
3608
|
+
} | {
|
|
3609
|
+
$neq: string | number | null[] | number[];
|
|
3610
|
+
} | {
|
|
3611
|
+
$nne: string | number | null[] | number[];
|
|
3612
|
+
} | {
|
|
3613
|
+
$lt: string | number;
|
|
3614
|
+
} | {
|
|
3615
|
+
$lte: string | number;
|
|
3616
|
+
} | {
|
|
3617
|
+
$gt: string | number;
|
|
3618
|
+
} | {
|
|
3619
|
+
$gte: string | number;
|
|
3620
|
+
} | {
|
|
3621
|
+
neq: string | number | null[] | number[];
|
|
3622
|
+
} | {
|
|
3623
|
+
nne: string | number | null[] | number[];
|
|
3624
|
+
} | {
|
|
3625
|
+
lt: string | number;
|
|
3626
|
+
} | {
|
|
3627
|
+
lte: string | number;
|
|
3628
|
+
} | {
|
|
3629
|
+
gt: string | number;
|
|
3630
|
+
} | {
|
|
3631
|
+
gte: string | number;
|
|
3632
|
+
} | {
|
|
3633
|
+
$range: string | number;
|
|
3634
|
+
} | {
|
|
3635
|
+
range: string | number;
|
|
3636
|
+
})[];
|
|
3637
|
+
};
|
|
3638
|
+
};
|
|
3639
|
+
group?: {
|
|
3640
|
+
field: string;
|
|
3641
|
+
matching?: {
|
|
3642
|
+
mode: "onePerValue";
|
|
3643
|
+
} | {
|
|
3644
|
+
mode: "oneValueOnly";
|
|
3645
|
+
valueIndex: number;
|
|
3646
|
+
};
|
|
3647
|
+
};
|
|
3648
|
+
limit?: number;
|
|
3649
|
+
select?: string[];
|
|
3650
|
+
};
|
|
3651
|
+
export declare type GenericProxyLockFetcherCountOpts = {
|
|
3652
|
+
sort?: {
|
|
3653
|
+
by: string;
|
|
3654
|
+
order: "desc" | "asc";
|
|
3655
|
+
};
|
|
3656
|
+
datasourceId: string;
|
|
3657
|
+
query: string;
|
|
3658
|
+
};
|
|
3659
|
+
export declare type WorkerFetcherFetchOpts_Without_DatasourceId = {
|
|
3660
|
+
query: string;
|
|
3661
|
+
geo?: {
|
|
3662
|
+
radius: number;
|
|
3663
|
+
center: (number | number)[];
|
|
3664
|
+
};
|
|
3665
|
+
sort?: {
|
|
3666
|
+
by: string;
|
|
3667
|
+
order: "desc" | "asc";
|
|
3668
|
+
};
|
|
3669
|
+
filters?: {
|
|
3670
|
+
datetime?: {
|
|
3671
|
+
or: ({
|
|
3672
|
+
$eq: string | number | string[] | null[];
|
|
3673
|
+
} | {
|
|
3674
|
+
$ne: string | number | string[] | null[];
|
|
3675
|
+
} | {
|
|
3676
|
+
$contains: string | string[];
|
|
3677
|
+
} | {
|
|
3678
|
+
$notcontains: string | string[];
|
|
3679
|
+
} | {
|
|
3680
|
+
$empty: boolean;
|
|
3681
|
+
} | {
|
|
3682
|
+
eq: string | number | string[] | null[];
|
|
3683
|
+
} | {
|
|
3684
|
+
ne: string | number | string[] | null[];
|
|
3685
|
+
} | {
|
|
3686
|
+
contains: string | string[];
|
|
3687
|
+
} | {
|
|
3688
|
+
notcontains: string | string[];
|
|
3689
|
+
} | {
|
|
3690
|
+
empty: boolean;
|
|
3691
|
+
} | {
|
|
3692
|
+
$neq: string | number | null[] | number[];
|
|
3693
|
+
} | {
|
|
3694
|
+
$nne: string | number | null[] | number[];
|
|
3695
|
+
} | {
|
|
3696
|
+
$lt: string | number;
|
|
3697
|
+
} | {
|
|
3698
|
+
$lte: string | number;
|
|
3699
|
+
} | {
|
|
3700
|
+
$gt: string | number;
|
|
3701
|
+
} | {
|
|
3702
|
+
$gte: string | number;
|
|
3703
|
+
} | {
|
|
3704
|
+
neq: string | number | null[] | number[];
|
|
3705
|
+
} | {
|
|
3706
|
+
nne: string | number | null[] | number[];
|
|
3707
|
+
} | {
|
|
3708
|
+
lt: string | number;
|
|
3709
|
+
} | {
|
|
3710
|
+
lte: string | number;
|
|
3711
|
+
} | {
|
|
3712
|
+
gt: string | number;
|
|
3713
|
+
} | {
|
|
3714
|
+
gte: string | number;
|
|
3715
|
+
} | {
|
|
3716
|
+
$range: string | number;
|
|
3717
|
+
} | {
|
|
3718
|
+
range: string | number;
|
|
3719
|
+
})[];
|
|
3720
|
+
} | {
|
|
3721
|
+
and: ({
|
|
3722
|
+
$eq: string | number | string[] | null[];
|
|
3723
|
+
} | {
|
|
3724
|
+
$ne: string | number | string[] | null[];
|
|
3725
|
+
} | {
|
|
3726
|
+
$contains: string | string[];
|
|
3727
|
+
} | {
|
|
3728
|
+
$notcontains: string | string[];
|
|
3729
|
+
} | {
|
|
3730
|
+
$empty: boolean;
|
|
3731
|
+
} | {
|
|
3732
|
+
eq: string | number | string[] | null[];
|
|
3733
|
+
} | {
|
|
3734
|
+
ne: string | number | string[] | null[];
|
|
3735
|
+
} | {
|
|
3736
|
+
contains: string | string[];
|
|
3737
|
+
} | {
|
|
3738
|
+
notcontains: string | string[];
|
|
3739
|
+
} | {
|
|
3740
|
+
empty: boolean;
|
|
3741
|
+
} | {
|
|
3742
|
+
$neq: string | number | null[] | number[];
|
|
3743
|
+
} | {
|
|
3744
|
+
$nne: string | number | null[] | number[];
|
|
3745
|
+
} | {
|
|
3746
|
+
$lt: string | number;
|
|
3747
|
+
} | {
|
|
3748
|
+
$lte: string | number;
|
|
3749
|
+
} | {
|
|
3750
|
+
$gt: string | number;
|
|
3751
|
+
} | {
|
|
3752
|
+
$gte: string | number;
|
|
3753
|
+
} | {
|
|
3754
|
+
neq: string | number | null[] | number[];
|
|
3755
|
+
} | {
|
|
3756
|
+
nne: string | number | null[] | number[];
|
|
3757
|
+
} | {
|
|
3758
|
+
lt: string | number;
|
|
3759
|
+
} | {
|
|
3760
|
+
lte: string | number;
|
|
3761
|
+
} | {
|
|
3762
|
+
gt: string | number;
|
|
3763
|
+
} | {
|
|
3764
|
+
gte: string | number;
|
|
3765
|
+
} | {
|
|
3766
|
+
$range: string | number;
|
|
3767
|
+
} | {
|
|
3768
|
+
range: string | number;
|
|
3769
|
+
})[];
|
|
3770
|
+
};
|
|
3771
|
+
reference_id?: {
|
|
3772
|
+
or: ({
|
|
3773
|
+
$eq: string | number | string[] | null[];
|
|
3774
|
+
} | {
|
|
3775
|
+
$ne: string | number | string[] | null[];
|
|
3776
|
+
} | {
|
|
3777
|
+
$contains: string | string[];
|
|
3778
|
+
} | {
|
|
3779
|
+
$notcontains: string | string[];
|
|
3780
|
+
} | {
|
|
3781
|
+
$empty: boolean;
|
|
3782
|
+
} | {
|
|
3783
|
+
eq: string | number | string[] | null[];
|
|
3784
|
+
} | {
|
|
3785
|
+
ne: string | number | string[] | null[];
|
|
3786
|
+
} | {
|
|
3787
|
+
contains: string | string[];
|
|
3788
|
+
} | {
|
|
3789
|
+
notcontains: string | string[];
|
|
3790
|
+
} | {
|
|
3791
|
+
empty: boolean;
|
|
3792
|
+
} | {
|
|
3793
|
+
$neq: string | number | null[] | number[];
|
|
3794
|
+
} | {
|
|
3795
|
+
$nne: string | number | null[] | number[];
|
|
3796
|
+
} | {
|
|
3797
|
+
$lt: string | number;
|
|
3798
|
+
} | {
|
|
3799
|
+
$lte: string | number;
|
|
3800
|
+
} | {
|
|
3801
|
+
$gt: string | number;
|
|
3802
|
+
} | {
|
|
3803
|
+
$gte: string | number;
|
|
3804
|
+
} | {
|
|
3805
|
+
neq: string | number | null[] | number[];
|
|
3806
|
+
} | {
|
|
3807
|
+
nne: string | number | null[] | number[];
|
|
3808
|
+
} | {
|
|
3809
|
+
lt: string | number;
|
|
3810
|
+
} | {
|
|
3811
|
+
lte: string | number;
|
|
3812
|
+
} | {
|
|
3813
|
+
gt: string | number;
|
|
3814
|
+
} | {
|
|
3815
|
+
gte: string | number;
|
|
3816
|
+
} | {
|
|
3817
|
+
$range: string | number;
|
|
3818
|
+
} | {
|
|
3819
|
+
range: string | number;
|
|
3820
|
+
})[];
|
|
3821
|
+
} | {
|
|
3822
|
+
and: ({
|
|
3823
|
+
$eq: string | number | string[] | null[];
|
|
3824
|
+
} | {
|
|
3825
|
+
$ne: string | number | string[] | null[];
|
|
3826
|
+
} | {
|
|
3827
|
+
$contains: string | string[];
|
|
3828
|
+
} | {
|
|
3829
|
+
$notcontains: string | string[];
|
|
3830
|
+
} | {
|
|
3831
|
+
$empty: boolean;
|
|
3832
|
+
} | {
|
|
3833
|
+
eq: string | number | string[] | null[];
|
|
3834
|
+
} | {
|
|
3835
|
+
ne: string | number | string[] | null[];
|
|
3836
|
+
} | {
|
|
3837
|
+
contains: string | string[];
|
|
3838
|
+
} | {
|
|
3839
|
+
notcontains: string | string[];
|
|
3840
|
+
} | {
|
|
3841
|
+
empty: boolean;
|
|
3842
|
+
} | {
|
|
3843
|
+
$neq: string | number | null[] | number[];
|
|
3844
|
+
} | {
|
|
3845
|
+
$nne: string | number | null[] | number[];
|
|
3846
|
+
} | {
|
|
3847
|
+
$lt: string | number;
|
|
3848
|
+
} | {
|
|
3849
|
+
$lte: string | number;
|
|
3850
|
+
} | {
|
|
3851
|
+
$gt: string | number;
|
|
3852
|
+
} | {
|
|
3853
|
+
$gte: string | number;
|
|
3854
|
+
} | {
|
|
3855
|
+
neq: string | number | null[] | number[];
|
|
3856
|
+
} | {
|
|
3857
|
+
nne: string | number | null[] | number[];
|
|
3858
|
+
} | {
|
|
3859
|
+
lt: string | number;
|
|
3860
|
+
} | {
|
|
3861
|
+
lte: string | number;
|
|
3862
|
+
} | {
|
|
3863
|
+
gt: string | number;
|
|
3864
|
+
} | {
|
|
3865
|
+
gte: string | number;
|
|
3866
|
+
} | {
|
|
3867
|
+
$range: string | number;
|
|
3868
|
+
} | {
|
|
3869
|
+
range: string | number;
|
|
3870
|
+
})[];
|
|
3871
|
+
};
|
|
3872
|
+
product_id?: {
|
|
3873
|
+
or: ({
|
|
3874
|
+
$eq: string | number | string[] | null[];
|
|
3875
|
+
} | {
|
|
3876
|
+
$ne: string | number | string[] | null[];
|
|
3877
|
+
} | {
|
|
3878
|
+
$contains: string | string[];
|
|
3879
|
+
} | {
|
|
3880
|
+
$notcontains: string | string[];
|
|
3881
|
+
} | {
|
|
3882
|
+
$empty: boolean;
|
|
3883
|
+
} | {
|
|
3884
|
+
eq: string | number | string[] | null[];
|
|
3885
|
+
} | {
|
|
3886
|
+
ne: string | number | string[] | null[];
|
|
3887
|
+
} | {
|
|
3888
|
+
contains: string | string[];
|
|
3889
|
+
} | {
|
|
3890
|
+
notcontains: string | string[];
|
|
3891
|
+
} | {
|
|
3892
|
+
empty: boolean;
|
|
3893
|
+
} | {
|
|
3894
|
+
$neq: string | number | null[] | number[];
|
|
3895
|
+
} | {
|
|
3896
|
+
$nne: string | number | null[] | number[];
|
|
3897
|
+
} | {
|
|
3898
|
+
$lt: string | number;
|
|
3899
|
+
} | {
|
|
3900
|
+
$lte: string | number;
|
|
3901
|
+
} | {
|
|
3902
|
+
$gt: string | number;
|
|
3903
|
+
} | {
|
|
3904
|
+
$gte: string | number;
|
|
3905
|
+
} | {
|
|
3906
|
+
neq: string | number | null[] | number[];
|
|
3907
|
+
} | {
|
|
3908
|
+
nne: string | number | null[] | number[];
|
|
3909
|
+
} | {
|
|
3910
|
+
lt: string | number;
|
|
3911
|
+
} | {
|
|
3912
|
+
lte: string | number;
|
|
3913
|
+
} | {
|
|
3914
|
+
gt: string | number;
|
|
3915
|
+
} | {
|
|
3916
|
+
gte: string | number;
|
|
3917
|
+
} | {
|
|
3918
|
+
$range: string | number;
|
|
3919
|
+
} | {
|
|
3920
|
+
range: string | number;
|
|
3921
|
+
})[];
|
|
3922
|
+
} | {
|
|
3923
|
+
and: ({
|
|
3924
|
+
$eq: string | number | string[] | null[];
|
|
3925
|
+
} | {
|
|
3926
|
+
$ne: string | number | string[] | null[];
|
|
3927
|
+
} | {
|
|
3928
|
+
$contains: string | string[];
|
|
3929
|
+
} | {
|
|
3930
|
+
$notcontains: string | string[];
|
|
3931
|
+
} | {
|
|
3932
|
+
$empty: boolean;
|
|
3933
|
+
} | {
|
|
3934
|
+
eq: string | number | string[] | null[];
|
|
3935
|
+
} | {
|
|
3936
|
+
ne: string | number | string[] | null[];
|
|
3937
|
+
} | {
|
|
3938
|
+
contains: string | string[];
|
|
3939
|
+
} | {
|
|
3940
|
+
notcontains: string | string[];
|
|
3941
|
+
} | {
|
|
3942
|
+
empty: boolean;
|
|
3943
|
+
} | {
|
|
3944
|
+
$neq: string | number | null[] | number[];
|
|
3945
|
+
} | {
|
|
3946
|
+
$nne: string | number | null[] | number[];
|
|
3947
|
+
} | {
|
|
3948
|
+
$lt: string | number;
|
|
3949
|
+
} | {
|
|
3950
|
+
$lte: string | number;
|
|
3951
|
+
} | {
|
|
3952
|
+
$gt: string | number;
|
|
3953
|
+
} | {
|
|
3954
|
+
$gte: string | number;
|
|
3955
|
+
} | {
|
|
3956
|
+
neq: string | number | null[] | number[];
|
|
3957
|
+
} | {
|
|
3958
|
+
nne: string | number | null[] | number[];
|
|
3959
|
+
} | {
|
|
3960
|
+
lt: string | number;
|
|
3961
|
+
} | {
|
|
3962
|
+
lte: string | number;
|
|
3963
|
+
} | {
|
|
3964
|
+
gt: string | number;
|
|
3965
|
+
} | {
|
|
3966
|
+
gte: string | number;
|
|
3967
|
+
} | {
|
|
3968
|
+
$range: string | number;
|
|
3969
|
+
} | {
|
|
3970
|
+
range: string | number;
|
|
3971
|
+
})[];
|
|
3972
|
+
};
|
|
3973
|
+
locale?: {
|
|
3974
|
+
or: ({
|
|
3975
|
+
$eq: string | number | string[] | null[];
|
|
3976
|
+
} | {
|
|
3977
|
+
$ne: string | number | string[] | null[];
|
|
3978
|
+
} | {
|
|
3979
|
+
$contains: string | string[];
|
|
3980
|
+
} | {
|
|
3981
|
+
$notcontains: string | string[];
|
|
3982
|
+
} | {
|
|
3983
|
+
$empty: boolean;
|
|
3984
|
+
} | {
|
|
3985
|
+
eq: string | number | string[] | null[];
|
|
3986
|
+
} | {
|
|
3987
|
+
ne: string | number | string[] | null[];
|
|
3988
|
+
} | {
|
|
3989
|
+
contains: string | string[];
|
|
3990
|
+
} | {
|
|
3991
|
+
notcontains: string | string[];
|
|
3992
|
+
} | {
|
|
3993
|
+
empty: boolean;
|
|
3994
|
+
} | {
|
|
3995
|
+
$neq: string | number | null[] | number[];
|
|
3996
|
+
} | {
|
|
3997
|
+
$nne: string | number | null[] | number[];
|
|
3998
|
+
} | {
|
|
3999
|
+
$lt: string | number;
|
|
4000
|
+
} | {
|
|
4001
|
+
$lte: string | number;
|
|
4002
|
+
} | {
|
|
4003
|
+
$gt: string | number;
|
|
4004
|
+
} | {
|
|
4005
|
+
$gte: string | number;
|
|
4006
|
+
} | {
|
|
4007
|
+
neq: string | number | null[] | number[];
|
|
4008
|
+
} | {
|
|
4009
|
+
nne: string | number | null[] | number[];
|
|
4010
|
+
} | {
|
|
4011
|
+
lt: string | number;
|
|
4012
|
+
} | {
|
|
4013
|
+
lte: string | number;
|
|
4014
|
+
} | {
|
|
4015
|
+
gt: string | number;
|
|
4016
|
+
} | {
|
|
4017
|
+
gte: string | number;
|
|
4018
|
+
} | {
|
|
4019
|
+
$range: string | number;
|
|
4020
|
+
} | {
|
|
4021
|
+
range: string | number;
|
|
4022
|
+
})[];
|
|
4023
|
+
} | {
|
|
4024
|
+
and: ({
|
|
4025
|
+
$eq: string | number | string[] | null[];
|
|
4026
|
+
} | {
|
|
4027
|
+
$ne: string | number | string[] | null[];
|
|
4028
|
+
} | {
|
|
4029
|
+
$contains: string | string[];
|
|
4030
|
+
} | {
|
|
4031
|
+
$notcontains: string | string[];
|
|
4032
|
+
} | {
|
|
4033
|
+
$empty: boolean;
|
|
4034
|
+
} | {
|
|
4035
|
+
eq: string | number | string[] | null[];
|
|
4036
|
+
} | {
|
|
4037
|
+
ne: string | number | string[] | null[];
|
|
4038
|
+
} | {
|
|
4039
|
+
contains: string | string[];
|
|
4040
|
+
} | {
|
|
4041
|
+
notcontains: string | string[];
|
|
4042
|
+
} | {
|
|
4043
|
+
empty: boolean;
|
|
4044
|
+
} | {
|
|
4045
|
+
$neq: string | number | null[] | number[];
|
|
4046
|
+
} | {
|
|
4047
|
+
$nne: string | number | null[] | number[];
|
|
4048
|
+
} | {
|
|
4049
|
+
$lt: string | number;
|
|
4050
|
+
} | {
|
|
4051
|
+
$lte: string | number;
|
|
4052
|
+
} | {
|
|
4053
|
+
$gt: string | number;
|
|
4054
|
+
} | {
|
|
4055
|
+
$gte: string | number;
|
|
4056
|
+
} | {
|
|
4057
|
+
neq: string | number | null[] | number[];
|
|
4058
|
+
} | {
|
|
4059
|
+
nne: string | number | null[] | number[];
|
|
4060
|
+
} | {
|
|
4061
|
+
lt: string | number;
|
|
4062
|
+
} | {
|
|
4063
|
+
lte: string | number;
|
|
4064
|
+
} | {
|
|
4065
|
+
gt: string | number;
|
|
4066
|
+
} | {
|
|
4067
|
+
gte: string | number;
|
|
4068
|
+
} | {
|
|
4069
|
+
$range: string | number;
|
|
4070
|
+
} | {
|
|
4071
|
+
range: string | number;
|
|
4072
|
+
})[];
|
|
4073
|
+
};
|
|
4074
|
+
};
|
|
4075
|
+
group?: {
|
|
4076
|
+
field: string;
|
|
4077
|
+
matching?: {
|
|
4078
|
+
mode: "onePerValue";
|
|
4079
|
+
} | {
|
|
4080
|
+
mode: "oneValueOnly";
|
|
4081
|
+
valueIndex: number;
|
|
4082
|
+
};
|
|
4083
|
+
};
|
|
4084
|
+
limit?: number;
|
|
4085
|
+
select?: string[];
|
|
4086
|
+
};
|
|
4087
|
+
export declare enum DatasourceLocationSubType {
|
|
4088
|
+
USER = "user",
|
|
4089
|
+
GOOGLE_MY_BUSINESS = "google_my_business",
|
|
4090
|
+
PARTOO = "partoo",
|
|
4091
|
+
WEATHER = "weather",
|
|
4092
|
+
MUTABLE = "mutable"
|
|
4093
|
+
}
|
|
4094
|
+
export declare type DatasourceLocation = {
|
|
4095
|
+
name: "location";
|
|
4096
|
+
subtype: DatasourceLocationSubType;
|
|
4097
|
+
};
|
|
4098
|
+
export declare enum DatasourceGenericSubType {
|
|
4099
|
+
USER = "user",
|
|
4100
|
+
TOP_ATTRIBUTES = "TOP_ATTRIBUTES",
|
|
4101
|
+
MUTABLE = "mutable"
|
|
4102
|
+
}
|
|
4103
|
+
export declare type DatasourceGeneric = {
|
|
4104
|
+
name: "generic";
|
|
4105
|
+
subtype: DatasourceGenericSubType;
|
|
4106
|
+
};
|
|
4107
|
+
export declare enum DatasourceProductSubType {
|
|
4108
|
+
USER = "user",
|
|
4109
|
+
LOCALIZED = "localized",
|
|
4110
|
+
SHOPIFY = "shopify",
|
|
4111
|
+
BEST_PRODUCT = "best_product",
|
|
4112
|
+
BOUGHT_TOGETHER = "bought_together",
|
|
4113
|
+
MUTABLE = "mutable"
|
|
4114
|
+
}
|
|
4115
|
+
export declare type DatasourceProduct = {
|
|
4116
|
+
name: "product";
|
|
4117
|
+
subtype: DatasourceProductSubType;
|
|
4118
|
+
};
|
|
4119
|
+
export declare enum DatasourceCRMSubType {
|
|
4120
|
+
USER = "user",
|
|
4121
|
+
MUTABLE = "mutable"
|
|
4122
|
+
}
|
|
4123
|
+
export declare type DatasourceCRM = {
|
|
4124
|
+
name: "crm";
|
|
4125
|
+
subtype: DatasourceCRMSubType;
|
|
4126
|
+
};
|
|
4127
|
+
export declare type DatasourcePush = {
|
|
4128
|
+
name: "push";
|
|
4129
|
+
subtype: "email";
|
|
4130
|
+
};
|
|
4131
|
+
export declare type IngesterFetcherFetchOpts_Without_DatasourceId = {
|
|
4132
|
+
query: string;
|
|
4133
|
+
sort?: {
|
|
4134
|
+
by: string;
|
|
4135
|
+
order: "desc" | "asc";
|
|
4136
|
+
};
|
|
4137
|
+
group?: {
|
|
4138
|
+
by: string;
|
|
4139
|
+
};
|
|
4140
|
+
limit?: number;
|
|
4141
|
+
select?: string[];
|
|
4142
|
+
};
|
|
4143
|
+
export declare type TrackingFetcherFetchOpts_Without_DatasourceId = {
|
|
4144
|
+
query: string;
|
|
4145
|
+
group?: boolean;
|
|
4146
|
+
limit: number;
|
|
4147
|
+
excludeQuery?: string;
|
|
4148
|
+
userIds: string[];
|
|
4149
|
+
date: {
|
|
4150
|
+
start: string;
|
|
4151
|
+
end: string;
|
|
4152
|
+
} | {
|
|
4153
|
+
end: string;
|
|
4154
|
+
} | {
|
|
4155
|
+
start: string;
|
|
4156
|
+
} | {
|
|
4157
|
+
duration: number;
|
|
4158
|
+
};
|
|
4159
|
+
excludeDate?: {
|
|
4160
|
+
start: string;
|
|
4161
|
+
end: string;
|
|
4162
|
+
} | {
|
|
4163
|
+
end: string;
|
|
4164
|
+
} | {
|
|
4165
|
+
start: string;
|
|
4166
|
+
} | {
|
|
4167
|
+
duration: number;
|
|
4168
|
+
};
|
|
4169
|
+
};
|
|
4170
|
+
export declare type ProxyFetcherFetchOpts_Without_DatasourceId = {
|
|
4171
|
+
query: string;
|
|
4172
|
+
sort?: {
|
|
4173
|
+
by: string;
|
|
4174
|
+
order: "desc" | "asc";
|
|
4175
|
+
};
|
|
4176
|
+
};
|
|
4177
|
+
export declare type CarrefourStoresWithDriveSlotsFetcherFetchOpts_Without_DatasourceId = {
|
|
4178
|
+
query: string;
|
|
4179
|
+
};
|
|
4180
|
+
export declare type BestWesternHotelsFetcherFetchOpts_Without_DatasourceId = {
|
|
4181
|
+
query: string;
|
|
4182
|
+
geo?: {
|
|
4183
|
+
radius: number;
|
|
4184
|
+
center: (number | number)[];
|
|
4185
|
+
};
|
|
4186
|
+
sort?: {
|
|
4187
|
+
by: string;
|
|
4188
|
+
order: "desc" | "asc";
|
|
4189
|
+
};
|
|
4190
|
+
};
|
|
4191
|
+
export declare type FdjBetsFetcherFetchOpts_Without_DatasourceId = {
|
|
4192
|
+
query: string;
|
|
4193
|
+
};
|
|
4194
|
+
export declare type SarenzaSizesFetcherFetchOpts_Without_DatasourceId = {
|
|
4195
|
+
query: string;
|
|
4196
|
+
sort?: {
|
|
4197
|
+
by: string;
|
|
4198
|
+
order: "desc" | "asc";
|
|
4199
|
+
};
|
|
4200
|
+
};
|
|
4201
|
+
export declare type RenaultPricesFetcherFetchOpts_Without_DatasourceId = {
|
|
4202
|
+
query: string;
|
|
4203
|
+
geo?: {
|
|
4204
|
+
radius: number;
|
|
4205
|
+
center: (number | number)[];
|
|
4206
|
+
};
|
|
4207
|
+
sort?: {
|
|
4208
|
+
by: string;
|
|
4209
|
+
order: "desc" | "asc";
|
|
4210
|
+
};
|
|
4211
|
+
filters?: {
|
|
4212
|
+
datetime?: {
|
|
4213
|
+
or: ({
|
|
4214
|
+
$eq: string | number | string[] | null[];
|
|
4215
|
+
} | {
|
|
4216
|
+
$ne: string | number | string[] | null[];
|
|
4217
|
+
} | {
|
|
4218
|
+
$contains: string | string[];
|
|
4219
|
+
} | {
|
|
4220
|
+
$notcontains: string | string[];
|
|
4221
|
+
} | {
|
|
4222
|
+
$empty: boolean;
|
|
4223
|
+
} | {
|
|
4224
|
+
eq: string | number | string[] | null[];
|
|
4225
|
+
} | {
|
|
4226
|
+
ne: string | number | string[] | null[];
|
|
4227
|
+
} | {
|
|
4228
|
+
contains: string | string[];
|
|
4229
|
+
} | {
|
|
4230
|
+
notcontains: string | string[];
|
|
4231
|
+
} | {
|
|
4232
|
+
empty: boolean;
|
|
4233
|
+
} | {
|
|
4234
|
+
$neq: string | number | null[] | number[];
|
|
4235
|
+
} | {
|
|
4236
|
+
$nne: string | number | null[] | number[];
|
|
4237
|
+
} | {
|
|
4238
|
+
$lt: string | number;
|
|
4239
|
+
} | {
|
|
4240
|
+
$lte: string | number;
|
|
4241
|
+
} | {
|
|
4242
|
+
$gt: string | number;
|
|
4243
|
+
} | {
|
|
4244
|
+
$gte: string | number;
|
|
4245
|
+
} | {
|
|
4246
|
+
neq: string | number | null[] | number[];
|
|
4247
|
+
} | {
|
|
4248
|
+
nne: string | number | null[] | number[];
|
|
4249
|
+
} | {
|
|
4250
|
+
lt: string | number;
|
|
4251
|
+
} | {
|
|
4252
|
+
lte: string | number;
|
|
4253
|
+
} | {
|
|
4254
|
+
gt: string | number;
|
|
4255
|
+
} | {
|
|
4256
|
+
gte: string | number;
|
|
4257
|
+
} | {
|
|
4258
|
+
$range: string | number;
|
|
4259
|
+
} | {
|
|
4260
|
+
range: string | number;
|
|
4261
|
+
})[];
|
|
4262
|
+
} | {
|
|
4263
|
+
and: ({
|
|
4264
|
+
$eq: string | number | string[] | null[];
|
|
4265
|
+
} | {
|
|
4266
|
+
$ne: string | number | string[] | null[];
|
|
4267
|
+
} | {
|
|
4268
|
+
$contains: string | string[];
|
|
4269
|
+
} | {
|
|
4270
|
+
$notcontains: string | string[];
|
|
4271
|
+
} | {
|
|
4272
|
+
$empty: boolean;
|
|
4273
|
+
} | {
|
|
4274
|
+
eq: string | number | string[] | null[];
|
|
4275
|
+
} | {
|
|
4276
|
+
ne: string | number | string[] | null[];
|
|
4277
|
+
} | {
|
|
4278
|
+
contains: string | string[];
|
|
4279
|
+
} | {
|
|
4280
|
+
notcontains: string | string[];
|
|
4281
|
+
} | {
|
|
4282
|
+
empty: boolean;
|
|
4283
|
+
} | {
|
|
4284
|
+
$neq: string | number | null[] | number[];
|
|
4285
|
+
} | {
|
|
4286
|
+
$nne: string | number | null[] | number[];
|
|
4287
|
+
} | {
|
|
4288
|
+
$lt: string | number;
|
|
4289
|
+
} | {
|
|
4290
|
+
$lte: string | number;
|
|
4291
|
+
} | {
|
|
4292
|
+
$gt: string | number;
|
|
4293
|
+
} | {
|
|
4294
|
+
$gte: string | number;
|
|
4295
|
+
} | {
|
|
4296
|
+
neq: string | number | null[] | number[];
|
|
4297
|
+
} | {
|
|
4298
|
+
nne: string | number | null[] | number[];
|
|
4299
|
+
} | {
|
|
4300
|
+
lt: string | number;
|
|
4301
|
+
} | {
|
|
4302
|
+
lte: string | number;
|
|
4303
|
+
} | {
|
|
4304
|
+
gt: string | number;
|
|
4305
|
+
} | {
|
|
4306
|
+
gte: string | number;
|
|
4307
|
+
} | {
|
|
4308
|
+
$range: string | number;
|
|
4309
|
+
} | {
|
|
4310
|
+
range: string | number;
|
|
4311
|
+
})[];
|
|
4312
|
+
};
|
|
4313
|
+
reference_id?: {
|
|
4314
|
+
or: ({
|
|
4315
|
+
$eq: string | number | string[] | null[];
|
|
4316
|
+
} | {
|
|
4317
|
+
$ne: string | number | string[] | null[];
|
|
4318
|
+
} | {
|
|
4319
|
+
$contains: string | string[];
|
|
4320
|
+
} | {
|
|
4321
|
+
$notcontains: string | string[];
|
|
4322
|
+
} | {
|
|
4323
|
+
$empty: boolean;
|
|
4324
|
+
} | {
|
|
4325
|
+
eq: string | number | string[] | null[];
|
|
4326
|
+
} | {
|
|
4327
|
+
ne: string | number | string[] | null[];
|
|
4328
|
+
} | {
|
|
4329
|
+
contains: string | string[];
|
|
4330
|
+
} | {
|
|
4331
|
+
notcontains: string | string[];
|
|
4332
|
+
} | {
|
|
4333
|
+
empty: boolean;
|
|
4334
|
+
} | {
|
|
4335
|
+
$neq: string | number | null[] | number[];
|
|
4336
|
+
} | {
|
|
4337
|
+
$nne: string | number | null[] | number[];
|
|
4338
|
+
} | {
|
|
4339
|
+
$lt: string | number;
|
|
4340
|
+
} | {
|
|
4341
|
+
$lte: string | number;
|
|
4342
|
+
} | {
|
|
4343
|
+
$gt: string | number;
|
|
4344
|
+
} | {
|
|
4345
|
+
$gte: string | number;
|
|
4346
|
+
} | {
|
|
4347
|
+
neq: string | number | null[] | number[];
|
|
4348
|
+
} | {
|
|
4349
|
+
nne: string | number | null[] | number[];
|
|
4350
|
+
} | {
|
|
4351
|
+
lt: string | number;
|
|
4352
|
+
} | {
|
|
4353
|
+
lte: string | number;
|
|
4354
|
+
} | {
|
|
4355
|
+
gt: string | number;
|
|
4356
|
+
} | {
|
|
4357
|
+
gte: string | number;
|
|
4358
|
+
} | {
|
|
4359
|
+
$range: string | number;
|
|
4360
|
+
} | {
|
|
4361
|
+
range: string | number;
|
|
4362
|
+
})[];
|
|
4363
|
+
} | {
|
|
4364
|
+
and: ({
|
|
4365
|
+
$eq: string | number | string[] | null[];
|
|
4366
|
+
} | {
|
|
4367
|
+
$ne: string | number | string[] | null[];
|
|
4368
|
+
} | {
|
|
4369
|
+
$contains: string | string[];
|
|
4370
|
+
} | {
|
|
4371
|
+
$notcontains: string | string[];
|
|
4372
|
+
} | {
|
|
4373
|
+
$empty: boolean;
|
|
4374
|
+
} | {
|
|
4375
|
+
eq: string | number | string[] | null[];
|
|
4376
|
+
} | {
|
|
4377
|
+
ne: string | number | string[] | null[];
|
|
4378
|
+
} | {
|
|
4379
|
+
contains: string | string[];
|
|
4380
|
+
} | {
|
|
4381
|
+
notcontains: string | string[];
|
|
4382
|
+
} | {
|
|
4383
|
+
empty: boolean;
|
|
4384
|
+
} | {
|
|
4385
|
+
$neq: string | number | null[] | number[];
|
|
4386
|
+
} | {
|
|
4387
|
+
$nne: string | number | null[] | number[];
|
|
4388
|
+
} | {
|
|
4389
|
+
$lt: string | number;
|
|
4390
|
+
} | {
|
|
4391
|
+
$lte: string | number;
|
|
4392
|
+
} | {
|
|
4393
|
+
$gt: string | number;
|
|
4394
|
+
} | {
|
|
4395
|
+
$gte: string | number;
|
|
4396
|
+
} | {
|
|
4397
|
+
neq: string | number | null[] | number[];
|
|
4398
|
+
} | {
|
|
4399
|
+
nne: string | number | null[] | number[];
|
|
4400
|
+
} | {
|
|
4401
|
+
lt: string | number;
|
|
4402
|
+
} | {
|
|
4403
|
+
lte: string | number;
|
|
4404
|
+
} | {
|
|
4405
|
+
gt: string | number;
|
|
4406
|
+
} | {
|
|
4407
|
+
gte: string | number;
|
|
4408
|
+
} | {
|
|
4409
|
+
$range: string | number;
|
|
4410
|
+
} | {
|
|
4411
|
+
range: string | number;
|
|
4412
|
+
})[];
|
|
4413
|
+
};
|
|
4414
|
+
product_id?: {
|
|
4415
|
+
or: ({
|
|
4416
|
+
$eq: string | number | string[] | null[];
|
|
4417
|
+
} | {
|
|
4418
|
+
$ne: string | number | string[] | null[];
|
|
4419
|
+
} | {
|
|
4420
|
+
$contains: string | string[];
|
|
4421
|
+
} | {
|
|
4422
|
+
$notcontains: string | string[];
|
|
4423
|
+
} | {
|
|
4424
|
+
$empty: boolean;
|
|
4425
|
+
} | {
|
|
4426
|
+
eq: string | number | string[] | null[];
|
|
4427
|
+
} | {
|
|
4428
|
+
ne: string | number | string[] | null[];
|
|
4429
|
+
} | {
|
|
4430
|
+
contains: string | string[];
|
|
4431
|
+
} | {
|
|
4432
|
+
notcontains: string | string[];
|
|
4433
|
+
} | {
|
|
4434
|
+
empty: boolean;
|
|
4435
|
+
} | {
|
|
4436
|
+
$neq: string | number | null[] | number[];
|
|
4437
|
+
} | {
|
|
4438
|
+
$nne: string | number | null[] | number[];
|
|
4439
|
+
} | {
|
|
4440
|
+
$lt: string | number;
|
|
4441
|
+
} | {
|
|
4442
|
+
$lte: string | number;
|
|
4443
|
+
} | {
|
|
4444
|
+
$gt: string | number;
|
|
4445
|
+
} | {
|
|
4446
|
+
$gte: string | number;
|
|
4447
|
+
} | {
|
|
4448
|
+
neq: string | number | null[] | number[];
|
|
4449
|
+
} | {
|
|
4450
|
+
nne: string | number | null[] | number[];
|
|
4451
|
+
} | {
|
|
4452
|
+
lt: string | number;
|
|
4453
|
+
} | {
|
|
4454
|
+
lte: string | number;
|
|
4455
|
+
} | {
|
|
4456
|
+
gt: string | number;
|
|
4457
|
+
} | {
|
|
4458
|
+
gte: string | number;
|
|
4459
|
+
} | {
|
|
4460
|
+
$range: string | number;
|
|
4461
|
+
} | {
|
|
4462
|
+
range: string | number;
|
|
4463
|
+
})[];
|
|
4464
|
+
} | {
|
|
4465
|
+
and: ({
|
|
4466
|
+
$eq: string | number | string[] | null[];
|
|
4467
|
+
} | {
|
|
4468
|
+
$ne: string | number | string[] | null[];
|
|
4469
|
+
} | {
|
|
4470
|
+
$contains: string | string[];
|
|
4471
|
+
} | {
|
|
4472
|
+
$notcontains: string | string[];
|
|
4473
|
+
} | {
|
|
4474
|
+
$empty: boolean;
|
|
4475
|
+
} | {
|
|
4476
|
+
eq: string | number | string[] | null[];
|
|
4477
|
+
} | {
|
|
4478
|
+
ne: string | number | string[] | null[];
|
|
4479
|
+
} | {
|
|
4480
|
+
contains: string | string[];
|
|
4481
|
+
} | {
|
|
4482
|
+
notcontains: string | string[];
|
|
4483
|
+
} | {
|
|
4484
|
+
empty: boolean;
|
|
4485
|
+
} | {
|
|
4486
|
+
$neq: string | number | null[] | number[];
|
|
4487
|
+
} | {
|
|
4488
|
+
$nne: string | number | null[] | number[];
|
|
4489
|
+
} | {
|
|
4490
|
+
$lt: string | number;
|
|
4491
|
+
} | {
|
|
4492
|
+
$lte: string | number;
|
|
4493
|
+
} | {
|
|
4494
|
+
$gt: string | number;
|
|
4495
|
+
} | {
|
|
4496
|
+
$gte: string | number;
|
|
4497
|
+
} | {
|
|
4498
|
+
neq: string | number | null[] | number[];
|
|
4499
|
+
} | {
|
|
4500
|
+
nne: string | number | null[] | number[];
|
|
4501
|
+
} | {
|
|
4502
|
+
lt: string | number;
|
|
4503
|
+
} | {
|
|
4504
|
+
lte: string | number;
|
|
4505
|
+
} | {
|
|
4506
|
+
gt: string | number;
|
|
4507
|
+
} | {
|
|
4508
|
+
gte: string | number;
|
|
4509
|
+
} | {
|
|
4510
|
+
$range: string | number;
|
|
4511
|
+
} | {
|
|
4512
|
+
range: string | number;
|
|
4513
|
+
})[];
|
|
4514
|
+
};
|
|
4515
|
+
locale?: {
|
|
4516
|
+
or: ({
|
|
4517
|
+
$eq: string | number | string[] | null[];
|
|
4518
|
+
} | {
|
|
4519
|
+
$ne: string | number | string[] | null[];
|
|
4520
|
+
} | {
|
|
4521
|
+
$contains: string | string[];
|
|
4522
|
+
} | {
|
|
4523
|
+
$notcontains: string | string[];
|
|
4524
|
+
} | {
|
|
4525
|
+
$empty: boolean;
|
|
4526
|
+
} | {
|
|
4527
|
+
eq: string | number | string[] | null[];
|
|
4528
|
+
} | {
|
|
4529
|
+
ne: string | number | string[] | null[];
|
|
4530
|
+
} | {
|
|
4531
|
+
contains: string | string[];
|
|
4532
|
+
} | {
|
|
4533
|
+
notcontains: string | string[];
|
|
4534
|
+
} | {
|
|
4535
|
+
empty: boolean;
|
|
4536
|
+
} | {
|
|
4537
|
+
$neq: string | number | null[] | number[];
|
|
4538
|
+
} | {
|
|
4539
|
+
$nne: string | number | null[] | number[];
|
|
4540
|
+
} | {
|
|
4541
|
+
$lt: string | number;
|
|
4542
|
+
} | {
|
|
4543
|
+
$lte: string | number;
|
|
4544
|
+
} | {
|
|
4545
|
+
$gt: string | number;
|
|
4546
|
+
} | {
|
|
4547
|
+
$gte: string | number;
|
|
4548
|
+
} | {
|
|
4549
|
+
neq: string | number | null[] | number[];
|
|
4550
|
+
} | {
|
|
4551
|
+
nne: string | number | null[] | number[];
|
|
4552
|
+
} | {
|
|
4553
|
+
lt: string | number;
|
|
4554
|
+
} | {
|
|
4555
|
+
lte: string | number;
|
|
4556
|
+
} | {
|
|
4557
|
+
gt: string | number;
|
|
4558
|
+
} | {
|
|
4559
|
+
gte: string | number;
|
|
4560
|
+
} | {
|
|
4561
|
+
$range: string | number;
|
|
4562
|
+
} | {
|
|
4563
|
+
range: string | number;
|
|
4564
|
+
})[];
|
|
4565
|
+
} | {
|
|
4566
|
+
and: ({
|
|
4567
|
+
$eq: string | number | string[] | null[];
|
|
4568
|
+
} | {
|
|
4569
|
+
$ne: string | number | string[] | null[];
|
|
4570
|
+
} | {
|
|
4571
|
+
$contains: string | string[];
|
|
4572
|
+
} | {
|
|
4573
|
+
$notcontains: string | string[];
|
|
4574
|
+
} | {
|
|
4575
|
+
$empty: boolean;
|
|
4576
|
+
} | {
|
|
4577
|
+
eq: string | number | string[] | null[];
|
|
4578
|
+
} | {
|
|
4579
|
+
ne: string | number | string[] | null[];
|
|
4580
|
+
} | {
|
|
4581
|
+
contains: string | string[];
|
|
4582
|
+
} | {
|
|
4583
|
+
notcontains: string | string[];
|
|
4584
|
+
} | {
|
|
4585
|
+
empty: boolean;
|
|
4586
|
+
} | {
|
|
4587
|
+
$neq: string | number | null[] | number[];
|
|
4588
|
+
} | {
|
|
4589
|
+
$nne: string | number | null[] | number[];
|
|
4590
|
+
} | {
|
|
4591
|
+
$lt: string | number;
|
|
4592
|
+
} | {
|
|
4593
|
+
$lte: string | number;
|
|
4594
|
+
} | {
|
|
4595
|
+
$gt: string | number;
|
|
4596
|
+
} | {
|
|
4597
|
+
$gte: string | number;
|
|
4598
|
+
} | {
|
|
4599
|
+
neq: string | number | null[] | number[];
|
|
4600
|
+
} | {
|
|
4601
|
+
nne: string | number | null[] | number[];
|
|
4602
|
+
} | {
|
|
4603
|
+
lt: string | number;
|
|
4604
|
+
} | {
|
|
4605
|
+
lte: string | number;
|
|
4606
|
+
} | {
|
|
4607
|
+
gt: string | number;
|
|
4608
|
+
} | {
|
|
4609
|
+
gte: string | number;
|
|
4610
|
+
} | {
|
|
4611
|
+
$range: string | number;
|
|
4612
|
+
} | {
|
|
4613
|
+
range: string | number;
|
|
4614
|
+
})[];
|
|
4615
|
+
};
|
|
4616
|
+
};
|
|
4617
|
+
group?: {
|
|
4618
|
+
field: string;
|
|
4619
|
+
matching?: {
|
|
4620
|
+
mode: "onePerValue";
|
|
4621
|
+
} | {
|
|
4622
|
+
mode: "oneValueOnly";
|
|
4623
|
+
valueIndex: number;
|
|
4624
|
+
};
|
|
4625
|
+
};
|
|
4626
|
+
limit?: number;
|
|
4627
|
+
select?: string[];
|
|
4628
|
+
};
|
|
4629
|
+
export declare type DecathlonProductFallbackFetcherFetchOpts_Without_DatasourceId = {
|
|
4630
|
+
query: string;
|
|
4631
|
+
geo?: {
|
|
4632
|
+
radius: number;
|
|
4633
|
+
center: (number | number)[];
|
|
4634
|
+
};
|
|
4635
|
+
sort?: {
|
|
4636
|
+
by: string;
|
|
4637
|
+
order: "desc" | "asc";
|
|
4638
|
+
};
|
|
4639
|
+
filters?: {
|
|
4640
|
+
datetime?: {
|
|
4641
|
+
or: ({
|
|
4642
|
+
$eq: string | number | string[] | null[];
|
|
4643
|
+
} | {
|
|
4644
|
+
$ne: string | number | string[] | null[];
|
|
4645
|
+
} | {
|
|
4646
|
+
$contains: string | string[];
|
|
4647
|
+
} | {
|
|
4648
|
+
$notcontains: string | string[];
|
|
4649
|
+
} | {
|
|
4650
|
+
$empty: boolean;
|
|
4651
|
+
} | {
|
|
4652
|
+
eq: string | number | string[] | null[];
|
|
4653
|
+
} | {
|
|
4654
|
+
ne: string | number | string[] | null[];
|
|
4655
|
+
} | {
|
|
4656
|
+
contains: string | string[];
|
|
4657
|
+
} | {
|
|
4658
|
+
notcontains: string | string[];
|
|
4659
|
+
} | {
|
|
4660
|
+
empty: boolean;
|
|
4661
|
+
} | {
|
|
4662
|
+
$neq: string | number | null[] | number[];
|
|
4663
|
+
} | {
|
|
4664
|
+
$nne: string | number | null[] | number[];
|
|
4665
|
+
} | {
|
|
4666
|
+
$lt: string | number;
|
|
4667
|
+
} | {
|
|
4668
|
+
$lte: string | number;
|
|
4669
|
+
} | {
|
|
4670
|
+
$gt: string | number;
|
|
4671
|
+
} | {
|
|
4672
|
+
$gte: string | number;
|
|
4673
|
+
} | {
|
|
4674
|
+
neq: string | number | null[] | number[];
|
|
4675
|
+
} | {
|
|
4676
|
+
nne: string | number | null[] | number[];
|
|
4677
|
+
} | {
|
|
4678
|
+
lt: string | number;
|
|
4679
|
+
} | {
|
|
4680
|
+
lte: string | number;
|
|
4681
|
+
} | {
|
|
4682
|
+
gt: string | number;
|
|
4683
|
+
} | {
|
|
4684
|
+
gte: string | number;
|
|
4685
|
+
} | {
|
|
4686
|
+
$range: string | number;
|
|
4687
|
+
} | {
|
|
4688
|
+
range: string | number;
|
|
4689
|
+
})[];
|
|
4690
|
+
} | {
|
|
4691
|
+
and: ({
|
|
4692
|
+
$eq: string | number | string[] | null[];
|
|
4693
|
+
} | {
|
|
4694
|
+
$ne: string | number | string[] | null[];
|
|
4695
|
+
} | {
|
|
4696
|
+
$contains: string | string[];
|
|
4697
|
+
} | {
|
|
4698
|
+
$notcontains: string | string[];
|
|
4699
|
+
} | {
|
|
4700
|
+
$empty: boolean;
|
|
4701
|
+
} | {
|
|
4702
|
+
eq: string | number | string[] | null[];
|
|
4703
|
+
} | {
|
|
4704
|
+
ne: string | number | string[] | null[];
|
|
4705
|
+
} | {
|
|
4706
|
+
contains: string | string[];
|
|
4707
|
+
} | {
|
|
4708
|
+
notcontains: string | string[];
|
|
4709
|
+
} | {
|
|
4710
|
+
empty: boolean;
|
|
4711
|
+
} | {
|
|
4712
|
+
$neq: string | number | null[] | number[];
|
|
4713
|
+
} | {
|
|
4714
|
+
$nne: string | number | null[] | number[];
|
|
4715
|
+
} | {
|
|
4716
|
+
$lt: string | number;
|
|
4717
|
+
} | {
|
|
4718
|
+
$lte: string | number;
|
|
4719
|
+
} | {
|
|
4720
|
+
$gt: string | number;
|
|
4721
|
+
} | {
|
|
4722
|
+
$gte: string | number;
|
|
4723
|
+
} | {
|
|
4724
|
+
neq: string | number | null[] | number[];
|
|
4725
|
+
} | {
|
|
4726
|
+
nne: string | number | null[] | number[];
|
|
4727
|
+
} | {
|
|
4728
|
+
lt: string | number;
|
|
4729
|
+
} | {
|
|
4730
|
+
lte: string | number;
|
|
4731
|
+
} | {
|
|
4732
|
+
gt: string | number;
|
|
4733
|
+
} | {
|
|
4734
|
+
gte: string | number;
|
|
4735
|
+
} | {
|
|
4736
|
+
$range: string | number;
|
|
4737
|
+
} | {
|
|
4738
|
+
range: string | number;
|
|
4739
|
+
})[];
|
|
4740
|
+
};
|
|
4741
|
+
reference_id?: {
|
|
4742
|
+
or: ({
|
|
4743
|
+
$eq: string | number | string[] | null[];
|
|
4744
|
+
} | {
|
|
4745
|
+
$ne: string | number | string[] | null[];
|
|
4746
|
+
} | {
|
|
4747
|
+
$contains: string | string[];
|
|
4748
|
+
} | {
|
|
4749
|
+
$notcontains: string | string[];
|
|
4750
|
+
} | {
|
|
4751
|
+
$empty: boolean;
|
|
4752
|
+
} | {
|
|
4753
|
+
eq: string | number | string[] | null[];
|
|
4754
|
+
} | {
|
|
4755
|
+
ne: string | number | string[] | null[];
|
|
4756
|
+
} | {
|
|
4757
|
+
contains: string | string[];
|
|
4758
|
+
} | {
|
|
4759
|
+
notcontains: string | string[];
|
|
4760
|
+
} | {
|
|
4761
|
+
empty: boolean;
|
|
4762
|
+
} | {
|
|
4763
|
+
$neq: string | number | null[] | number[];
|
|
4764
|
+
} | {
|
|
4765
|
+
$nne: string | number | null[] | number[];
|
|
4766
|
+
} | {
|
|
4767
|
+
$lt: string | number;
|
|
4768
|
+
} | {
|
|
4769
|
+
$lte: string | number;
|
|
4770
|
+
} | {
|
|
4771
|
+
$gt: string | number;
|
|
4772
|
+
} | {
|
|
4773
|
+
$gte: string | number;
|
|
4774
|
+
} | {
|
|
4775
|
+
neq: string | number | null[] | number[];
|
|
4776
|
+
} | {
|
|
4777
|
+
nne: string | number | null[] | number[];
|
|
4778
|
+
} | {
|
|
4779
|
+
lt: string | number;
|
|
4780
|
+
} | {
|
|
4781
|
+
lte: string | number;
|
|
4782
|
+
} | {
|
|
4783
|
+
gt: string | number;
|
|
4784
|
+
} | {
|
|
4785
|
+
gte: string | number;
|
|
4786
|
+
} | {
|
|
4787
|
+
$range: string | number;
|
|
4788
|
+
} | {
|
|
4789
|
+
range: string | number;
|
|
4790
|
+
})[];
|
|
4791
|
+
} | {
|
|
4792
|
+
and: ({
|
|
4793
|
+
$eq: string | number | string[] | null[];
|
|
4794
|
+
} | {
|
|
4795
|
+
$ne: string | number | string[] | null[];
|
|
4796
|
+
} | {
|
|
4797
|
+
$contains: string | string[];
|
|
4798
|
+
} | {
|
|
4799
|
+
$notcontains: string | string[];
|
|
4800
|
+
} | {
|
|
4801
|
+
$empty: boolean;
|
|
4802
|
+
} | {
|
|
4803
|
+
eq: string | number | string[] | null[];
|
|
4804
|
+
} | {
|
|
4805
|
+
ne: string | number | string[] | null[];
|
|
4806
|
+
} | {
|
|
4807
|
+
contains: string | string[];
|
|
4808
|
+
} | {
|
|
4809
|
+
notcontains: string | string[];
|
|
4810
|
+
} | {
|
|
4811
|
+
empty: boolean;
|
|
4812
|
+
} | {
|
|
4813
|
+
$neq: string | number | null[] | number[];
|
|
4814
|
+
} | {
|
|
4815
|
+
$nne: string | number | null[] | number[];
|
|
4816
|
+
} | {
|
|
4817
|
+
$lt: string | number;
|
|
4818
|
+
} | {
|
|
4819
|
+
$lte: string | number;
|
|
4820
|
+
} | {
|
|
4821
|
+
$gt: string | number;
|
|
4822
|
+
} | {
|
|
4823
|
+
$gte: string | number;
|
|
4824
|
+
} | {
|
|
4825
|
+
neq: string | number | null[] | number[];
|
|
4826
|
+
} | {
|
|
4827
|
+
nne: string | number | null[] | number[];
|
|
4828
|
+
} | {
|
|
4829
|
+
lt: string | number;
|
|
4830
|
+
} | {
|
|
4831
|
+
lte: string | number;
|
|
4832
|
+
} | {
|
|
4833
|
+
gt: string | number;
|
|
4834
|
+
} | {
|
|
4835
|
+
gte: string | number;
|
|
4836
|
+
} | {
|
|
4837
|
+
$range: string | number;
|
|
4838
|
+
} | {
|
|
4839
|
+
range: string | number;
|
|
4840
|
+
})[];
|
|
4841
|
+
};
|
|
4842
|
+
product_id?: {
|
|
4843
|
+
or: ({
|
|
4844
|
+
$eq: string | number | string[] | null[];
|
|
4845
|
+
} | {
|
|
4846
|
+
$ne: string | number | string[] | null[];
|
|
4847
|
+
} | {
|
|
4848
|
+
$contains: string | string[];
|
|
4849
|
+
} | {
|
|
4850
|
+
$notcontains: string | string[];
|
|
4851
|
+
} | {
|
|
4852
|
+
$empty: boolean;
|
|
4853
|
+
} | {
|
|
4854
|
+
eq: string | number | string[] | null[];
|
|
4855
|
+
} | {
|
|
4856
|
+
ne: string | number | string[] | null[];
|
|
4857
|
+
} | {
|
|
4858
|
+
contains: string | string[];
|
|
4859
|
+
} | {
|
|
4860
|
+
notcontains: string | string[];
|
|
4861
|
+
} | {
|
|
4862
|
+
empty: boolean;
|
|
4863
|
+
} | {
|
|
4864
|
+
$neq: string | number | null[] | number[];
|
|
4865
|
+
} | {
|
|
4866
|
+
$nne: string | number | null[] | number[];
|
|
4867
|
+
} | {
|
|
4868
|
+
$lt: string | number;
|
|
4869
|
+
} | {
|
|
4870
|
+
$lte: string | number;
|
|
4871
|
+
} | {
|
|
4872
|
+
$gt: string | number;
|
|
4873
|
+
} | {
|
|
4874
|
+
$gte: string | number;
|
|
4875
|
+
} | {
|
|
4876
|
+
neq: string | number | null[] | number[];
|
|
4877
|
+
} | {
|
|
4878
|
+
nne: string | number | null[] | number[];
|
|
4879
|
+
} | {
|
|
4880
|
+
lt: string | number;
|
|
4881
|
+
} | {
|
|
4882
|
+
lte: string | number;
|
|
4883
|
+
} | {
|
|
4884
|
+
gt: string | number;
|
|
4885
|
+
} | {
|
|
4886
|
+
gte: string | number;
|
|
4887
|
+
} | {
|
|
4888
|
+
$range: string | number;
|
|
4889
|
+
} | {
|
|
4890
|
+
range: string | number;
|
|
4891
|
+
})[];
|
|
4892
|
+
} | {
|
|
4893
|
+
and: ({
|
|
4894
|
+
$eq: string | number | string[] | null[];
|
|
4895
|
+
} | {
|
|
4896
|
+
$ne: string | number | string[] | null[];
|
|
4897
|
+
} | {
|
|
4898
|
+
$contains: string | string[];
|
|
4899
|
+
} | {
|
|
4900
|
+
$notcontains: string | string[];
|
|
4901
|
+
} | {
|
|
4902
|
+
$empty: boolean;
|
|
4903
|
+
} | {
|
|
4904
|
+
eq: string | number | string[] | null[];
|
|
4905
|
+
} | {
|
|
4906
|
+
ne: string | number | string[] | null[];
|
|
4907
|
+
} | {
|
|
4908
|
+
contains: string | string[];
|
|
4909
|
+
} | {
|
|
4910
|
+
notcontains: string | string[];
|
|
4911
|
+
} | {
|
|
4912
|
+
empty: boolean;
|
|
4913
|
+
} | {
|
|
4914
|
+
$neq: string | number | null[] | number[];
|
|
4915
|
+
} | {
|
|
4916
|
+
$nne: string | number | null[] | number[];
|
|
4917
|
+
} | {
|
|
4918
|
+
$lt: string | number;
|
|
4919
|
+
} | {
|
|
4920
|
+
$lte: string | number;
|
|
4921
|
+
} | {
|
|
4922
|
+
$gt: string | number;
|
|
4923
|
+
} | {
|
|
4924
|
+
$gte: string | number;
|
|
4925
|
+
} | {
|
|
4926
|
+
neq: string | number | null[] | number[];
|
|
4927
|
+
} | {
|
|
4928
|
+
nne: string | number | null[] | number[];
|
|
4929
|
+
} | {
|
|
4930
|
+
lt: string | number;
|
|
4931
|
+
} | {
|
|
4932
|
+
lte: string | number;
|
|
4933
|
+
} | {
|
|
4934
|
+
gt: string | number;
|
|
4935
|
+
} | {
|
|
4936
|
+
gte: string | number;
|
|
4937
|
+
} | {
|
|
4938
|
+
$range: string | number;
|
|
4939
|
+
} | {
|
|
4940
|
+
range: string | number;
|
|
4941
|
+
})[];
|
|
4942
|
+
};
|
|
4943
|
+
locale?: {
|
|
4944
|
+
or: ({
|
|
4945
|
+
$eq: string | number | string[] | null[];
|
|
4946
|
+
} | {
|
|
4947
|
+
$ne: string | number | string[] | null[];
|
|
4948
|
+
} | {
|
|
4949
|
+
$contains: string | string[];
|
|
4950
|
+
} | {
|
|
4951
|
+
$notcontains: string | string[];
|
|
4952
|
+
} | {
|
|
4953
|
+
$empty: boolean;
|
|
4954
|
+
} | {
|
|
4955
|
+
eq: string | number | string[] | null[];
|
|
4956
|
+
} | {
|
|
4957
|
+
ne: string | number | string[] | null[];
|
|
4958
|
+
} | {
|
|
4959
|
+
contains: string | string[];
|
|
4960
|
+
} | {
|
|
4961
|
+
notcontains: string | string[];
|
|
4962
|
+
} | {
|
|
4963
|
+
empty: boolean;
|
|
4964
|
+
} | {
|
|
4965
|
+
$neq: string | number | null[] | number[];
|
|
4966
|
+
} | {
|
|
4967
|
+
$nne: string | number | null[] | number[];
|
|
4968
|
+
} | {
|
|
4969
|
+
$lt: string | number;
|
|
4970
|
+
} | {
|
|
4971
|
+
$lte: string | number;
|
|
4972
|
+
} | {
|
|
4973
|
+
$gt: string | number;
|
|
4974
|
+
} | {
|
|
4975
|
+
$gte: string | number;
|
|
4976
|
+
} | {
|
|
4977
|
+
neq: string | number | null[] | number[];
|
|
4978
|
+
} | {
|
|
4979
|
+
nne: string | number | null[] | number[];
|
|
4980
|
+
} | {
|
|
4981
|
+
lt: string | number;
|
|
4982
|
+
} | {
|
|
4983
|
+
lte: string | number;
|
|
4984
|
+
} | {
|
|
4985
|
+
gt: string | number;
|
|
4986
|
+
} | {
|
|
4987
|
+
gte: string | number;
|
|
4988
|
+
} | {
|
|
4989
|
+
$range: string | number;
|
|
4990
|
+
} | {
|
|
4991
|
+
range: string | number;
|
|
4992
|
+
})[];
|
|
4993
|
+
} | {
|
|
4994
|
+
and: ({
|
|
4995
|
+
$eq: string | number | string[] | null[];
|
|
4996
|
+
} | {
|
|
4997
|
+
$ne: string | number | string[] | null[];
|
|
4998
|
+
} | {
|
|
4999
|
+
$contains: string | string[];
|
|
5000
|
+
} | {
|
|
5001
|
+
$notcontains: string | string[];
|
|
5002
|
+
} | {
|
|
5003
|
+
$empty: boolean;
|
|
5004
|
+
} | {
|
|
5005
|
+
eq: string | number | string[] | null[];
|
|
5006
|
+
} | {
|
|
5007
|
+
ne: string | number | string[] | null[];
|
|
5008
|
+
} | {
|
|
5009
|
+
contains: string | string[];
|
|
5010
|
+
} | {
|
|
5011
|
+
notcontains: string | string[];
|
|
5012
|
+
} | {
|
|
5013
|
+
empty: boolean;
|
|
5014
|
+
} | {
|
|
5015
|
+
$neq: string | number | null[] | number[];
|
|
5016
|
+
} | {
|
|
5017
|
+
$nne: string | number | null[] | number[];
|
|
5018
|
+
} | {
|
|
5019
|
+
$lt: string | number;
|
|
5020
|
+
} | {
|
|
5021
|
+
$lte: string | number;
|
|
5022
|
+
} | {
|
|
5023
|
+
$gt: string | number;
|
|
5024
|
+
} | {
|
|
5025
|
+
$gte: string | number;
|
|
5026
|
+
} | {
|
|
5027
|
+
neq: string | number | null[] | number[];
|
|
5028
|
+
} | {
|
|
5029
|
+
nne: string | number | null[] | number[];
|
|
5030
|
+
} | {
|
|
5031
|
+
lt: string | number;
|
|
5032
|
+
} | {
|
|
5033
|
+
lte: string | number;
|
|
5034
|
+
} | {
|
|
5035
|
+
gt: string | number;
|
|
5036
|
+
} | {
|
|
5037
|
+
gte: string | number;
|
|
5038
|
+
} | {
|
|
5039
|
+
$range: string | number;
|
|
5040
|
+
} | {
|
|
5041
|
+
range: string | number;
|
|
5042
|
+
})[];
|
|
5043
|
+
};
|
|
5044
|
+
};
|
|
3312
5045
|
group?: {
|
|
3313
|
-
|
|
5046
|
+
field: string;
|
|
5047
|
+
matching?: {
|
|
5048
|
+
mode: "onePerValue";
|
|
5049
|
+
} | {
|
|
5050
|
+
mode: "oneValueOnly";
|
|
5051
|
+
valueIndex: number;
|
|
5052
|
+
};
|
|
3314
5053
|
};
|
|
3315
5054
|
limit?: number;
|
|
3316
5055
|
select?: string[];
|
|
3317
5056
|
};
|
|
3318
|
-
export declare type
|
|
3319
|
-
query: string;
|
|
3320
|
-
group?: boolean;
|
|
3321
|
-
limit: number;
|
|
3322
|
-
excludeQuery?: string;
|
|
3323
|
-
userIds: string[];
|
|
3324
|
-
date: {
|
|
3325
|
-
start: string;
|
|
3326
|
-
end: string;
|
|
3327
|
-
} | {
|
|
3328
|
-
end: string;
|
|
3329
|
-
} | {
|
|
3330
|
-
start: string;
|
|
3331
|
-
} | {
|
|
3332
|
-
duration: number;
|
|
3333
|
-
};
|
|
3334
|
-
excludeDate?: {
|
|
3335
|
-
start: string;
|
|
3336
|
-
end: string;
|
|
3337
|
-
} | {
|
|
3338
|
-
end: string;
|
|
3339
|
-
} | {
|
|
3340
|
-
start: string;
|
|
3341
|
-
} | {
|
|
3342
|
-
duration: number;
|
|
3343
|
-
};
|
|
3344
|
-
};
|
|
3345
|
-
export declare type ProxyFetcherFetchOpts_Without_DatasourceId = {
|
|
3346
|
-
query: string;
|
|
3347
|
-
sort?: {
|
|
3348
|
-
by: string;
|
|
3349
|
-
order: "desc" | "asc";
|
|
3350
|
-
};
|
|
3351
|
-
};
|
|
3352
|
-
export declare type CarrefourStoresWithDriveSlotsFetcherFetchOpts_Without_DatasourceId = {
|
|
3353
|
-
query: string;
|
|
3354
|
-
};
|
|
3355
|
-
export declare type BestWesternHotelsFetcherFetchOpts_Without_DatasourceId = {
|
|
3356
|
-
query: string;
|
|
3357
|
-
geo?: {
|
|
3358
|
-
radius: number;
|
|
3359
|
-
center: (number | number)[];
|
|
3360
|
-
};
|
|
3361
|
-
sort?: {
|
|
3362
|
-
by: string;
|
|
3363
|
-
order: "desc" | "asc";
|
|
3364
|
-
};
|
|
3365
|
-
};
|
|
3366
|
-
export declare type FdjBetsFetcherFetchOpts_Without_DatasourceId = {
|
|
3367
|
-
query: string;
|
|
3368
|
-
};
|
|
3369
|
-
export declare type SarenzaSizesFetcherFetchOpts_Without_DatasourceId = {
|
|
3370
|
-
query: string;
|
|
3371
|
-
sort?: {
|
|
3372
|
-
by: string;
|
|
3373
|
-
order: "desc" | "asc";
|
|
3374
|
-
};
|
|
3375
|
-
};
|
|
3376
|
-
export declare type RenaultPricesFetcherFetchOpts_Without_DatasourceId = {
|
|
5057
|
+
export declare type GenericUnwindRowsFetcherFetchOpts_Without_DatasourceId = {
|
|
3377
5058
|
query: string;
|
|
3378
5059
|
geo?: {
|
|
3379
5060
|
radius: number;
|
|
@@ -3383,17 +5064,6 @@ export declare type RenaultPricesFetcherFetchOpts_Without_DatasourceId = {
|
|
|
3383
5064
|
by: string;
|
|
3384
5065
|
order: "desc" | "asc";
|
|
3385
5066
|
};
|
|
3386
|
-
group?: {
|
|
3387
|
-
field: string;
|
|
3388
|
-
matching?: {
|
|
3389
|
-
mode: "onePerValue";
|
|
3390
|
-
} | {
|
|
3391
|
-
mode: "oneValueOnly";
|
|
3392
|
-
valueIndex: number;
|
|
3393
|
-
};
|
|
3394
|
-
};
|
|
3395
|
-
limit?: number;
|
|
3396
|
-
select?: string[];
|
|
3397
5067
|
filters?: {
|
|
3398
5068
|
datetime?: {
|
|
3399
5069
|
or: ({
|
|
@@ -3800,17 +5470,6 @@ export declare type RenaultPricesFetcherFetchOpts_Without_DatasourceId = {
|
|
|
3800
5470
|
})[];
|
|
3801
5471
|
};
|
|
3802
5472
|
};
|
|
3803
|
-
};
|
|
3804
|
-
export declare type DecathlonProductFallbackFetcherFetchOpts_Without_DatasourceId = {
|
|
3805
|
-
query: string;
|
|
3806
|
-
geo?: {
|
|
3807
|
-
radius: number;
|
|
3808
|
-
center: (number | number)[];
|
|
3809
|
-
};
|
|
3810
|
-
sort?: {
|
|
3811
|
-
by: string;
|
|
3812
|
-
order: "desc" | "asc";
|
|
3813
|
-
};
|
|
3814
5473
|
group?: {
|
|
3815
5474
|
field: string;
|
|
3816
5475
|
matching?: {
|
|
@@ -3822,6 +5481,25 @@ export declare type DecathlonProductFallbackFetcherFetchOpts_Without_DatasourceI
|
|
|
3822
5481
|
};
|
|
3823
5482
|
limit?: number;
|
|
3824
5483
|
select?: string[];
|
|
5484
|
+
};
|
|
5485
|
+
export declare type WorkflowEventsFetcherFetchOpts_Without_DatasourceId = {
|
|
5486
|
+
query: string;
|
|
5487
|
+
sort?: {
|
|
5488
|
+
by: string;
|
|
5489
|
+
order: "desc" | "asc";
|
|
5490
|
+
};
|
|
5491
|
+
group?: {
|
|
5492
|
+
by: string;
|
|
5493
|
+
};
|
|
5494
|
+
limit?: number;
|
|
5495
|
+
select?: string[];
|
|
5496
|
+
};
|
|
5497
|
+
export declare type ExpiredProductLifetimeFetcherFetchOpts_Without_DatasourceId = {
|
|
5498
|
+
query: string;
|
|
5499
|
+
sort?: {
|
|
5500
|
+
by: string;
|
|
5501
|
+
order: "desc" | "asc";
|
|
5502
|
+
};
|
|
3825
5503
|
filters?: {
|
|
3826
5504
|
datetime?: {
|
|
3827
5505
|
or: ({
|
|
@@ -4229,27 +5907,12 @@ export declare type DecathlonProductFallbackFetcherFetchOpts_Without_DatasourceI
|
|
|
4229
5907
|
};
|
|
4230
5908
|
};
|
|
4231
5909
|
};
|
|
4232
|
-
export declare type
|
|
4233
|
-
query
|
|
4234
|
-
geo?: {
|
|
4235
|
-
radius: number;
|
|
4236
|
-
center: (number | number)[];
|
|
4237
|
-
};
|
|
5910
|
+
export declare type PerUserFetcherFetchOpts_Without_DatasourceId = {
|
|
5911
|
+
query?: string;
|
|
4238
5912
|
sort?: {
|
|
4239
5913
|
by: string;
|
|
4240
5914
|
order: "desc" | "asc";
|
|
4241
5915
|
};
|
|
4242
|
-
group?: {
|
|
4243
|
-
field: string;
|
|
4244
|
-
matching?: {
|
|
4245
|
-
mode: "onePerValue";
|
|
4246
|
-
} | {
|
|
4247
|
-
mode: "oneValueOnly";
|
|
4248
|
-
valueIndex: number;
|
|
4249
|
-
};
|
|
4250
|
-
};
|
|
4251
|
-
limit?: number;
|
|
4252
|
-
select?: string[];
|
|
4253
5916
|
filters?: {
|
|
4254
5917
|
datetime?: {
|
|
4255
5918
|
or: ({
|
|
@@ -4656,43 +6319,153 @@ export declare type GenericUnwindRowsFetcherFetchOpts_Without_DatasourceId = {
|
|
|
4656
6319
|
})[];
|
|
4657
6320
|
};
|
|
4658
6321
|
};
|
|
6322
|
+
group?: {
|
|
6323
|
+
field: string;
|
|
6324
|
+
matching?: {
|
|
6325
|
+
mode: "onePerValue";
|
|
6326
|
+
} | {
|
|
6327
|
+
mode: "oneValueOnly";
|
|
6328
|
+
valueIndex: number;
|
|
6329
|
+
};
|
|
6330
|
+
};
|
|
6331
|
+
limit?: number;
|
|
6332
|
+
select?: string[];
|
|
6333
|
+
user?: string;
|
|
6334
|
+
};
|
|
6335
|
+
export declare type GenericProxyLockFetcherFetchOpts_Without_DatasourceId = {
|
|
6336
|
+
query: string;
|
|
6337
|
+
sort?: {
|
|
6338
|
+
by: string;
|
|
6339
|
+
order: "desc" | "asc";
|
|
6340
|
+
};
|
|
6341
|
+
};
|
|
6342
|
+
export declare type InternalResponse_entries_Array_distance_Union_undefined_number_rlvt_lat_Union_undefined_number_rlvt_lng_Union_undefined_number_count_number = {
|
|
6343
|
+
program: string;
|
|
6344
|
+
version: string;
|
|
6345
|
+
datetime: string;
|
|
6346
|
+
status: string;
|
|
6347
|
+
code?: number;
|
|
6348
|
+
message: string;
|
|
6349
|
+
data: {
|
|
6350
|
+
entries: {
|
|
6351
|
+
distance?: number;
|
|
6352
|
+
rlvt_lat?: number;
|
|
6353
|
+
rlvt_lng?: number;
|
|
6354
|
+
}[];
|
|
6355
|
+
count: number;
|
|
6356
|
+
};
|
|
6357
|
+
};
|
|
6358
|
+
export declare type WorkerFetcherQueryOpts = {
|
|
6359
|
+
datasourceId: string;
|
|
6360
|
+
query: string;
|
|
6361
|
+
sort?: {
|
|
6362
|
+
by: string;
|
|
6363
|
+
order: "desc" | "asc";
|
|
6364
|
+
};
|
|
6365
|
+
geo?: {
|
|
6366
|
+
radius: number;
|
|
6367
|
+
center: (number | number)[];
|
|
6368
|
+
};
|
|
4659
6369
|
};
|
|
4660
|
-
export declare type
|
|
6370
|
+
export declare type IngesterFetcherQueryOpts = {
|
|
6371
|
+
datasourceId: string;
|
|
4661
6372
|
query: string;
|
|
4662
6373
|
sort?: {
|
|
4663
6374
|
by: string;
|
|
4664
6375
|
order: "desc" | "asc";
|
|
4665
6376
|
};
|
|
4666
|
-
|
|
6377
|
+
};
|
|
6378
|
+
export declare type TrackingFetcherQueryOpts = {
|
|
6379
|
+
datasourceId: string;
|
|
6380
|
+
query: string;
|
|
6381
|
+
sort?: {
|
|
4667
6382
|
by: string;
|
|
6383
|
+
order: "desc" | "asc";
|
|
4668
6384
|
};
|
|
4669
|
-
limit?: number;
|
|
4670
|
-
select?: string[];
|
|
4671
6385
|
};
|
|
4672
|
-
export declare type
|
|
6386
|
+
export declare type ProxyFetcherQueryOpts = {
|
|
6387
|
+
sort?: {
|
|
6388
|
+
by: string;
|
|
6389
|
+
order: "desc" | "asc";
|
|
6390
|
+
};
|
|
6391
|
+
datasourceId: string;
|
|
6392
|
+
query: string;
|
|
6393
|
+
};
|
|
6394
|
+
export declare type CarrefourStoresWithDriveSlotsFetcherQueryOpts = {
|
|
6395
|
+
datasourceId: string;
|
|
6396
|
+
query: string;
|
|
6397
|
+
};
|
|
6398
|
+
export declare type BestWesternHotelsFetcherQueryOpts = {
|
|
6399
|
+
datasourceId: string;
|
|
6400
|
+
query: string;
|
|
6401
|
+
geo?: {
|
|
6402
|
+
radius: number;
|
|
6403
|
+
center: (number | number)[];
|
|
6404
|
+
};
|
|
6405
|
+
};
|
|
6406
|
+
export declare type FdjBetsFetcherQueryOpts = {
|
|
6407
|
+
datasourceId: string;
|
|
6408
|
+
query: string;
|
|
6409
|
+
};
|
|
6410
|
+
export declare type SarenzaSizesFetcherQueryOpts = {
|
|
6411
|
+
datasourceId: string;
|
|
4673
6412
|
query: string;
|
|
4674
6413
|
sort?: {
|
|
4675
6414
|
by: string;
|
|
4676
6415
|
order: "desc" | "asc";
|
|
4677
6416
|
};
|
|
4678
6417
|
};
|
|
4679
|
-
export declare type
|
|
4680
|
-
|
|
6418
|
+
export declare type RenaultPricesFetcherQueryOpts = {
|
|
6419
|
+
datasourceId: string;
|
|
6420
|
+
query: string;
|
|
4681
6421
|
sort?: {
|
|
4682
6422
|
by: string;
|
|
4683
6423
|
order: "desc" | "asc";
|
|
4684
6424
|
};
|
|
4685
|
-
|
|
4686
|
-
|
|
4687
|
-
|
|
4688
|
-
|
|
4689
|
-
|
|
4690
|
-
|
|
4691
|
-
|
|
4692
|
-
|
|
6425
|
+
geo?: {
|
|
6426
|
+
radius: number;
|
|
6427
|
+
center: (number | number)[];
|
|
6428
|
+
};
|
|
6429
|
+
};
|
|
6430
|
+
export declare type DecathlonProductFallbackFetcherQueryOpts = {
|
|
6431
|
+
datasourceId: string;
|
|
6432
|
+
query: string;
|
|
6433
|
+
sort?: {
|
|
6434
|
+
by: string;
|
|
6435
|
+
order: "desc" | "asc";
|
|
6436
|
+
};
|
|
6437
|
+
geo?: {
|
|
6438
|
+
radius: number;
|
|
6439
|
+
center: (number | number)[];
|
|
6440
|
+
};
|
|
6441
|
+
};
|
|
6442
|
+
export declare type GenericUnwindRowsFetcherQueryOpts = {
|
|
6443
|
+
datasourceId: string;
|
|
6444
|
+
query: string;
|
|
6445
|
+
sort?: {
|
|
6446
|
+
by: string;
|
|
6447
|
+
order: "desc" | "asc";
|
|
6448
|
+
};
|
|
6449
|
+
geo?: {
|
|
6450
|
+
radius: number;
|
|
6451
|
+
center: (number | number)[];
|
|
6452
|
+
};
|
|
6453
|
+
};
|
|
6454
|
+
export declare type WorkflowEventsFetcherQueryOpts = {
|
|
6455
|
+
datasourceId: string;
|
|
6456
|
+
query: string;
|
|
6457
|
+
sort?: {
|
|
6458
|
+
by: string;
|
|
6459
|
+
order: "desc" | "asc";
|
|
6460
|
+
};
|
|
6461
|
+
};
|
|
6462
|
+
export declare type ExpiredProductLifetimeFetcherQueryOpts = {
|
|
6463
|
+
datasourceId: string;
|
|
6464
|
+
query: string;
|
|
6465
|
+
sort?: {
|
|
6466
|
+
by: string;
|
|
6467
|
+
order: "desc" | "asc";
|
|
4693
6468
|
};
|
|
4694
|
-
limit?: number;
|
|
4695
|
-
select?: string[];
|
|
4696
6469
|
filters?: {
|
|
4697
6470
|
datetime?: {
|
|
4698
6471
|
or: ({
|
|
@@ -5099,142 +6872,6 @@ export declare type PerUserFetcherFetchOpts_Without_DatasourceId = {
|
|
|
5099
6872
|
})[];
|
|
5100
6873
|
};
|
|
5101
6874
|
};
|
|
5102
|
-
user?: string;
|
|
5103
|
-
};
|
|
5104
|
-
export declare type GenericProxyLockFetcherFetchOpts_Without_DatasourceId = {
|
|
5105
|
-
query: string;
|
|
5106
|
-
sort?: {
|
|
5107
|
-
by: string;
|
|
5108
|
-
order: "desc" | "asc";
|
|
5109
|
-
};
|
|
5110
|
-
};
|
|
5111
|
-
export declare type InternalResponse_entries_Array_distance_Union_undefined_number_rlvt_lat_Union_undefined_number_rlvt_lng_Union_undefined_number_count_number = {
|
|
5112
|
-
program: string;
|
|
5113
|
-
version: string;
|
|
5114
|
-
datetime: string;
|
|
5115
|
-
status: string;
|
|
5116
|
-
code?: number;
|
|
5117
|
-
message: string;
|
|
5118
|
-
data: {
|
|
5119
|
-
entries: {
|
|
5120
|
-
distance?: number;
|
|
5121
|
-
rlvt_lat?: number;
|
|
5122
|
-
rlvt_lng?: number;
|
|
5123
|
-
}[];
|
|
5124
|
-
count: number;
|
|
5125
|
-
};
|
|
5126
|
-
};
|
|
5127
|
-
export declare type WorkerFetcherQueryOpts = {
|
|
5128
|
-
datasourceId: string;
|
|
5129
|
-
query: string;
|
|
5130
|
-
sort?: {
|
|
5131
|
-
by: string;
|
|
5132
|
-
order: "desc" | "asc";
|
|
5133
|
-
};
|
|
5134
|
-
geo?: {
|
|
5135
|
-
radius: number;
|
|
5136
|
-
center: (number | number)[];
|
|
5137
|
-
};
|
|
5138
|
-
};
|
|
5139
|
-
export declare type IngesterFetcherQueryOpts = {
|
|
5140
|
-
datasourceId: string;
|
|
5141
|
-
query: string;
|
|
5142
|
-
sort?: {
|
|
5143
|
-
by: string;
|
|
5144
|
-
order: "desc" | "asc";
|
|
5145
|
-
};
|
|
5146
|
-
};
|
|
5147
|
-
export declare type TrackingFetcherQueryOpts = {
|
|
5148
|
-
datasourceId: string;
|
|
5149
|
-
query: string;
|
|
5150
|
-
sort?: {
|
|
5151
|
-
by: string;
|
|
5152
|
-
order: "desc" | "asc";
|
|
5153
|
-
};
|
|
5154
|
-
};
|
|
5155
|
-
export declare type ProxyFetcherQueryOpts = {
|
|
5156
|
-
sort?: {
|
|
5157
|
-
by: string;
|
|
5158
|
-
order: "desc" | "asc";
|
|
5159
|
-
};
|
|
5160
|
-
datasourceId: string;
|
|
5161
|
-
query: string;
|
|
5162
|
-
};
|
|
5163
|
-
export declare type CarrefourStoresWithDriveSlotsFetcherQueryOpts = {
|
|
5164
|
-
datasourceId: string;
|
|
5165
|
-
query: string;
|
|
5166
|
-
};
|
|
5167
|
-
export declare type BestWesternHotelsFetcherQueryOpts = {
|
|
5168
|
-
datasourceId: string;
|
|
5169
|
-
query: string;
|
|
5170
|
-
geo?: {
|
|
5171
|
-
radius: number;
|
|
5172
|
-
center: (number | number)[];
|
|
5173
|
-
};
|
|
5174
|
-
};
|
|
5175
|
-
export declare type FdjBetsFetcherQueryOpts = {
|
|
5176
|
-
datasourceId: string;
|
|
5177
|
-
query: string;
|
|
5178
|
-
};
|
|
5179
|
-
export declare type SarenzaSizesFetcherQueryOpts = {
|
|
5180
|
-
datasourceId: string;
|
|
5181
|
-
query: string;
|
|
5182
|
-
sort?: {
|
|
5183
|
-
by: string;
|
|
5184
|
-
order: "desc" | "asc";
|
|
5185
|
-
};
|
|
5186
|
-
};
|
|
5187
|
-
export declare type RenaultPricesFetcherQueryOpts = {
|
|
5188
|
-
datasourceId: string;
|
|
5189
|
-
query: string;
|
|
5190
|
-
sort?: {
|
|
5191
|
-
by: string;
|
|
5192
|
-
order: "desc" | "asc";
|
|
5193
|
-
};
|
|
5194
|
-
geo?: {
|
|
5195
|
-
radius: number;
|
|
5196
|
-
center: (number | number)[];
|
|
5197
|
-
};
|
|
5198
|
-
};
|
|
5199
|
-
export declare type DecathlonProductFallbackFetcherQueryOpts = {
|
|
5200
|
-
datasourceId: string;
|
|
5201
|
-
query: string;
|
|
5202
|
-
sort?: {
|
|
5203
|
-
by: string;
|
|
5204
|
-
order: "desc" | "asc";
|
|
5205
|
-
};
|
|
5206
|
-
geo?: {
|
|
5207
|
-
radius: number;
|
|
5208
|
-
center: (number | number)[];
|
|
5209
|
-
};
|
|
5210
|
-
};
|
|
5211
|
-
export declare type GenericUnwindRowsFetcherQueryOpts = {
|
|
5212
|
-
datasourceId: string;
|
|
5213
|
-
query: string;
|
|
5214
|
-
sort?: {
|
|
5215
|
-
by: string;
|
|
5216
|
-
order: "desc" | "asc";
|
|
5217
|
-
};
|
|
5218
|
-
geo?: {
|
|
5219
|
-
radius: number;
|
|
5220
|
-
center: (number | number)[];
|
|
5221
|
-
};
|
|
5222
|
-
};
|
|
5223
|
-
export declare type WorkflowEventsFetcherQueryOpts = {
|
|
5224
|
-
datasourceId: string;
|
|
5225
|
-
query: string;
|
|
5226
|
-
sort?: {
|
|
5227
|
-
by: string;
|
|
5228
|
-
order: "desc" | "asc";
|
|
5229
|
-
};
|
|
5230
|
-
};
|
|
5231
|
-
export declare type ExpiredProductLifetimeFetcherQueryOpts = {
|
|
5232
|
-
datasourceId: string;
|
|
5233
|
-
query: string;
|
|
5234
|
-
sort?: {
|
|
5235
|
-
by: string;
|
|
5236
|
-
order: "desc" | "asc";
|
|
5237
|
-
};
|
|
5238
6875
|
};
|
|
5239
6876
|
export declare type PerUserFetcherQueryOpts = {
|
|
5240
6877
|
user?: string;
|
|
@@ -5244,17 +6881,6 @@ export declare type PerUserFetcherQueryOpts = {
|
|
|
5244
6881
|
by: string;
|
|
5245
6882
|
order: "desc" | "asc";
|
|
5246
6883
|
};
|
|
5247
|
-
group?: {
|
|
5248
|
-
field: string;
|
|
5249
|
-
matching?: {
|
|
5250
|
-
mode: "onePerValue";
|
|
5251
|
-
} | {
|
|
5252
|
-
mode: "oneValueOnly";
|
|
5253
|
-
valueIndex: number;
|
|
5254
|
-
};
|
|
5255
|
-
};
|
|
5256
|
-
limit?: number;
|
|
5257
|
-
select?: string[];
|
|
5258
6884
|
filters?: {
|
|
5259
6885
|
datetime?: {
|
|
5260
6886
|
or: ({
|
|
@@ -5661,6 +7287,17 @@ export declare type PerUserFetcherQueryOpts = {
|
|
|
5661
7287
|
})[];
|
|
5662
7288
|
};
|
|
5663
7289
|
};
|
|
7290
|
+
group?: {
|
|
7291
|
+
field: string;
|
|
7292
|
+
matching?: {
|
|
7293
|
+
mode: "onePerValue";
|
|
7294
|
+
} | {
|
|
7295
|
+
mode: "oneValueOnly";
|
|
7296
|
+
valueIndex: number;
|
|
7297
|
+
};
|
|
7298
|
+
};
|
|
7299
|
+
limit?: number;
|
|
7300
|
+
select?: string[];
|
|
5664
7301
|
};
|
|
5665
7302
|
export declare type GenericProxyLockFetcherQueryOpts = {
|
|
5666
7303
|
sort?: {
|
|
@@ -5681,11 +7318,11 @@ export declare type InternalResponse_Array_string = {
|
|
|
5681
7318
|
};
|
|
5682
7319
|
export declare type DatasourceTypes = DatasourceLocation | DatasourceGeneric | DatasourceProduct | {
|
|
5683
7320
|
name: "analytics";
|
|
5684
|
-
subtype: "reelevant" | "google_tag_manager" | "shopify" | "workflow_events" | "user";
|
|
7321
|
+
subtype: "reelevant" | "google_tag_manager" | "shopify" | "workflow_events" | "user" | "mutable";
|
|
5685
7322
|
} | {
|
|
5686
7323
|
name: "analytics";
|
|
5687
7324
|
subtype: "purchases";
|
|
5688
7325
|
options: {
|
|
5689
7326
|
autoExclusions: boolean;
|
|
5690
7327
|
};
|
|
5691
|
-
} | DatasourceCRM;
|
|
7328
|
+
} | DatasourceCRM | DatasourcePush;
|