@platforma-open/milaboratories.humanization-score.model 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1687 @@
1
+ import * as _$_platforma_sdk_model0 from "@platforma-sdk/model";
2
+ import { PlDataTableStateV2, PlRef } from "@platforma-sdk/model";
3
+ import * as _$_milaboratories_helpers0 from "@milaboratories/helpers";
4
+ export * from "@milaboratories/helpers";
5
+
6
+ //#region src/index.d.ts
7
+ type BlockData = {
8
+ customBlockLabel: string;
9
+ inputAnchor?: PlRef;
10
+ mem?: number;
11
+ tableState: PlDataTableStateV2;
12
+ };
13
+ declare const platforma: _$_platforma_sdk_model0.PlatformaExtended<_$_platforma_sdk_model0.PlatformaV3<BlockData, {
14
+ customBlockLabel: string;
15
+ inputAnchor: Readonly<{
16
+ __isRef: true;
17
+ blockId: string;
18
+ name: string;
19
+ requireEnrichments?: true | undefined;
20
+ }>;
21
+ mem: number | undefined;
22
+ }, _$_platforma_sdk_model0.InferOutputsFromLambdas<{
23
+ inputOptions: _$_platforma_sdk_model0.ConfigRenderLambda<{
24
+ readonly ref: {
25
+ readonly __isRef: true;
26
+ readonly blockId: string;
27
+ readonly name: string;
28
+ readonly requireEnrichments?: true | undefined | undefined;
29
+ };
30
+ readonly label: string;
31
+ }[]>;
32
+ } & {
33
+ pt: _$_platforma_sdk_model0.ConfigRenderLambda<{
34
+ sourceId: null | string;
35
+ fullTableHandle?: _$_platforma_sdk_model0.PTableHandle | undefined;
36
+ fullPframeHandle?: _$_platforma_sdk_model0.PFrameHandle | undefined;
37
+ visibleTableHandle?: _$_platforma_sdk_model0.PTableHandle | undefined;
38
+ defaultFilters?: _$_milaboratories_helpers0.Nil | {
39
+ type: "or";
40
+ filters: (/*elided*/any | {
41
+ type: "and";
42
+ filters: (/*elided*/any | /*elided*/any | {
43
+ type: undefined;
44
+ } | {
45
+ type: "isNA";
46
+ column: string & {
47
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
48
+ };
49
+ } | {
50
+ type: "isNotNA";
51
+ column: string & {
52
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
53
+ };
54
+ } | {
55
+ type: "ifNa";
56
+ column: string & {
57
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
58
+ };
59
+ replacement: string;
60
+ } | {
61
+ type: "patternEquals";
62
+ column: string & {
63
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
64
+ };
65
+ value: string;
66
+ } | {
67
+ type: "patternNotEquals";
68
+ column: string & {
69
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
70
+ };
71
+ value: string;
72
+ } | {
73
+ type: "patternContainSubsequence";
74
+ column: string & {
75
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
76
+ };
77
+ value: string;
78
+ } | {
79
+ type: "patternNotContainSubsequence";
80
+ column: string & {
81
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
82
+ };
83
+ value: string;
84
+ } | {
85
+ type: "patternMatchesRegularExpression";
86
+ column: string & {
87
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
88
+ };
89
+ value: string;
90
+ } | {
91
+ type: "patternFuzzyContainSubsequence";
92
+ column: string & {
93
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
94
+ };
95
+ value: string;
96
+ maxEdits?: number | undefined;
97
+ substitutionsOnly?: boolean | undefined;
98
+ wildcard?: string | undefined;
99
+ } | {
100
+ type: "inSet";
101
+ column: string & {
102
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
103
+ };
104
+ value: string[];
105
+ } | {
106
+ type: "notInSet";
107
+ column: string & {
108
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
109
+ };
110
+ value: string[];
111
+ } | {
112
+ type: "topN";
113
+ column: string & {
114
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
115
+ };
116
+ n: number;
117
+ } | {
118
+ type: "bottomN";
119
+ column: string & {
120
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
121
+ };
122
+ n: number;
123
+ } | {
124
+ type: "equal";
125
+ column: string & {
126
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
127
+ };
128
+ x: number;
129
+ } | {
130
+ type: "notEqual";
131
+ column: string & {
132
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
133
+ };
134
+ x: number;
135
+ } | {
136
+ type: "lessThan";
137
+ column: string & {
138
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
139
+ };
140
+ x: number;
141
+ } | {
142
+ type: "greaterThan";
143
+ column: string & {
144
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
145
+ };
146
+ x: number;
147
+ } | {
148
+ type: "lessThanOrEqual";
149
+ column: string & {
150
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
151
+ };
152
+ x: number;
153
+ } | {
154
+ type: "greaterThanOrEqual";
155
+ column: string & {
156
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
157
+ };
158
+ x: number;
159
+ } | {
160
+ type: "equalToColumn";
161
+ column: string & {
162
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
163
+ };
164
+ rhs: string & {
165
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
166
+ };
167
+ } | {
168
+ type: "lessThanColumn";
169
+ column: string & {
170
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
171
+ };
172
+ rhs: string & {
173
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
174
+ };
175
+ minDiff?: number | undefined;
176
+ } | {
177
+ type: "greaterThanColumn";
178
+ column: string & {
179
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
180
+ };
181
+ rhs: string & {
182
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
183
+ };
184
+ minDiff?: number | undefined;
185
+ } | {
186
+ type: "lessThanColumnOrEqual";
187
+ column: string & {
188
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
189
+ };
190
+ rhs: string & {
191
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
192
+ };
193
+ minDiff?: number | undefined;
194
+ } | {
195
+ type: "greaterThanColumnOrEqual";
196
+ column: string & {
197
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
198
+ };
199
+ rhs: string & {
200
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
201
+ };
202
+ minDiff?: number | undefined;
203
+ } | {
204
+ type: "not";
205
+ filter: /*elided*/any | /*elided*/any | {
206
+ type: undefined;
207
+ } | {
208
+ type: "isNA";
209
+ column: string & {
210
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
211
+ };
212
+ } | {
213
+ type: "isNotNA";
214
+ column: string & {
215
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
216
+ };
217
+ } | {
218
+ type: "ifNa";
219
+ column: string & {
220
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
221
+ };
222
+ replacement: string;
223
+ } | {
224
+ type: "patternEquals";
225
+ column: string & {
226
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
227
+ };
228
+ value: string;
229
+ } | {
230
+ type: "patternNotEquals";
231
+ column: string & {
232
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
233
+ };
234
+ value: string;
235
+ } | {
236
+ type: "patternContainSubsequence";
237
+ column: string & {
238
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
239
+ };
240
+ value: string;
241
+ } | {
242
+ type: "patternNotContainSubsequence";
243
+ column: string & {
244
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
245
+ };
246
+ value: string;
247
+ } | {
248
+ type: "patternMatchesRegularExpression";
249
+ column: string & {
250
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
251
+ };
252
+ value: string;
253
+ } | {
254
+ type: "patternFuzzyContainSubsequence";
255
+ column: string & {
256
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
257
+ };
258
+ value: string;
259
+ maxEdits?: number | undefined;
260
+ substitutionsOnly?: boolean | undefined;
261
+ wildcard?: string | undefined;
262
+ } | {
263
+ type: "inSet";
264
+ column: string & {
265
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
266
+ };
267
+ value: string[];
268
+ } | {
269
+ type: "notInSet";
270
+ column: string & {
271
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
272
+ };
273
+ value: string[];
274
+ } | {
275
+ type: "topN";
276
+ column: string & {
277
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
278
+ };
279
+ n: number;
280
+ } | {
281
+ type: "bottomN";
282
+ column: string & {
283
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
284
+ };
285
+ n: number;
286
+ } | {
287
+ type: "equal";
288
+ column: string & {
289
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
290
+ };
291
+ x: number;
292
+ } | {
293
+ type: "notEqual";
294
+ column: string & {
295
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
296
+ };
297
+ x: number;
298
+ } | {
299
+ type: "lessThan";
300
+ column: string & {
301
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
302
+ };
303
+ x: number;
304
+ } | {
305
+ type: "greaterThan";
306
+ column: string & {
307
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
308
+ };
309
+ x: number;
310
+ } | {
311
+ type: "lessThanOrEqual";
312
+ column: string & {
313
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
314
+ };
315
+ x: number;
316
+ } | {
317
+ type: "greaterThanOrEqual";
318
+ column: string & {
319
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
320
+ };
321
+ x: number;
322
+ } | {
323
+ type: "equalToColumn";
324
+ column: string & {
325
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
326
+ };
327
+ rhs: string & {
328
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
329
+ };
330
+ } | {
331
+ type: "lessThanColumn";
332
+ column: string & {
333
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
334
+ };
335
+ rhs: string & {
336
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
337
+ };
338
+ minDiff?: number | undefined;
339
+ } | {
340
+ type: "greaterThanColumn";
341
+ column: string & {
342
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
343
+ };
344
+ rhs: string & {
345
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
346
+ };
347
+ minDiff?: number | undefined;
348
+ } | {
349
+ type: "lessThanColumnOrEqual";
350
+ column: string & {
351
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
352
+ };
353
+ rhs: string & {
354
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
355
+ };
356
+ minDiff?: number | undefined;
357
+ } | {
358
+ type: "greaterThanColumnOrEqual";
359
+ column: string & {
360
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
361
+ };
362
+ rhs: string & {
363
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
364
+ };
365
+ minDiff?: number | undefined;
366
+ } | /*elided*/any;
367
+ })[];
368
+ } | {
369
+ type: undefined;
370
+ } | {
371
+ type: "isNA";
372
+ column: string & {
373
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
374
+ };
375
+ } | {
376
+ type: "isNotNA";
377
+ column: string & {
378
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
379
+ };
380
+ } | {
381
+ type: "ifNa";
382
+ column: string & {
383
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
384
+ };
385
+ replacement: string;
386
+ } | {
387
+ type: "patternEquals";
388
+ column: string & {
389
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
390
+ };
391
+ value: string;
392
+ } | {
393
+ type: "patternNotEquals";
394
+ column: string & {
395
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
396
+ };
397
+ value: string;
398
+ } | {
399
+ type: "patternContainSubsequence";
400
+ column: string & {
401
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
402
+ };
403
+ value: string;
404
+ } | {
405
+ type: "patternNotContainSubsequence";
406
+ column: string & {
407
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
408
+ };
409
+ value: string;
410
+ } | {
411
+ type: "patternMatchesRegularExpression";
412
+ column: string & {
413
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
414
+ };
415
+ value: string;
416
+ } | {
417
+ type: "patternFuzzyContainSubsequence";
418
+ column: string & {
419
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
420
+ };
421
+ value: string;
422
+ maxEdits?: number | undefined;
423
+ substitutionsOnly?: boolean | undefined;
424
+ wildcard?: string | undefined;
425
+ } | {
426
+ type: "inSet";
427
+ column: string & {
428
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
429
+ };
430
+ value: string[];
431
+ } | {
432
+ type: "notInSet";
433
+ column: string & {
434
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
435
+ };
436
+ value: string[];
437
+ } | {
438
+ type: "topN";
439
+ column: string & {
440
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
441
+ };
442
+ n: number;
443
+ } | {
444
+ type: "bottomN";
445
+ column: string & {
446
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
447
+ };
448
+ n: number;
449
+ } | {
450
+ type: "equal";
451
+ column: string & {
452
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
453
+ };
454
+ x: number;
455
+ } | {
456
+ type: "notEqual";
457
+ column: string & {
458
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
459
+ };
460
+ x: number;
461
+ } | {
462
+ type: "lessThan";
463
+ column: string & {
464
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
465
+ };
466
+ x: number;
467
+ } | {
468
+ type: "greaterThan";
469
+ column: string & {
470
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
471
+ };
472
+ x: number;
473
+ } | {
474
+ type: "lessThanOrEqual";
475
+ column: string & {
476
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
477
+ };
478
+ x: number;
479
+ } | {
480
+ type: "greaterThanOrEqual";
481
+ column: string & {
482
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
483
+ };
484
+ x: number;
485
+ } | {
486
+ type: "equalToColumn";
487
+ column: string & {
488
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
489
+ };
490
+ rhs: string & {
491
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
492
+ };
493
+ } | {
494
+ type: "lessThanColumn";
495
+ column: string & {
496
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
497
+ };
498
+ rhs: string & {
499
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
500
+ };
501
+ minDiff?: number | undefined;
502
+ } | {
503
+ type: "greaterThanColumn";
504
+ column: string & {
505
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
506
+ };
507
+ rhs: string & {
508
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
509
+ };
510
+ minDiff?: number | undefined;
511
+ } | {
512
+ type: "lessThanColumnOrEqual";
513
+ column: string & {
514
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
515
+ };
516
+ rhs: string & {
517
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
518
+ };
519
+ minDiff?: number | undefined;
520
+ } | {
521
+ type: "greaterThanColumnOrEqual";
522
+ column: string & {
523
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
524
+ };
525
+ rhs: string & {
526
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
527
+ };
528
+ minDiff?: number | undefined;
529
+ } | {
530
+ type: "not";
531
+ filter: /*elided*/any | {
532
+ type: "and";
533
+ filters: (/*elided*/any | /*elided*/any | {
534
+ type: undefined;
535
+ } | {
536
+ type: "isNA";
537
+ column: string & {
538
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
539
+ };
540
+ } | {
541
+ type: "isNotNA";
542
+ column: string & {
543
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
544
+ };
545
+ } | {
546
+ type: "ifNa";
547
+ column: string & {
548
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
549
+ };
550
+ replacement: string;
551
+ } | {
552
+ type: "patternEquals";
553
+ column: string & {
554
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
555
+ };
556
+ value: string;
557
+ } | {
558
+ type: "patternNotEquals";
559
+ column: string & {
560
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
561
+ };
562
+ value: string;
563
+ } | {
564
+ type: "patternContainSubsequence";
565
+ column: string & {
566
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
567
+ };
568
+ value: string;
569
+ } | {
570
+ type: "patternNotContainSubsequence";
571
+ column: string & {
572
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
573
+ };
574
+ value: string;
575
+ } | {
576
+ type: "patternMatchesRegularExpression";
577
+ column: string & {
578
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
579
+ };
580
+ value: string;
581
+ } | {
582
+ type: "patternFuzzyContainSubsequence";
583
+ column: string & {
584
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
585
+ };
586
+ value: string;
587
+ maxEdits?: number | undefined;
588
+ substitutionsOnly?: boolean | undefined;
589
+ wildcard?: string | undefined;
590
+ } | {
591
+ type: "inSet";
592
+ column: string & {
593
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
594
+ };
595
+ value: string[];
596
+ } | {
597
+ type: "notInSet";
598
+ column: string & {
599
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
600
+ };
601
+ value: string[];
602
+ } | {
603
+ type: "topN";
604
+ column: string & {
605
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
606
+ };
607
+ n: number;
608
+ } | {
609
+ type: "bottomN";
610
+ column: string & {
611
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
612
+ };
613
+ n: number;
614
+ } | {
615
+ type: "equal";
616
+ column: string & {
617
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
618
+ };
619
+ x: number;
620
+ } | {
621
+ type: "notEqual";
622
+ column: string & {
623
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
624
+ };
625
+ x: number;
626
+ } | {
627
+ type: "lessThan";
628
+ column: string & {
629
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
630
+ };
631
+ x: number;
632
+ } | {
633
+ type: "greaterThan";
634
+ column: string & {
635
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
636
+ };
637
+ x: number;
638
+ } | {
639
+ type: "lessThanOrEqual";
640
+ column: string & {
641
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
642
+ };
643
+ x: number;
644
+ } | {
645
+ type: "greaterThanOrEqual";
646
+ column: string & {
647
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
648
+ };
649
+ x: number;
650
+ } | {
651
+ type: "equalToColumn";
652
+ column: string & {
653
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
654
+ };
655
+ rhs: string & {
656
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
657
+ };
658
+ } | {
659
+ type: "lessThanColumn";
660
+ column: string & {
661
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
662
+ };
663
+ rhs: string & {
664
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
665
+ };
666
+ minDiff?: number | undefined;
667
+ } | {
668
+ type: "greaterThanColumn";
669
+ column: string & {
670
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
671
+ };
672
+ rhs: string & {
673
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
674
+ };
675
+ minDiff?: number | undefined;
676
+ } | {
677
+ type: "lessThanColumnOrEqual";
678
+ column: string & {
679
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
680
+ };
681
+ rhs: string & {
682
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
683
+ };
684
+ minDiff?: number | undefined;
685
+ } | {
686
+ type: "greaterThanColumnOrEqual";
687
+ column: string & {
688
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
689
+ };
690
+ rhs: string & {
691
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
692
+ };
693
+ minDiff?: number | undefined;
694
+ } | /*elided*/any)[];
695
+ } | {
696
+ type: undefined;
697
+ } | {
698
+ type: "isNA";
699
+ column: string & {
700
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
701
+ };
702
+ } | {
703
+ type: "isNotNA";
704
+ column: string & {
705
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
706
+ };
707
+ } | {
708
+ type: "ifNa";
709
+ column: string & {
710
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
711
+ };
712
+ replacement: string;
713
+ } | {
714
+ type: "patternEquals";
715
+ column: string & {
716
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
717
+ };
718
+ value: string;
719
+ } | {
720
+ type: "patternNotEquals";
721
+ column: string & {
722
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
723
+ };
724
+ value: string;
725
+ } | {
726
+ type: "patternContainSubsequence";
727
+ column: string & {
728
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
729
+ };
730
+ value: string;
731
+ } | {
732
+ type: "patternNotContainSubsequence";
733
+ column: string & {
734
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
735
+ };
736
+ value: string;
737
+ } | {
738
+ type: "patternMatchesRegularExpression";
739
+ column: string & {
740
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
741
+ };
742
+ value: string;
743
+ } | {
744
+ type: "patternFuzzyContainSubsequence";
745
+ column: string & {
746
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
747
+ };
748
+ value: string;
749
+ maxEdits?: number | undefined;
750
+ substitutionsOnly?: boolean | undefined;
751
+ wildcard?: string | undefined;
752
+ } | {
753
+ type: "inSet";
754
+ column: string & {
755
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
756
+ };
757
+ value: string[];
758
+ } | {
759
+ type: "notInSet";
760
+ column: string & {
761
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
762
+ };
763
+ value: string[];
764
+ } | {
765
+ type: "topN";
766
+ column: string & {
767
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
768
+ };
769
+ n: number;
770
+ } | {
771
+ type: "bottomN";
772
+ column: string & {
773
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
774
+ };
775
+ n: number;
776
+ } | {
777
+ type: "equal";
778
+ column: string & {
779
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
780
+ };
781
+ x: number;
782
+ } | {
783
+ type: "notEqual";
784
+ column: string & {
785
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
786
+ };
787
+ x: number;
788
+ } | {
789
+ type: "lessThan";
790
+ column: string & {
791
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
792
+ };
793
+ x: number;
794
+ } | {
795
+ type: "greaterThan";
796
+ column: string & {
797
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
798
+ };
799
+ x: number;
800
+ } | {
801
+ type: "lessThanOrEqual";
802
+ column: string & {
803
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
804
+ };
805
+ x: number;
806
+ } | {
807
+ type: "greaterThanOrEqual";
808
+ column: string & {
809
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
810
+ };
811
+ x: number;
812
+ } | {
813
+ type: "equalToColumn";
814
+ column: string & {
815
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
816
+ };
817
+ rhs: string & {
818
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
819
+ };
820
+ } | {
821
+ type: "lessThanColumn";
822
+ column: string & {
823
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
824
+ };
825
+ rhs: string & {
826
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
827
+ };
828
+ minDiff?: number | undefined;
829
+ } | {
830
+ type: "greaterThanColumn";
831
+ column: string & {
832
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
833
+ };
834
+ rhs: string & {
835
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
836
+ };
837
+ minDiff?: number | undefined;
838
+ } | {
839
+ type: "lessThanColumnOrEqual";
840
+ column: string & {
841
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
842
+ };
843
+ rhs: string & {
844
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
845
+ };
846
+ minDiff?: number | undefined;
847
+ } | {
848
+ type: "greaterThanColumnOrEqual";
849
+ column: string & {
850
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
851
+ };
852
+ rhs: string & {
853
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
854
+ };
855
+ minDiff?: number | undefined;
856
+ } | /*elided*/any;
857
+ })[];
858
+ } | {
859
+ type: "and";
860
+ filters: ({
861
+ type: "or";
862
+ filters: (/*elided*/any | /*elided*/any | {
863
+ type: undefined;
864
+ } | {
865
+ type: "isNA";
866
+ column: string & {
867
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
868
+ };
869
+ } | {
870
+ type: "isNotNA";
871
+ column: string & {
872
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
873
+ };
874
+ } | {
875
+ type: "ifNa";
876
+ column: string & {
877
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
878
+ };
879
+ replacement: string;
880
+ } | {
881
+ type: "patternEquals";
882
+ column: string & {
883
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
884
+ };
885
+ value: string;
886
+ } | {
887
+ type: "patternNotEquals";
888
+ column: string & {
889
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
890
+ };
891
+ value: string;
892
+ } | {
893
+ type: "patternContainSubsequence";
894
+ column: string & {
895
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
896
+ };
897
+ value: string;
898
+ } | {
899
+ type: "patternNotContainSubsequence";
900
+ column: string & {
901
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
902
+ };
903
+ value: string;
904
+ } | {
905
+ type: "patternMatchesRegularExpression";
906
+ column: string & {
907
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
908
+ };
909
+ value: string;
910
+ } | {
911
+ type: "patternFuzzyContainSubsequence";
912
+ column: string & {
913
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
914
+ };
915
+ value: string;
916
+ maxEdits?: number | undefined;
917
+ substitutionsOnly?: boolean | undefined;
918
+ wildcard?: string | undefined;
919
+ } | {
920
+ type: "inSet";
921
+ column: string & {
922
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
923
+ };
924
+ value: string[];
925
+ } | {
926
+ type: "notInSet";
927
+ column: string & {
928
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
929
+ };
930
+ value: string[];
931
+ } | {
932
+ type: "topN";
933
+ column: string & {
934
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
935
+ };
936
+ n: number;
937
+ } | {
938
+ type: "bottomN";
939
+ column: string & {
940
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
941
+ };
942
+ n: number;
943
+ } | {
944
+ type: "equal";
945
+ column: string & {
946
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
947
+ };
948
+ x: number;
949
+ } | {
950
+ type: "notEqual";
951
+ column: string & {
952
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
953
+ };
954
+ x: number;
955
+ } | {
956
+ type: "lessThan";
957
+ column: string & {
958
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
959
+ };
960
+ x: number;
961
+ } | {
962
+ type: "greaterThan";
963
+ column: string & {
964
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
965
+ };
966
+ x: number;
967
+ } | {
968
+ type: "lessThanOrEqual";
969
+ column: string & {
970
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
971
+ };
972
+ x: number;
973
+ } | {
974
+ type: "greaterThanOrEqual";
975
+ column: string & {
976
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
977
+ };
978
+ x: number;
979
+ } | {
980
+ type: "equalToColumn";
981
+ column: string & {
982
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
983
+ };
984
+ rhs: string & {
985
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
986
+ };
987
+ } | {
988
+ type: "lessThanColumn";
989
+ column: string & {
990
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
991
+ };
992
+ rhs: string & {
993
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
994
+ };
995
+ minDiff?: number | undefined;
996
+ } | {
997
+ type: "greaterThanColumn";
998
+ column: string & {
999
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1000
+ };
1001
+ rhs: string & {
1002
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1003
+ };
1004
+ minDiff?: number | undefined;
1005
+ } | {
1006
+ type: "lessThanColumnOrEqual";
1007
+ column: string & {
1008
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1009
+ };
1010
+ rhs: string & {
1011
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1012
+ };
1013
+ minDiff?: number | undefined;
1014
+ } | {
1015
+ type: "greaterThanColumnOrEqual";
1016
+ column: string & {
1017
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1018
+ };
1019
+ rhs: string & {
1020
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1021
+ };
1022
+ minDiff?: number | undefined;
1023
+ } | {
1024
+ type: "not";
1025
+ filter: /*elided*/any | /*elided*/any | {
1026
+ type: undefined;
1027
+ } | {
1028
+ type: "isNA";
1029
+ column: string & {
1030
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1031
+ };
1032
+ } | {
1033
+ type: "isNotNA";
1034
+ column: string & {
1035
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1036
+ };
1037
+ } | {
1038
+ type: "ifNa";
1039
+ column: string & {
1040
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1041
+ };
1042
+ replacement: string;
1043
+ } | {
1044
+ type: "patternEquals";
1045
+ column: string & {
1046
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1047
+ };
1048
+ value: string;
1049
+ } | {
1050
+ type: "patternNotEquals";
1051
+ column: string & {
1052
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1053
+ };
1054
+ value: string;
1055
+ } | {
1056
+ type: "patternContainSubsequence";
1057
+ column: string & {
1058
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1059
+ };
1060
+ value: string;
1061
+ } | {
1062
+ type: "patternNotContainSubsequence";
1063
+ column: string & {
1064
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1065
+ };
1066
+ value: string;
1067
+ } | {
1068
+ type: "patternMatchesRegularExpression";
1069
+ column: string & {
1070
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1071
+ };
1072
+ value: string;
1073
+ } | {
1074
+ type: "patternFuzzyContainSubsequence";
1075
+ column: string & {
1076
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1077
+ };
1078
+ value: string;
1079
+ maxEdits?: number | undefined;
1080
+ substitutionsOnly?: boolean | undefined;
1081
+ wildcard?: string | undefined;
1082
+ } | {
1083
+ type: "inSet";
1084
+ column: string & {
1085
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1086
+ };
1087
+ value: string[];
1088
+ } | {
1089
+ type: "notInSet";
1090
+ column: string & {
1091
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1092
+ };
1093
+ value: string[];
1094
+ } | {
1095
+ type: "topN";
1096
+ column: string & {
1097
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1098
+ };
1099
+ n: number;
1100
+ } | {
1101
+ type: "bottomN";
1102
+ column: string & {
1103
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1104
+ };
1105
+ n: number;
1106
+ } | {
1107
+ type: "equal";
1108
+ column: string & {
1109
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1110
+ };
1111
+ x: number;
1112
+ } | {
1113
+ type: "notEqual";
1114
+ column: string & {
1115
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1116
+ };
1117
+ x: number;
1118
+ } | {
1119
+ type: "lessThan";
1120
+ column: string & {
1121
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1122
+ };
1123
+ x: number;
1124
+ } | {
1125
+ type: "greaterThan";
1126
+ column: string & {
1127
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1128
+ };
1129
+ x: number;
1130
+ } | {
1131
+ type: "lessThanOrEqual";
1132
+ column: string & {
1133
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1134
+ };
1135
+ x: number;
1136
+ } | {
1137
+ type: "greaterThanOrEqual";
1138
+ column: string & {
1139
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1140
+ };
1141
+ x: number;
1142
+ } | {
1143
+ type: "equalToColumn";
1144
+ column: string & {
1145
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1146
+ };
1147
+ rhs: string & {
1148
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1149
+ };
1150
+ } | {
1151
+ type: "lessThanColumn";
1152
+ column: string & {
1153
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1154
+ };
1155
+ rhs: string & {
1156
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1157
+ };
1158
+ minDiff?: number | undefined;
1159
+ } | {
1160
+ type: "greaterThanColumn";
1161
+ column: string & {
1162
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1163
+ };
1164
+ rhs: string & {
1165
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1166
+ };
1167
+ minDiff?: number | undefined;
1168
+ } | {
1169
+ type: "lessThanColumnOrEqual";
1170
+ column: string & {
1171
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1172
+ };
1173
+ rhs: string & {
1174
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1175
+ };
1176
+ minDiff?: number | undefined;
1177
+ } | {
1178
+ type: "greaterThanColumnOrEqual";
1179
+ column: string & {
1180
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1181
+ };
1182
+ rhs: string & {
1183
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1184
+ };
1185
+ minDiff?: number | undefined;
1186
+ } | /*elided*/any;
1187
+ })[];
1188
+ } | /*elided*/any | {
1189
+ type: undefined;
1190
+ } | {
1191
+ type: "isNA";
1192
+ column: string & {
1193
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1194
+ };
1195
+ } | {
1196
+ type: "isNotNA";
1197
+ column: string & {
1198
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1199
+ };
1200
+ } | {
1201
+ type: "ifNa";
1202
+ column: string & {
1203
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1204
+ };
1205
+ replacement: string;
1206
+ } | {
1207
+ type: "patternEquals";
1208
+ column: string & {
1209
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1210
+ };
1211
+ value: string;
1212
+ } | {
1213
+ type: "patternNotEquals";
1214
+ column: string & {
1215
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1216
+ };
1217
+ value: string;
1218
+ } | {
1219
+ type: "patternContainSubsequence";
1220
+ column: string & {
1221
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1222
+ };
1223
+ value: string;
1224
+ } | {
1225
+ type: "patternNotContainSubsequence";
1226
+ column: string & {
1227
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1228
+ };
1229
+ value: string;
1230
+ } | {
1231
+ type: "patternMatchesRegularExpression";
1232
+ column: string & {
1233
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1234
+ };
1235
+ value: string;
1236
+ } | {
1237
+ type: "patternFuzzyContainSubsequence";
1238
+ column: string & {
1239
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1240
+ };
1241
+ value: string;
1242
+ maxEdits?: number | undefined;
1243
+ substitutionsOnly?: boolean | undefined;
1244
+ wildcard?: string | undefined;
1245
+ } | {
1246
+ type: "inSet";
1247
+ column: string & {
1248
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1249
+ };
1250
+ value: string[];
1251
+ } | {
1252
+ type: "notInSet";
1253
+ column: string & {
1254
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1255
+ };
1256
+ value: string[];
1257
+ } | {
1258
+ type: "topN";
1259
+ column: string & {
1260
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1261
+ };
1262
+ n: number;
1263
+ } | {
1264
+ type: "bottomN";
1265
+ column: string & {
1266
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1267
+ };
1268
+ n: number;
1269
+ } | {
1270
+ type: "equal";
1271
+ column: string & {
1272
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1273
+ };
1274
+ x: number;
1275
+ } | {
1276
+ type: "notEqual";
1277
+ column: string & {
1278
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1279
+ };
1280
+ x: number;
1281
+ } | {
1282
+ type: "lessThan";
1283
+ column: string & {
1284
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1285
+ };
1286
+ x: number;
1287
+ } | {
1288
+ type: "greaterThan";
1289
+ column: string & {
1290
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1291
+ };
1292
+ x: number;
1293
+ } | {
1294
+ type: "lessThanOrEqual";
1295
+ column: string & {
1296
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1297
+ };
1298
+ x: number;
1299
+ } | {
1300
+ type: "greaterThanOrEqual";
1301
+ column: string & {
1302
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1303
+ };
1304
+ x: number;
1305
+ } | {
1306
+ type: "equalToColumn";
1307
+ column: string & {
1308
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1309
+ };
1310
+ rhs: string & {
1311
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1312
+ };
1313
+ } | {
1314
+ type: "lessThanColumn";
1315
+ column: string & {
1316
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1317
+ };
1318
+ rhs: string & {
1319
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1320
+ };
1321
+ minDiff?: number | undefined;
1322
+ } | {
1323
+ type: "greaterThanColumn";
1324
+ column: string & {
1325
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1326
+ };
1327
+ rhs: string & {
1328
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1329
+ };
1330
+ minDiff?: number | undefined;
1331
+ } | {
1332
+ type: "lessThanColumnOrEqual";
1333
+ column: string & {
1334
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1335
+ };
1336
+ rhs: string & {
1337
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1338
+ };
1339
+ minDiff?: number | undefined;
1340
+ } | {
1341
+ type: "greaterThanColumnOrEqual";
1342
+ column: string & {
1343
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1344
+ };
1345
+ rhs: string & {
1346
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1347
+ };
1348
+ minDiff?: number | undefined;
1349
+ } | {
1350
+ type: "not";
1351
+ filter: {
1352
+ type: "or";
1353
+ filters: (/*elided*/any | /*elided*/any | {
1354
+ type: undefined;
1355
+ } | {
1356
+ type: "isNA";
1357
+ column: string & {
1358
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1359
+ };
1360
+ } | {
1361
+ type: "isNotNA";
1362
+ column: string & {
1363
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1364
+ };
1365
+ } | {
1366
+ type: "ifNa";
1367
+ column: string & {
1368
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1369
+ };
1370
+ replacement: string;
1371
+ } | {
1372
+ type: "patternEquals";
1373
+ column: string & {
1374
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1375
+ };
1376
+ value: string;
1377
+ } | {
1378
+ type: "patternNotEquals";
1379
+ column: string & {
1380
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1381
+ };
1382
+ value: string;
1383
+ } | {
1384
+ type: "patternContainSubsequence";
1385
+ column: string & {
1386
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1387
+ };
1388
+ value: string;
1389
+ } | {
1390
+ type: "patternNotContainSubsequence";
1391
+ column: string & {
1392
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1393
+ };
1394
+ value: string;
1395
+ } | {
1396
+ type: "patternMatchesRegularExpression";
1397
+ column: string & {
1398
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1399
+ };
1400
+ value: string;
1401
+ } | {
1402
+ type: "patternFuzzyContainSubsequence";
1403
+ column: string & {
1404
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1405
+ };
1406
+ value: string;
1407
+ maxEdits?: number | undefined;
1408
+ substitutionsOnly?: boolean | undefined;
1409
+ wildcard?: string | undefined;
1410
+ } | {
1411
+ type: "inSet";
1412
+ column: string & {
1413
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1414
+ };
1415
+ value: string[];
1416
+ } | {
1417
+ type: "notInSet";
1418
+ column: string & {
1419
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1420
+ };
1421
+ value: string[];
1422
+ } | {
1423
+ type: "topN";
1424
+ column: string & {
1425
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1426
+ };
1427
+ n: number;
1428
+ } | {
1429
+ type: "bottomN";
1430
+ column: string & {
1431
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1432
+ };
1433
+ n: number;
1434
+ } | {
1435
+ type: "equal";
1436
+ column: string & {
1437
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1438
+ };
1439
+ x: number;
1440
+ } | {
1441
+ type: "notEqual";
1442
+ column: string & {
1443
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1444
+ };
1445
+ x: number;
1446
+ } | {
1447
+ type: "lessThan";
1448
+ column: string & {
1449
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1450
+ };
1451
+ x: number;
1452
+ } | {
1453
+ type: "greaterThan";
1454
+ column: string & {
1455
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1456
+ };
1457
+ x: number;
1458
+ } | {
1459
+ type: "lessThanOrEqual";
1460
+ column: string & {
1461
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1462
+ };
1463
+ x: number;
1464
+ } | {
1465
+ type: "greaterThanOrEqual";
1466
+ column: string & {
1467
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1468
+ };
1469
+ x: number;
1470
+ } | {
1471
+ type: "equalToColumn";
1472
+ column: string & {
1473
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1474
+ };
1475
+ rhs: string & {
1476
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1477
+ };
1478
+ } | {
1479
+ type: "lessThanColumn";
1480
+ column: string & {
1481
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1482
+ };
1483
+ rhs: string & {
1484
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1485
+ };
1486
+ minDiff?: number | undefined;
1487
+ } | {
1488
+ type: "greaterThanColumn";
1489
+ column: string & {
1490
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1491
+ };
1492
+ rhs: string & {
1493
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1494
+ };
1495
+ minDiff?: number | undefined;
1496
+ } | {
1497
+ type: "lessThanColumnOrEqual";
1498
+ column: string & {
1499
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1500
+ };
1501
+ rhs: string & {
1502
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1503
+ };
1504
+ minDiff?: number | undefined;
1505
+ } | {
1506
+ type: "greaterThanColumnOrEqual";
1507
+ column: string & {
1508
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1509
+ };
1510
+ rhs: string & {
1511
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1512
+ };
1513
+ minDiff?: number | undefined;
1514
+ } | /*elided*/any)[];
1515
+ } | /*elided*/any | {
1516
+ type: undefined;
1517
+ } | {
1518
+ type: "isNA";
1519
+ column: string & {
1520
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1521
+ };
1522
+ } | {
1523
+ type: "isNotNA";
1524
+ column: string & {
1525
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1526
+ };
1527
+ } | {
1528
+ type: "ifNa";
1529
+ column: string & {
1530
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1531
+ };
1532
+ replacement: string;
1533
+ } | {
1534
+ type: "patternEquals";
1535
+ column: string & {
1536
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1537
+ };
1538
+ value: string;
1539
+ } | {
1540
+ type: "patternNotEquals";
1541
+ column: string & {
1542
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1543
+ };
1544
+ value: string;
1545
+ } | {
1546
+ type: "patternContainSubsequence";
1547
+ column: string & {
1548
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1549
+ };
1550
+ value: string;
1551
+ } | {
1552
+ type: "patternNotContainSubsequence";
1553
+ column: string & {
1554
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1555
+ };
1556
+ value: string;
1557
+ } | {
1558
+ type: "patternMatchesRegularExpression";
1559
+ column: string & {
1560
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1561
+ };
1562
+ value: string;
1563
+ } | {
1564
+ type: "patternFuzzyContainSubsequence";
1565
+ column: string & {
1566
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1567
+ };
1568
+ value: string;
1569
+ maxEdits?: number | undefined;
1570
+ substitutionsOnly?: boolean | undefined;
1571
+ wildcard?: string | undefined;
1572
+ } | {
1573
+ type: "inSet";
1574
+ column: string & {
1575
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1576
+ };
1577
+ value: string[];
1578
+ } | {
1579
+ type: "notInSet";
1580
+ column: string & {
1581
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1582
+ };
1583
+ value: string[];
1584
+ } | {
1585
+ type: "topN";
1586
+ column: string & {
1587
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1588
+ };
1589
+ n: number;
1590
+ } | {
1591
+ type: "bottomN";
1592
+ column: string & {
1593
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1594
+ };
1595
+ n: number;
1596
+ } | {
1597
+ type: "equal";
1598
+ column: string & {
1599
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1600
+ };
1601
+ x: number;
1602
+ } | {
1603
+ type: "notEqual";
1604
+ column: string & {
1605
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1606
+ };
1607
+ x: number;
1608
+ } | {
1609
+ type: "lessThan";
1610
+ column: string & {
1611
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1612
+ };
1613
+ x: number;
1614
+ } | {
1615
+ type: "greaterThan";
1616
+ column: string & {
1617
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1618
+ };
1619
+ x: number;
1620
+ } | {
1621
+ type: "lessThanOrEqual";
1622
+ column: string & {
1623
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1624
+ };
1625
+ x: number;
1626
+ } | {
1627
+ type: "greaterThanOrEqual";
1628
+ column: string & {
1629
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1630
+ };
1631
+ x: number;
1632
+ } | {
1633
+ type: "equalToColumn";
1634
+ column: string & {
1635
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1636
+ };
1637
+ rhs: string & {
1638
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1639
+ };
1640
+ } | {
1641
+ type: "lessThanColumn";
1642
+ column: string & {
1643
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1644
+ };
1645
+ rhs: string & {
1646
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1647
+ };
1648
+ minDiff?: number | undefined;
1649
+ } | {
1650
+ type: "greaterThanColumn";
1651
+ column: string & {
1652
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1653
+ };
1654
+ rhs: string & {
1655
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1656
+ };
1657
+ minDiff?: number | undefined;
1658
+ } | {
1659
+ type: "lessThanColumnOrEqual";
1660
+ column: string & {
1661
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1662
+ };
1663
+ rhs: string & {
1664
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1665
+ };
1666
+ minDiff?: number | undefined;
1667
+ } | {
1668
+ type: "greaterThanColumnOrEqual";
1669
+ column: string & {
1670
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1671
+ };
1672
+ rhs: string & {
1673
+ __json_canonicalized: _$_platforma_sdk_model0.PTableColumnId;
1674
+ };
1675
+ minDiff?: number | undefined;
1676
+ } | /*elided*/any;
1677
+ })[];
1678
+ };
1679
+ } | undefined> & {
1680
+ withStatus: true;
1681
+ };
1682
+ } & {
1683
+ isRunning: _$_platforma_sdk_model0.ConfigRenderLambda<boolean>;
1684
+ }>, "/", {}, _$_platforma_sdk_model0.BlockDefaultUiServices>>;
1685
+ //#endregion
1686
+ export { BlockData, platforma };
1687
+ //# sourceMappingURL=index.d.ts.map