@elaraai/e3-ui 1.0.34 → 1.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/decision/bind.d.ts +3 -2628
- package/dist/src/decision/bind.d.ts.map +1 -1
- package/dist/src/decision/bind.js +3 -13
- package/dist/src/decision/bind.js.map +1 -1
- package/dist/src/decision/index.d.ts +0 -772
- package/dist/src/decision/index.d.ts.map +1 -1
- package/dist/src/decision/journal.d.ts +0 -298
- package/dist/src/decision/journal.d.ts.map +1 -1
- package/dist/src/decision/journal.js +0 -1
- package/dist/src/decision/journal.js.map +1 -1
- package/dist/src/decision/queue.d.ts +1897 -937
- package/dist/src/decision/queue.d.ts.map +1 -1
- package/dist/src/decision/queue.js +19 -8
- package/dist/src/decision/queue.js.map +1 -1
- package/dist/test/decision/queue.examples.d.ts.map +1 -1
- package/dist/test/decision/queue.examples.js +17 -13
- package/dist/test/decision/queue.examples.js.map +1 -1
- package/package.json +8 -8
|
@@ -26,8 +26,7 @@
|
|
|
26
26
|
*
|
|
27
27
|
* @packageDocumentation
|
|
28
28
|
*/
|
|
29
|
-
import { ArrayType, DictType, OptionType, StructType, VariantType, FunctionType, StringType, IntegerType, NullType, type EastType, type ExprType
|
|
30
|
-
import { SliceStateType } from '@elaraai/east-ui/internal';
|
|
29
|
+
import { ArrayType, DictType, OptionType, StructType, VariantType, FunctionType, StringType, IntegerType, NullType, type EastType, type ExprType } from '@elaraai/east';
|
|
31
30
|
import { type BoundValue } from '../bind/data.js';
|
|
32
31
|
import { DecisionType, DecisionConstraintType } from './types.js';
|
|
33
32
|
/**
|
|
@@ -137,12 +136,6 @@ export type JudgementsType = typeof JudgementsType;
|
|
|
137
136
|
*
|
|
138
137
|
* @property decisions - Per-source binding descriptors
|
|
139
138
|
* @property judgements - The judgements binding descriptor
|
|
140
|
-
* @property sliceInit - The initial slice state passed at bind (data; feeds
|
|
141
|
-
* component payload refs)
|
|
142
|
-
* @property slice - The handle-owned slice over the unioned queue (canonical
|
|
143
|
-
* `DecisionType` config; key derived from the bound source paths, like the
|
|
144
|
-
* selection). Components mount its rail; seeding `slice` at bind with no
|
|
145
|
-
* rail mounted gives an invisible author scope.
|
|
146
139
|
* @property queue - The visible queue: union of every bound view (source ⊕
|
|
147
140
|
* patch each)
|
|
148
141
|
* @property selected - The selected case id, if any
|
|
@@ -189,778 +182,6 @@ export declare function decisionHandleType<C extends EastType = DecisionConstrai
|
|
|
189
182
|
readonly direct: NullType;
|
|
190
183
|
}>;
|
|
191
184
|
}>;
|
|
192
|
-
readonly sliceInit: OptionType<StructType<{
|
|
193
|
-
readonly range: OptionType<VariantType<{
|
|
194
|
-
readonly datetime: StructType<{
|
|
195
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
196
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
197
|
-
}>;
|
|
198
|
-
readonly datetimePreset: VariantType<{
|
|
199
|
-
readonly today: NullType;
|
|
200
|
-
readonly last7d: NullType;
|
|
201
|
-
readonly last30d: NullType;
|
|
202
|
-
readonly last90d: NullType;
|
|
203
|
-
readonly ytd: NullType;
|
|
204
|
-
}>;
|
|
205
|
-
readonly integer: StructType<{
|
|
206
|
-
readonly from: IntegerType;
|
|
207
|
-
readonly to: IntegerType;
|
|
208
|
-
}>;
|
|
209
|
-
readonly float: StructType<{
|
|
210
|
-
readonly from: import("@elaraai/east").FloatType;
|
|
211
|
-
readonly to: import("@elaraai/east").FloatType;
|
|
212
|
-
}>;
|
|
213
|
-
}>>;
|
|
214
|
-
readonly compare: OptionType<VariantType<{
|
|
215
|
-
readonly previousPeriod: NullType;
|
|
216
|
-
readonly previousYear: NullType;
|
|
217
|
-
}>>;
|
|
218
|
-
readonly filters: ArrayType<VariantType<{
|
|
219
|
-
readonly string: StructType<{
|
|
220
|
-
readonly fieldId: StringType;
|
|
221
|
-
readonly op: VariantType<{
|
|
222
|
-
readonly eq: StringType;
|
|
223
|
-
readonly neq: StringType;
|
|
224
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
225
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
226
|
-
readonly contains: StringType;
|
|
227
|
-
readonly matches: StringType;
|
|
228
|
-
readonly startsWith: StringType;
|
|
229
|
-
readonly endsWith: StringType;
|
|
230
|
-
readonly isEmpty: NullType;
|
|
231
|
-
readonly isNotEmpty: NullType;
|
|
232
|
-
}>;
|
|
233
|
-
}>;
|
|
234
|
-
readonly integer: StructType<{
|
|
235
|
-
readonly fieldId: StringType;
|
|
236
|
-
readonly op: VariantType<{
|
|
237
|
-
readonly eq: IntegerType;
|
|
238
|
-
readonly neq: IntegerType;
|
|
239
|
-
readonly lt: IntegerType;
|
|
240
|
-
readonly lte: IntegerType;
|
|
241
|
-
readonly gt: IntegerType;
|
|
242
|
-
readonly gte: IntegerType;
|
|
243
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
244
|
-
}>;
|
|
245
|
-
}>;
|
|
246
|
-
readonly float: StructType<{
|
|
247
|
-
readonly fieldId: StringType;
|
|
248
|
-
readonly op: VariantType<{
|
|
249
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
250
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
251
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
252
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
253
|
-
}>;
|
|
254
|
-
}>;
|
|
255
|
-
readonly datetime: StructType<{
|
|
256
|
-
readonly fieldId: StringType;
|
|
257
|
-
readonly op: VariantType<{
|
|
258
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
259
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
260
|
-
readonly between: StructType<{
|
|
261
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
262
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
263
|
-
}>;
|
|
264
|
-
}>;
|
|
265
|
-
}>;
|
|
266
|
-
readonly boolean: StructType<{
|
|
267
|
-
readonly fieldId: StringType;
|
|
268
|
-
readonly op: VariantType<{
|
|
269
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
270
|
-
}>;
|
|
271
|
-
}>;
|
|
272
|
-
}>>;
|
|
273
|
-
readonly cohorts: ArrayType<StructType<{
|
|
274
|
-
readonly id: StringType;
|
|
275
|
-
readonly name: StringType;
|
|
276
|
-
readonly filters: ArrayType<VariantType<{
|
|
277
|
-
readonly string: StructType<{
|
|
278
|
-
readonly fieldId: StringType;
|
|
279
|
-
readonly op: VariantType<{
|
|
280
|
-
readonly eq: StringType;
|
|
281
|
-
readonly neq: StringType;
|
|
282
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
283
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
284
|
-
readonly contains: StringType;
|
|
285
|
-
readonly matches: StringType;
|
|
286
|
-
readonly startsWith: StringType;
|
|
287
|
-
readonly endsWith: StringType;
|
|
288
|
-
readonly isEmpty: NullType;
|
|
289
|
-
readonly isNotEmpty: NullType;
|
|
290
|
-
}>;
|
|
291
|
-
}>;
|
|
292
|
-
readonly integer: StructType<{
|
|
293
|
-
readonly fieldId: StringType;
|
|
294
|
-
readonly op: VariantType<{
|
|
295
|
-
readonly eq: IntegerType;
|
|
296
|
-
readonly neq: IntegerType;
|
|
297
|
-
readonly lt: IntegerType;
|
|
298
|
-
readonly lte: IntegerType;
|
|
299
|
-
readonly gt: IntegerType;
|
|
300
|
-
readonly gte: IntegerType;
|
|
301
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
302
|
-
}>;
|
|
303
|
-
}>;
|
|
304
|
-
readonly float: StructType<{
|
|
305
|
-
readonly fieldId: StringType;
|
|
306
|
-
readonly op: VariantType<{
|
|
307
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
308
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
309
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
310
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
311
|
-
}>;
|
|
312
|
-
}>;
|
|
313
|
-
readonly datetime: StructType<{
|
|
314
|
-
readonly fieldId: StringType;
|
|
315
|
-
readonly op: VariantType<{
|
|
316
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
317
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
318
|
-
readonly between: StructType<{
|
|
319
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
320
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
321
|
-
}>;
|
|
322
|
-
}>;
|
|
323
|
-
}>;
|
|
324
|
-
readonly boolean: StructType<{
|
|
325
|
-
readonly fieldId: StringType;
|
|
326
|
-
readonly op: VariantType<{
|
|
327
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
328
|
-
}>;
|
|
329
|
-
}>;
|
|
330
|
-
}>>;
|
|
331
|
-
}>>;
|
|
332
|
-
readonly activeCohorts: import("@elaraai/east").SetType<StringType>;
|
|
333
|
-
readonly breakdown: OptionType<StructType<{
|
|
334
|
-
readonly fieldId: StringType;
|
|
335
|
-
readonly limit: OptionType<IntegerType>;
|
|
336
|
-
}>>;
|
|
337
|
-
readonly search: OptionType<StringType>;
|
|
338
|
-
readonly visible: OptionType<import("@elaraai/east").SetType<StringType>>;
|
|
339
|
-
readonly selectedIndex: OptionType<IntegerType>;
|
|
340
|
-
}>>;
|
|
341
|
-
readonly slice: StructType<{
|
|
342
|
-
readonly key: StringType;
|
|
343
|
-
readonly read: FunctionType<[], StructType<{
|
|
344
|
-
readonly range: OptionType<VariantType<{
|
|
345
|
-
readonly datetime: StructType<{
|
|
346
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
347
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
348
|
-
}>;
|
|
349
|
-
readonly datetimePreset: VariantType<{
|
|
350
|
-
readonly today: NullType;
|
|
351
|
-
readonly last7d: NullType;
|
|
352
|
-
readonly last30d: NullType;
|
|
353
|
-
readonly last90d: NullType;
|
|
354
|
-
readonly ytd: NullType;
|
|
355
|
-
}>;
|
|
356
|
-
readonly integer: StructType<{
|
|
357
|
-
readonly from: IntegerType;
|
|
358
|
-
readonly to: IntegerType;
|
|
359
|
-
}>;
|
|
360
|
-
readonly float: StructType<{
|
|
361
|
-
readonly from: import("@elaraai/east").FloatType;
|
|
362
|
-
readonly to: import("@elaraai/east").FloatType;
|
|
363
|
-
}>;
|
|
364
|
-
}>>;
|
|
365
|
-
readonly compare: OptionType<VariantType<{
|
|
366
|
-
readonly previousPeriod: NullType;
|
|
367
|
-
readonly previousYear: NullType;
|
|
368
|
-
}>>;
|
|
369
|
-
readonly filters: ArrayType<VariantType<{
|
|
370
|
-
readonly string: StructType<{
|
|
371
|
-
readonly fieldId: StringType;
|
|
372
|
-
readonly op: VariantType<{
|
|
373
|
-
readonly eq: StringType;
|
|
374
|
-
readonly neq: StringType;
|
|
375
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
376
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
377
|
-
readonly contains: StringType;
|
|
378
|
-
readonly matches: StringType;
|
|
379
|
-
readonly startsWith: StringType;
|
|
380
|
-
readonly endsWith: StringType;
|
|
381
|
-
readonly isEmpty: NullType;
|
|
382
|
-
readonly isNotEmpty: NullType;
|
|
383
|
-
}>;
|
|
384
|
-
}>;
|
|
385
|
-
readonly integer: StructType<{
|
|
386
|
-
readonly fieldId: StringType;
|
|
387
|
-
readonly op: VariantType<{
|
|
388
|
-
readonly eq: IntegerType;
|
|
389
|
-
readonly neq: IntegerType;
|
|
390
|
-
readonly lt: IntegerType;
|
|
391
|
-
readonly lte: IntegerType;
|
|
392
|
-
readonly gt: IntegerType;
|
|
393
|
-
readonly gte: IntegerType;
|
|
394
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
395
|
-
}>;
|
|
396
|
-
}>;
|
|
397
|
-
readonly float: StructType<{
|
|
398
|
-
readonly fieldId: StringType;
|
|
399
|
-
readonly op: VariantType<{
|
|
400
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
401
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
402
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
403
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
404
|
-
}>;
|
|
405
|
-
}>;
|
|
406
|
-
readonly datetime: StructType<{
|
|
407
|
-
readonly fieldId: StringType;
|
|
408
|
-
readonly op: VariantType<{
|
|
409
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
410
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
411
|
-
readonly between: StructType<{
|
|
412
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
413
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
414
|
-
}>;
|
|
415
|
-
}>;
|
|
416
|
-
}>;
|
|
417
|
-
readonly boolean: StructType<{
|
|
418
|
-
readonly fieldId: StringType;
|
|
419
|
-
readonly op: VariantType<{
|
|
420
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
421
|
-
}>;
|
|
422
|
-
}>;
|
|
423
|
-
}>>;
|
|
424
|
-
readonly cohorts: ArrayType<StructType<{
|
|
425
|
-
readonly id: StringType;
|
|
426
|
-
readonly name: StringType;
|
|
427
|
-
readonly filters: ArrayType<VariantType<{
|
|
428
|
-
readonly string: StructType<{
|
|
429
|
-
readonly fieldId: StringType;
|
|
430
|
-
readonly op: VariantType<{
|
|
431
|
-
readonly eq: StringType;
|
|
432
|
-
readonly neq: StringType;
|
|
433
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
434
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
435
|
-
readonly contains: StringType;
|
|
436
|
-
readonly matches: StringType;
|
|
437
|
-
readonly startsWith: StringType;
|
|
438
|
-
readonly endsWith: StringType;
|
|
439
|
-
readonly isEmpty: NullType;
|
|
440
|
-
readonly isNotEmpty: NullType;
|
|
441
|
-
}>;
|
|
442
|
-
}>;
|
|
443
|
-
readonly integer: StructType<{
|
|
444
|
-
readonly fieldId: StringType;
|
|
445
|
-
readonly op: VariantType<{
|
|
446
|
-
readonly eq: IntegerType;
|
|
447
|
-
readonly neq: IntegerType;
|
|
448
|
-
readonly lt: IntegerType;
|
|
449
|
-
readonly lte: IntegerType;
|
|
450
|
-
readonly gt: IntegerType;
|
|
451
|
-
readonly gte: IntegerType;
|
|
452
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
453
|
-
}>;
|
|
454
|
-
}>;
|
|
455
|
-
readonly float: StructType<{
|
|
456
|
-
readonly fieldId: StringType;
|
|
457
|
-
readonly op: VariantType<{
|
|
458
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
459
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
460
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
461
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
462
|
-
}>;
|
|
463
|
-
}>;
|
|
464
|
-
readonly datetime: StructType<{
|
|
465
|
-
readonly fieldId: StringType;
|
|
466
|
-
readonly op: VariantType<{
|
|
467
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
468
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
469
|
-
readonly between: StructType<{
|
|
470
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
471
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
472
|
-
}>;
|
|
473
|
-
}>;
|
|
474
|
-
}>;
|
|
475
|
-
readonly boolean: StructType<{
|
|
476
|
-
readonly fieldId: StringType;
|
|
477
|
-
readonly op: VariantType<{
|
|
478
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
479
|
-
}>;
|
|
480
|
-
}>;
|
|
481
|
-
}>>;
|
|
482
|
-
}>>;
|
|
483
|
-
readonly activeCohorts: import("@elaraai/east").SetType<StringType>;
|
|
484
|
-
readonly breakdown: OptionType<StructType<{
|
|
485
|
-
readonly fieldId: StringType;
|
|
486
|
-
readonly limit: OptionType<IntegerType>;
|
|
487
|
-
}>>;
|
|
488
|
-
readonly search: OptionType<StringType>;
|
|
489
|
-
readonly visible: OptionType<import("@elaraai/east").SetType<StringType>>;
|
|
490
|
-
readonly selectedIndex: OptionType<IntegerType>;
|
|
491
|
-
}>>;
|
|
492
|
-
readonly write: FunctionType<[StructType<{
|
|
493
|
-
readonly range: OptionType<VariantType<{
|
|
494
|
-
readonly datetime: StructType<{
|
|
495
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
496
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
497
|
-
}>;
|
|
498
|
-
readonly datetimePreset: VariantType<{
|
|
499
|
-
readonly today: NullType;
|
|
500
|
-
readonly last7d: NullType;
|
|
501
|
-
readonly last30d: NullType;
|
|
502
|
-
readonly last90d: NullType;
|
|
503
|
-
readonly ytd: NullType;
|
|
504
|
-
}>;
|
|
505
|
-
readonly integer: StructType<{
|
|
506
|
-
readonly from: IntegerType;
|
|
507
|
-
readonly to: IntegerType;
|
|
508
|
-
}>;
|
|
509
|
-
readonly float: StructType<{
|
|
510
|
-
readonly from: import("@elaraai/east").FloatType;
|
|
511
|
-
readonly to: import("@elaraai/east").FloatType;
|
|
512
|
-
}>;
|
|
513
|
-
}>>;
|
|
514
|
-
readonly compare: OptionType<VariantType<{
|
|
515
|
-
readonly previousPeriod: NullType;
|
|
516
|
-
readonly previousYear: NullType;
|
|
517
|
-
}>>;
|
|
518
|
-
readonly filters: ArrayType<VariantType<{
|
|
519
|
-
readonly string: StructType<{
|
|
520
|
-
readonly fieldId: StringType;
|
|
521
|
-
readonly op: VariantType<{
|
|
522
|
-
readonly eq: StringType;
|
|
523
|
-
readonly neq: StringType;
|
|
524
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
525
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
526
|
-
readonly contains: StringType;
|
|
527
|
-
readonly matches: StringType;
|
|
528
|
-
readonly startsWith: StringType;
|
|
529
|
-
readonly endsWith: StringType;
|
|
530
|
-
readonly isEmpty: NullType;
|
|
531
|
-
readonly isNotEmpty: NullType;
|
|
532
|
-
}>;
|
|
533
|
-
}>;
|
|
534
|
-
readonly integer: StructType<{
|
|
535
|
-
readonly fieldId: StringType;
|
|
536
|
-
readonly op: VariantType<{
|
|
537
|
-
readonly eq: IntegerType;
|
|
538
|
-
readonly neq: IntegerType;
|
|
539
|
-
readonly lt: IntegerType;
|
|
540
|
-
readonly lte: IntegerType;
|
|
541
|
-
readonly gt: IntegerType;
|
|
542
|
-
readonly gte: IntegerType;
|
|
543
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
544
|
-
}>;
|
|
545
|
-
}>;
|
|
546
|
-
readonly float: StructType<{
|
|
547
|
-
readonly fieldId: StringType;
|
|
548
|
-
readonly op: VariantType<{
|
|
549
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
550
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
551
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
552
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
553
|
-
}>;
|
|
554
|
-
}>;
|
|
555
|
-
readonly datetime: StructType<{
|
|
556
|
-
readonly fieldId: StringType;
|
|
557
|
-
readonly op: VariantType<{
|
|
558
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
559
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
560
|
-
readonly between: StructType<{
|
|
561
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
562
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
563
|
-
}>;
|
|
564
|
-
}>;
|
|
565
|
-
}>;
|
|
566
|
-
readonly boolean: StructType<{
|
|
567
|
-
readonly fieldId: StringType;
|
|
568
|
-
readonly op: VariantType<{
|
|
569
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
570
|
-
}>;
|
|
571
|
-
}>;
|
|
572
|
-
}>>;
|
|
573
|
-
readonly cohorts: ArrayType<StructType<{
|
|
574
|
-
readonly id: StringType;
|
|
575
|
-
readonly name: StringType;
|
|
576
|
-
readonly filters: ArrayType<VariantType<{
|
|
577
|
-
readonly string: StructType<{
|
|
578
|
-
readonly fieldId: StringType;
|
|
579
|
-
readonly op: VariantType<{
|
|
580
|
-
readonly eq: StringType;
|
|
581
|
-
readonly neq: StringType;
|
|
582
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
583
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
584
|
-
readonly contains: StringType;
|
|
585
|
-
readonly matches: StringType;
|
|
586
|
-
readonly startsWith: StringType;
|
|
587
|
-
readonly endsWith: StringType;
|
|
588
|
-
readonly isEmpty: NullType;
|
|
589
|
-
readonly isNotEmpty: NullType;
|
|
590
|
-
}>;
|
|
591
|
-
}>;
|
|
592
|
-
readonly integer: StructType<{
|
|
593
|
-
readonly fieldId: StringType;
|
|
594
|
-
readonly op: VariantType<{
|
|
595
|
-
readonly eq: IntegerType;
|
|
596
|
-
readonly neq: IntegerType;
|
|
597
|
-
readonly lt: IntegerType;
|
|
598
|
-
readonly lte: IntegerType;
|
|
599
|
-
readonly gt: IntegerType;
|
|
600
|
-
readonly gte: IntegerType;
|
|
601
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
602
|
-
}>;
|
|
603
|
-
}>;
|
|
604
|
-
readonly float: StructType<{
|
|
605
|
-
readonly fieldId: StringType;
|
|
606
|
-
readonly op: VariantType<{
|
|
607
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
608
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
609
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
610
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
611
|
-
}>;
|
|
612
|
-
}>;
|
|
613
|
-
readonly datetime: StructType<{
|
|
614
|
-
readonly fieldId: StringType;
|
|
615
|
-
readonly op: VariantType<{
|
|
616
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
617
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
618
|
-
readonly between: StructType<{
|
|
619
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
620
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
621
|
-
}>;
|
|
622
|
-
}>;
|
|
623
|
-
}>;
|
|
624
|
-
readonly boolean: StructType<{
|
|
625
|
-
readonly fieldId: StringType;
|
|
626
|
-
readonly op: VariantType<{
|
|
627
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
628
|
-
}>;
|
|
629
|
-
}>;
|
|
630
|
-
}>>;
|
|
631
|
-
}>>;
|
|
632
|
-
readonly activeCohorts: import("@elaraai/east").SetType<StringType>;
|
|
633
|
-
readonly breakdown: OptionType<StructType<{
|
|
634
|
-
readonly fieldId: StringType;
|
|
635
|
-
readonly limit: OptionType<IntegerType>;
|
|
636
|
-
}>>;
|
|
637
|
-
readonly search: OptionType<StringType>;
|
|
638
|
-
readonly visible: OptionType<import("@elaraai/east").SetType<StringType>>;
|
|
639
|
-
readonly selectedIndex: OptionType<IntegerType>;
|
|
640
|
-
}>], NullType>;
|
|
641
|
-
readonly setRange: FunctionType<[OptionType<VariantType<{
|
|
642
|
-
readonly datetime: StructType<{
|
|
643
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
644
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
645
|
-
}>;
|
|
646
|
-
readonly datetimePreset: VariantType<{
|
|
647
|
-
readonly today: NullType;
|
|
648
|
-
readonly last7d: NullType;
|
|
649
|
-
readonly last30d: NullType;
|
|
650
|
-
readonly last90d: NullType;
|
|
651
|
-
readonly ytd: NullType;
|
|
652
|
-
}>;
|
|
653
|
-
readonly integer: StructType<{
|
|
654
|
-
readonly from: IntegerType;
|
|
655
|
-
readonly to: IntegerType;
|
|
656
|
-
}>;
|
|
657
|
-
readonly float: StructType<{
|
|
658
|
-
readonly from: import("@elaraai/east").FloatType;
|
|
659
|
-
readonly to: import("@elaraai/east").FloatType;
|
|
660
|
-
}>;
|
|
661
|
-
}>>], NullType>;
|
|
662
|
-
readonly setCompare: FunctionType<[OptionType<VariantType<{
|
|
663
|
-
readonly previousPeriod: NullType;
|
|
664
|
-
readonly previousYear: NullType;
|
|
665
|
-
}>>], NullType>;
|
|
666
|
-
readonly addFilter: FunctionType<[VariantType<{
|
|
667
|
-
readonly string: StructType<{
|
|
668
|
-
readonly fieldId: StringType;
|
|
669
|
-
readonly op: VariantType<{
|
|
670
|
-
readonly eq: StringType;
|
|
671
|
-
readonly neq: StringType;
|
|
672
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
673
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
674
|
-
readonly contains: StringType;
|
|
675
|
-
readonly matches: StringType;
|
|
676
|
-
readonly startsWith: StringType;
|
|
677
|
-
readonly endsWith: StringType;
|
|
678
|
-
readonly isEmpty: NullType;
|
|
679
|
-
readonly isNotEmpty: NullType;
|
|
680
|
-
}>;
|
|
681
|
-
}>;
|
|
682
|
-
readonly integer: StructType<{
|
|
683
|
-
readonly fieldId: StringType;
|
|
684
|
-
readonly op: VariantType<{
|
|
685
|
-
readonly eq: IntegerType;
|
|
686
|
-
readonly neq: IntegerType;
|
|
687
|
-
readonly lt: IntegerType;
|
|
688
|
-
readonly lte: IntegerType;
|
|
689
|
-
readonly gt: IntegerType;
|
|
690
|
-
readonly gte: IntegerType;
|
|
691
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
692
|
-
}>;
|
|
693
|
-
}>;
|
|
694
|
-
readonly float: StructType<{
|
|
695
|
-
readonly fieldId: StringType;
|
|
696
|
-
readonly op: VariantType<{
|
|
697
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
698
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
699
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
700
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
701
|
-
}>;
|
|
702
|
-
}>;
|
|
703
|
-
readonly datetime: StructType<{
|
|
704
|
-
readonly fieldId: StringType;
|
|
705
|
-
readonly op: VariantType<{
|
|
706
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
707
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
708
|
-
readonly between: StructType<{
|
|
709
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
710
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
711
|
-
}>;
|
|
712
|
-
}>;
|
|
713
|
-
}>;
|
|
714
|
-
readonly boolean: StructType<{
|
|
715
|
-
readonly fieldId: StringType;
|
|
716
|
-
readonly op: VariantType<{
|
|
717
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
718
|
-
}>;
|
|
719
|
-
}>;
|
|
720
|
-
}>], NullType>;
|
|
721
|
-
readonly removeFilter: FunctionType<[IntegerType], NullType>;
|
|
722
|
-
readonly clearFilters: FunctionType<[], NullType>;
|
|
723
|
-
readonly defineCohort: FunctionType<[StructType<{
|
|
724
|
-
readonly id: StringType;
|
|
725
|
-
readonly name: StringType;
|
|
726
|
-
readonly filters: ArrayType<VariantType<{
|
|
727
|
-
readonly string: StructType<{
|
|
728
|
-
readonly fieldId: StringType;
|
|
729
|
-
readonly op: VariantType<{
|
|
730
|
-
readonly eq: StringType;
|
|
731
|
-
readonly neq: StringType;
|
|
732
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
733
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
734
|
-
readonly contains: StringType;
|
|
735
|
-
readonly matches: StringType;
|
|
736
|
-
readonly startsWith: StringType;
|
|
737
|
-
readonly endsWith: StringType;
|
|
738
|
-
readonly isEmpty: NullType;
|
|
739
|
-
readonly isNotEmpty: NullType;
|
|
740
|
-
}>;
|
|
741
|
-
}>;
|
|
742
|
-
readonly integer: StructType<{
|
|
743
|
-
readonly fieldId: StringType;
|
|
744
|
-
readonly op: VariantType<{
|
|
745
|
-
readonly eq: IntegerType;
|
|
746
|
-
readonly neq: IntegerType;
|
|
747
|
-
readonly lt: IntegerType;
|
|
748
|
-
readonly lte: IntegerType;
|
|
749
|
-
readonly gt: IntegerType;
|
|
750
|
-
readonly gte: IntegerType;
|
|
751
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
752
|
-
}>;
|
|
753
|
-
}>;
|
|
754
|
-
readonly float: StructType<{
|
|
755
|
-
readonly fieldId: StringType;
|
|
756
|
-
readonly op: VariantType<{
|
|
757
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
758
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
759
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
760
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
761
|
-
}>;
|
|
762
|
-
}>;
|
|
763
|
-
readonly datetime: StructType<{
|
|
764
|
-
readonly fieldId: StringType;
|
|
765
|
-
readonly op: VariantType<{
|
|
766
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
767
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
768
|
-
readonly between: StructType<{
|
|
769
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
770
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
771
|
-
}>;
|
|
772
|
-
}>;
|
|
773
|
-
}>;
|
|
774
|
-
readonly boolean: StructType<{
|
|
775
|
-
readonly fieldId: StringType;
|
|
776
|
-
readonly op: VariantType<{
|
|
777
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
778
|
-
}>;
|
|
779
|
-
}>;
|
|
780
|
-
}>>;
|
|
781
|
-
}>], NullType>;
|
|
782
|
-
readonly updateCohort: FunctionType<[StringType, StructType<{
|
|
783
|
-
readonly id: StringType;
|
|
784
|
-
readonly name: StringType;
|
|
785
|
-
readonly filters: ArrayType<VariantType<{
|
|
786
|
-
readonly string: StructType<{
|
|
787
|
-
readonly fieldId: StringType;
|
|
788
|
-
readonly op: VariantType<{
|
|
789
|
-
readonly eq: StringType;
|
|
790
|
-
readonly neq: StringType;
|
|
791
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
792
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
793
|
-
readonly contains: StringType;
|
|
794
|
-
readonly matches: StringType;
|
|
795
|
-
readonly startsWith: StringType;
|
|
796
|
-
readonly endsWith: StringType;
|
|
797
|
-
readonly isEmpty: NullType;
|
|
798
|
-
readonly isNotEmpty: NullType;
|
|
799
|
-
}>;
|
|
800
|
-
}>;
|
|
801
|
-
readonly integer: StructType<{
|
|
802
|
-
readonly fieldId: StringType;
|
|
803
|
-
readonly op: VariantType<{
|
|
804
|
-
readonly eq: IntegerType;
|
|
805
|
-
readonly neq: IntegerType;
|
|
806
|
-
readonly lt: IntegerType;
|
|
807
|
-
readonly lte: IntegerType;
|
|
808
|
-
readonly gt: IntegerType;
|
|
809
|
-
readonly gte: IntegerType;
|
|
810
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
811
|
-
}>;
|
|
812
|
-
}>;
|
|
813
|
-
readonly float: StructType<{
|
|
814
|
-
readonly fieldId: StringType;
|
|
815
|
-
readonly op: VariantType<{
|
|
816
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
817
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
818
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
819
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
820
|
-
}>;
|
|
821
|
-
}>;
|
|
822
|
-
readonly datetime: StructType<{
|
|
823
|
-
readonly fieldId: StringType;
|
|
824
|
-
readonly op: VariantType<{
|
|
825
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
826
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
827
|
-
readonly between: StructType<{
|
|
828
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
829
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
830
|
-
}>;
|
|
831
|
-
}>;
|
|
832
|
-
}>;
|
|
833
|
-
readonly boolean: StructType<{
|
|
834
|
-
readonly fieldId: StringType;
|
|
835
|
-
readonly op: VariantType<{
|
|
836
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
837
|
-
}>;
|
|
838
|
-
}>;
|
|
839
|
-
}>>;
|
|
840
|
-
}>], NullType>;
|
|
841
|
-
readonly removeCohort: FunctionType<[StringType], NullType>;
|
|
842
|
-
readonly toggleCohort: FunctionType<[StringType], NullType>;
|
|
843
|
-
readonly setBreakdown: FunctionType<[OptionType<StructType<{
|
|
844
|
-
readonly fieldId: StringType;
|
|
845
|
-
readonly limit: OptionType<IntegerType>;
|
|
846
|
-
}>>], NullType>;
|
|
847
|
-
readonly setSearch: FunctionType<[OptionType<StringType>], NullType>;
|
|
848
|
-
readonly setVisible: FunctionType<[OptionType<import("@elaraai/east").SetType<StringType>>], NullType>;
|
|
849
|
-
readonly select: FunctionType<[OptionType<IntegerType>], NullType>;
|
|
850
|
-
readonly isActive: FunctionType<[], import("@elaraai/east").BooleanType>;
|
|
851
|
-
readonly activeCount: FunctionType<[], IntegerType>;
|
|
852
|
-
readonly dimensions: FunctionType<[], ArrayType<StructType<{
|
|
853
|
-
readonly fieldId: StringType;
|
|
854
|
-
readonly label: StringType;
|
|
855
|
-
}>>>;
|
|
856
|
-
readonly fields: FunctionType<[], ArrayType<StructType<{
|
|
857
|
-
readonly fieldId: StringType;
|
|
858
|
-
readonly label: StringType;
|
|
859
|
-
readonly kind: StringType;
|
|
860
|
-
readonly hints: ArrayType<StringType>;
|
|
861
|
-
readonly format: OptionType<VariantType<{
|
|
862
|
-
readonly number: NullType;
|
|
863
|
-
readonly currency: StructType<{
|
|
864
|
-
readonly code: StringType;
|
|
865
|
-
readonly compact: import("@elaraai/east").BooleanType;
|
|
866
|
-
}>;
|
|
867
|
-
readonly percent: NullType;
|
|
868
|
-
readonly compact: NullType;
|
|
869
|
-
readonly date: StringType;
|
|
870
|
-
readonly time: StringType;
|
|
871
|
-
readonly datetime: StringType;
|
|
872
|
-
}>>;
|
|
873
|
-
}>>>;
|
|
874
|
-
readonly searchFieldIds: FunctionType<[], ArrayType<StringType>>;
|
|
875
|
-
readonly rangeFieldId: FunctionType<[], OptionType<StringType>>;
|
|
876
|
-
readonly totalCount: FunctionType<[], IntegerType>;
|
|
877
|
-
readonly resultCount: FunctionType<[], IntegerType>;
|
|
878
|
-
readonly groups: FunctionType<[], ArrayType<StructType<{
|
|
879
|
-
readonly key: StringType;
|
|
880
|
-
readonly count: IntegerType;
|
|
881
|
-
readonly color: StringType;
|
|
882
|
-
}>>>;
|
|
883
|
-
readonly series: FunctionType<[StringType, StringType], ArrayType<StructType<{
|
|
884
|
-
readonly key: StringType;
|
|
885
|
-
readonly color: StringType;
|
|
886
|
-
readonly points: ArrayType<StructType<{
|
|
887
|
-
readonly x: VariantType<{
|
|
888
|
-
readonly category: StringType;
|
|
889
|
-
readonly number: import("@elaraai/east").FloatType;
|
|
890
|
-
readonly time: import("@elaraai/east").DateTimeType;
|
|
891
|
-
}>;
|
|
892
|
-
readonly value: import("@elaraai/east").FloatType;
|
|
893
|
-
readonly size: OptionType<import("@elaraai/east").FloatType>;
|
|
894
|
-
readonly color: OptionType<StringType>;
|
|
895
|
-
}>>;
|
|
896
|
-
}>>>;
|
|
897
|
-
readonly matches: FunctionType<[], ArrayType<StructType<{
|
|
898
|
-
readonly id: StringType;
|
|
899
|
-
readonly label: StringType;
|
|
900
|
-
readonly meta: OptionType<StringType>;
|
|
901
|
-
}>>>;
|
|
902
|
-
readonly cohortCounts: FunctionType<[], DictType<StringType, IntegerType>>;
|
|
903
|
-
readonly toggleFilter: FunctionType<[VariantType<{
|
|
904
|
-
readonly string: StructType<{
|
|
905
|
-
readonly fieldId: StringType;
|
|
906
|
-
readonly op: VariantType<{
|
|
907
|
-
readonly eq: StringType;
|
|
908
|
-
readonly neq: StringType;
|
|
909
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
910
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
911
|
-
readonly contains: StringType;
|
|
912
|
-
readonly matches: StringType;
|
|
913
|
-
readonly startsWith: StringType;
|
|
914
|
-
readonly endsWith: StringType;
|
|
915
|
-
readonly isEmpty: NullType;
|
|
916
|
-
readonly isNotEmpty: NullType;
|
|
917
|
-
}>;
|
|
918
|
-
}>;
|
|
919
|
-
readonly integer: StructType<{
|
|
920
|
-
readonly fieldId: StringType;
|
|
921
|
-
readonly op: VariantType<{
|
|
922
|
-
readonly eq: IntegerType;
|
|
923
|
-
readonly neq: IntegerType;
|
|
924
|
-
readonly lt: IntegerType;
|
|
925
|
-
readonly lte: IntegerType;
|
|
926
|
-
readonly gt: IntegerType;
|
|
927
|
-
readonly gte: IntegerType;
|
|
928
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
929
|
-
}>;
|
|
930
|
-
}>;
|
|
931
|
-
readonly float: StructType<{
|
|
932
|
-
readonly fieldId: StringType;
|
|
933
|
-
readonly op: VariantType<{
|
|
934
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
935
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
936
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
937
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
938
|
-
}>;
|
|
939
|
-
}>;
|
|
940
|
-
readonly datetime: StructType<{
|
|
941
|
-
readonly fieldId: StringType;
|
|
942
|
-
readonly op: VariantType<{
|
|
943
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
944
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
945
|
-
readonly between: StructType<{
|
|
946
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
947
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
948
|
-
}>;
|
|
949
|
-
}>;
|
|
950
|
-
}>;
|
|
951
|
-
readonly boolean: StructType<{
|
|
952
|
-
readonly fieldId: StringType;
|
|
953
|
-
readonly op: VariantType<{
|
|
954
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
955
|
-
}>;
|
|
956
|
-
}>;
|
|
957
|
-
}>], NullType>;
|
|
958
|
-
readonly facetGroups: FunctionType<[], ArrayType<StructType<{
|
|
959
|
-
readonly key: StringType;
|
|
960
|
-
readonly count: IntegerType;
|
|
961
|
-
readonly color: StringType;
|
|
962
|
-
}>>>;
|
|
963
|
-
}>;
|
|
964
185
|
readonly queue: FunctionType<[], ArrayType<StructType<{
|
|
965
186
|
readonly id: StringType;
|
|
966
187
|
readonly kind: StringType;
|
|
@@ -1630,778 +851,6 @@ export declare const DecisionHandleType: StructType<{
|
|
|
1630
851
|
readonly direct: NullType;
|
|
1631
852
|
}>;
|
|
1632
853
|
}>;
|
|
1633
|
-
readonly sliceInit: OptionType<StructType<{
|
|
1634
|
-
readonly range: OptionType<VariantType<{
|
|
1635
|
-
readonly datetime: StructType<{
|
|
1636
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
1637
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
1638
|
-
}>;
|
|
1639
|
-
readonly datetimePreset: VariantType<{
|
|
1640
|
-
readonly today: NullType;
|
|
1641
|
-
readonly last7d: NullType;
|
|
1642
|
-
readonly last30d: NullType;
|
|
1643
|
-
readonly last90d: NullType;
|
|
1644
|
-
readonly ytd: NullType;
|
|
1645
|
-
}>;
|
|
1646
|
-
readonly integer: StructType<{
|
|
1647
|
-
readonly from: IntegerType;
|
|
1648
|
-
readonly to: IntegerType;
|
|
1649
|
-
}>;
|
|
1650
|
-
readonly float: StructType<{
|
|
1651
|
-
readonly from: import("@elaraai/east").FloatType;
|
|
1652
|
-
readonly to: import("@elaraai/east").FloatType;
|
|
1653
|
-
}>;
|
|
1654
|
-
}>>;
|
|
1655
|
-
readonly compare: OptionType<VariantType<{
|
|
1656
|
-
readonly previousPeriod: NullType;
|
|
1657
|
-
readonly previousYear: NullType;
|
|
1658
|
-
}>>;
|
|
1659
|
-
readonly filters: ArrayType<VariantType<{
|
|
1660
|
-
readonly string: StructType<{
|
|
1661
|
-
readonly fieldId: StringType;
|
|
1662
|
-
readonly op: VariantType<{
|
|
1663
|
-
readonly eq: StringType;
|
|
1664
|
-
readonly neq: StringType;
|
|
1665
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
1666
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
1667
|
-
readonly contains: StringType;
|
|
1668
|
-
readonly matches: StringType;
|
|
1669
|
-
readonly startsWith: StringType;
|
|
1670
|
-
readonly endsWith: StringType;
|
|
1671
|
-
readonly isEmpty: NullType;
|
|
1672
|
-
readonly isNotEmpty: NullType;
|
|
1673
|
-
}>;
|
|
1674
|
-
}>;
|
|
1675
|
-
readonly integer: StructType<{
|
|
1676
|
-
readonly fieldId: StringType;
|
|
1677
|
-
readonly op: VariantType<{
|
|
1678
|
-
readonly eq: IntegerType;
|
|
1679
|
-
readonly neq: IntegerType;
|
|
1680
|
-
readonly lt: IntegerType;
|
|
1681
|
-
readonly lte: IntegerType;
|
|
1682
|
-
readonly gt: IntegerType;
|
|
1683
|
-
readonly gte: IntegerType;
|
|
1684
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
1685
|
-
}>;
|
|
1686
|
-
}>;
|
|
1687
|
-
readonly float: StructType<{
|
|
1688
|
-
readonly fieldId: StringType;
|
|
1689
|
-
readonly op: VariantType<{
|
|
1690
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
1691
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
1692
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
1693
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
1694
|
-
}>;
|
|
1695
|
-
}>;
|
|
1696
|
-
readonly datetime: StructType<{
|
|
1697
|
-
readonly fieldId: StringType;
|
|
1698
|
-
readonly op: VariantType<{
|
|
1699
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
1700
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
1701
|
-
readonly between: StructType<{
|
|
1702
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
1703
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
1704
|
-
}>;
|
|
1705
|
-
}>;
|
|
1706
|
-
}>;
|
|
1707
|
-
readonly boolean: StructType<{
|
|
1708
|
-
readonly fieldId: StringType;
|
|
1709
|
-
readonly op: VariantType<{
|
|
1710
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
1711
|
-
}>;
|
|
1712
|
-
}>;
|
|
1713
|
-
}>>;
|
|
1714
|
-
readonly cohorts: ArrayType<StructType<{
|
|
1715
|
-
readonly id: StringType;
|
|
1716
|
-
readonly name: StringType;
|
|
1717
|
-
readonly filters: ArrayType<VariantType<{
|
|
1718
|
-
readonly string: StructType<{
|
|
1719
|
-
readonly fieldId: StringType;
|
|
1720
|
-
readonly op: VariantType<{
|
|
1721
|
-
readonly eq: StringType;
|
|
1722
|
-
readonly neq: StringType;
|
|
1723
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
1724
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
1725
|
-
readonly contains: StringType;
|
|
1726
|
-
readonly matches: StringType;
|
|
1727
|
-
readonly startsWith: StringType;
|
|
1728
|
-
readonly endsWith: StringType;
|
|
1729
|
-
readonly isEmpty: NullType;
|
|
1730
|
-
readonly isNotEmpty: NullType;
|
|
1731
|
-
}>;
|
|
1732
|
-
}>;
|
|
1733
|
-
readonly integer: StructType<{
|
|
1734
|
-
readonly fieldId: StringType;
|
|
1735
|
-
readonly op: VariantType<{
|
|
1736
|
-
readonly eq: IntegerType;
|
|
1737
|
-
readonly neq: IntegerType;
|
|
1738
|
-
readonly lt: IntegerType;
|
|
1739
|
-
readonly lte: IntegerType;
|
|
1740
|
-
readonly gt: IntegerType;
|
|
1741
|
-
readonly gte: IntegerType;
|
|
1742
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
1743
|
-
}>;
|
|
1744
|
-
}>;
|
|
1745
|
-
readonly float: StructType<{
|
|
1746
|
-
readonly fieldId: StringType;
|
|
1747
|
-
readonly op: VariantType<{
|
|
1748
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
1749
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
1750
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
1751
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
1752
|
-
}>;
|
|
1753
|
-
}>;
|
|
1754
|
-
readonly datetime: StructType<{
|
|
1755
|
-
readonly fieldId: StringType;
|
|
1756
|
-
readonly op: VariantType<{
|
|
1757
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
1758
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
1759
|
-
readonly between: StructType<{
|
|
1760
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
1761
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
1762
|
-
}>;
|
|
1763
|
-
}>;
|
|
1764
|
-
}>;
|
|
1765
|
-
readonly boolean: StructType<{
|
|
1766
|
-
readonly fieldId: StringType;
|
|
1767
|
-
readonly op: VariantType<{
|
|
1768
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
1769
|
-
}>;
|
|
1770
|
-
}>;
|
|
1771
|
-
}>>;
|
|
1772
|
-
}>>;
|
|
1773
|
-
readonly activeCohorts: import("@elaraai/east").SetType<StringType>;
|
|
1774
|
-
readonly breakdown: OptionType<StructType<{
|
|
1775
|
-
readonly fieldId: StringType;
|
|
1776
|
-
readonly limit: OptionType<IntegerType>;
|
|
1777
|
-
}>>;
|
|
1778
|
-
readonly search: OptionType<StringType>;
|
|
1779
|
-
readonly visible: OptionType<import("@elaraai/east").SetType<StringType>>;
|
|
1780
|
-
readonly selectedIndex: OptionType<IntegerType>;
|
|
1781
|
-
}>>;
|
|
1782
|
-
readonly slice: StructType<{
|
|
1783
|
-
readonly key: StringType;
|
|
1784
|
-
readonly read: FunctionType<[], StructType<{
|
|
1785
|
-
readonly range: OptionType<VariantType<{
|
|
1786
|
-
readonly datetime: StructType<{
|
|
1787
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
1788
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
1789
|
-
}>;
|
|
1790
|
-
readonly datetimePreset: VariantType<{
|
|
1791
|
-
readonly today: NullType;
|
|
1792
|
-
readonly last7d: NullType;
|
|
1793
|
-
readonly last30d: NullType;
|
|
1794
|
-
readonly last90d: NullType;
|
|
1795
|
-
readonly ytd: NullType;
|
|
1796
|
-
}>;
|
|
1797
|
-
readonly integer: StructType<{
|
|
1798
|
-
readonly from: IntegerType;
|
|
1799
|
-
readonly to: IntegerType;
|
|
1800
|
-
}>;
|
|
1801
|
-
readonly float: StructType<{
|
|
1802
|
-
readonly from: import("@elaraai/east").FloatType;
|
|
1803
|
-
readonly to: import("@elaraai/east").FloatType;
|
|
1804
|
-
}>;
|
|
1805
|
-
}>>;
|
|
1806
|
-
readonly compare: OptionType<VariantType<{
|
|
1807
|
-
readonly previousPeriod: NullType;
|
|
1808
|
-
readonly previousYear: NullType;
|
|
1809
|
-
}>>;
|
|
1810
|
-
readonly filters: ArrayType<VariantType<{
|
|
1811
|
-
readonly string: StructType<{
|
|
1812
|
-
readonly fieldId: StringType;
|
|
1813
|
-
readonly op: VariantType<{
|
|
1814
|
-
readonly eq: StringType;
|
|
1815
|
-
readonly neq: StringType;
|
|
1816
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
1817
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
1818
|
-
readonly contains: StringType;
|
|
1819
|
-
readonly matches: StringType;
|
|
1820
|
-
readonly startsWith: StringType;
|
|
1821
|
-
readonly endsWith: StringType;
|
|
1822
|
-
readonly isEmpty: NullType;
|
|
1823
|
-
readonly isNotEmpty: NullType;
|
|
1824
|
-
}>;
|
|
1825
|
-
}>;
|
|
1826
|
-
readonly integer: StructType<{
|
|
1827
|
-
readonly fieldId: StringType;
|
|
1828
|
-
readonly op: VariantType<{
|
|
1829
|
-
readonly eq: IntegerType;
|
|
1830
|
-
readonly neq: IntegerType;
|
|
1831
|
-
readonly lt: IntegerType;
|
|
1832
|
-
readonly lte: IntegerType;
|
|
1833
|
-
readonly gt: IntegerType;
|
|
1834
|
-
readonly gte: IntegerType;
|
|
1835
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
1836
|
-
}>;
|
|
1837
|
-
}>;
|
|
1838
|
-
readonly float: StructType<{
|
|
1839
|
-
readonly fieldId: StringType;
|
|
1840
|
-
readonly op: VariantType<{
|
|
1841
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
1842
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
1843
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
1844
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
1845
|
-
}>;
|
|
1846
|
-
}>;
|
|
1847
|
-
readonly datetime: StructType<{
|
|
1848
|
-
readonly fieldId: StringType;
|
|
1849
|
-
readonly op: VariantType<{
|
|
1850
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
1851
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
1852
|
-
readonly between: StructType<{
|
|
1853
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
1854
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
1855
|
-
}>;
|
|
1856
|
-
}>;
|
|
1857
|
-
}>;
|
|
1858
|
-
readonly boolean: StructType<{
|
|
1859
|
-
readonly fieldId: StringType;
|
|
1860
|
-
readonly op: VariantType<{
|
|
1861
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
1862
|
-
}>;
|
|
1863
|
-
}>;
|
|
1864
|
-
}>>;
|
|
1865
|
-
readonly cohorts: ArrayType<StructType<{
|
|
1866
|
-
readonly id: StringType;
|
|
1867
|
-
readonly name: StringType;
|
|
1868
|
-
readonly filters: ArrayType<VariantType<{
|
|
1869
|
-
readonly string: StructType<{
|
|
1870
|
-
readonly fieldId: StringType;
|
|
1871
|
-
readonly op: VariantType<{
|
|
1872
|
-
readonly eq: StringType;
|
|
1873
|
-
readonly neq: StringType;
|
|
1874
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
1875
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
1876
|
-
readonly contains: StringType;
|
|
1877
|
-
readonly matches: StringType;
|
|
1878
|
-
readonly startsWith: StringType;
|
|
1879
|
-
readonly endsWith: StringType;
|
|
1880
|
-
readonly isEmpty: NullType;
|
|
1881
|
-
readonly isNotEmpty: NullType;
|
|
1882
|
-
}>;
|
|
1883
|
-
}>;
|
|
1884
|
-
readonly integer: StructType<{
|
|
1885
|
-
readonly fieldId: StringType;
|
|
1886
|
-
readonly op: VariantType<{
|
|
1887
|
-
readonly eq: IntegerType;
|
|
1888
|
-
readonly neq: IntegerType;
|
|
1889
|
-
readonly lt: IntegerType;
|
|
1890
|
-
readonly lte: IntegerType;
|
|
1891
|
-
readonly gt: IntegerType;
|
|
1892
|
-
readonly gte: IntegerType;
|
|
1893
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
1894
|
-
}>;
|
|
1895
|
-
}>;
|
|
1896
|
-
readonly float: StructType<{
|
|
1897
|
-
readonly fieldId: StringType;
|
|
1898
|
-
readonly op: VariantType<{
|
|
1899
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
1900
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
1901
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
1902
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
1903
|
-
}>;
|
|
1904
|
-
}>;
|
|
1905
|
-
readonly datetime: StructType<{
|
|
1906
|
-
readonly fieldId: StringType;
|
|
1907
|
-
readonly op: VariantType<{
|
|
1908
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
1909
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
1910
|
-
readonly between: StructType<{
|
|
1911
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
1912
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
1913
|
-
}>;
|
|
1914
|
-
}>;
|
|
1915
|
-
}>;
|
|
1916
|
-
readonly boolean: StructType<{
|
|
1917
|
-
readonly fieldId: StringType;
|
|
1918
|
-
readonly op: VariantType<{
|
|
1919
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
1920
|
-
}>;
|
|
1921
|
-
}>;
|
|
1922
|
-
}>>;
|
|
1923
|
-
}>>;
|
|
1924
|
-
readonly activeCohorts: import("@elaraai/east").SetType<StringType>;
|
|
1925
|
-
readonly breakdown: OptionType<StructType<{
|
|
1926
|
-
readonly fieldId: StringType;
|
|
1927
|
-
readonly limit: OptionType<IntegerType>;
|
|
1928
|
-
}>>;
|
|
1929
|
-
readonly search: OptionType<StringType>;
|
|
1930
|
-
readonly visible: OptionType<import("@elaraai/east").SetType<StringType>>;
|
|
1931
|
-
readonly selectedIndex: OptionType<IntegerType>;
|
|
1932
|
-
}>>;
|
|
1933
|
-
readonly write: FunctionType<[StructType<{
|
|
1934
|
-
readonly range: OptionType<VariantType<{
|
|
1935
|
-
readonly datetime: StructType<{
|
|
1936
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
1937
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
1938
|
-
}>;
|
|
1939
|
-
readonly datetimePreset: VariantType<{
|
|
1940
|
-
readonly today: NullType;
|
|
1941
|
-
readonly last7d: NullType;
|
|
1942
|
-
readonly last30d: NullType;
|
|
1943
|
-
readonly last90d: NullType;
|
|
1944
|
-
readonly ytd: NullType;
|
|
1945
|
-
}>;
|
|
1946
|
-
readonly integer: StructType<{
|
|
1947
|
-
readonly from: IntegerType;
|
|
1948
|
-
readonly to: IntegerType;
|
|
1949
|
-
}>;
|
|
1950
|
-
readonly float: StructType<{
|
|
1951
|
-
readonly from: import("@elaraai/east").FloatType;
|
|
1952
|
-
readonly to: import("@elaraai/east").FloatType;
|
|
1953
|
-
}>;
|
|
1954
|
-
}>>;
|
|
1955
|
-
readonly compare: OptionType<VariantType<{
|
|
1956
|
-
readonly previousPeriod: NullType;
|
|
1957
|
-
readonly previousYear: NullType;
|
|
1958
|
-
}>>;
|
|
1959
|
-
readonly filters: ArrayType<VariantType<{
|
|
1960
|
-
readonly string: StructType<{
|
|
1961
|
-
readonly fieldId: StringType;
|
|
1962
|
-
readonly op: VariantType<{
|
|
1963
|
-
readonly eq: StringType;
|
|
1964
|
-
readonly neq: StringType;
|
|
1965
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
1966
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
1967
|
-
readonly contains: StringType;
|
|
1968
|
-
readonly matches: StringType;
|
|
1969
|
-
readonly startsWith: StringType;
|
|
1970
|
-
readonly endsWith: StringType;
|
|
1971
|
-
readonly isEmpty: NullType;
|
|
1972
|
-
readonly isNotEmpty: NullType;
|
|
1973
|
-
}>;
|
|
1974
|
-
}>;
|
|
1975
|
-
readonly integer: StructType<{
|
|
1976
|
-
readonly fieldId: StringType;
|
|
1977
|
-
readonly op: VariantType<{
|
|
1978
|
-
readonly eq: IntegerType;
|
|
1979
|
-
readonly neq: IntegerType;
|
|
1980
|
-
readonly lt: IntegerType;
|
|
1981
|
-
readonly lte: IntegerType;
|
|
1982
|
-
readonly gt: IntegerType;
|
|
1983
|
-
readonly gte: IntegerType;
|
|
1984
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
1985
|
-
}>;
|
|
1986
|
-
}>;
|
|
1987
|
-
readonly float: StructType<{
|
|
1988
|
-
readonly fieldId: StringType;
|
|
1989
|
-
readonly op: VariantType<{
|
|
1990
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
1991
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
1992
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
1993
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
1994
|
-
}>;
|
|
1995
|
-
}>;
|
|
1996
|
-
readonly datetime: StructType<{
|
|
1997
|
-
readonly fieldId: StringType;
|
|
1998
|
-
readonly op: VariantType<{
|
|
1999
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
2000
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
2001
|
-
readonly between: StructType<{
|
|
2002
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
2003
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
2004
|
-
}>;
|
|
2005
|
-
}>;
|
|
2006
|
-
}>;
|
|
2007
|
-
readonly boolean: StructType<{
|
|
2008
|
-
readonly fieldId: StringType;
|
|
2009
|
-
readonly op: VariantType<{
|
|
2010
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
2011
|
-
}>;
|
|
2012
|
-
}>;
|
|
2013
|
-
}>>;
|
|
2014
|
-
readonly cohorts: ArrayType<StructType<{
|
|
2015
|
-
readonly id: StringType;
|
|
2016
|
-
readonly name: StringType;
|
|
2017
|
-
readonly filters: ArrayType<VariantType<{
|
|
2018
|
-
readonly string: StructType<{
|
|
2019
|
-
readonly fieldId: StringType;
|
|
2020
|
-
readonly op: VariantType<{
|
|
2021
|
-
readonly eq: StringType;
|
|
2022
|
-
readonly neq: StringType;
|
|
2023
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
2024
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
2025
|
-
readonly contains: StringType;
|
|
2026
|
-
readonly matches: StringType;
|
|
2027
|
-
readonly startsWith: StringType;
|
|
2028
|
-
readonly endsWith: StringType;
|
|
2029
|
-
readonly isEmpty: NullType;
|
|
2030
|
-
readonly isNotEmpty: NullType;
|
|
2031
|
-
}>;
|
|
2032
|
-
}>;
|
|
2033
|
-
readonly integer: StructType<{
|
|
2034
|
-
readonly fieldId: StringType;
|
|
2035
|
-
readonly op: VariantType<{
|
|
2036
|
-
readonly eq: IntegerType;
|
|
2037
|
-
readonly neq: IntegerType;
|
|
2038
|
-
readonly lt: IntegerType;
|
|
2039
|
-
readonly lte: IntegerType;
|
|
2040
|
-
readonly gt: IntegerType;
|
|
2041
|
-
readonly gte: IntegerType;
|
|
2042
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
2043
|
-
}>;
|
|
2044
|
-
}>;
|
|
2045
|
-
readonly float: StructType<{
|
|
2046
|
-
readonly fieldId: StringType;
|
|
2047
|
-
readonly op: VariantType<{
|
|
2048
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
2049
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
2050
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
2051
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
2052
|
-
}>;
|
|
2053
|
-
}>;
|
|
2054
|
-
readonly datetime: StructType<{
|
|
2055
|
-
readonly fieldId: StringType;
|
|
2056
|
-
readonly op: VariantType<{
|
|
2057
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
2058
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
2059
|
-
readonly between: StructType<{
|
|
2060
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
2061
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
2062
|
-
}>;
|
|
2063
|
-
}>;
|
|
2064
|
-
}>;
|
|
2065
|
-
readonly boolean: StructType<{
|
|
2066
|
-
readonly fieldId: StringType;
|
|
2067
|
-
readonly op: VariantType<{
|
|
2068
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
2069
|
-
}>;
|
|
2070
|
-
}>;
|
|
2071
|
-
}>>;
|
|
2072
|
-
}>>;
|
|
2073
|
-
readonly activeCohorts: import("@elaraai/east").SetType<StringType>;
|
|
2074
|
-
readonly breakdown: OptionType<StructType<{
|
|
2075
|
-
readonly fieldId: StringType;
|
|
2076
|
-
readonly limit: OptionType<IntegerType>;
|
|
2077
|
-
}>>;
|
|
2078
|
-
readonly search: OptionType<StringType>;
|
|
2079
|
-
readonly visible: OptionType<import("@elaraai/east").SetType<StringType>>;
|
|
2080
|
-
readonly selectedIndex: OptionType<IntegerType>;
|
|
2081
|
-
}>], NullType>;
|
|
2082
|
-
readonly setRange: FunctionType<[OptionType<VariantType<{
|
|
2083
|
-
readonly datetime: StructType<{
|
|
2084
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
2085
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
2086
|
-
}>;
|
|
2087
|
-
readonly datetimePreset: VariantType<{
|
|
2088
|
-
readonly today: NullType;
|
|
2089
|
-
readonly last7d: NullType;
|
|
2090
|
-
readonly last30d: NullType;
|
|
2091
|
-
readonly last90d: NullType;
|
|
2092
|
-
readonly ytd: NullType;
|
|
2093
|
-
}>;
|
|
2094
|
-
readonly integer: StructType<{
|
|
2095
|
-
readonly from: IntegerType;
|
|
2096
|
-
readonly to: IntegerType;
|
|
2097
|
-
}>;
|
|
2098
|
-
readonly float: StructType<{
|
|
2099
|
-
readonly from: import("@elaraai/east").FloatType;
|
|
2100
|
-
readonly to: import("@elaraai/east").FloatType;
|
|
2101
|
-
}>;
|
|
2102
|
-
}>>], NullType>;
|
|
2103
|
-
readonly setCompare: FunctionType<[OptionType<VariantType<{
|
|
2104
|
-
readonly previousPeriod: NullType;
|
|
2105
|
-
readonly previousYear: NullType;
|
|
2106
|
-
}>>], NullType>;
|
|
2107
|
-
readonly addFilter: FunctionType<[VariantType<{
|
|
2108
|
-
readonly string: StructType<{
|
|
2109
|
-
readonly fieldId: StringType;
|
|
2110
|
-
readonly op: VariantType<{
|
|
2111
|
-
readonly eq: StringType;
|
|
2112
|
-
readonly neq: StringType;
|
|
2113
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
2114
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
2115
|
-
readonly contains: StringType;
|
|
2116
|
-
readonly matches: StringType;
|
|
2117
|
-
readonly startsWith: StringType;
|
|
2118
|
-
readonly endsWith: StringType;
|
|
2119
|
-
readonly isEmpty: NullType;
|
|
2120
|
-
readonly isNotEmpty: NullType;
|
|
2121
|
-
}>;
|
|
2122
|
-
}>;
|
|
2123
|
-
readonly integer: StructType<{
|
|
2124
|
-
readonly fieldId: StringType;
|
|
2125
|
-
readonly op: VariantType<{
|
|
2126
|
-
readonly eq: IntegerType;
|
|
2127
|
-
readonly neq: IntegerType;
|
|
2128
|
-
readonly lt: IntegerType;
|
|
2129
|
-
readonly lte: IntegerType;
|
|
2130
|
-
readonly gt: IntegerType;
|
|
2131
|
-
readonly gte: IntegerType;
|
|
2132
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
2133
|
-
}>;
|
|
2134
|
-
}>;
|
|
2135
|
-
readonly float: StructType<{
|
|
2136
|
-
readonly fieldId: StringType;
|
|
2137
|
-
readonly op: VariantType<{
|
|
2138
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
2139
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
2140
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
2141
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
2142
|
-
}>;
|
|
2143
|
-
}>;
|
|
2144
|
-
readonly datetime: StructType<{
|
|
2145
|
-
readonly fieldId: StringType;
|
|
2146
|
-
readonly op: VariantType<{
|
|
2147
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
2148
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
2149
|
-
readonly between: StructType<{
|
|
2150
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
2151
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
2152
|
-
}>;
|
|
2153
|
-
}>;
|
|
2154
|
-
}>;
|
|
2155
|
-
readonly boolean: StructType<{
|
|
2156
|
-
readonly fieldId: StringType;
|
|
2157
|
-
readonly op: VariantType<{
|
|
2158
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
2159
|
-
}>;
|
|
2160
|
-
}>;
|
|
2161
|
-
}>], NullType>;
|
|
2162
|
-
readonly removeFilter: FunctionType<[IntegerType], NullType>;
|
|
2163
|
-
readonly clearFilters: FunctionType<[], NullType>;
|
|
2164
|
-
readonly defineCohort: FunctionType<[StructType<{
|
|
2165
|
-
readonly id: StringType;
|
|
2166
|
-
readonly name: StringType;
|
|
2167
|
-
readonly filters: ArrayType<VariantType<{
|
|
2168
|
-
readonly string: StructType<{
|
|
2169
|
-
readonly fieldId: StringType;
|
|
2170
|
-
readonly op: VariantType<{
|
|
2171
|
-
readonly eq: StringType;
|
|
2172
|
-
readonly neq: StringType;
|
|
2173
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
2174
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
2175
|
-
readonly contains: StringType;
|
|
2176
|
-
readonly matches: StringType;
|
|
2177
|
-
readonly startsWith: StringType;
|
|
2178
|
-
readonly endsWith: StringType;
|
|
2179
|
-
readonly isEmpty: NullType;
|
|
2180
|
-
readonly isNotEmpty: NullType;
|
|
2181
|
-
}>;
|
|
2182
|
-
}>;
|
|
2183
|
-
readonly integer: StructType<{
|
|
2184
|
-
readonly fieldId: StringType;
|
|
2185
|
-
readonly op: VariantType<{
|
|
2186
|
-
readonly eq: IntegerType;
|
|
2187
|
-
readonly neq: IntegerType;
|
|
2188
|
-
readonly lt: IntegerType;
|
|
2189
|
-
readonly lte: IntegerType;
|
|
2190
|
-
readonly gt: IntegerType;
|
|
2191
|
-
readonly gte: IntegerType;
|
|
2192
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
2193
|
-
}>;
|
|
2194
|
-
}>;
|
|
2195
|
-
readonly float: StructType<{
|
|
2196
|
-
readonly fieldId: StringType;
|
|
2197
|
-
readonly op: VariantType<{
|
|
2198
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
2199
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
2200
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
2201
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
2202
|
-
}>;
|
|
2203
|
-
}>;
|
|
2204
|
-
readonly datetime: StructType<{
|
|
2205
|
-
readonly fieldId: StringType;
|
|
2206
|
-
readonly op: VariantType<{
|
|
2207
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
2208
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
2209
|
-
readonly between: StructType<{
|
|
2210
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
2211
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
2212
|
-
}>;
|
|
2213
|
-
}>;
|
|
2214
|
-
}>;
|
|
2215
|
-
readonly boolean: StructType<{
|
|
2216
|
-
readonly fieldId: StringType;
|
|
2217
|
-
readonly op: VariantType<{
|
|
2218
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
2219
|
-
}>;
|
|
2220
|
-
}>;
|
|
2221
|
-
}>>;
|
|
2222
|
-
}>], NullType>;
|
|
2223
|
-
readonly updateCohort: FunctionType<[StringType, StructType<{
|
|
2224
|
-
readonly id: StringType;
|
|
2225
|
-
readonly name: StringType;
|
|
2226
|
-
readonly filters: ArrayType<VariantType<{
|
|
2227
|
-
readonly string: StructType<{
|
|
2228
|
-
readonly fieldId: StringType;
|
|
2229
|
-
readonly op: VariantType<{
|
|
2230
|
-
readonly eq: StringType;
|
|
2231
|
-
readonly neq: StringType;
|
|
2232
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
2233
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
2234
|
-
readonly contains: StringType;
|
|
2235
|
-
readonly matches: StringType;
|
|
2236
|
-
readonly startsWith: StringType;
|
|
2237
|
-
readonly endsWith: StringType;
|
|
2238
|
-
readonly isEmpty: NullType;
|
|
2239
|
-
readonly isNotEmpty: NullType;
|
|
2240
|
-
}>;
|
|
2241
|
-
}>;
|
|
2242
|
-
readonly integer: StructType<{
|
|
2243
|
-
readonly fieldId: StringType;
|
|
2244
|
-
readonly op: VariantType<{
|
|
2245
|
-
readonly eq: IntegerType;
|
|
2246
|
-
readonly neq: IntegerType;
|
|
2247
|
-
readonly lt: IntegerType;
|
|
2248
|
-
readonly lte: IntegerType;
|
|
2249
|
-
readonly gt: IntegerType;
|
|
2250
|
-
readonly gte: IntegerType;
|
|
2251
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
2252
|
-
}>;
|
|
2253
|
-
}>;
|
|
2254
|
-
readonly float: StructType<{
|
|
2255
|
-
readonly fieldId: StringType;
|
|
2256
|
-
readonly op: VariantType<{
|
|
2257
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
2258
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
2259
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
2260
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
2261
|
-
}>;
|
|
2262
|
-
}>;
|
|
2263
|
-
readonly datetime: StructType<{
|
|
2264
|
-
readonly fieldId: StringType;
|
|
2265
|
-
readonly op: VariantType<{
|
|
2266
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
2267
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
2268
|
-
readonly between: StructType<{
|
|
2269
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
2270
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
2271
|
-
}>;
|
|
2272
|
-
}>;
|
|
2273
|
-
}>;
|
|
2274
|
-
readonly boolean: StructType<{
|
|
2275
|
-
readonly fieldId: StringType;
|
|
2276
|
-
readonly op: VariantType<{
|
|
2277
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
2278
|
-
}>;
|
|
2279
|
-
}>;
|
|
2280
|
-
}>>;
|
|
2281
|
-
}>], NullType>;
|
|
2282
|
-
readonly removeCohort: FunctionType<[StringType], NullType>;
|
|
2283
|
-
readonly toggleCohort: FunctionType<[StringType], NullType>;
|
|
2284
|
-
readonly setBreakdown: FunctionType<[OptionType<StructType<{
|
|
2285
|
-
readonly fieldId: StringType;
|
|
2286
|
-
readonly limit: OptionType<IntegerType>;
|
|
2287
|
-
}>>], NullType>;
|
|
2288
|
-
readonly setSearch: FunctionType<[OptionType<StringType>], NullType>;
|
|
2289
|
-
readonly setVisible: FunctionType<[OptionType<import("@elaraai/east").SetType<StringType>>], NullType>;
|
|
2290
|
-
readonly select: FunctionType<[OptionType<IntegerType>], NullType>;
|
|
2291
|
-
readonly isActive: FunctionType<[], import("@elaraai/east").BooleanType>;
|
|
2292
|
-
readonly activeCount: FunctionType<[], IntegerType>;
|
|
2293
|
-
readonly dimensions: FunctionType<[], ArrayType<StructType<{
|
|
2294
|
-
readonly fieldId: StringType;
|
|
2295
|
-
readonly label: StringType;
|
|
2296
|
-
}>>>;
|
|
2297
|
-
readonly fields: FunctionType<[], ArrayType<StructType<{
|
|
2298
|
-
readonly fieldId: StringType;
|
|
2299
|
-
readonly label: StringType;
|
|
2300
|
-
readonly kind: StringType;
|
|
2301
|
-
readonly hints: ArrayType<StringType>;
|
|
2302
|
-
readonly format: OptionType<VariantType<{
|
|
2303
|
-
readonly number: NullType;
|
|
2304
|
-
readonly currency: StructType<{
|
|
2305
|
-
readonly code: StringType;
|
|
2306
|
-
readonly compact: import("@elaraai/east").BooleanType;
|
|
2307
|
-
}>;
|
|
2308
|
-
readonly percent: NullType;
|
|
2309
|
-
readonly compact: NullType;
|
|
2310
|
-
readonly date: StringType;
|
|
2311
|
-
readonly time: StringType;
|
|
2312
|
-
readonly datetime: StringType;
|
|
2313
|
-
}>>;
|
|
2314
|
-
}>>>;
|
|
2315
|
-
readonly searchFieldIds: FunctionType<[], ArrayType<StringType>>;
|
|
2316
|
-
readonly rangeFieldId: FunctionType<[], OptionType<StringType>>;
|
|
2317
|
-
readonly totalCount: FunctionType<[], IntegerType>;
|
|
2318
|
-
readonly resultCount: FunctionType<[], IntegerType>;
|
|
2319
|
-
readonly groups: FunctionType<[], ArrayType<StructType<{
|
|
2320
|
-
readonly key: StringType;
|
|
2321
|
-
readonly count: IntegerType;
|
|
2322
|
-
readonly color: StringType;
|
|
2323
|
-
}>>>;
|
|
2324
|
-
readonly series: FunctionType<[StringType, StringType], ArrayType<StructType<{
|
|
2325
|
-
readonly key: StringType;
|
|
2326
|
-
readonly color: StringType;
|
|
2327
|
-
readonly points: ArrayType<StructType<{
|
|
2328
|
-
readonly x: VariantType<{
|
|
2329
|
-
readonly category: StringType;
|
|
2330
|
-
readonly number: import("@elaraai/east").FloatType;
|
|
2331
|
-
readonly time: import("@elaraai/east").DateTimeType;
|
|
2332
|
-
}>;
|
|
2333
|
-
readonly value: import("@elaraai/east").FloatType;
|
|
2334
|
-
readonly size: OptionType<import("@elaraai/east").FloatType>;
|
|
2335
|
-
readonly color: OptionType<StringType>;
|
|
2336
|
-
}>>;
|
|
2337
|
-
}>>>;
|
|
2338
|
-
readonly matches: FunctionType<[], ArrayType<StructType<{
|
|
2339
|
-
readonly id: StringType;
|
|
2340
|
-
readonly label: StringType;
|
|
2341
|
-
readonly meta: OptionType<StringType>;
|
|
2342
|
-
}>>>;
|
|
2343
|
-
readonly cohortCounts: FunctionType<[], DictType<StringType, IntegerType>>;
|
|
2344
|
-
readonly toggleFilter: FunctionType<[VariantType<{
|
|
2345
|
-
readonly string: StructType<{
|
|
2346
|
-
readonly fieldId: StringType;
|
|
2347
|
-
readonly op: VariantType<{
|
|
2348
|
-
readonly eq: StringType;
|
|
2349
|
-
readonly neq: StringType;
|
|
2350
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
2351
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
2352
|
-
readonly contains: StringType;
|
|
2353
|
-
readonly matches: StringType;
|
|
2354
|
-
readonly startsWith: StringType;
|
|
2355
|
-
readonly endsWith: StringType;
|
|
2356
|
-
readonly isEmpty: NullType;
|
|
2357
|
-
readonly isNotEmpty: NullType;
|
|
2358
|
-
}>;
|
|
2359
|
-
}>;
|
|
2360
|
-
readonly integer: StructType<{
|
|
2361
|
-
readonly fieldId: StringType;
|
|
2362
|
-
readonly op: VariantType<{
|
|
2363
|
-
readonly eq: IntegerType;
|
|
2364
|
-
readonly neq: IntegerType;
|
|
2365
|
-
readonly lt: IntegerType;
|
|
2366
|
-
readonly lte: IntegerType;
|
|
2367
|
-
readonly gt: IntegerType;
|
|
2368
|
-
readonly gte: IntegerType;
|
|
2369
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
2370
|
-
}>;
|
|
2371
|
-
}>;
|
|
2372
|
-
readonly float: StructType<{
|
|
2373
|
-
readonly fieldId: StringType;
|
|
2374
|
-
readonly op: VariantType<{
|
|
2375
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
2376
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
2377
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
2378
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
2379
|
-
}>;
|
|
2380
|
-
}>;
|
|
2381
|
-
readonly datetime: StructType<{
|
|
2382
|
-
readonly fieldId: StringType;
|
|
2383
|
-
readonly op: VariantType<{
|
|
2384
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
2385
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
2386
|
-
readonly between: StructType<{
|
|
2387
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
2388
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
2389
|
-
}>;
|
|
2390
|
-
}>;
|
|
2391
|
-
}>;
|
|
2392
|
-
readonly boolean: StructType<{
|
|
2393
|
-
readonly fieldId: StringType;
|
|
2394
|
-
readonly op: VariantType<{
|
|
2395
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
2396
|
-
}>;
|
|
2397
|
-
}>;
|
|
2398
|
-
}>], NullType>;
|
|
2399
|
-
readonly facetGroups: FunctionType<[], ArrayType<StructType<{
|
|
2400
|
-
readonly key: StringType;
|
|
2401
|
-
readonly count: IntegerType;
|
|
2402
|
-
readonly color: StringType;
|
|
2403
|
-
}>>>;
|
|
2404
|
-
}>;
|
|
2405
854
|
readonly queue: FunctionType<[], ArrayType<StructType<{
|
|
2406
855
|
readonly id: StringType;
|
|
2407
856
|
readonly kind: StringType;
|
|
@@ -3124,7 +1573,7 @@ export type DecisionHandle<C extends EastType = DecisionConstraintType> = ExprTy
|
|
|
3124
1573
|
/** What a surface needs from a handle of ANY contract — the descriptor
|
|
3125
1574
|
* fields its payload ref carries. Components accept this so one queue
|
|
3126
1575
|
* serves every solution contract. */
|
|
3127
|
-
export type DecisionHandleLike = Pick<DecisionHandle, 'decisions' | 'judgements'
|
|
1576
|
+
export type DecisionHandleLike = Pick<DecisionHandle, 'decisions' | 'judgements'>;
|
|
3128
1577
|
/**
|
|
3129
1578
|
* The encodable identity of a handle — its binding descriptors. Extension
|
|
3130
1579
|
* component payloads are beast2-encoded, so they carry this ref (plain
|
|
@@ -3159,155 +1608,6 @@ export declare const DecisionHandleRefType: StructType<{
|
|
|
3159
1608
|
readonly direct: NullType;
|
|
3160
1609
|
}>;
|
|
3161
1610
|
}>;
|
|
3162
|
-
readonly slice: OptionType<StructType<{
|
|
3163
|
-
readonly range: OptionType<VariantType<{
|
|
3164
|
-
readonly datetime: StructType<{
|
|
3165
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
3166
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
3167
|
-
}>;
|
|
3168
|
-
readonly datetimePreset: VariantType<{
|
|
3169
|
-
readonly today: NullType;
|
|
3170
|
-
readonly last7d: NullType;
|
|
3171
|
-
readonly last30d: NullType;
|
|
3172
|
-
readonly last90d: NullType;
|
|
3173
|
-
readonly ytd: NullType;
|
|
3174
|
-
}>;
|
|
3175
|
-
readonly integer: StructType<{
|
|
3176
|
-
readonly from: IntegerType;
|
|
3177
|
-
readonly to: IntegerType;
|
|
3178
|
-
}>;
|
|
3179
|
-
readonly float: StructType<{
|
|
3180
|
-
readonly from: import("@elaraai/east").FloatType;
|
|
3181
|
-
readonly to: import("@elaraai/east").FloatType;
|
|
3182
|
-
}>;
|
|
3183
|
-
}>>;
|
|
3184
|
-
readonly compare: OptionType<VariantType<{
|
|
3185
|
-
readonly previousPeriod: NullType;
|
|
3186
|
-
readonly previousYear: NullType;
|
|
3187
|
-
}>>;
|
|
3188
|
-
readonly filters: ArrayType<VariantType<{
|
|
3189
|
-
readonly string: StructType<{
|
|
3190
|
-
readonly fieldId: StringType;
|
|
3191
|
-
readonly op: VariantType<{
|
|
3192
|
-
readonly eq: StringType;
|
|
3193
|
-
readonly neq: StringType;
|
|
3194
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
3195
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
3196
|
-
readonly contains: StringType;
|
|
3197
|
-
readonly matches: StringType;
|
|
3198
|
-
readonly startsWith: StringType;
|
|
3199
|
-
readonly endsWith: StringType;
|
|
3200
|
-
readonly isEmpty: NullType;
|
|
3201
|
-
readonly isNotEmpty: NullType;
|
|
3202
|
-
}>;
|
|
3203
|
-
}>;
|
|
3204
|
-
readonly integer: StructType<{
|
|
3205
|
-
readonly fieldId: StringType;
|
|
3206
|
-
readonly op: VariantType<{
|
|
3207
|
-
readonly eq: IntegerType;
|
|
3208
|
-
readonly neq: IntegerType;
|
|
3209
|
-
readonly lt: IntegerType;
|
|
3210
|
-
readonly lte: IntegerType;
|
|
3211
|
-
readonly gt: IntegerType;
|
|
3212
|
-
readonly gte: IntegerType;
|
|
3213
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
3214
|
-
}>;
|
|
3215
|
-
}>;
|
|
3216
|
-
readonly float: StructType<{
|
|
3217
|
-
readonly fieldId: StringType;
|
|
3218
|
-
readonly op: VariantType<{
|
|
3219
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
3220
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
3221
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
3222
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
3223
|
-
}>;
|
|
3224
|
-
}>;
|
|
3225
|
-
readonly datetime: StructType<{
|
|
3226
|
-
readonly fieldId: StringType;
|
|
3227
|
-
readonly op: VariantType<{
|
|
3228
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
3229
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
3230
|
-
readonly between: StructType<{
|
|
3231
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
3232
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
3233
|
-
}>;
|
|
3234
|
-
}>;
|
|
3235
|
-
}>;
|
|
3236
|
-
readonly boolean: StructType<{
|
|
3237
|
-
readonly fieldId: StringType;
|
|
3238
|
-
readonly op: VariantType<{
|
|
3239
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
3240
|
-
}>;
|
|
3241
|
-
}>;
|
|
3242
|
-
}>>;
|
|
3243
|
-
readonly cohorts: ArrayType<StructType<{
|
|
3244
|
-
readonly id: StringType;
|
|
3245
|
-
readonly name: StringType;
|
|
3246
|
-
readonly filters: ArrayType<VariantType<{
|
|
3247
|
-
readonly string: StructType<{
|
|
3248
|
-
readonly fieldId: StringType;
|
|
3249
|
-
readonly op: VariantType<{
|
|
3250
|
-
readonly eq: StringType;
|
|
3251
|
-
readonly neq: StringType;
|
|
3252
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
3253
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
3254
|
-
readonly contains: StringType;
|
|
3255
|
-
readonly matches: StringType;
|
|
3256
|
-
readonly startsWith: StringType;
|
|
3257
|
-
readonly endsWith: StringType;
|
|
3258
|
-
readonly isEmpty: NullType;
|
|
3259
|
-
readonly isNotEmpty: NullType;
|
|
3260
|
-
}>;
|
|
3261
|
-
}>;
|
|
3262
|
-
readonly integer: StructType<{
|
|
3263
|
-
readonly fieldId: StringType;
|
|
3264
|
-
readonly op: VariantType<{
|
|
3265
|
-
readonly eq: IntegerType;
|
|
3266
|
-
readonly neq: IntegerType;
|
|
3267
|
-
readonly lt: IntegerType;
|
|
3268
|
-
readonly lte: IntegerType;
|
|
3269
|
-
readonly gt: IntegerType;
|
|
3270
|
-
readonly gte: IntegerType;
|
|
3271
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
3272
|
-
}>;
|
|
3273
|
-
}>;
|
|
3274
|
-
readonly float: StructType<{
|
|
3275
|
-
readonly fieldId: StringType;
|
|
3276
|
-
readonly op: VariantType<{
|
|
3277
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
3278
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
3279
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
3280
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
3281
|
-
}>;
|
|
3282
|
-
}>;
|
|
3283
|
-
readonly datetime: StructType<{
|
|
3284
|
-
readonly fieldId: StringType;
|
|
3285
|
-
readonly op: VariantType<{
|
|
3286
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
3287
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
3288
|
-
readonly between: StructType<{
|
|
3289
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
3290
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
3291
|
-
}>;
|
|
3292
|
-
}>;
|
|
3293
|
-
}>;
|
|
3294
|
-
readonly boolean: StructType<{
|
|
3295
|
-
readonly fieldId: StringType;
|
|
3296
|
-
readonly op: VariantType<{
|
|
3297
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
3298
|
-
}>;
|
|
3299
|
-
}>;
|
|
3300
|
-
}>>;
|
|
3301
|
-
}>>;
|
|
3302
|
-
readonly activeCohorts: import("@elaraai/east").SetType<StringType>;
|
|
3303
|
-
readonly breakdown: OptionType<StructType<{
|
|
3304
|
-
readonly fieldId: StringType;
|
|
3305
|
-
readonly limit: OptionType<IntegerType>;
|
|
3306
|
-
}>>;
|
|
3307
|
-
readonly search: OptionType<StringType>;
|
|
3308
|
-
readonly visible: OptionType<import("@elaraai/east").SetType<StringType>>;
|
|
3309
|
-
readonly selectedIndex: OptionType<IntegerType>;
|
|
3310
|
-
}>>;
|
|
3311
1611
|
}>;
|
|
3312
1612
|
/** Type alias for {@link DecisionHandleRefType}. */
|
|
3313
1613
|
export type DecisionHandleRefType = typeof DecisionHandleRefType;
|
|
@@ -3339,155 +1639,7 @@ export declare const decisionBindPlatformFn: import("@elaraai/east").GenericPlat
|
|
|
3339
1639
|
readonly staged: NullType;
|
|
3340
1640
|
readonly direct: NullType;
|
|
3341
1641
|
}>;
|
|
3342
|
-
}
|
|
3343
|
-
readonly range: OptionType<VariantType<{
|
|
3344
|
-
readonly datetime: StructType<{
|
|
3345
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
3346
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
3347
|
-
}>;
|
|
3348
|
-
readonly datetimePreset: VariantType<{
|
|
3349
|
-
readonly today: NullType;
|
|
3350
|
-
readonly last7d: NullType;
|
|
3351
|
-
readonly last30d: NullType;
|
|
3352
|
-
readonly last90d: NullType;
|
|
3353
|
-
readonly ytd: NullType;
|
|
3354
|
-
}>;
|
|
3355
|
-
readonly integer: StructType<{
|
|
3356
|
-
readonly from: IntegerType;
|
|
3357
|
-
readonly to: IntegerType;
|
|
3358
|
-
}>;
|
|
3359
|
-
readonly float: StructType<{
|
|
3360
|
-
readonly from: import("@elaraai/east").FloatType;
|
|
3361
|
-
readonly to: import("@elaraai/east").FloatType;
|
|
3362
|
-
}>;
|
|
3363
|
-
}>>;
|
|
3364
|
-
readonly compare: OptionType<VariantType<{
|
|
3365
|
-
readonly previousPeriod: NullType;
|
|
3366
|
-
readonly previousYear: NullType;
|
|
3367
|
-
}>>;
|
|
3368
|
-
readonly filters: ArrayType<VariantType<{
|
|
3369
|
-
readonly string: StructType<{
|
|
3370
|
-
readonly fieldId: StringType;
|
|
3371
|
-
readonly op: VariantType<{
|
|
3372
|
-
readonly eq: StringType;
|
|
3373
|
-
readonly neq: StringType;
|
|
3374
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
3375
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
3376
|
-
readonly contains: StringType;
|
|
3377
|
-
readonly matches: StringType;
|
|
3378
|
-
readonly startsWith: StringType;
|
|
3379
|
-
readonly endsWith: StringType;
|
|
3380
|
-
readonly isEmpty: NullType;
|
|
3381
|
-
readonly isNotEmpty: NullType;
|
|
3382
|
-
}>;
|
|
3383
|
-
}>;
|
|
3384
|
-
readonly integer: StructType<{
|
|
3385
|
-
readonly fieldId: StringType;
|
|
3386
|
-
readonly op: VariantType<{
|
|
3387
|
-
readonly eq: IntegerType;
|
|
3388
|
-
readonly neq: IntegerType;
|
|
3389
|
-
readonly lt: IntegerType;
|
|
3390
|
-
readonly lte: IntegerType;
|
|
3391
|
-
readonly gt: IntegerType;
|
|
3392
|
-
readonly gte: IntegerType;
|
|
3393
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
3394
|
-
}>;
|
|
3395
|
-
}>;
|
|
3396
|
-
readonly float: StructType<{
|
|
3397
|
-
readonly fieldId: StringType;
|
|
3398
|
-
readonly op: VariantType<{
|
|
3399
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
3400
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
3401
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
3402
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
3403
|
-
}>;
|
|
3404
|
-
}>;
|
|
3405
|
-
readonly datetime: StructType<{
|
|
3406
|
-
readonly fieldId: StringType;
|
|
3407
|
-
readonly op: VariantType<{
|
|
3408
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
3409
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
3410
|
-
readonly between: StructType<{
|
|
3411
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
3412
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
3413
|
-
}>;
|
|
3414
|
-
}>;
|
|
3415
|
-
}>;
|
|
3416
|
-
readonly boolean: StructType<{
|
|
3417
|
-
readonly fieldId: StringType;
|
|
3418
|
-
readonly op: VariantType<{
|
|
3419
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
3420
|
-
}>;
|
|
3421
|
-
}>;
|
|
3422
|
-
}>>;
|
|
3423
|
-
readonly cohorts: ArrayType<StructType<{
|
|
3424
|
-
readonly id: StringType;
|
|
3425
|
-
readonly name: StringType;
|
|
3426
|
-
readonly filters: ArrayType<VariantType<{
|
|
3427
|
-
readonly string: StructType<{
|
|
3428
|
-
readonly fieldId: StringType;
|
|
3429
|
-
readonly op: VariantType<{
|
|
3430
|
-
readonly eq: StringType;
|
|
3431
|
-
readonly neq: StringType;
|
|
3432
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
3433
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
3434
|
-
readonly contains: StringType;
|
|
3435
|
-
readonly matches: StringType;
|
|
3436
|
-
readonly startsWith: StringType;
|
|
3437
|
-
readonly endsWith: StringType;
|
|
3438
|
-
readonly isEmpty: NullType;
|
|
3439
|
-
readonly isNotEmpty: NullType;
|
|
3440
|
-
}>;
|
|
3441
|
-
}>;
|
|
3442
|
-
readonly integer: StructType<{
|
|
3443
|
-
readonly fieldId: StringType;
|
|
3444
|
-
readonly op: VariantType<{
|
|
3445
|
-
readonly eq: IntegerType;
|
|
3446
|
-
readonly neq: IntegerType;
|
|
3447
|
-
readonly lt: IntegerType;
|
|
3448
|
-
readonly lte: IntegerType;
|
|
3449
|
-
readonly gt: IntegerType;
|
|
3450
|
-
readonly gte: IntegerType;
|
|
3451
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
3452
|
-
}>;
|
|
3453
|
-
}>;
|
|
3454
|
-
readonly float: StructType<{
|
|
3455
|
-
readonly fieldId: StringType;
|
|
3456
|
-
readonly op: VariantType<{
|
|
3457
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
3458
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
3459
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
3460
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
3461
|
-
}>;
|
|
3462
|
-
}>;
|
|
3463
|
-
readonly datetime: StructType<{
|
|
3464
|
-
readonly fieldId: StringType;
|
|
3465
|
-
readonly op: VariantType<{
|
|
3466
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
3467
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
3468
|
-
readonly between: StructType<{
|
|
3469
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
3470
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
3471
|
-
}>;
|
|
3472
|
-
}>;
|
|
3473
|
-
}>;
|
|
3474
|
-
readonly boolean: StructType<{
|
|
3475
|
-
readonly fieldId: StringType;
|
|
3476
|
-
readonly op: VariantType<{
|
|
3477
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
3478
|
-
}>;
|
|
3479
|
-
}>;
|
|
3480
|
-
}>>;
|
|
3481
|
-
}>>;
|
|
3482
|
-
readonly activeCohorts: import("@elaraai/east").SetType<StringType>;
|
|
3483
|
-
readonly breakdown: OptionType<StructType<{
|
|
3484
|
-
readonly fieldId: StringType;
|
|
3485
|
-
readonly limit: OptionType<IntegerType>;
|
|
3486
|
-
}>>;
|
|
3487
|
-
readonly search: OptionType<StringType>;
|
|
3488
|
-
readonly visible: OptionType<import("@elaraai/east").SetType<StringType>>;
|
|
3489
|
-
readonly selectedIndex: OptionType<IntegerType>;
|
|
3490
|
-
}>>], StructType<{
|
|
1642
|
+
}>], StructType<{
|
|
3491
1643
|
readonly decisions: ArrayType<StructType<{
|
|
3492
1644
|
readonly source: ArrayType<VariantType<{
|
|
3493
1645
|
readonly field: StringType;
|
|
@@ -3512,778 +1664,6 @@ export declare const decisionBindPlatformFn: import("@elaraai/east").GenericPlat
|
|
|
3512
1664
|
readonly direct: NullType;
|
|
3513
1665
|
}>;
|
|
3514
1666
|
}>;
|
|
3515
|
-
readonly sliceInit: OptionType<StructType<{
|
|
3516
|
-
readonly range: OptionType<VariantType<{
|
|
3517
|
-
readonly datetime: StructType<{
|
|
3518
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
3519
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
3520
|
-
}>;
|
|
3521
|
-
readonly datetimePreset: VariantType<{
|
|
3522
|
-
readonly today: NullType;
|
|
3523
|
-
readonly last7d: NullType;
|
|
3524
|
-
readonly last30d: NullType;
|
|
3525
|
-
readonly last90d: NullType;
|
|
3526
|
-
readonly ytd: NullType;
|
|
3527
|
-
}>;
|
|
3528
|
-
readonly integer: StructType<{
|
|
3529
|
-
readonly from: IntegerType;
|
|
3530
|
-
readonly to: IntegerType;
|
|
3531
|
-
}>;
|
|
3532
|
-
readonly float: StructType<{
|
|
3533
|
-
readonly from: import("@elaraai/east").FloatType;
|
|
3534
|
-
readonly to: import("@elaraai/east").FloatType;
|
|
3535
|
-
}>;
|
|
3536
|
-
}>>;
|
|
3537
|
-
readonly compare: OptionType<VariantType<{
|
|
3538
|
-
readonly previousPeriod: NullType;
|
|
3539
|
-
readonly previousYear: NullType;
|
|
3540
|
-
}>>;
|
|
3541
|
-
readonly filters: ArrayType<VariantType<{
|
|
3542
|
-
readonly string: StructType<{
|
|
3543
|
-
readonly fieldId: StringType;
|
|
3544
|
-
readonly op: VariantType<{
|
|
3545
|
-
readonly eq: StringType;
|
|
3546
|
-
readonly neq: StringType;
|
|
3547
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
3548
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
3549
|
-
readonly contains: StringType;
|
|
3550
|
-
readonly matches: StringType;
|
|
3551
|
-
readonly startsWith: StringType;
|
|
3552
|
-
readonly endsWith: StringType;
|
|
3553
|
-
readonly isEmpty: NullType;
|
|
3554
|
-
readonly isNotEmpty: NullType;
|
|
3555
|
-
}>;
|
|
3556
|
-
}>;
|
|
3557
|
-
readonly integer: StructType<{
|
|
3558
|
-
readonly fieldId: StringType;
|
|
3559
|
-
readonly op: VariantType<{
|
|
3560
|
-
readonly eq: IntegerType;
|
|
3561
|
-
readonly neq: IntegerType;
|
|
3562
|
-
readonly lt: IntegerType;
|
|
3563
|
-
readonly lte: IntegerType;
|
|
3564
|
-
readonly gt: IntegerType;
|
|
3565
|
-
readonly gte: IntegerType;
|
|
3566
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
3567
|
-
}>;
|
|
3568
|
-
}>;
|
|
3569
|
-
readonly float: StructType<{
|
|
3570
|
-
readonly fieldId: StringType;
|
|
3571
|
-
readonly op: VariantType<{
|
|
3572
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
3573
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
3574
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
3575
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
3576
|
-
}>;
|
|
3577
|
-
}>;
|
|
3578
|
-
readonly datetime: StructType<{
|
|
3579
|
-
readonly fieldId: StringType;
|
|
3580
|
-
readonly op: VariantType<{
|
|
3581
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
3582
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
3583
|
-
readonly between: StructType<{
|
|
3584
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
3585
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
3586
|
-
}>;
|
|
3587
|
-
}>;
|
|
3588
|
-
}>;
|
|
3589
|
-
readonly boolean: StructType<{
|
|
3590
|
-
readonly fieldId: StringType;
|
|
3591
|
-
readonly op: VariantType<{
|
|
3592
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
3593
|
-
}>;
|
|
3594
|
-
}>;
|
|
3595
|
-
}>>;
|
|
3596
|
-
readonly cohorts: ArrayType<StructType<{
|
|
3597
|
-
readonly id: StringType;
|
|
3598
|
-
readonly name: StringType;
|
|
3599
|
-
readonly filters: ArrayType<VariantType<{
|
|
3600
|
-
readonly string: StructType<{
|
|
3601
|
-
readonly fieldId: StringType;
|
|
3602
|
-
readonly op: VariantType<{
|
|
3603
|
-
readonly eq: StringType;
|
|
3604
|
-
readonly neq: StringType;
|
|
3605
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
3606
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
3607
|
-
readonly contains: StringType;
|
|
3608
|
-
readonly matches: StringType;
|
|
3609
|
-
readonly startsWith: StringType;
|
|
3610
|
-
readonly endsWith: StringType;
|
|
3611
|
-
readonly isEmpty: NullType;
|
|
3612
|
-
readonly isNotEmpty: NullType;
|
|
3613
|
-
}>;
|
|
3614
|
-
}>;
|
|
3615
|
-
readonly integer: StructType<{
|
|
3616
|
-
readonly fieldId: StringType;
|
|
3617
|
-
readonly op: VariantType<{
|
|
3618
|
-
readonly eq: IntegerType;
|
|
3619
|
-
readonly neq: IntegerType;
|
|
3620
|
-
readonly lt: IntegerType;
|
|
3621
|
-
readonly lte: IntegerType;
|
|
3622
|
-
readonly gt: IntegerType;
|
|
3623
|
-
readonly gte: IntegerType;
|
|
3624
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
3625
|
-
}>;
|
|
3626
|
-
}>;
|
|
3627
|
-
readonly float: StructType<{
|
|
3628
|
-
readonly fieldId: StringType;
|
|
3629
|
-
readonly op: VariantType<{
|
|
3630
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
3631
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
3632
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
3633
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
3634
|
-
}>;
|
|
3635
|
-
}>;
|
|
3636
|
-
readonly datetime: StructType<{
|
|
3637
|
-
readonly fieldId: StringType;
|
|
3638
|
-
readonly op: VariantType<{
|
|
3639
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
3640
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
3641
|
-
readonly between: StructType<{
|
|
3642
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
3643
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
3644
|
-
}>;
|
|
3645
|
-
}>;
|
|
3646
|
-
}>;
|
|
3647
|
-
readonly boolean: StructType<{
|
|
3648
|
-
readonly fieldId: StringType;
|
|
3649
|
-
readonly op: VariantType<{
|
|
3650
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
3651
|
-
}>;
|
|
3652
|
-
}>;
|
|
3653
|
-
}>>;
|
|
3654
|
-
}>>;
|
|
3655
|
-
readonly activeCohorts: import("@elaraai/east").SetType<StringType>;
|
|
3656
|
-
readonly breakdown: OptionType<StructType<{
|
|
3657
|
-
readonly fieldId: StringType;
|
|
3658
|
-
readonly limit: OptionType<IntegerType>;
|
|
3659
|
-
}>>;
|
|
3660
|
-
readonly search: OptionType<StringType>;
|
|
3661
|
-
readonly visible: OptionType<import("@elaraai/east").SetType<StringType>>;
|
|
3662
|
-
readonly selectedIndex: OptionType<IntegerType>;
|
|
3663
|
-
}>>;
|
|
3664
|
-
readonly slice: StructType<{
|
|
3665
|
-
readonly key: StringType;
|
|
3666
|
-
readonly read: FunctionType<[], StructType<{
|
|
3667
|
-
readonly range: OptionType<VariantType<{
|
|
3668
|
-
readonly datetime: StructType<{
|
|
3669
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
3670
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
3671
|
-
}>;
|
|
3672
|
-
readonly datetimePreset: VariantType<{
|
|
3673
|
-
readonly today: NullType;
|
|
3674
|
-
readonly last7d: NullType;
|
|
3675
|
-
readonly last30d: NullType;
|
|
3676
|
-
readonly last90d: NullType;
|
|
3677
|
-
readonly ytd: NullType;
|
|
3678
|
-
}>;
|
|
3679
|
-
readonly integer: StructType<{
|
|
3680
|
-
readonly from: IntegerType;
|
|
3681
|
-
readonly to: IntegerType;
|
|
3682
|
-
}>;
|
|
3683
|
-
readonly float: StructType<{
|
|
3684
|
-
readonly from: import("@elaraai/east").FloatType;
|
|
3685
|
-
readonly to: import("@elaraai/east").FloatType;
|
|
3686
|
-
}>;
|
|
3687
|
-
}>>;
|
|
3688
|
-
readonly compare: OptionType<VariantType<{
|
|
3689
|
-
readonly previousPeriod: NullType;
|
|
3690
|
-
readonly previousYear: NullType;
|
|
3691
|
-
}>>;
|
|
3692
|
-
readonly filters: ArrayType<VariantType<{
|
|
3693
|
-
readonly string: StructType<{
|
|
3694
|
-
readonly fieldId: StringType;
|
|
3695
|
-
readonly op: VariantType<{
|
|
3696
|
-
readonly eq: StringType;
|
|
3697
|
-
readonly neq: StringType;
|
|
3698
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
3699
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
3700
|
-
readonly contains: StringType;
|
|
3701
|
-
readonly matches: StringType;
|
|
3702
|
-
readonly startsWith: StringType;
|
|
3703
|
-
readonly endsWith: StringType;
|
|
3704
|
-
readonly isEmpty: NullType;
|
|
3705
|
-
readonly isNotEmpty: NullType;
|
|
3706
|
-
}>;
|
|
3707
|
-
}>;
|
|
3708
|
-
readonly integer: StructType<{
|
|
3709
|
-
readonly fieldId: StringType;
|
|
3710
|
-
readonly op: VariantType<{
|
|
3711
|
-
readonly eq: IntegerType;
|
|
3712
|
-
readonly neq: IntegerType;
|
|
3713
|
-
readonly lt: IntegerType;
|
|
3714
|
-
readonly lte: IntegerType;
|
|
3715
|
-
readonly gt: IntegerType;
|
|
3716
|
-
readonly gte: IntegerType;
|
|
3717
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
3718
|
-
}>;
|
|
3719
|
-
}>;
|
|
3720
|
-
readonly float: StructType<{
|
|
3721
|
-
readonly fieldId: StringType;
|
|
3722
|
-
readonly op: VariantType<{
|
|
3723
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
3724
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
3725
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
3726
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
3727
|
-
}>;
|
|
3728
|
-
}>;
|
|
3729
|
-
readonly datetime: StructType<{
|
|
3730
|
-
readonly fieldId: StringType;
|
|
3731
|
-
readonly op: VariantType<{
|
|
3732
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
3733
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
3734
|
-
readonly between: StructType<{
|
|
3735
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
3736
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
3737
|
-
}>;
|
|
3738
|
-
}>;
|
|
3739
|
-
}>;
|
|
3740
|
-
readonly boolean: StructType<{
|
|
3741
|
-
readonly fieldId: StringType;
|
|
3742
|
-
readonly op: VariantType<{
|
|
3743
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
3744
|
-
}>;
|
|
3745
|
-
}>;
|
|
3746
|
-
}>>;
|
|
3747
|
-
readonly cohorts: ArrayType<StructType<{
|
|
3748
|
-
readonly id: StringType;
|
|
3749
|
-
readonly name: StringType;
|
|
3750
|
-
readonly filters: ArrayType<VariantType<{
|
|
3751
|
-
readonly string: StructType<{
|
|
3752
|
-
readonly fieldId: StringType;
|
|
3753
|
-
readonly op: VariantType<{
|
|
3754
|
-
readonly eq: StringType;
|
|
3755
|
-
readonly neq: StringType;
|
|
3756
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
3757
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
3758
|
-
readonly contains: StringType;
|
|
3759
|
-
readonly matches: StringType;
|
|
3760
|
-
readonly startsWith: StringType;
|
|
3761
|
-
readonly endsWith: StringType;
|
|
3762
|
-
readonly isEmpty: NullType;
|
|
3763
|
-
readonly isNotEmpty: NullType;
|
|
3764
|
-
}>;
|
|
3765
|
-
}>;
|
|
3766
|
-
readonly integer: StructType<{
|
|
3767
|
-
readonly fieldId: StringType;
|
|
3768
|
-
readonly op: VariantType<{
|
|
3769
|
-
readonly eq: IntegerType;
|
|
3770
|
-
readonly neq: IntegerType;
|
|
3771
|
-
readonly lt: IntegerType;
|
|
3772
|
-
readonly lte: IntegerType;
|
|
3773
|
-
readonly gt: IntegerType;
|
|
3774
|
-
readonly gte: IntegerType;
|
|
3775
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
3776
|
-
}>;
|
|
3777
|
-
}>;
|
|
3778
|
-
readonly float: StructType<{
|
|
3779
|
-
readonly fieldId: StringType;
|
|
3780
|
-
readonly op: VariantType<{
|
|
3781
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
3782
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
3783
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
3784
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
3785
|
-
}>;
|
|
3786
|
-
}>;
|
|
3787
|
-
readonly datetime: StructType<{
|
|
3788
|
-
readonly fieldId: StringType;
|
|
3789
|
-
readonly op: VariantType<{
|
|
3790
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
3791
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
3792
|
-
readonly between: StructType<{
|
|
3793
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
3794
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
3795
|
-
}>;
|
|
3796
|
-
}>;
|
|
3797
|
-
}>;
|
|
3798
|
-
readonly boolean: StructType<{
|
|
3799
|
-
readonly fieldId: StringType;
|
|
3800
|
-
readonly op: VariantType<{
|
|
3801
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
3802
|
-
}>;
|
|
3803
|
-
}>;
|
|
3804
|
-
}>>;
|
|
3805
|
-
}>>;
|
|
3806
|
-
readonly activeCohorts: import("@elaraai/east").SetType<StringType>;
|
|
3807
|
-
readonly breakdown: OptionType<StructType<{
|
|
3808
|
-
readonly fieldId: StringType;
|
|
3809
|
-
readonly limit: OptionType<IntegerType>;
|
|
3810
|
-
}>>;
|
|
3811
|
-
readonly search: OptionType<StringType>;
|
|
3812
|
-
readonly visible: OptionType<import("@elaraai/east").SetType<StringType>>;
|
|
3813
|
-
readonly selectedIndex: OptionType<IntegerType>;
|
|
3814
|
-
}>>;
|
|
3815
|
-
readonly write: FunctionType<[StructType<{
|
|
3816
|
-
readonly range: OptionType<VariantType<{
|
|
3817
|
-
readonly datetime: StructType<{
|
|
3818
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
3819
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
3820
|
-
}>;
|
|
3821
|
-
readonly datetimePreset: VariantType<{
|
|
3822
|
-
readonly today: NullType;
|
|
3823
|
-
readonly last7d: NullType;
|
|
3824
|
-
readonly last30d: NullType;
|
|
3825
|
-
readonly last90d: NullType;
|
|
3826
|
-
readonly ytd: NullType;
|
|
3827
|
-
}>;
|
|
3828
|
-
readonly integer: StructType<{
|
|
3829
|
-
readonly from: IntegerType;
|
|
3830
|
-
readonly to: IntegerType;
|
|
3831
|
-
}>;
|
|
3832
|
-
readonly float: StructType<{
|
|
3833
|
-
readonly from: import("@elaraai/east").FloatType;
|
|
3834
|
-
readonly to: import("@elaraai/east").FloatType;
|
|
3835
|
-
}>;
|
|
3836
|
-
}>>;
|
|
3837
|
-
readonly compare: OptionType<VariantType<{
|
|
3838
|
-
readonly previousPeriod: NullType;
|
|
3839
|
-
readonly previousYear: NullType;
|
|
3840
|
-
}>>;
|
|
3841
|
-
readonly filters: ArrayType<VariantType<{
|
|
3842
|
-
readonly string: StructType<{
|
|
3843
|
-
readonly fieldId: StringType;
|
|
3844
|
-
readonly op: VariantType<{
|
|
3845
|
-
readonly eq: StringType;
|
|
3846
|
-
readonly neq: StringType;
|
|
3847
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
3848
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
3849
|
-
readonly contains: StringType;
|
|
3850
|
-
readonly matches: StringType;
|
|
3851
|
-
readonly startsWith: StringType;
|
|
3852
|
-
readonly endsWith: StringType;
|
|
3853
|
-
readonly isEmpty: NullType;
|
|
3854
|
-
readonly isNotEmpty: NullType;
|
|
3855
|
-
}>;
|
|
3856
|
-
}>;
|
|
3857
|
-
readonly integer: StructType<{
|
|
3858
|
-
readonly fieldId: StringType;
|
|
3859
|
-
readonly op: VariantType<{
|
|
3860
|
-
readonly eq: IntegerType;
|
|
3861
|
-
readonly neq: IntegerType;
|
|
3862
|
-
readonly lt: IntegerType;
|
|
3863
|
-
readonly lte: IntegerType;
|
|
3864
|
-
readonly gt: IntegerType;
|
|
3865
|
-
readonly gte: IntegerType;
|
|
3866
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
3867
|
-
}>;
|
|
3868
|
-
}>;
|
|
3869
|
-
readonly float: StructType<{
|
|
3870
|
-
readonly fieldId: StringType;
|
|
3871
|
-
readonly op: VariantType<{
|
|
3872
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
3873
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
3874
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
3875
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
3876
|
-
}>;
|
|
3877
|
-
}>;
|
|
3878
|
-
readonly datetime: StructType<{
|
|
3879
|
-
readonly fieldId: StringType;
|
|
3880
|
-
readonly op: VariantType<{
|
|
3881
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
3882
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
3883
|
-
readonly between: StructType<{
|
|
3884
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
3885
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
3886
|
-
}>;
|
|
3887
|
-
}>;
|
|
3888
|
-
}>;
|
|
3889
|
-
readonly boolean: StructType<{
|
|
3890
|
-
readonly fieldId: StringType;
|
|
3891
|
-
readonly op: VariantType<{
|
|
3892
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
3893
|
-
}>;
|
|
3894
|
-
}>;
|
|
3895
|
-
}>>;
|
|
3896
|
-
readonly cohorts: ArrayType<StructType<{
|
|
3897
|
-
readonly id: StringType;
|
|
3898
|
-
readonly name: StringType;
|
|
3899
|
-
readonly filters: ArrayType<VariantType<{
|
|
3900
|
-
readonly string: StructType<{
|
|
3901
|
-
readonly fieldId: StringType;
|
|
3902
|
-
readonly op: VariantType<{
|
|
3903
|
-
readonly eq: StringType;
|
|
3904
|
-
readonly neq: StringType;
|
|
3905
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
3906
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
3907
|
-
readonly contains: StringType;
|
|
3908
|
-
readonly matches: StringType;
|
|
3909
|
-
readonly startsWith: StringType;
|
|
3910
|
-
readonly endsWith: StringType;
|
|
3911
|
-
readonly isEmpty: NullType;
|
|
3912
|
-
readonly isNotEmpty: NullType;
|
|
3913
|
-
}>;
|
|
3914
|
-
}>;
|
|
3915
|
-
readonly integer: StructType<{
|
|
3916
|
-
readonly fieldId: StringType;
|
|
3917
|
-
readonly op: VariantType<{
|
|
3918
|
-
readonly eq: IntegerType;
|
|
3919
|
-
readonly neq: IntegerType;
|
|
3920
|
-
readonly lt: IntegerType;
|
|
3921
|
-
readonly lte: IntegerType;
|
|
3922
|
-
readonly gt: IntegerType;
|
|
3923
|
-
readonly gte: IntegerType;
|
|
3924
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
3925
|
-
}>;
|
|
3926
|
-
}>;
|
|
3927
|
-
readonly float: StructType<{
|
|
3928
|
-
readonly fieldId: StringType;
|
|
3929
|
-
readonly op: VariantType<{
|
|
3930
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
3931
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
3932
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
3933
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
3934
|
-
}>;
|
|
3935
|
-
}>;
|
|
3936
|
-
readonly datetime: StructType<{
|
|
3937
|
-
readonly fieldId: StringType;
|
|
3938
|
-
readonly op: VariantType<{
|
|
3939
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
3940
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
3941
|
-
readonly between: StructType<{
|
|
3942
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
3943
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
3944
|
-
}>;
|
|
3945
|
-
}>;
|
|
3946
|
-
}>;
|
|
3947
|
-
readonly boolean: StructType<{
|
|
3948
|
-
readonly fieldId: StringType;
|
|
3949
|
-
readonly op: VariantType<{
|
|
3950
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
3951
|
-
}>;
|
|
3952
|
-
}>;
|
|
3953
|
-
}>>;
|
|
3954
|
-
}>>;
|
|
3955
|
-
readonly activeCohorts: import("@elaraai/east").SetType<StringType>;
|
|
3956
|
-
readonly breakdown: OptionType<StructType<{
|
|
3957
|
-
readonly fieldId: StringType;
|
|
3958
|
-
readonly limit: OptionType<IntegerType>;
|
|
3959
|
-
}>>;
|
|
3960
|
-
readonly search: OptionType<StringType>;
|
|
3961
|
-
readonly visible: OptionType<import("@elaraai/east").SetType<StringType>>;
|
|
3962
|
-
readonly selectedIndex: OptionType<IntegerType>;
|
|
3963
|
-
}>], NullType>;
|
|
3964
|
-
readonly setRange: FunctionType<[OptionType<VariantType<{
|
|
3965
|
-
readonly datetime: StructType<{
|
|
3966
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
3967
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
3968
|
-
}>;
|
|
3969
|
-
readonly datetimePreset: VariantType<{
|
|
3970
|
-
readonly today: NullType;
|
|
3971
|
-
readonly last7d: NullType;
|
|
3972
|
-
readonly last30d: NullType;
|
|
3973
|
-
readonly last90d: NullType;
|
|
3974
|
-
readonly ytd: NullType;
|
|
3975
|
-
}>;
|
|
3976
|
-
readonly integer: StructType<{
|
|
3977
|
-
readonly from: IntegerType;
|
|
3978
|
-
readonly to: IntegerType;
|
|
3979
|
-
}>;
|
|
3980
|
-
readonly float: StructType<{
|
|
3981
|
-
readonly from: import("@elaraai/east").FloatType;
|
|
3982
|
-
readonly to: import("@elaraai/east").FloatType;
|
|
3983
|
-
}>;
|
|
3984
|
-
}>>], NullType>;
|
|
3985
|
-
readonly setCompare: FunctionType<[OptionType<VariantType<{
|
|
3986
|
-
readonly previousPeriod: NullType;
|
|
3987
|
-
readonly previousYear: NullType;
|
|
3988
|
-
}>>], NullType>;
|
|
3989
|
-
readonly addFilter: FunctionType<[VariantType<{
|
|
3990
|
-
readonly string: StructType<{
|
|
3991
|
-
readonly fieldId: StringType;
|
|
3992
|
-
readonly op: VariantType<{
|
|
3993
|
-
readonly eq: StringType;
|
|
3994
|
-
readonly neq: StringType;
|
|
3995
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
3996
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
3997
|
-
readonly contains: StringType;
|
|
3998
|
-
readonly matches: StringType;
|
|
3999
|
-
readonly startsWith: StringType;
|
|
4000
|
-
readonly endsWith: StringType;
|
|
4001
|
-
readonly isEmpty: NullType;
|
|
4002
|
-
readonly isNotEmpty: NullType;
|
|
4003
|
-
}>;
|
|
4004
|
-
}>;
|
|
4005
|
-
readonly integer: StructType<{
|
|
4006
|
-
readonly fieldId: StringType;
|
|
4007
|
-
readonly op: VariantType<{
|
|
4008
|
-
readonly eq: IntegerType;
|
|
4009
|
-
readonly neq: IntegerType;
|
|
4010
|
-
readonly lt: IntegerType;
|
|
4011
|
-
readonly lte: IntegerType;
|
|
4012
|
-
readonly gt: IntegerType;
|
|
4013
|
-
readonly gte: IntegerType;
|
|
4014
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
4015
|
-
}>;
|
|
4016
|
-
}>;
|
|
4017
|
-
readonly float: StructType<{
|
|
4018
|
-
readonly fieldId: StringType;
|
|
4019
|
-
readonly op: VariantType<{
|
|
4020
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
4021
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
4022
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
4023
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
4024
|
-
}>;
|
|
4025
|
-
}>;
|
|
4026
|
-
readonly datetime: StructType<{
|
|
4027
|
-
readonly fieldId: StringType;
|
|
4028
|
-
readonly op: VariantType<{
|
|
4029
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
4030
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
4031
|
-
readonly between: StructType<{
|
|
4032
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
4033
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
4034
|
-
}>;
|
|
4035
|
-
}>;
|
|
4036
|
-
}>;
|
|
4037
|
-
readonly boolean: StructType<{
|
|
4038
|
-
readonly fieldId: StringType;
|
|
4039
|
-
readonly op: VariantType<{
|
|
4040
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
4041
|
-
}>;
|
|
4042
|
-
}>;
|
|
4043
|
-
}>], NullType>;
|
|
4044
|
-
readonly removeFilter: FunctionType<[IntegerType], NullType>;
|
|
4045
|
-
readonly clearFilters: FunctionType<[], NullType>;
|
|
4046
|
-
readonly defineCohort: FunctionType<[StructType<{
|
|
4047
|
-
readonly id: StringType;
|
|
4048
|
-
readonly name: StringType;
|
|
4049
|
-
readonly filters: ArrayType<VariantType<{
|
|
4050
|
-
readonly string: StructType<{
|
|
4051
|
-
readonly fieldId: StringType;
|
|
4052
|
-
readonly op: VariantType<{
|
|
4053
|
-
readonly eq: StringType;
|
|
4054
|
-
readonly neq: StringType;
|
|
4055
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
4056
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
4057
|
-
readonly contains: StringType;
|
|
4058
|
-
readonly matches: StringType;
|
|
4059
|
-
readonly startsWith: StringType;
|
|
4060
|
-
readonly endsWith: StringType;
|
|
4061
|
-
readonly isEmpty: NullType;
|
|
4062
|
-
readonly isNotEmpty: NullType;
|
|
4063
|
-
}>;
|
|
4064
|
-
}>;
|
|
4065
|
-
readonly integer: StructType<{
|
|
4066
|
-
readonly fieldId: StringType;
|
|
4067
|
-
readonly op: VariantType<{
|
|
4068
|
-
readonly eq: IntegerType;
|
|
4069
|
-
readonly neq: IntegerType;
|
|
4070
|
-
readonly lt: IntegerType;
|
|
4071
|
-
readonly lte: IntegerType;
|
|
4072
|
-
readonly gt: IntegerType;
|
|
4073
|
-
readonly gte: IntegerType;
|
|
4074
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
4075
|
-
}>;
|
|
4076
|
-
}>;
|
|
4077
|
-
readonly float: StructType<{
|
|
4078
|
-
readonly fieldId: StringType;
|
|
4079
|
-
readonly op: VariantType<{
|
|
4080
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
4081
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
4082
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
4083
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
4084
|
-
}>;
|
|
4085
|
-
}>;
|
|
4086
|
-
readonly datetime: StructType<{
|
|
4087
|
-
readonly fieldId: StringType;
|
|
4088
|
-
readonly op: VariantType<{
|
|
4089
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
4090
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
4091
|
-
readonly between: StructType<{
|
|
4092
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
4093
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
4094
|
-
}>;
|
|
4095
|
-
}>;
|
|
4096
|
-
}>;
|
|
4097
|
-
readonly boolean: StructType<{
|
|
4098
|
-
readonly fieldId: StringType;
|
|
4099
|
-
readonly op: VariantType<{
|
|
4100
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
4101
|
-
}>;
|
|
4102
|
-
}>;
|
|
4103
|
-
}>>;
|
|
4104
|
-
}>], NullType>;
|
|
4105
|
-
readonly updateCohort: FunctionType<[StringType, StructType<{
|
|
4106
|
-
readonly id: StringType;
|
|
4107
|
-
readonly name: StringType;
|
|
4108
|
-
readonly filters: ArrayType<VariantType<{
|
|
4109
|
-
readonly string: StructType<{
|
|
4110
|
-
readonly fieldId: StringType;
|
|
4111
|
-
readonly op: VariantType<{
|
|
4112
|
-
readonly eq: StringType;
|
|
4113
|
-
readonly neq: StringType;
|
|
4114
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
4115
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
4116
|
-
readonly contains: StringType;
|
|
4117
|
-
readonly matches: StringType;
|
|
4118
|
-
readonly startsWith: StringType;
|
|
4119
|
-
readonly endsWith: StringType;
|
|
4120
|
-
readonly isEmpty: NullType;
|
|
4121
|
-
readonly isNotEmpty: NullType;
|
|
4122
|
-
}>;
|
|
4123
|
-
}>;
|
|
4124
|
-
readonly integer: StructType<{
|
|
4125
|
-
readonly fieldId: StringType;
|
|
4126
|
-
readonly op: VariantType<{
|
|
4127
|
-
readonly eq: IntegerType;
|
|
4128
|
-
readonly neq: IntegerType;
|
|
4129
|
-
readonly lt: IntegerType;
|
|
4130
|
-
readonly lte: IntegerType;
|
|
4131
|
-
readonly gt: IntegerType;
|
|
4132
|
-
readonly gte: IntegerType;
|
|
4133
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
4134
|
-
}>;
|
|
4135
|
-
}>;
|
|
4136
|
-
readonly float: StructType<{
|
|
4137
|
-
readonly fieldId: StringType;
|
|
4138
|
-
readonly op: VariantType<{
|
|
4139
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
4140
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
4141
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
4142
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
4143
|
-
}>;
|
|
4144
|
-
}>;
|
|
4145
|
-
readonly datetime: StructType<{
|
|
4146
|
-
readonly fieldId: StringType;
|
|
4147
|
-
readonly op: VariantType<{
|
|
4148
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
4149
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
4150
|
-
readonly between: StructType<{
|
|
4151
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
4152
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
4153
|
-
}>;
|
|
4154
|
-
}>;
|
|
4155
|
-
}>;
|
|
4156
|
-
readonly boolean: StructType<{
|
|
4157
|
-
readonly fieldId: StringType;
|
|
4158
|
-
readonly op: VariantType<{
|
|
4159
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
4160
|
-
}>;
|
|
4161
|
-
}>;
|
|
4162
|
-
}>>;
|
|
4163
|
-
}>], NullType>;
|
|
4164
|
-
readonly removeCohort: FunctionType<[StringType], NullType>;
|
|
4165
|
-
readonly toggleCohort: FunctionType<[StringType], NullType>;
|
|
4166
|
-
readonly setBreakdown: FunctionType<[OptionType<StructType<{
|
|
4167
|
-
readonly fieldId: StringType;
|
|
4168
|
-
readonly limit: OptionType<IntegerType>;
|
|
4169
|
-
}>>], NullType>;
|
|
4170
|
-
readonly setSearch: FunctionType<[OptionType<StringType>], NullType>;
|
|
4171
|
-
readonly setVisible: FunctionType<[OptionType<import("@elaraai/east").SetType<StringType>>], NullType>;
|
|
4172
|
-
readonly select: FunctionType<[OptionType<IntegerType>], NullType>;
|
|
4173
|
-
readonly isActive: FunctionType<[], import("@elaraai/east").BooleanType>;
|
|
4174
|
-
readonly activeCount: FunctionType<[], IntegerType>;
|
|
4175
|
-
readonly dimensions: FunctionType<[], ArrayType<StructType<{
|
|
4176
|
-
readonly fieldId: StringType;
|
|
4177
|
-
readonly label: StringType;
|
|
4178
|
-
}>>>;
|
|
4179
|
-
readonly fields: FunctionType<[], ArrayType<StructType<{
|
|
4180
|
-
readonly fieldId: StringType;
|
|
4181
|
-
readonly label: StringType;
|
|
4182
|
-
readonly kind: StringType;
|
|
4183
|
-
readonly hints: ArrayType<StringType>;
|
|
4184
|
-
readonly format: OptionType<VariantType<{
|
|
4185
|
-
readonly number: NullType;
|
|
4186
|
-
readonly currency: StructType<{
|
|
4187
|
-
readonly code: StringType;
|
|
4188
|
-
readonly compact: import("@elaraai/east").BooleanType;
|
|
4189
|
-
}>;
|
|
4190
|
-
readonly percent: NullType;
|
|
4191
|
-
readonly compact: NullType;
|
|
4192
|
-
readonly date: StringType;
|
|
4193
|
-
readonly time: StringType;
|
|
4194
|
-
readonly datetime: StringType;
|
|
4195
|
-
}>>;
|
|
4196
|
-
}>>>;
|
|
4197
|
-
readonly searchFieldIds: FunctionType<[], ArrayType<StringType>>;
|
|
4198
|
-
readonly rangeFieldId: FunctionType<[], OptionType<StringType>>;
|
|
4199
|
-
readonly totalCount: FunctionType<[], IntegerType>;
|
|
4200
|
-
readonly resultCount: FunctionType<[], IntegerType>;
|
|
4201
|
-
readonly groups: FunctionType<[], ArrayType<StructType<{
|
|
4202
|
-
readonly key: StringType;
|
|
4203
|
-
readonly count: IntegerType;
|
|
4204
|
-
readonly color: StringType;
|
|
4205
|
-
}>>>;
|
|
4206
|
-
readonly series: FunctionType<[StringType, StringType], ArrayType<StructType<{
|
|
4207
|
-
readonly key: StringType;
|
|
4208
|
-
readonly color: StringType;
|
|
4209
|
-
readonly points: ArrayType<StructType<{
|
|
4210
|
-
readonly x: VariantType<{
|
|
4211
|
-
readonly category: StringType;
|
|
4212
|
-
readonly number: import("@elaraai/east").FloatType;
|
|
4213
|
-
readonly time: import("@elaraai/east").DateTimeType;
|
|
4214
|
-
}>;
|
|
4215
|
-
readonly value: import("@elaraai/east").FloatType;
|
|
4216
|
-
readonly size: OptionType<import("@elaraai/east").FloatType>;
|
|
4217
|
-
readonly color: OptionType<StringType>;
|
|
4218
|
-
}>>;
|
|
4219
|
-
}>>>;
|
|
4220
|
-
readonly matches: FunctionType<[], ArrayType<StructType<{
|
|
4221
|
-
readonly id: StringType;
|
|
4222
|
-
readonly label: StringType;
|
|
4223
|
-
readonly meta: OptionType<StringType>;
|
|
4224
|
-
}>>>;
|
|
4225
|
-
readonly cohortCounts: FunctionType<[], DictType<StringType, IntegerType>>;
|
|
4226
|
-
readonly toggleFilter: FunctionType<[VariantType<{
|
|
4227
|
-
readonly string: StructType<{
|
|
4228
|
-
readonly fieldId: StringType;
|
|
4229
|
-
readonly op: VariantType<{
|
|
4230
|
-
readonly eq: StringType;
|
|
4231
|
-
readonly neq: StringType;
|
|
4232
|
-
readonly in: import("@elaraai/east").SetType<StringType>;
|
|
4233
|
-
readonly notIn: import("@elaraai/east").SetType<StringType>;
|
|
4234
|
-
readonly contains: StringType;
|
|
4235
|
-
readonly matches: StringType;
|
|
4236
|
-
readonly startsWith: StringType;
|
|
4237
|
-
readonly endsWith: StringType;
|
|
4238
|
-
readonly isEmpty: NullType;
|
|
4239
|
-
readonly isNotEmpty: NullType;
|
|
4240
|
-
}>;
|
|
4241
|
-
}>;
|
|
4242
|
-
readonly integer: StructType<{
|
|
4243
|
-
readonly fieldId: StringType;
|
|
4244
|
-
readonly op: VariantType<{
|
|
4245
|
-
readonly eq: IntegerType;
|
|
4246
|
-
readonly neq: IntegerType;
|
|
4247
|
-
readonly lt: IntegerType;
|
|
4248
|
-
readonly lte: IntegerType;
|
|
4249
|
-
readonly gt: IntegerType;
|
|
4250
|
-
readonly gte: IntegerType;
|
|
4251
|
-
readonly in: import("@elaraai/east").SetType<IntegerType>;
|
|
4252
|
-
}>;
|
|
4253
|
-
}>;
|
|
4254
|
-
readonly float: StructType<{
|
|
4255
|
-
readonly fieldId: StringType;
|
|
4256
|
-
readonly op: VariantType<{
|
|
4257
|
-
readonly lt: import("@elaraai/east").FloatType;
|
|
4258
|
-
readonly lte: import("@elaraai/east").FloatType;
|
|
4259
|
-
readonly gt: import("@elaraai/east").FloatType;
|
|
4260
|
-
readonly gte: import("@elaraai/east").FloatType;
|
|
4261
|
-
}>;
|
|
4262
|
-
}>;
|
|
4263
|
-
readonly datetime: StructType<{
|
|
4264
|
-
readonly fieldId: StringType;
|
|
4265
|
-
readonly op: VariantType<{
|
|
4266
|
-
readonly before: import("@elaraai/east").DateTimeType;
|
|
4267
|
-
readonly after: import("@elaraai/east").DateTimeType;
|
|
4268
|
-
readonly between: StructType<{
|
|
4269
|
-
readonly from: import("@elaraai/east").DateTimeType;
|
|
4270
|
-
readonly to: import("@elaraai/east").DateTimeType;
|
|
4271
|
-
}>;
|
|
4272
|
-
}>;
|
|
4273
|
-
}>;
|
|
4274
|
-
readonly boolean: StructType<{
|
|
4275
|
-
readonly fieldId: StringType;
|
|
4276
|
-
readonly op: VariantType<{
|
|
4277
|
-
readonly is: import("@elaraai/east").BooleanType;
|
|
4278
|
-
}>;
|
|
4279
|
-
}>;
|
|
4280
|
-
}>], NullType>;
|
|
4281
|
-
readonly facetGroups: FunctionType<[], ArrayType<StructType<{
|
|
4282
|
-
readonly key: StringType;
|
|
4283
|
-
readonly count: IntegerType;
|
|
4284
|
-
readonly color: StringType;
|
|
4285
|
-
}>>>;
|
|
4286
|
-
}>;
|
|
4287
1667
|
readonly queue: FunctionType<[], ArrayType<StructType<{
|
|
4288
1668
|
readonly id: StringType;
|
|
4289
1669
|
readonly kind: StringType;
|
|
@@ -5709,15 +3089,10 @@ export declare const DecisionBindPrimitives: {
|
|
|
5709
3089
|
* @property judgements - The bound judgements view —
|
|
5710
3090
|
* `Data.bind(…)` (the staged
|
|
5711
3091
|
* operator input)
|
|
5712
|
-
* @property slice - Optional initial state for the handle-owned slice over
|
|
5713
|
-
* the queue (`Slice.state({ filters: [...] })`). Seeded once; the
|
|
5714
|
-
* operator's rail edits write over it. With no rail mounted on the queue
|
|
5715
|
-
* it acts as an invisible author scope.
|
|
5716
3092
|
*/
|
|
5717
3093
|
export interface DecisionBindOptions<C extends EastType = DecisionConstraintType> {
|
|
5718
3094
|
decisions: BoundValue<ArrayType<DecisionType>>[];
|
|
5719
3095
|
judgements: BoundValue<ReturnType<typeof judgementsType<C>>>;
|
|
5720
|
-
slice?: SubtypeExprOrValue<SliceStateType>;
|
|
5721
3096
|
}
|
|
5722
3097
|
/**
|
|
5723
3098
|
* Build a decision handle from bound decision views + the bound judgements
|