@objectstack/platform-objects 11.10.0 → 12.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/apps/index.d.mts +2 -2
- package/dist/apps/index.d.ts +2 -2
- package/dist/audit/index.d.mts +1148 -1448
- package/dist/audit/index.d.ts +1148 -1448
- package/dist/identity/index.d.mts +2772 -3084
- package/dist/identity/index.d.ts +2772 -3084
- package/dist/identity/index.js +19 -0
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +19 -0
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.js +19 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -0
- package/dist/index.mjs.map +1 -1
- package/dist/system/index.d.mts +335 -425
- package/dist/system/index.d.ts +335 -425
- package/package.json +3 -3
package/dist/audit/index.d.mts
CHANGED
|
@@ -65,7 +65,7 @@ declare const SysNotification: Omit<{
|
|
|
65
65
|
inlineTitle?: string | undefined;
|
|
66
66
|
inlineColumns?: any[] | undefined;
|
|
67
67
|
inlineAmountField?: string | undefined;
|
|
68
|
-
relatedList?: boolean | undefined;
|
|
68
|
+
relatedList?: boolean | "primary" | undefined;
|
|
69
69
|
relatedListTitle?: string | undefined;
|
|
70
70
|
relatedListColumns?: any[] | undefined;
|
|
71
71
|
displayField?: string | undefined;
|
|
@@ -348,7 +348,7 @@ declare const SysNotification: Omit<{
|
|
|
348
348
|
highlightFields?: string[] | undefined;
|
|
349
349
|
stageField?: string | false | undefined;
|
|
350
350
|
listViews?: Record<string, {
|
|
351
|
-
type: "tree" | "grid" | "kanban" | "
|
|
351
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
352
352
|
columns: string[] | {
|
|
353
353
|
field: string;
|
|
354
354
|
label?: string | undefined;
|
|
@@ -364,8 +364,55 @@ declare const SysNotification: Omit<{
|
|
|
364
364
|
link?: boolean | undefined;
|
|
365
365
|
action?: string | undefined;
|
|
366
366
|
}[];
|
|
367
|
-
|
|
367
|
+
sort?: string | {
|
|
368
|
+
field: string;
|
|
369
|
+
order: "asc" | "desc";
|
|
370
|
+
}[] | undefined;
|
|
371
|
+
filter?: {
|
|
372
|
+
field: string;
|
|
373
|
+
operator: string;
|
|
374
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
375
|
+
}[] | undefined;
|
|
376
|
+
description?: string | undefined;
|
|
368
377
|
label?: string | undefined;
|
|
378
|
+
name?: string | undefined;
|
|
379
|
+
responsive?: {
|
|
380
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
381
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
382
|
+
columns?: {
|
|
383
|
+
xs?: number | undefined;
|
|
384
|
+
sm?: number | undefined;
|
|
385
|
+
md?: number | undefined;
|
|
386
|
+
lg?: number | undefined;
|
|
387
|
+
xl?: number | undefined;
|
|
388
|
+
'2xl'?: number | undefined;
|
|
389
|
+
} | undefined;
|
|
390
|
+
order?: {
|
|
391
|
+
xs?: number | undefined;
|
|
392
|
+
sm?: number | undefined;
|
|
393
|
+
md?: number | undefined;
|
|
394
|
+
lg?: number | undefined;
|
|
395
|
+
xl?: number | undefined;
|
|
396
|
+
'2xl'?: number | undefined;
|
|
397
|
+
} | undefined;
|
|
398
|
+
} | undefined;
|
|
399
|
+
navigation?: {
|
|
400
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
401
|
+
preventNavigation: boolean;
|
|
402
|
+
openNewTab: boolean;
|
|
403
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
404
|
+
view?: string | undefined;
|
|
405
|
+
width?: string | number | undefined;
|
|
406
|
+
} | undefined;
|
|
407
|
+
sharing?: {
|
|
408
|
+
type: "personal" | "collaborative";
|
|
409
|
+
lockedBy?: string | undefined;
|
|
410
|
+
} | undefined;
|
|
411
|
+
aria?: {
|
|
412
|
+
ariaLabel?: string | undefined;
|
|
413
|
+
ariaDescribedBy?: string | undefined;
|
|
414
|
+
role?: string | undefined;
|
|
415
|
+
} | undefined;
|
|
369
416
|
data?: {
|
|
370
417
|
provider: "object";
|
|
371
418
|
object: string;
|
|
@@ -393,77 +440,42 @@ declare const SysNotification: Omit<{
|
|
|
393
440
|
schemaId: string;
|
|
394
441
|
schema?: Record<string, unknown> | undefined;
|
|
395
442
|
} | undefined;
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
field: string;
|
|
403
|
-
order: "asc" | "desc";
|
|
404
|
-
}[] | undefined;
|
|
405
|
-
searchableFields?: string[] | undefined;
|
|
406
|
-
filterableFields?: string[] | undefined;
|
|
407
|
-
userFilters?: {
|
|
408
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
409
|
-
fields?: {
|
|
410
|
-
field: string;
|
|
411
|
-
label?: string | undefined;
|
|
412
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
413
|
-
options?: {
|
|
414
|
-
value: string | number | boolean;
|
|
415
|
-
label: string;
|
|
416
|
-
color?: string | undefined;
|
|
417
|
-
}[] | undefined;
|
|
418
|
-
showCount?: boolean | undefined;
|
|
419
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
420
|
-
}[] | undefined;
|
|
421
|
-
tabs?: {
|
|
422
|
-
name: string;
|
|
423
|
-
pinned: boolean;
|
|
424
|
-
isDefault: boolean;
|
|
425
|
-
visible: boolean;
|
|
426
|
-
label?: string | undefined;
|
|
427
|
-
icon?: string | undefined;
|
|
428
|
-
view?: string | undefined;
|
|
429
|
-
filter?: {
|
|
430
|
-
field: string;
|
|
431
|
-
operator: string;
|
|
432
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
433
|
-
}[] | undefined;
|
|
434
|
-
order?: number | undefined;
|
|
435
|
-
}[] | undefined;
|
|
436
|
-
showAllRecords?: boolean | undefined;
|
|
443
|
+
tree?: {
|
|
444
|
+
[x: string]: unknown;
|
|
445
|
+
parentField?: string | undefined;
|
|
446
|
+
labelField?: string | undefined;
|
|
447
|
+
fields?: string[] | undefined;
|
|
448
|
+
defaultExpandedDepth?: number | undefined;
|
|
437
449
|
} | undefined;
|
|
450
|
+
inlineEdit?: boolean | undefined;
|
|
451
|
+
virtualScroll?: boolean | undefined;
|
|
438
452
|
resizable?: boolean | undefined;
|
|
439
|
-
striped?: boolean | undefined;
|
|
440
|
-
bordered?: boolean | undefined;
|
|
441
|
-
compactToolbar?: boolean | undefined;
|
|
442
|
-
selection?: {
|
|
443
|
-
type: "none" | "multiple" | "single";
|
|
444
|
-
} | undefined;
|
|
445
|
-
navigation?: {
|
|
446
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
447
|
-
preventNavigation: boolean;
|
|
448
|
-
openNewTab: boolean;
|
|
449
|
-
view?: string | undefined;
|
|
450
|
-
width?: string | number | undefined;
|
|
451
|
-
} | undefined;
|
|
452
|
-
pagination?: {
|
|
453
|
-
pageSize: number;
|
|
454
|
-
pageSizeOptions?: number[] | undefined;
|
|
455
|
-
} | undefined;
|
|
456
453
|
kanban?: {
|
|
457
454
|
groupByField: string;
|
|
458
455
|
columns: string[];
|
|
459
456
|
summarizeField?: string | undefined;
|
|
460
457
|
} | undefined;
|
|
458
|
+
gallery?: {
|
|
459
|
+
coverFit: "cover" | "contain";
|
|
460
|
+
cardSize: "small" | "medium" | "large";
|
|
461
|
+
coverField?: string | undefined;
|
|
462
|
+
titleField?: string | undefined;
|
|
463
|
+
visibleFields?: string[] | undefined;
|
|
464
|
+
} | undefined;
|
|
461
465
|
calendar?: {
|
|
462
466
|
startDateField: string;
|
|
463
467
|
titleField: string;
|
|
464
468
|
endDateField?: string | undefined;
|
|
465
469
|
colorField?: string | undefined;
|
|
466
470
|
} | undefined;
|
|
471
|
+
timeline?: {
|
|
472
|
+
startDateField: string;
|
|
473
|
+
titleField: string;
|
|
474
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
475
|
+
endDateField?: string | undefined;
|
|
476
|
+
groupByField?: string | undefined;
|
|
477
|
+
colorField?: string | undefined;
|
|
478
|
+
} | undefined;
|
|
467
479
|
gantt?: {
|
|
468
480
|
[x: string]: unknown;
|
|
469
481
|
startDateField: string;
|
|
@@ -495,40 +507,40 @@ declare const SysNotification: Omit<{
|
|
|
495
507
|
}[] | undefined;
|
|
496
508
|
autoZoomToFilter?: boolean | undefined;
|
|
497
509
|
} | undefined;
|
|
498
|
-
gallery?: {
|
|
499
|
-
coverFit: "cover" | "contain";
|
|
500
|
-
cardSize: "small" | "medium" | "large";
|
|
501
|
-
coverField?: string | undefined;
|
|
502
|
-
titleField?: string | undefined;
|
|
503
|
-
visibleFields?: string[] | undefined;
|
|
504
|
-
} | undefined;
|
|
505
|
-
timeline?: {
|
|
506
|
-
startDateField: string;
|
|
507
|
-
titleField: string;
|
|
508
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
509
|
-
endDateField?: string | undefined;
|
|
510
|
-
groupByField?: string | undefined;
|
|
511
|
-
colorField?: string | undefined;
|
|
512
|
-
} | undefined;
|
|
513
510
|
chart?: {
|
|
514
511
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
515
512
|
dataset: string;
|
|
516
513
|
values: string[];
|
|
517
514
|
dimensions?: string[] | undefined;
|
|
518
515
|
} | undefined;
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
516
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
517
|
+
tabs?: {
|
|
518
|
+
name: string;
|
|
519
|
+
pinned: boolean;
|
|
520
|
+
isDefault: boolean;
|
|
521
|
+
visible: boolean;
|
|
522
|
+
label?: string | undefined;
|
|
523
|
+
icon?: string | undefined;
|
|
524
|
+
view?: string | undefined;
|
|
525
|
+
filter?: {
|
|
526
|
+
field: string;
|
|
527
|
+
operator: string;
|
|
528
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
529
|
+
}[] | undefined;
|
|
530
|
+
order?: number | undefined;
|
|
531
|
+
}[] | undefined;
|
|
532
|
+
searchableFields?: string[] | undefined;
|
|
533
|
+
filterableFields?: string[] | undefined;
|
|
534
|
+
striped?: boolean | undefined;
|
|
535
|
+
bordered?: boolean | undefined;
|
|
536
|
+
compactToolbar?: boolean | undefined;
|
|
537
|
+
selection?: {
|
|
538
|
+
type: "none" | "multiple" | "single";
|
|
525
539
|
} | undefined;
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
lockedBy?: string | undefined;
|
|
540
|
+
pagination?: {
|
|
541
|
+
pageSize: number;
|
|
542
|
+
pageSizeOptions?: number[] | undefined;
|
|
530
543
|
} | undefined;
|
|
531
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
532
544
|
grouping?: {
|
|
533
545
|
fields: {
|
|
534
546
|
field: string;
|
|
@@ -545,7 +557,6 @@ declare const SysNotification: Omit<{
|
|
|
545
557
|
rowActions?: string[] | undefined;
|
|
546
558
|
bulkActions?: string[] | undefined;
|
|
547
559
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
548
|
-
virtualScroll?: boolean | undefined;
|
|
549
560
|
conditionalFormatting?: {
|
|
550
561
|
condition: {
|
|
551
562
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -566,7 +577,6 @@ declare const SysNotification: Omit<{
|
|
|
566
577
|
};
|
|
567
578
|
style: Record<string, string>;
|
|
568
579
|
}[] | undefined;
|
|
569
|
-
inlineEdit?: boolean | undefined;
|
|
570
580
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
571
581
|
userActions?: {
|
|
572
582
|
sort: boolean;
|
|
@@ -579,23 +589,8 @@ declare const SysNotification: Omit<{
|
|
|
579
589
|
} | undefined;
|
|
580
590
|
appearance?: {
|
|
581
591
|
showDescription: boolean;
|
|
582
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
592
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
583
593
|
} | undefined;
|
|
584
|
-
tabs?: {
|
|
585
|
-
name: string;
|
|
586
|
-
pinned: boolean;
|
|
587
|
-
isDefault: boolean;
|
|
588
|
-
visible: boolean;
|
|
589
|
-
label?: string | undefined;
|
|
590
|
-
icon?: string | undefined;
|
|
591
|
-
view?: string | undefined;
|
|
592
|
-
filter?: {
|
|
593
|
-
field: string;
|
|
594
|
-
operator: string;
|
|
595
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
596
|
-
}[] | undefined;
|
|
597
|
-
order?: number | undefined;
|
|
598
|
-
}[] | undefined;
|
|
599
594
|
addRecord?: {
|
|
600
595
|
enabled: boolean;
|
|
601
596
|
position: "top" | "bottom" | "both";
|
|
@@ -609,31 +604,6 @@ declare const SysNotification: Omit<{
|
|
|
609
604
|
message?: string | undefined;
|
|
610
605
|
icon?: string | undefined;
|
|
611
606
|
} | undefined;
|
|
612
|
-
aria?: {
|
|
613
|
-
ariaLabel?: string | undefined;
|
|
614
|
-
ariaDescribedBy?: string | undefined;
|
|
615
|
-
role?: string | undefined;
|
|
616
|
-
} | undefined;
|
|
617
|
-
responsive?: {
|
|
618
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
619
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
620
|
-
columns?: {
|
|
621
|
-
xs?: number | undefined;
|
|
622
|
-
sm?: number | undefined;
|
|
623
|
-
md?: number | undefined;
|
|
624
|
-
lg?: number | undefined;
|
|
625
|
-
xl?: number | undefined;
|
|
626
|
-
'2xl'?: number | undefined;
|
|
627
|
-
} | undefined;
|
|
628
|
-
order?: {
|
|
629
|
-
xs?: number | undefined;
|
|
630
|
-
sm?: number | undefined;
|
|
631
|
-
md?: number | undefined;
|
|
632
|
-
lg?: number | undefined;
|
|
633
|
-
xl?: number | undefined;
|
|
634
|
-
'2xl'?: number | undefined;
|
|
635
|
-
} | undefined;
|
|
636
|
-
} | undefined;
|
|
637
607
|
performance?: {
|
|
638
608
|
lazyLoad?: boolean | undefined;
|
|
639
609
|
virtualScroll?: {
|
|
@@ -883,7 +853,7 @@ declare const SysNotification: Omit<{
|
|
|
883
853
|
readonly inlineTitle?: string | undefined;
|
|
884
854
|
readonly inlineColumns?: any[] | undefined;
|
|
885
855
|
readonly inlineAmountField?: string | undefined;
|
|
886
|
-
readonly relatedList?: boolean | undefined;
|
|
856
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
887
857
|
readonly relatedListTitle?: string | undefined;
|
|
888
858
|
readonly relatedListColumns?: any[] | undefined;
|
|
889
859
|
readonly displayField?: string | undefined;
|
|
@@ -1057,7 +1027,7 @@ declare const SysNotification: Omit<{
|
|
|
1057
1027
|
readonly inlineTitle?: string | undefined;
|
|
1058
1028
|
readonly inlineColumns?: any[] | undefined;
|
|
1059
1029
|
readonly inlineAmountField?: string | undefined;
|
|
1060
|
-
readonly relatedList?: boolean | undefined;
|
|
1030
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1061
1031
|
readonly relatedListTitle?: string | undefined;
|
|
1062
1032
|
readonly relatedListColumns?: any[] | undefined;
|
|
1063
1033
|
readonly displayField?: string | undefined;
|
|
@@ -1231,7 +1201,7 @@ declare const SysNotification: Omit<{
|
|
|
1231
1201
|
readonly inlineTitle?: string | undefined;
|
|
1232
1202
|
readonly inlineColumns?: any[] | undefined;
|
|
1233
1203
|
readonly inlineAmountField?: string | undefined;
|
|
1234
|
-
readonly relatedList?: boolean | undefined;
|
|
1204
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1235
1205
|
readonly relatedListTitle?: string | undefined;
|
|
1236
1206
|
readonly relatedListColumns?: any[] | undefined;
|
|
1237
1207
|
readonly displayField?: string | undefined;
|
|
@@ -1405,7 +1375,7 @@ declare const SysNotification: Omit<{
|
|
|
1405
1375
|
readonly inlineTitle?: string | undefined;
|
|
1406
1376
|
readonly inlineColumns?: any[] | undefined;
|
|
1407
1377
|
readonly inlineAmountField?: string | undefined;
|
|
1408
|
-
readonly relatedList?: boolean | undefined;
|
|
1378
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1409
1379
|
readonly relatedListTitle?: string | undefined;
|
|
1410
1380
|
readonly relatedListColumns?: any[] | undefined;
|
|
1411
1381
|
readonly displayField?: string | undefined;
|
|
@@ -1579,7 +1549,7 @@ declare const SysNotification: Omit<{
|
|
|
1579
1549
|
readonly inlineTitle?: string | undefined;
|
|
1580
1550
|
readonly inlineColumns?: any[] | undefined;
|
|
1581
1551
|
readonly inlineAmountField?: string | undefined;
|
|
1582
|
-
readonly relatedList?: boolean | undefined;
|
|
1552
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1583
1553
|
readonly relatedListTitle?: string | undefined;
|
|
1584
1554
|
readonly relatedListColumns?: any[] | undefined;
|
|
1585
1555
|
readonly displayField?: string | undefined;
|
|
@@ -1753,7 +1723,7 @@ declare const SysNotification: Omit<{
|
|
|
1753
1723
|
readonly inlineTitle?: string | undefined;
|
|
1754
1724
|
readonly inlineColumns?: any[] | undefined;
|
|
1755
1725
|
readonly inlineAmountField?: string | undefined;
|
|
1756
|
-
readonly relatedList?: boolean | undefined;
|
|
1726
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1757
1727
|
readonly relatedListTitle?: string | undefined;
|
|
1758
1728
|
readonly relatedListColumns?: any[] | undefined;
|
|
1759
1729
|
readonly displayField?: string | undefined;
|
|
@@ -1927,7 +1897,7 @@ declare const SysNotification: Omit<{
|
|
|
1927
1897
|
readonly inlineTitle?: string | undefined;
|
|
1928
1898
|
readonly inlineColumns?: any[] | undefined;
|
|
1929
1899
|
readonly inlineAmountField?: string | undefined;
|
|
1930
|
-
readonly relatedList?: boolean | undefined;
|
|
1900
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1931
1901
|
readonly relatedListTitle?: string | undefined;
|
|
1932
1902
|
readonly relatedListColumns?: any[] | undefined;
|
|
1933
1903
|
readonly displayField?: string | undefined;
|
|
@@ -2101,7 +2071,7 @@ declare const SysNotification: Omit<{
|
|
|
2101
2071
|
readonly inlineTitle?: string | undefined;
|
|
2102
2072
|
readonly inlineColumns?: any[] | undefined;
|
|
2103
2073
|
readonly inlineAmountField?: string | undefined;
|
|
2104
|
-
readonly relatedList?: boolean | undefined;
|
|
2074
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2105
2075
|
readonly relatedListTitle?: string | undefined;
|
|
2106
2076
|
readonly relatedListColumns?: any[] | undefined;
|
|
2107
2077
|
readonly displayField?: string | undefined;
|
|
@@ -2275,7 +2245,7 @@ declare const SysNotification: Omit<{
|
|
|
2275
2245
|
readonly inlineTitle?: string | undefined;
|
|
2276
2246
|
readonly inlineColumns?: any[] | undefined;
|
|
2277
2247
|
readonly inlineAmountField?: string | undefined;
|
|
2278
|
-
readonly relatedList?: boolean | undefined;
|
|
2248
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2279
2249
|
readonly relatedListTitle?: string | undefined;
|
|
2280
2250
|
readonly relatedListColumns?: any[] | undefined;
|
|
2281
2251
|
readonly displayField?: string | undefined;
|
|
@@ -2483,7 +2453,7 @@ declare const SysAttachment: Omit<{
|
|
|
2483
2453
|
inlineTitle?: string | undefined;
|
|
2484
2454
|
inlineColumns?: any[] | undefined;
|
|
2485
2455
|
inlineAmountField?: string | undefined;
|
|
2486
|
-
relatedList?: boolean | undefined;
|
|
2456
|
+
relatedList?: boolean | "primary" | undefined;
|
|
2487
2457
|
relatedListTitle?: string | undefined;
|
|
2488
2458
|
relatedListColumns?: any[] | undefined;
|
|
2489
2459
|
displayField?: string | undefined;
|
|
@@ -2766,7 +2736,7 @@ declare const SysAttachment: Omit<{
|
|
|
2766
2736
|
highlightFields?: string[] | undefined;
|
|
2767
2737
|
stageField?: string | false | undefined;
|
|
2768
2738
|
listViews?: Record<string, {
|
|
2769
|
-
type: "tree" | "grid" | "kanban" | "
|
|
2739
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
2770
2740
|
columns: string[] | {
|
|
2771
2741
|
field: string;
|
|
2772
2742
|
label?: string | undefined;
|
|
@@ -2782,8 +2752,55 @@ declare const SysAttachment: Omit<{
|
|
|
2782
2752
|
link?: boolean | undefined;
|
|
2783
2753
|
action?: string | undefined;
|
|
2784
2754
|
}[];
|
|
2785
|
-
|
|
2755
|
+
sort?: string | {
|
|
2756
|
+
field: string;
|
|
2757
|
+
order: "asc" | "desc";
|
|
2758
|
+
}[] | undefined;
|
|
2759
|
+
filter?: {
|
|
2760
|
+
field: string;
|
|
2761
|
+
operator: string;
|
|
2762
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
2763
|
+
}[] | undefined;
|
|
2764
|
+
description?: string | undefined;
|
|
2786
2765
|
label?: string | undefined;
|
|
2766
|
+
name?: string | undefined;
|
|
2767
|
+
responsive?: {
|
|
2768
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
2769
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
2770
|
+
columns?: {
|
|
2771
|
+
xs?: number | undefined;
|
|
2772
|
+
sm?: number | undefined;
|
|
2773
|
+
md?: number | undefined;
|
|
2774
|
+
lg?: number | undefined;
|
|
2775
|
+
xl?: number | undefined;
|
|
2776
|
+
'2xl'?: number | undefined;
|
|
2777
|
+
} | undefined;
|
|
2778
|
+
order?: {
|
|
2779
|
+
xs?: number | undefined;
|
|
2780
|
+
sm?: number | undefined;
|
|
2781
|
+
md?: number | undefined;
|
|
2782
|
+
lg?: number | undefined;
|
|
2783
|
+
xl?: number | undefined;
|
|
2784
|
+
'2xl'?: number | undefined;
|
|
2785
|
+
} | undefined;
|
|
2786
|
+
} | undefined;
|
|
2787
|
+
navigation?: {
|
|
2788
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
2789
|
+
preventNavigation: boolean;
|
|
2790
|
+
openNewTab: boolean;
|
|
2791
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
2792
|
+
view?: string | undefined;
|
|
2793
|
+
width?: string | number | undefined;
|
|
2794
|
+
} | undefined;
|
|
2795
|
+
sharing?: {
|
|
2796
|
+
type: "personal" | "collaborative";
|
|
2797
|
+
lockedBy?: string | undefined;
|
|
2798
|
+
} | undefined;
|
|
2799
|
+
aria?: {
|
|
2800
|
+
ariaLabel?: string | undefined;
|
|
2801
|
+
ariaDescribedBy?: string | undefined;
|
|
2802
|
+
role?: string | undefined;
|
|
2803
|
+
} | undefined;
|
|
2787
2804
|
data?: {
|
|
2788
2805
|
provider: "object";
|
|
2789
2806
|
object: string;
|
|
@@ -2811,77 +2828,42 @@ declare const SysAttachment: Omit<{
|
|
|
2811
2828
|
schemaId: string;
|
|
2812
2829
|
schema?: Record<string, unknown> | undefined;
|
|
2813
2830
|
} | undefined;
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
|
|
2820
|
-
field: string;
|
|
2821
|
-
order: "asc" | "desc";
|
|
2822
|
-
}[] | undefined;
|
|
2823
|
-
searchableFields?: string[] | undefined;
|
|
2824
|
-
filterableFields?: string[] | undefined;
|
|
2825
|
-
userFilters?: {
|
|
2826
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
2827
|
-
fields?: {
|
|
2828
|
-
field: string;
|
|
2829
|
-
label?: string | undefined;
|
|
2830
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
2831
|
-
options?: {
|
|
2832
|
-
value: string | number | boolean;
|
|
2833
|
-
label: string;
|
|
2834
|
-
color?: string | undefined;
|
|
2835
|
-
}[] | undefined;
|
|
2836
|
-
showCount?: boolean | undefined;
|
|
2837
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
2838
|
-
}[] | undefined;
|
|
2839
|
-
tabs?: {
|
|
2840
|
-
name: string;
|
|
2841
|
-
pinned: boolean;
|
|
2842
|
-
isDefault: boolean;
|
|
2843
|
-
visible: boolean;
|
|
2844
|
-
label?: string | undefined;
|
|
2845
|
-
icon?: string | undefined;
|
|
2846
|
-
view?: string | undefined;
|
|
2847
|
-
filter?: {
|
|
2848
|
-
field: string;
|
|
2849
|
-
operator: string;
|
|
2850
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
2851
|
-
}[] | undefined;
|
|
2852
|
-
order?: number | undefined;
|
|
2853
|
-
}[] | undefined;
|
|
2854
|
-
showAllRecords?: boolean | undefined;
|
|
2831
|
+
tree?: {
|
|
2832
|
+
[x: string]: unknown;
|
|
2833
|
+
parentField?: string | undefined;
|
|
2834
|
+
labelField?: string | undefined;
|
|
2835
|
+
fields?: string[] | undefined;
|
|
2836
|
+
defaultExpandedDepth?: number | undefined;
|
|
2855
2837
|
} | undefined;
|
|
2838
|
+
inlineEdit?: boolean | undefined;
|
|
2839
|
+
virtualScroll?: boolean | undefined;
|
|
2856
2840
|
resizable?: boolean | undefined;
|
|
2857
|
-
striped?: boolean | undefined;
|
|
2858
|
-
bordered?: boolean | undefined;
|
|
2859
|
-
compactToolbar?: boolean | undefined;
|
|
2860
|
-
selection?: {
|
|
2861
|
-
type: "none" | "multiple" | "single";
|
|
2862
|
-
} | undefined;
|
|
2863
|
-
navigation?: {
|
|
2864
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
2865
|
-
preventNavigation: boolean;
|
|
2866
|
-
openNewTab: boolean;
|
|
2867
|
-
view?: string | undefined;
|
|
2868
|
-
width?: string | number | undefined;
|
|
2869
|
-
} | undefined;
|
|
2870
|
-
pagination?: {
|
|
2871
|
-
pageSize: number;
|
|
2872
|
-
pageSizeOptions?: number[] | undefined;
|
|
2873
|
-
} | undefined;
|
|
2874
2841
|
kanban?: {
|
|
2875
2842
|
groupByField: string;
|
|
2876
2843
|
columns: string[];
|
|
2877
2844
|
summarizeField?: string | undefined;
|
|
2878
2845
|
} | undefined;
|
|
2846
|
+
gallery?: {
|
|
2847
|
+
coverFit: "cover" | "contain";
|
|
2848
|
+
cardSize: "small" | "medium" | "large";
|
|
2849
|
+
coverField?: string | undefined;
|
|
2850
|
+
titleField?: string | undefined;
|
|
2851
|
+
visibleFields?: string[] | undefined;
|
|
2852
|
+
} | undefined;
|
|
2879
2853
|
calendar?: {
|
|
2880
2854
|
startDateField: string;
|
|
2881
2855
|
titleField: string;
|
|
2882
2856
|
endDateField?: string | undefined;
|
|
2883
2857
|
colorField?: string | undefined;
|
|
2884
2858
|
} | undefined;
|
|
2859
|
+
timeline?: {
|
|
2860
|
+
startDateField: string;
|
|
2861
|
+
titleField: string;
|
|
2862
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
2863
|
+
endDateField?: string | undefined;
|
|
2864
|
+
groupByField?: string | undefined;
|
|
2865
|
+
colorField?: string | undefined;
|
|
2866
|
+
} | undefined;
|
|
2885
2867
|
gantt?: {
|
|
2886
2868
|
[x: string]: unknown;
|
|
2887
2869
|
startDateField: string;
|
|
@@ -2913,40 +2895,40 @@ declare const SysAttachment: Omit<{
|
|
|
2913
2895
|
}[] | undefined;
|
|
2914
2896
|
autoZoomToFilter?: boolean | undefined;
|
|
2915
2897
|
} | undefined;
|
|
2916
|
-
gallery?: {
|
|
2917
|
-
coverFit: "cover" | "contain";
|
|
2918
|
-
cardSize: "small" | "medium" | "large";
|
|
2919
|
-
coverField?: string | undefined;
|
|
2920
|
-
titleField?: string | undefined;
|
|
2921
|
-
visibleFields?: string[] | undefined;
|
|
2922
|
-
} | undefined;
|
|
2923
|
-
timeline?: {
|
|
2924
|
-
startDateField: string;
|
|
2925
|
-
titleField: string;
|
|
2926
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
2927
|
-
endDateField?: string | undefined;
|
|
2928
|
-
groupByField?: string | undefined;
|
|
2929
|
-
colorField?: string | undefined;
|
|
2930
|
-
} | undefined;
|
|
2931
2898
|
chart?: {
|
|
2932
2899
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
2933
2900
|
dataset: string;
|
|
2934
2901
|
values: string[];
|
|
2935
2902
|
dimensions?: string[] | undefined;
|
|
2936
2903
|
} | undefined;
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2904
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
2905
|
+
tabs?: {
|
|
2906
|
+
name: string;
|
|
2907
|
+
pinned: boolean;
|
|
2908
|
+
isDefault: boolean;
|
|
2909
|
+
visible: boolean;
|
|
2910
|
+
label?: string | undefined;
|
|
2911
|
+
icon?: string | undefined;
|
|
2912
|
+
view?: string | undefined;
|
|
2913
|
+
filter?: {
|
|
2914
|
+
field: string;
|
|
2915
|
+
operator: string;
|
|
2916
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
2917
|
+
}[] | undefined;
|
|
2918
|
+
order?: number | undefined;
|
|
2919
|
+
}[] | undefined;
|
|
2920
|
+
searchableFields?: string[] | undefined;
|
|
2921
|
+
filterableFields?: string[] | undefined;
|
|
2922
|
+
striped?: boolean | undefined;
|
|
2923
|
+
bordered?: boolean | undefined;
|
|
2924
|
+
compactToolbar?: boolean | undefined;
|
|
2925
|
+
selection?: {
|
|
2926
|
+
type: "none" | "multiple" | "single";
|
|
2943
2927
|
} | undefined;
|
|
2944
|
-
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
lockedBy?: string | undefined;
|
|
2928
|
+
pagination?: {
|
|
2929
|
+
pageSize: number;
|
|
2930
|
+
pageSizeOptions?: number[] | undefined;
|
|
2948
2931
|
} | undefined;
|
|
2949
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
2950
2932
|
grouping?: {
|
|
2951
2933
|
fields: {
|
|
2952
2934
|
field: string;
|
|
@@ -2963,7 +2945,6 @@ declare const SysAttachment: Omit<{
|
|
|
2963
2945
|
rowActions?: string[] | undefined;
|
|
2964
2946
|
bulkActions?: string[] | undefined;
|
|
2965
2947
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
2966
|
-
virtualScroll?: boolean | undefined;
|
|
2967
2948
|
conditionalFormatting?: {
|
|
2968
2949
|
condition: {
|
|
2969
2950
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -2984,7 +2965,6 @@ declare const SysAttachment: Omit<{
|
|
|
2984
2965
|
};
|
|
2985
2966
|
style: Record<string, string>;
|
|
2986
2967
|
}[] | undefined;
|
|
2987
|
-
inlineEdit?: boolean | undefined;
|
|
2988
2968
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
2989
2969
|
userActions?: {
|
|
2990
2970
|
sort: boolean;
|
|
@@ -2997,23 +2977,8 @@ declare const SysAttachment: Omit<{
|
|
|
2997
2977
|
} | undefined;
|
|
2998
2978
|
appearance?: {
|
|
2999
2979
|
showDescription: boolean;
|
|
3000
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
2980
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
3001
2981
|
} | undefined;
|
|
3002
|
-
tabs?: {
|
|
3003
|
-
name: string;
|
|
3004
|
-
pinned: boolean;
|
|
3005
|
-
isDefault: boolean;
|
|
3006
|
-
visible: boolean;
|
|
3007
|
-
label?: string | undefined;
|
|
3008
|
-
icon?: string | undefined;
|
|
3009
|
-
view?: string | undefined;
|
|
3010
|
-
filter?: {
|
|
3011
|
-
field: string;
|
|
3012
|
-
operator: string;
|
|
3013
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
3014
|
-
}[] | undefined;
|
|
3015
|
-
order?: number | undefined;
|
|
3016
|
-
}[] | undefined;
|
|
3017
2982
|
addRecord?: {
|
|
3018
2983
|
enabled: boolean;
|
|
3019
2984
|
position: "top" | "bottom" | "both";
|
|
@@ -3027,31 +2992,6 @@ declare const SysAttachment: Omit<{
|
|
|
3027
2992
|
message?: string | undefined;
|
|
3028
2993
|
icon?: string | undefined;
|
|
3029
2994
|
} | undefined;
|
|
3030
|
-
aria?: {
|
|
3031
|
-
ariaLabel?: string | undefined;
|
|
3032
|
-
ariaDescribedBy?: string | undefined;
|
|
3033
|
-
role?: string | undefined;
|
|
3034
|
-
} | undefined;
|
|
3035
|
-
responsive?: {
|
|
3036
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
3037
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
3038
|
-
columns?: {
|
|
3039
|
-
xs?: number | undefined;
|
|
3040
|
-
sm?: number | undefined;
|
|
3041
|
-
md?: number | undefined;
|
|
3042
|
-
lg?: number | undefined;
|
|
3043
|
-
xl?: number | undefined;
|
|
3044
|
-
'2xl'?: number | undefined;
|
|
3045
|
-
} | undefined;
|
|
3046
|
-
order?: {
|
|
3047
|
-
xs?: number | undefined;
|
|
3048
|
-
sm?: number | undefined;
|
|
3049
|
-
md?: number | undefined;
|
|
3050
|
-
lg?: number | undefined;
|
|
3051
|
-
xl?: number | undefined;
|
|
3052
|
-
'2xl'?: number | undefined;
|
|
3053
|
-
} | undefined;
|
|
3054
|
-
} | undefined;
|
|
3055
2995
|
performance?: {
|
|
3056
2996
|
lazyLoad?: boolean | undefined;
|
|
3057
2997
|
virtualScroll?: {
|
|
@@ -3252,7 +3192,7 @@ declare const SysAttachment: Omit<{
|
|
|
3252
3192
|
readonly inlineTitle?: string | undefined;
|
|
3253
3193
|
readonly inlineColumns?: any[] | undefined;
|
|
3254
3194
|
readonly inlineAmountField?: string | undefined;
|
|
3255
|
-
readonly relatedList?: boolean | undefined;
|
|
3195
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3256
3196
|
readonly relatedListTitle?: string | undefined;
|
|
3257
3197
|
readonly relatedListColumns?: any[] | undefined;
|
|
3258
3198
|
readonly displayField?: string | undefined;
|
|
@@ -3426,7 +3366,7 @@ declare const SysAttachment: Omit<{
|
|
|
3426
3366
|
readonly inlineTitle?: string | undefined;
|
|
3427
3367
|
readonly inlineColumns?: any[] | undefined;
|
|
3428
3368
|
readonly inlineAmountField?: string | undefined;
|
|
3429
|
-
readonly relatedList?: boolean | undefined;
|
|
3369
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3430
3370
|
readonly relatedListTitle?: string | undefined;
|
|
3431
3371
|
readonly relatedListColumns?: any[] | undefined;
|
|
3432
3372
|
readonly displayField?: string | undefined;
|
|
@@ -3600,7 +3540,7 @@ declare const SysAttachment: Omit<{
|
|
|
3600
3540
|
readonly inlineTitle?: string | undefined;
|
|
3601
3541
|
readonly inlineColumns?: any[] | undefined;
|
|
3602
3542
|
readonly inlineAmountField?: string | undefined;
|
|
3603
|
-
readonly relatedList?: boolean | undefined;
|
|
3543
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3604
3544
|
readonly relatedListTitle?: string | undefined;
|
|
3605
3545
|
readonly relatedListColumns?: any[] | undefined;
|
|
3606
3546
|
readonly displayField?: string | undefined;
|
|
@@ -3774,7 +3714,7 @@ declare const SysAttachment: Omit<{
|
|
|
3774
3714
|
readonly inlineTitle?: string | undefined;
|
|
3775
3715
|
readonly inlineColumns?: any[] | undefined;
|
|
3776
3716
|
readonly inlineAmountField?: string | undefined;
|
|
3777
|
-
readonly relatedList?: boolean | undefined;
|
|
3717
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3778
3718
|
readonly relatedListTitle?: string | undefined;
|
|
3779
3719
|
readonly relatedListColumns?: any[] | undefined;
|
|
3780
3720
|
readonly displayField?: string | undefined;
|
|
@@ -3948,7 +3888,7 @@ declare const SysAttachment: Omit<{
|
|
|
3948
3888
|
readonly inlineTitle?: string | undefined;
|
|
3949
3889
|
readonly inlineColumns?: any[] | undefined;
|
|
3950
3890
|
readonly inlineAmountField?: string | undefined;
|
|
3951
|
-
readonly relatedList?: boolean | undefined;
|
|
3891
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3952
3892
|
readonly relatedListTitle?: string | undefined;
|
|
3953
3893
|
readonly relatedListColumns?: any[] | undefined;
|
|
3954
3894
|
readonly displayField?: string | undefined;
|
|
@@ -4122,7 +4062,7 @@ declare const SysAttachment: Omit<{
|
|
|
4122
4062
|
readonly inlineTitle?: string | undefined;
|
|
4123
4063
|
readonly inlineColumns?: any[] | undefined;
|
|
4124
4064
|
readonly inlineAmountField?: string | undefined;
|
|
4125
|
-
readonly relatedList?: boolean | undefined;
|
|
4065
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4126
4066
|
readonly relatedListTitle?: string | undefined;
|
|
4127
4067
|
readonly relatedListColumns?: any[] | undefined;
|
|
4128
4068
|
readonly displayField?: string | undefined;
|
|
@@ -4296,7 +4236,7 @@ declare const SysAttachment: Omit<{
|
|
|
4296
4236
|
readonly inlineTitle?: string | undefined;
|
|
4297
4237
|
readonly inlineColumns?: any[] | undefined;
|
|
4298
4238
|
readonly inlineAmountField?: string | undefined;
|
|
4299
|
-
readonly relatedList?: boolean | undefined;
|
|
4239
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4300
4240
|
readonly relatedListTitle?: string | undefined;
|
|
4301
4241
|
readonly relatedListColumns?: any[] | undefined;
|
|
4302
4242
|
readonly displayField?: string | undefined;
|
|
@@ -4470,7 +4410,7 @@ declare const SysAttachment: Omit<{
|
|
|
4470
4410
|
readonly inlineTitle?: string | undefined;
|
|
4471
4411
|
readonly inlineColumns?: any[] | undefined;
|
|
4472
4412
|
readonly inlineAmountField?: string | undefined;
|
|
4473
|
-
readonly relatedList?: boolean | undefined;
|
|
4413
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4474
4414
|
readonly relatedListTitle?: string | undefined;
|
|
4475
4415
|
readonly relatedListColumns?: any[] | undefined;
|
|
4476
4416
|
readonly displayField?: string | undefined;
|
|
@@ -4644,7 +4584,7 @@ declare const SysAttachment: Omit<{
|
|
|
4644
4584
|
readonly inlineTitle?: string | undefined;
|
|
4645
4585
|
readonly inlineColumns?: any[] | undefined;
|
|
4646
4586
|
readonly inlineAmountField?: string | undefined;
|
|
4647
|
-
readonly relatedList?: boolean | undefined;
|
|
4587
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4648
4588
|
readonly relatedListTitle?: string | undefined;
|
|
4649
4589
|
readonly relatedListColumns?: any[] | undefined;
|
|
4650
4590
|
readonly displayField?: string | undefined;
|
|
@@ -4818,7 +4758,7 @@ declare const SysAttachment: Omit<{
|
|
|
4818
4758
|
readonly inlineTitle?: string | undefined;
|
|
4819
4759
|
readonly inlineColumns?: any[] | undefined;
|
|
4820
4760
|
readonly inlineAmountField?: string | undefined;
|
|
4821
|
-
readonly relatedList?: boolean | undefined;
|
|
4761
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4822
4762
|
readonly relatedListTitle?: string | undefined;
|
|
4823
4763
|
readonly relatedListColumns?: any[] | undefined;
|
|
4824
4764
|
readonly displayField?: string | undefined;
|
|
@@ -4992,7 +4932,7 @@ declare const SysAttachment: Omit<{
|
|
|
4992
4932
|
readonly inlineTitle?: string | undefined;
|
|
4993
4933
|
readonly inlineColumns?: any[] | undefined;
|
|
4994
4934
|
readonly inlineAmountField?: string | undefined;
|
|
4995
|
-
readonly relatedList?: boolean | undefined;
|
|
4935
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4996
4936
|
readonly relatedListTitle?: string | undefined;
|
|
4997
4937
|
readonly relatedListColumns?: any[] | undefined;
|
|
4998
4938
|
readonly displayField?: string | undefined;
|
|
@@ -5166,7 +5106,7 @@ declare const SysAttachment: Omit<{
|
|
|
5166
5106
|
readonly inlineTitle?: string | undefined;
|
|
5167
5107
|
readonly inlineColumns?: any[] | undefined;
|
|
5168
5108
|
readonly inlineAmountField?: string | undefined;
|
|
5169
|
-
readonly relatedList?: boolean | undefined;
|
|
5109
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5170
5110
|
readonly relatedListTitle?: string | undefined;
|
|
5171
5111
|
readonly relatedListColumns?: any[] | undefined;
|
|
5172
5112
|
readonly displayField?: string | undefined;
|
|
@@ -5340,7 +5280,7 @@ declare const SysAttachment: Omit<{
|
|
|
5340
5280
|
readonly inlineTitle?: string | undefined;
|
|
5341
5281
|
readonly inlineColumns?: any[] | undefined;
|
|
5342
5282
|
readonly inlineAmountField?: string | undefined;
|
|
5343
|
-
readonly relatedList?: boolean | undefined;
|
|
5283
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5344
5284
|
readonly relatedListTitle?: string | undefined;
|
|
5345
5285
|
readonly relatedListColumns?: any[] | undefined;
|
|
5346
5286
|
readonly displayField?: string | undefined;
|
|
@@ -5551,7 +5491,7 @@ declare const SysEmail: Omit<{
|
|
|
5551
5491
|
inlineTitle?: string | undefined;
|
|
5552
5492
|
inlineColumns?: any[] | undefined;
|
|
5553
5493
|
inlineAmountField?: string | undefined;
|
|
5554
|
-
relatedList?: boolean | undefined;
|
|
5494
|
+
relatedList?: boolean | "primary" | undefined;
|
|
5555
5495
|
relatedListTitle?: string | undefined;
|
|
5556
5496
|
relatedListColumns?: any[] | undefined;
|
|
5557
5497
|
displayField?: string | undefined;
|
|
@@ -5834,7 +5774,7 @@ declare const SysEmail: Omit<{
|
|
|
5834
5774
|
highlightFields?: string[] | undefined;
|
|
5835
5775
|
stageField?: string | false | undefined;
|
|
5836
5776
|
listViews?: Record<string, {
|
|
5837
|
-
type: "tree" | "grid" | "kanban" | "
|
|
5777
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
5838
5778
|
columns: string[] | {
|
|
5839
5779
|
field: string;
|
|
5840
5780
|
label?: string | undefined;
|
|
@@ -5850,8 +5790,55 @@ declare const SysEmail: Omit<{
|
|
|
5850
5790
|
link?: boolean | undefined;
|
|
5851
5791
|
action?: string | undefined;
|
|
5852
5792
|
}[];
|
|
5853
|
-
|
|
5793
|
+
sort?: string | {
|
|
5794
|
+
field: string;
|
|
5795
|
+
order: "asc" | "desc";
|
|
5796
|
+
}[] | undefined;
|
|
5797
|
+
filter?: {
|
|
5798
|
+
field: string;
|
|
5799
|
+
operator: string;
|
|
5800
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
5801
|
+
}[] | undefined;
|
|
5802
|
+
description?: string | undefined;
|
|
5854
5803
|
label?: string | undefined;
|
|
5804
|
+
name?: string | undefined;
|
|
5805
|
+
responsive?: {
|
|
5806
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
5807
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
5808
|
+
columns?: {
|
|
5809
|
+
xs?: number | undefined;
|
|
5810
|
+
sm?: number | undefined;
|
|
5811
|
+
md?: number | undefined;
|
|
5812
|
+
lg?: number | undefined;
|
|
5813
|
+
xl?: number | undefined;
|
|
5814
|
+
'2xl'?: number | undefined;
|
|
5815
|
+
} | undefined;
|
|
5816
|
+
order?: {
|
|
5817
|
+
xs?: number | undefined;
|
|
5818
|
+
sm?: number | undefined;
|
|
5819
|
+
md?: number | undefined;
|
|
5820
|
+
lg?: number | undefined;
|
|
5821
|
+
xl?: number | undefined;
|
|
5822
|
+
'2xl'?: number | undefined;
|
|
5823
|
+
} | undefined;
|
|
5824
|
+
} | undefined;
|
|
5825
|
+
navigation?: {
|
|
5826
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
5827
|
+
preventNavigation: boolean;
|
|
5828
|
+
openNewTab: boolean;
|
|
5829
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
5830
|
+
view?: string | undefined;
|
|
5831
|
+
width?: string | number | undefined;
|
|
5832
|
+
} | undefined;
|
|
5833
|
+
sharing?: {
|
|
5834
|
+
type: "personal" | "collaborative";
|
|
5835
|
+
lockedBy?: string | undefined;
|
|
5836
|
+
} | undefined;
|
|
5837
|
+
aria?: {
|
|
5838
|
+
ariaLabel?: string | undefined;
|
|
5839
|
+
ariaDescribedBy?: string | undefined;
|
|
5840
|
+
role?: string | undefined;
|
|
5841
|
+
} | undefined;
|
|
5855
5842
|
data?: {
|
|
5856
5843
|
provider: "object";
|
|
5857
5844
|
object: string;
|
|
@@ -5879,77 +5866,42 @@ declare const SysEmail: Omit<{
|
|
|
5879
5866
|
schemaId: string;
|
|
5880
5867
|
schema?: Record<string, unknown> | undefined;
|
|
5881
5868
|
} | undefined;
|
|
5882
|
-
|
|
5883
|
-
|
|
5884
|
-
|
|
5885
|
-
|
|
5886
|
-
|
|
5887
|
-
|
|
5888
|
-
field: string;
|
|
5889
|
-
order: "asc" | "desc";
|
|
5890
|
-
}[] | undefined;
|
|
5891
|
-
searchableFields?: string[] | undefined;
|
|
5892
|
-
filterableFields?: string[] | undefined;
|
|
5893
|
-
userFilters?: {
|
|
5894
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
5895
|
-
fields?: {
|
|
5896
|
-
field: string;
|
|
5897
|
-
label?: string | undefined;
|
|
5898
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
5899
|
-
options?: {
|
|
5900
|
-
value: string | number | boolean;
|
|
5901
|
-
label: string;
|
|
5902
|
-
color?: string | undefined;
|
|
5903
|
-
}[] | undefined;
|
|
5904
|
-
showCount?: boolean | undefined;
|
|
5905
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
5906
|
-
}[] | undefined;
|
|
5907
|
-
tabs?: {
|
|
5908
|
-
name: string;
|
|
5909
|
-
pinned: boolean;
|
|
5910
|
-
isDefault: boolean;
|
|
5911
|
-
visible: boolean;
|
|
5912
|
-
label?: string | undefined;
|
|
5913
|
-
icon?: string | undefined;
|
|
5914
|
-
view?: string | undefined;
|
|
5915
|
-
filter?: {
|
|
5916
|
-
field: string;
|
|
5917
|
-
operator: string;
|
|
5918
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
5919
|
-
}[] | undefined;
|
|
5920
|
-
order?: number | undefined;
|
|
5921
|
-
}[] | undefined;
|
|
5922
|
-
showAllRecords?: boolean | undefined;
|
|
5869
|
+
tree?: {
|
|
5870
|
+
[x: string]: unknown;
|
|
5871
|
+
parentField?: string | undefined;
|
|
5872
|
+
labelField?: string | undefined;
|
|
5873
|
+
fields?: string[] | undefined;
|
|
5874
|
+
defaultExpandedDepth?: number | undefined;
|
|
5923
5875
|
} | undefined;
|
|
5876
|
+
inlineEdit?: boolean | undefined;
|
|
5877
|
+
virtualScroll?: boolean | undefined;
|
|
5924
5878
|
resizable?: boolean | undefined;
|
|
5925
|
-
striped?: boolean | undefined;
|
|
5926
|
-
bordered?: boolean | undefined;
|
|
5927
|
-
compactToolbar?: boolean | undefined;
|
|
5928
|
-
selection?: {
|
|
5929
|
-
type: "none" | "multiple" | "single";
|
|
5930
|
-
} | undefined;
|
|
5931
|
-
navigation?: {
|
|
5932
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
5933
|
-
preventNavigation: boolean;
|
|
5934
|
-
openNewTab: boolean;
|
|
5935
|
-
view?: string | undefined;
|
|
5936
|
-
width?: string | number | undefined;
|
|
5937
|
-
} | undefined;
|
|
5938
|
-
pagination?: {
|
|
5939
|
-
pageSize: number;
|
|
5940
|
-
pageSizeOptions?: number[] | undefined;
|
|
5941
|
-
} | undefined;
|
|
5942
5879
|
kanban?: {
|
|
5943
5880
|
groupByField: string;
|
|
5944
5881
|
columns: string[];
|
|
5945
5882
|
summarizeField?: string | undefined;
|
|
5946
5883
|
} | undefined;
|
|
5884
|
+
gallery?: {
|
|
5885
|
+
coverFit: "cover" | "contain";
|
|
5886
|
+
cardSize: "small" | "medium" | "large";
|
|
5887
|
+
coverField?: string | undefined;
|
|
5888
|
+
titleField?: string | undefined;
|
|
5889
|
+
visibleFields?: string[] | undefined;
|
|
5890
|
+
} | undefined;
|
|
5947
5891
|
calendar?: {
|
|
5948
5892
|
startDateField: string;
|
|
5949
5893
|
titleField: string;
|
|
5950
5894
|
endDateField?: string | undefined;
|
|
5951
5895
|
colorField?: string | undefined;
|
|
5952
5896
|
} | undefined;
|
|
5897
|
+
timeline?: {
|
|
5898
|
+
startDateField: string;
|
|
5899
|
+
titleField: string;
|
|
5900
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
5901
|
+
endDateField?: string | undefined;
|
|
5902
|
+
groupByField?: string | undefined;
|
|
5903
|
+
colorField?: string | undefined;
|
|
5904
|
+
} | undefined;
|
|
5953
5905
|
gantt?: {
|
|
5954
5906
|
[x: string]: unknown;
|
|
5955
5907
|
startDateField: string;
|
|
@@ -5981,40 +5933,40 @@ declare const SysEmail: Omit<{
|
|
|
5981
5933
|
}[] | undefined;
|
|
5982
5934
|
autoZoomToFilter?: boolean | undefined;
|
|
5983
5935
|
} | undefined;
|
|
5984
|
-
gallery?: {
|
|
5985
|
-
coverFit: "cover" | "contain";
|
|
5986
|
-
cardSize: "small" | "medium" | "large";
|
|
5987
|
-
coverField?: string | undefined;
|
|
5988
|
-
titleField?: string | undefined;
|
|
5989
|
-
visibleFields?: string[] | undefined;
|
|
5990
|
-
} | undefined;
|
|
5991
|
-
timeline?: {
|
|
5992
|
-
startDateField: string;
|
|
5993
|
-
titleField: string;
|
|
5994
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
5995
|
-
endDateField?: string | undefined;
|
|
5996
|
-
groupByField?: string | undefined;
|
|
5997
|
-
colorField?: string | undefined;
|
|
5998
|
-
} | undefined;
|
|
5999
5936
|
chart?: {
|
|
6000
5937
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
6001
5938
|
dataset: string;
|
|
6002
5939
|
values: string[];
|
|
6003
5940
|
dimensions?: string[] | undefined;
|
|
6004
5941
|
} | undefined;
|
|
6005
|
-
|
|
6006
|
-
|
|
6007
|
-
|
|
6008
|
-
|
|
6009
|
-
|
|
6010
|
-
|
|
5942
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
5943
|
+
tabs?: {
|
|
5944
|
+
name: string;
|
|
5945
|
+
pinned: boolean;
|
|
5946
|
+
isDefault: boolean;
|
|
5947
|
+
visible: boolean;
|
|
5948
|
+
label?: string | undefined;
|
|
5949
|
+
icon?: string | undefined;
|
|
5950
|
+
view?: string | undefined;
|
|
5951
|
+
filter?: {
|
|
5952
|
+
field: string;
|
|
5953
|
+
operator: string;
|
|
5954
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
5955
|
+
}[] | undefined;
|
|
5956
|
+
order?: number | undefined;
|
|
5957
|
+
}[] | undefined;
|
|
5958
|
+
searchableFields?: string[] | undefined;
|
|
5959
|
+
filterableFields?: string[] | undefined;
|
|
5960
|
+
striped?: boolean | undefined;
|
|
5961
|
+
bordered?: boolean | undefined;
|
|
5962
|
+
compactToolbar?: boolean | undefined;
|
|
5963
|
+
selection?: {
|
|
5964
|
+
type: "none" | "multiple" | "single";
|
|
6011
5965
|
} | undefined;
|
|
6012
|
-
|
|
6013
|
-
|
|
6014
|
-
|
|
6015
|
-
lockedBy?: string | undefined;
|
|
5966
|
+
pagination?: {
|
|
5967
|
+
pageSize: number;
|
|
5968
|
+
pageSizeOptions?: number[] | undefined;
|
|
6016
5969
|
} | undefined;
|
|
6017
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
6018
5970
|
grouping?: {
|
|
6019
5971
|
fields: {
|
|
6020
5972
|
field: string;
|
|
@@ -6031,7 +5983,6 @@ declare const SysEmail: Omit<{
|
|
|
6031
5983
|
rowActions?: string[] | undefined;
|
|
6032
5984
|
bulkActions?: string[] | undefined;
|
|
6033
5985
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
6034
|
-
virtualScroll?: boolean | undefined;
|
|
6035
5986
|
conditionalFormatting?: {
|
|
6036
5987
|
condition: {
|
|
6037
5988
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -6052,7 +6003,6 @@ declare const SysEmail: Omit<{
|
|
|
6052
6003
|
};
|
|
6053
6004
|
style: Record<string, string>;
|
|
6054
6005
|
}[] | undefined;
|
|
6055
|
-
inlineEdit?: boolean | undefined;
|
|
6056
6006
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
6057
6007
|
userActions?: {
|
|
6058
6008
|
sort: boolean;
|
|
@@ -6065,23 +6015,8 @@ declare const SysEmail: Omit<{
|
|
|
6065
6015
|
} | undefined;
|
|
6066
6016
|
appearance?: {
|
|
6067
6017
|
showDescription: boolean;
|
|
6068
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
6018
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
6069
6019
|
} | undefined;
|
|
6070
|
-
tabs?: {
|
|
6071
|
-
name: string;
|
|
6072
|
-
pinned: boolean;
|
|
6073
|
-
isDefault: boolean;
|
|
6074
|
-
visible: boolean;
|
|
6075
|
-
label?: string | undefined;
|
|
6076
|
-
icon?: string | undefined;
|
|
6077
|
-
view?: string | undefined;
|
|
6078
|
-
filter?: {
|
|
6079
|
-
field: string;
|
|
6080
|
-
operator: string;
|
|
6081
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
6082
|
-
}[] | undefined;
|
|
6083
|
-
order?: number | undefined;
|
|
6084
|
-
}[] | undefined;
|
|
6085
6020
|
addRecord?: {
|
|
6086
6021
|
enabled: boolean;
|
|
6087
6022
|
position: "top" | "bottom" | "both";
|
|
@@ -6095,31 +6030,6 @@ declare const SysEmail: Omit<{
|
|
|
6095
6030
|
message?: string | undefined;
|
|
6096
6031
|
icon?: string | undefined;
|
|
6097
6032
|
} | undefined;
|
|
6098
|
-
aria?: {
|
|
6099
|
-
ariaLabel?: string | undefined;
|
|
6100
|
-
ariaDescribedBy?: string | undefined;
|
|
6101
|
-
role?: string | undefined;
|
|
6102
|
-
} | undefined;
|
|
6103
|
-
responsive?: {
|
|
6104
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
6105
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
6106
|
-
columns?: {
|
|
6107
|
-
xs?: number | undefined;
|
|
6108
|
-
sm?: number | undefined;
|
|
6109
|
-
md?: number | undefined;
|
|
6110
|
-
lg?: number | undefined;
|
|
6111
|
-
xl?: number | undefined;
|
|
6112
|
-
'2xl'?: number | undefined;
|
|
6113
|
-
} | undefined;
|
|
6114
|
-
order?: {
|
|
6115
|
-
xs?: number | undefined;
|
|
6116
|
-
sm?: number | undefined;
|
|
6117
|
-
md?: number | undefined;
|
|
6118
|
-
lg?: number | undefined;
|
|
6119
|
-
xl?: number | undefined;
|
|
6120
|
-
'2xl'?: number | undefined;
|
|
6121
|
-
} | undefined;
|
|
6122
|
-
} | undefined;
|
|
6123
6033
|
performance?: {
|
|
6124
6034
|
lazyLoad?: boolean | undefined;
|
|
6125
6035
|
virtualScroll?: {
|
|
@@ -6322,7 +6232,7 @@ declare const SysEmail: Omit<{
|
|
|
6322
6232
|
readonly inlineTitle?: string | undefined;
|
|
6323
6233
|
readonly inlineColumns?: any[] | undefined;
|
|
6324
6234
|
readonly inlineAmountField?: string | undefined;
|
|
6325
|
-
readonly relatedList?: boolean | undefined;
|
|
6235
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6326
6236
|
readonly relatedListTitle?: string | undefined;
|
|
6327
6237
|
readonly relatedListColumns?: any[] | undefined;
|
|
6328
6238
|
readonly displayField?: string | undefined;
|
|
@@ -6496,7 +6406,7 @@ declare const SysEmail: Omit<{
|
|
|
6496
6406
|
readonly inlineTitle?: string | undefined;
|
|
6497
6407
|
readonly inlineColumns?: any[] | undefined;
|
|
6498
6408
|
readonly inlineAmountField?: string | undefined;
|
|
6499
|
-
readonly relatedList?: boolean | undefined;
|
|
6409
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6500
6410
|
readonly relatedListTitle?: string | undefined;
|
|
6501
6411
|
readonly relatedListColumns?: any[] | undefined;
|
|
6502
6412
|
readonly displayField?: string | undefined;
|
|
@@ -6670,7 +6580,7 @@ declare const SysEmail: Omit<{
|
|
|
6670
6580
|
readonly inlineTitle?: string | undefined;
|
|
6671
6581
|
readonly inlineColumns?: any[] | undefined;
|
|
6672
6582
|
readonly inlineAmountField?: string | undefined;
|
|
6673
|
-
readonly relatedList?: boolean | undefined;
|
|
6583
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6674
6584
|
readonly relatedListTitle?: string | undefined;
|
|
6675
6585
|
readonly relatedListColumns?: any[] | undefined;
|
|
6676
6586
|
readonly displayField?: string | undefined;
|
|
@@ -6844,7 +6754,7 @@ declare const SysEmail: Omit<{
|
|
|
6844
6754
|
readonly inlineTitle?: string | undefined;
|
|
6845
6755
|
readonly inlineColumns?: any[] | undefined;
|
|
6846
6756
|
readonly inlineAmountField?: string | undefined;
|
|
6847
|
-
readonly relatedList?: boolean | undefined;
|
|
6757
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6848
6758
|
readonly relatedListTitle?: string | undefined;
|
|
6849
6759
|
readonly relatedListColumns?: any[] | undefined;
|
|
6850
6760
|
readonly displayField?: string | undefined;
|
|
@@ -7018,7 +6928,7 @@ declare const SysEmail: Omit<{
|
|
|
7018
6928
|
readonly inlineTitle?: string | undefined;
|
|
7019
6929
|
readonly inlineColumns?: any[] | undefined;
|
|
7020
6930
|
readonly inlineAmountField?: string | undefined;
|
|
7021
|
-
readonly relatedList?: boolean | undefined;
|
|
6931
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7022
6932
|
readonly relatedListTitle?: string | undefined;
|
|
7023
6933
|
readonly relatedListColumns?: any[] | undefined;
|
|
7024
6934
|
readonly displayField?: string | undefined;
|
|
@@ -7192,7 +7102,7 @@ declare const SysEmail: Omit<{
|
|
|
7192
7102
|
readonly inlineTitle?: string | undefined;
|
|
7193
7103
|
readonly inlineColumns?: any[] | undefined;
|
|
7194
7104
|
readonly inlineAmountField?: string | undefined;
|
|
7195
|
-
readonly relatedList?: boolean | undefined;
|
|
7105
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7196
7106
|
readonly relatedListTitle?: string | undefined;
|
|
7197
7107
|
readonly relatedListColumns?: any[] | undefined;
|
|
7198
7108
|
readonly displayField?: string | undefined;
|
|
@@ -7366,7 +7276,7 @@ declare const SysEmail: Omit<{
|
|
|
7366
7276
|
readonly inlineTitle?: string | undefined;
|
|
7367
7277
|
readonly inlineColumns?: any[] | undefined;
|
|
7368
7278
|
readonly inlineAmountField?: string | undefined;
|
|
7369
|
-
readonly relatedList?: boolean | undefined;
|
|
7279
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7370
7280
|
readonly relatedListTitle?: string | undefined;
|
|
7371
7281
|
readonly relatedListColumns?: any[] | undefined;
|
|
7372
7282
|
readonly displayField?: string | undefined;
|
|
@@ -7540,7 +7450,7 @@ declare const SysEmail: Omit<{
|
|
|
7540
7450
|
readonly inlineTitle?: string | undefined;
|
|
7541
7451
|
readonly inlineColumns?: any[] | undefined;
|
|
7542
7452
|
readonly inlineAmountField?: string | undefined;
|
|
7543
|
-
readonly relatedList?: boolean | undefined;
|
|
7453
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7544
7454
|
readonly relatedListTitle?: string | undefined;
|
|
7545
7455
|
readonly relatedListColumns?: any[] | undefined;
|
|
7546
7456
|
readonly displayField?: string | undefined;
|
|
@@ -7714,7 +7624,7 @@ declare const SysEmail: Omit<{
|
|
|
7714
7624
|
readonly inlineTitle?: string | undefined;
|
|
7715
7625
|
readonly inlineColumns?: any[] | undefined;
|
|
7716
7626
|
readonly inlineAmountField?: string | undefined;
|
|
7717
|
-
readonly relatedList?: boolean | undefined;
|
|
7627
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7718
7628
|
readonly relatedListTitle?: string | undefined;
|
|
7719
7629
|
readonly relatedListColumns?: any[] | undefined;
|
|
7720
7630
|
readonly displayField?: string | undefined;
|
|
@@ -7888,7 +7798,7 @@ declare const SysEmail: Omit<{
|
|
|
7888
7798
|
readonly inlineTitle?: string | undefined;
|
|
7889
7799
|
readonly inlineColumns?: any[] | undefined;
|
|
7890
7800
|
readonly inlineAmountField?: string | undefined;
|
|
7891
|
-
readonly relatedList?: boolean | undefined;
|
|
7801
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7892
7802
|
readonly relatedListTitle?: string | undefined;
|
|
7893
7803
|
readonly relatedListColumns?: any[] | undefined;
|
|
7894
7804
|
readonly displayField?: string | undefined;
|
|
@@ -8062,7 +7972,7 @@ declare const SysEmail: Omit<{
|
|
|
8062
7972
|
readonly inlineTitle?: string | undefined;
|
|
8063
7973
|
readonly inlineColumns?: any[] | undefined;
|
|
8064
7974
|
readonly inlineAmountField?: string | undefined;
|
|
8065
|
-
readonly relatedList?: boolean | undefined;
|
|
7975
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8066
7976
|
readonly relatedListTitle?: string | undefined;
|
|
8067
7977
|
readonly relatedListColumns?: any[] | undefined;
|
|
8068
7978
|
readonly displayField?: string | undefined;
|
|
@@ -8236,7 +8146,7 @@ declare const SysEmail: Omit<{
|
|
|
8236
8146
|
readonly inlineTitle?: string | undefined;
|
|
8237
8147
|
readonly inlineColumns?: any[] | undefined;
|
|
8238
8148
|
readonly inlineAmountField?: string | undefined;
|
|
8239
|
-
readonly relatedList?: boolean | undefined;
|
|
8149
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8240
8150
|
readonly relatedListTitle?: string | undefined;
|
|
8241
8151
|
readonly relatedListColumns?: any[] | undefined;
|
|
8242
8152
|
readonly displayField?: string | undefined;
|
|
@@ -8410,7 +8320,7 @@ declare const SysEmail: Omit<{
|
|
|
8410
8320
|
readonly inlineTitle?: string | undefined;
|
|
8411
8321
|
readonly inlineColumns?: any[] | undefined;
|
|
8412
8322
|
readonly inlineAmountField?: string | undefined;
|
|
8413
|
-
readonly relatedList?: boolean | undefined;
|
|
8323
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8414
8324
|
readonly relatedListTitle?: string | undefined;
|
|
8415
8325
|
readonly relatedListColumns?: any[] | undefined;
|
|
8416
8326
|
readonly displayField?: string | undefined;
|
|
@@ -8584,7 +8494,7 @@ declare const SysEmail: Omit<{
|
|
|
8584
8494
|
readonly inlineTitle?: string | undefined;
|
|
8585
8495
|
readonly inlineColumns?: any[] | undefined;
|
|
8586
8496
|
readonly inlineAmountField?: string | undefined;
|
|
8587
|
-
readonly relatedList?: boolean | undefined;
|
|
8497
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8588
8498
|
readonly relatedListTitle?: string | undefined;
|
|
8589
8499
|
readonly relatedListColumns?: any[] | undefined;
|
|
8590
8500
|
readonly displayField?: string | undefined;
|
|
@@ -8758,7 +8668,7 @@ declare const SysEmail: Omit<{
|
|
|
8758
8668
|
readonly inlineTitle?: string | undefined;
|
|
8759
8669
|
readonly inlineColumns?: any[] | undefined;
|
|
8760
8670
|
readonly inlineAmountField?: string | undefined;
|
|
8761
|
-
readonly relatedList?: boolean | undefined;
|
|
8671
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8762
8672
|
readonly relatedListTitle?: string | undefined;
|
|
8763
8673
|
readonly relatedListColumns?: any[] | undefined;
|
|
8764
8674
|
readonly displayField?: string | undefined;
|
|
@@ -8932,7 +8842,7 @@ declare const SysEmail: Omit<{
|
|
|
8932
8842
|
readonly inlineTitle?: string | undefined;
|
|
8933
8843
|
readonly inlineColumns?: any[] | undefined;
|
|
8934
8844
|
readonly inlineAmountField?: string | undefined;
|
|
8935
|
-
readonly relatedList?: boolean | undefined;
|
|
8845
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8936
8846
|
readonly relatedListTitle?: string | undefined;
|
|
8937
8847
|
readonly relatedListColumns?: any[] | undefined;
|
|
8938
8848
|
readonly displayField?: string | undefined;
|
|
@@ -9106,7 +9016,7 @@ declare const SysEmail: Omit<{
|
|
|
9106
9016
|
readonly inlineTitle?: string | undefined;
|
|
9107
9017
|
readonly inlineColumns?: any[] | undefined;
|
|
9108
9018
|
readonly inlineAmountField?: string | undefined;
|
|
9109
|
-
readonly relatedList?: boolean | undefined;
|
|
9019
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
9110
9020
|
readonly relatedListTitle?: string | undefined;
|
|
9111
9021
|
readonly relatedListColumns?: any[] | undefined;
|
|
9112
9022
|
readonly displayField?: string | undefined;
|
|
@@ -9280,7 +9190,7 @@ declare const SysEmail: Omit<{
|
|
|
9280
9190
|
readonly inlineTitle?: string | undefined;
|
|
9281
9191
|
readonly inlineColumns?: any[] | undefined;
|
|
9282
9192
|
readonly inlineAmountField?: string | undefined;
|
|
9283
|
-
readonly relatedList?: boolean | undefined;
|
|
9193
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
9284
9194
|
readonly relatedListTitle?: string | undefined;
|
|
9285
9195
|
readonly relatedListColumns?: any[] | undefined;
|
|
9286
9196
|
readonly displayField?: string | undefined;
|
|
@@ -9454,7 +9364,7 @@ declare const SysEmail: Omit<{
|
|
|
9454
9364
|
readonly inlineTitle?: string | undefined;
|
|
9455
9365
|
readonly inlineColumns?: any[] | undefined;
|
|
9456
9366
|
readonly inlineAmountField?: string | undefined;
|
|
9457
|
-
readonly relatedList?: boolean | undefined;
|
|
9367
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
9458
9368
|
readonly relatedListTitle?: string | undefined;
|
|
9459
9369
|
readonly relatedListColumns?: any[] | undefined;
|
|
9460
9370
|
readonly displayField?: string | undefined;
|
|
@@ -9655,7 +9565,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9655
9565
|
inlineTitle?: string | undefined;
|
|
9656
9566
|
inlineColumns?: any[] | undefined;
|
|
9657
9567
|
inlineAmountField?: string | undefined;
|
|
9658
|
-
relatedList?: boolean | undefined;
|
|
9568
|
+
relatedList?: boolean | "primary" | undefined;
|
|
9659
9569
|
relatedListTitle?: string | undefined;
|
|
9660
9570
|
relatedListColumns?: any[] | undefined;
|
|
9661
9571
|
displayField?: string | undefined;
|
|
@@ -9938,7 +9848,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9938
9848
|
highlightFields?: string[] | undefined;
|
|
9939
9849
|
stageField?: string | false | undefined;
|
|
9940
9850
|
listViews?: Record<string, {
|
|
9941
|
-
type: "tree" | "grid" | "kanban" | "
|
|
9851
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
9942
9852
|
columns: string[] | {
|
|
9943
9853
|
field: string;
|
|
9944
9854
|
label?: string | undefined;
|
|
@@ -9954,8 +9864,55 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9954
9864
|
link?: boolean | undefined;
|
|
9955
9865
|
action?: string | undefined;
|
|
9956
9866
|
}[];
|
|
9957
|
-
|
|
9867
|
+
sort?: string | {
|
|
9868
|
+
field: string;
|
|
9869
|
+
order: "asc" | "desc";
|
|
9870
|
+
}[] | undefined;
|
|
9871
|
+
filter?: {
|
|
9872
|
+
field: string;
|
|
9873
|
+
operator: string;
|
|
9874
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
9875
|
+
}[] | undefined;
|
|
9876
|
+
description?: string | undefined;
|
|
9958
9877
|
label?: string | undefined;
|
|
9878
|
+
name?: string | undefined;
|
|
9879
|
+
responsive?: {
|
|
9880
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
9881
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
9882
|
+
columns?: {
|
|
9883
|
+
xs?: number | undefined;
|
|
9884
|
+
sm?: number | undefined;
|
|
9885
|
+
md?: number | undefined;
|
|
9886
|
+
lg?: number | undefined;
|
|
9887
|
+
xl?: number | undefined;
|
|
9888
|
+
'2xl'?: number | undefined;
|
|
9889
|
+
} | undefined;
|
|
9890
|
+
order?: {
|
|
9891
|
+
xs?: number | undefined;
|
|
9892
|
+
sm?: number | undefined;
|
|
9893
|
+
md?: number | undefined;
|
|
9894
|
+
lg?: number | undefined;
|
|
9895
|
+
xl?: number | undefined;
|
|
9896
|
+
'2xl'?: number | undefined;
|
|
9897
|
+
} | undefined;
|
|
9898
|
+
} | undefined;
|
|
9899
|
+
navigation?: {
|
|
9900
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
9901
|
+
preventNavigation: boolean;
|
|
9902
|
+
openNewTab: boolean;
|
|
9903
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
9904
|
+
view?: string | undefined;
|
|
9905
|
+
width?: string | number | undefined;
|
|
9906
|
+
} | undefined;
|
|
9907
|
+
sharing?: {
|
|
9908
|
+
type: "personal" | "collaborative";
|
|
9909
|
+
lockedBy?: string | undefined;
|
|
9910
|
+
} | undefined;
|
|
9911
|
+
aria?: {
|
|
9912
|
+
ariaLabel?: string | undefined;
|
|
9913
|
+
ariaDescribedBy?: string | undefined;
|
|
9914
|
+
role?: string | undefined;
|
|
9915
|
+
} | undefined;
|
|
9959
9916
|
data?: {
|
|
9960
9917
|
provider: "object";
|
|
9961
9918
|
object: string;
|
|
@@ -9983,77 +9940,42 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9983
9940
|
schemaId: string;
|
|
9984
9941
|
schema?: Record<string, unknown> | undefined;
|
|
9985
9942
|
} | undefined;
|
|
9986
|
-
|
|
9987
|
-
|
|
9988
|
-
|
|
9989
|
-
|
|
9990
|
-
|
|
9991
|
-
|
|
9992
|
-
field: string;
|
|
9993
|
-
order: "asc" | "desc";
|
|
9994
|
-
}[] | undefined;
|
|
9995
|
-
searchableFields?: string[] | undefined;
|
|
9996
|
-
filterableFields?: string[] | undefined;
|
|
9997
|
-
userFilters?: {
|
|
9998
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
9999
|
-
fields?: {
|
|
10000
|
-
field: string;
|
|
10001
|
-
label?: string | undefined;
|
|
10002
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
10003
|
-
options?: {
|
|
10004
|
-
value: string | number | boolean;
|
|
10005
|
-
label: string;
|
|
10006
|
-
color?: string | undefined;
|
|
10007
|
-
}[] | undefined;
|
|
10008
|
-
showCount?: boolean | undefined;
|
|
10009
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
10010
|
-
}[] | undefined;
|
|
10011
|
-
tabs?: {
|
|
10012
|
-
name: string;
|
|
10013
|
-
pinned: boolean;
|
|
10014
|
-
isDefault: boolean;
|
|
10015
|
-
visible: boolean;
|
|
10016
|
-
label?: string | undefined;
|
|
10017
|
-
icon?: string | undefined;
|
|
10018
|
-
view?: string | undefined;
|
|
10019
|
-
filter?: {
|
|
10020
|
-
field: string;
|
|
10021
|
-
operator: string;
|
|
10022
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
10023
|
-
}[] | undefined;
|
|
10024
|
-
order?: number | undefined;
|
|
10025
|
-
}[] | undefined;
|
|
10026
|
-
showAllRecords?: boolean | undefined;
|
|
9943
|
+
tree?: {
|
|
9944
|
+
[x: string]: unknown;
|
|
9945
|
+
parentField?: string | undefined;
|
|
9946
|
+
labelField?: string | undefined;
|
|
9947
|
+
fields?: string[] | undefined;
|
|
9948
|
+
defaultExpandedDepth?: number | undefined;
|
|
10027
9949
|
} | undefined;
|
|
9950
|
+
inlineEdit?: boolean | undefined;
|
|
9951
|
+
virtualScroll?: boolean | undefined;
|
|
10028
9952
|
resizable?: boolean | undefined;
|
|
10029
|
-
striped?: boolean | undefined;
|
|
10030
|
-
bordered?: boolean | undefined;
|
|
10031
|
-
compactToolbar?: boolean | undefined;
|
|
10032
|
-
selection?: {
|
|
10033
|
-
type: "none" | "multiple" | "single";
|
|
10034
|
-
} | undefined;
|
|
10035
|
-
navigation?: {
|
|
10036
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
10037
|
-
preventNavigation: boolean;
|
|
10038
|
-
openNewTab: boolean;
|
|
10039
|
-
view?: string | undefined;
|
|
10040
|
-
width?: string | number | undefined;
|
|
10041
|
-
} | undefined;
|
|
10042
|
-
pagination?: {
|
|
10043
|
-
pageSize: number;
|
|
10044
|
-
pageSizeOptions?: number[] | undefined;
|
|
10045
|
-
} | undefined;
|
|
10046
9953
|
kanban?: {
|
|
10047
9954
|
groupByField: string;
|
|
10048
9955
|
columns: string[];
|
|
10049
9956
|
summarizeField?: string | undefined;
|
|
10050
9957
|
} | undefined;
|
|
9958
|
+
gallery?: {
|
|
9959
|
+
coverFit: "cover" | "contain";
|
|
9960
|
+
cardSize: "small" | "medium" | "large";
|
|
9961
|
+
coverField?: string | undefined;
|
|
9962
|
+
titleField?: string | undefined;
|
|
9963
|
+
visibleFields?: string[] | undefined;
|
|
9964
|
+
} | undefined;
|
|
10051
9965
|
calendar?: {
|
|
10052
9966
|
startDateField: string;
|
|
10053
9967
|
titleField: string;
|
|
10054
9968
|
endDateField?: string | undefined;
|
|
10055
9969
|
colorField?: string | undefined;
|
|
10056
9970
|
} | undefined;
|
|
9971
|
+
timeline?: {
|
|
9972
|
+
startDateField: string;
|
|
9973
|
+
titleField: string;
|
|
9974
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
9975
|
+
endDateField?: string | undefined;
|
|
9976
|
+
groupByField?: string | undefined;
|
|
9977
|
+
colorField?: string | undefined;
|
|
9978
|
+
} | undefined;
|
|
10057
9979
|
gantt?: {
|
|
10058
9980
|
[x: string]: unknown;
|
|
10059
9981
|
startDateField: string;
|
|
@@ -10085,40 +10007,40 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10085
10007
|
}[] | undefined;
|
|
10086
10008
|
autoZoomToFilter?: boolean | undefined;
|
|
10087
10009
|
} | undefined;
|
|
10088
|
-
gallery?: {
|
|
10089
|
-
coverFit: "cover" | "contain";
|
|
10090
|
-
cardSize: "small" | "medium" | "large";
|
|
10091
|
-
coverField?: string | undefined;
|
|
10092
|
-
titleField?: string | undefined;
|
|
10093
|
-
visibleFields?: string[] | undefined;
|
|
10094
|
-
} | undefined;
|
|
10095
|
-
timeline?: {
|
|
10096
|
-
startDateField: string;
|
|
10097
|
-
titleField: string;
|
|
10098
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
10099
|
-
endDateField?: string | undefined;
|
|
10100
|
-
groupByField?: string | undefined;
|
|
10101
|
-
colorField?: string | undefined;
|
|
10102
|
-
} | undefined;
|
|
10103
10010
|
chart?: {
|
|
10104
10011
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
10105
10012
|
dataset: string;
|
|
10106
10013
|
values: string[];
|
|
10107
10014
|
dimensions?: string[] | undefined;
|
|
10108
10015
|
} | undefined;
|
|
10109
|
-
|
|
10110
|
-
|
|
10111
|
-
|
|
10112
|
-
|
|
10113
|
-
|
|
10114
|
-
|
|
10016
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
10017
|
+
tabs?: {
|
|
10018
|
+
name: string;
|
|
10019
|
+
pinned: boolean;
|
|
10020
|
+
isDefault: boolean;
|
|
10021
|
+
visible: boolean;
|
|
10022
|
+
label?: string | undefined;
|
|
10023
|
+
icon?: string | undefined;
|
|
10024
|
+
view?: string | undefined;
|
|
10025
|
+
filter?: {
|
|
10026
|
+
field: string;
|
|
10027
|
+
operator: string;
|
|
10028
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
10029
|
+
}[] | undefined;
|
|
10030
|
+
order?: number | undefined;
|
|
10031
|
+
}[] | undefined;
|
|
10032
|
+
searchableFields?: string[] | undefined;
|
|
10033
|
+
filterableFields?: string[] | undefined;
|
|
10034
|
+
striped?: boolean | undefined;
|
|
10035
|
+
bordered?: boolean | undefined;
|
|
10036
|
+
compactToolbar?: boolean | undefined;
|
|
10037
|
+
selection?: {
|
|
10038
|
+
type: "none" | "multiple" | "single";
|
|
10115
10039
|
} | undefined;
|
|
10116
|
-
|
|
10117
|
-
|
|
10118
|
-
|
|
10119
|
-
lockedBy?: string | undefined;
|
|
10040
|
+
pagination?: {
|
|
10041
|
+
pageSize: number;
|
|
10042
|
+
pageSizeOptions?: number[] | undefined;
|
|
10120
10043
|
} | undefined;
|
|
10121
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
10122
10044
|
grouping?: {
|
|
10123
10045
|
fields: {
|
|
10124
10046
|
field: string;
|
|
@@ -10135,7 +10057,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10135
10057
|
rowActions?: string[] | undefined;
|
|
10136
10058
|
bulkActions?: string[] | undefined;
|
|
10137
10059
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
10138
|
-
virtualScroll?: boolean | undefined;
|
|
10139
10060
|
conditionalFormatting?: {
|
|
10140
10061
|
condition: {
|
|
10141
10062
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -10156,7 +10077,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10156
10077
|
};
|
|
10157
10078
|
style: Record<string, string>;
|
|
10158
10079
|
}[] | undefined;
|
|
10159
|
-
inlineEdit?: boolean | undefined;
|
|
10160
10080
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
10161
10081
|
userActions?: {
|
|
10162
10082
|
sort: boolean;
|
|
@@ -10169,23 +10089,8 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10169
10089
|
} | undefined;
|
|
10170
10090
|
appearance?: {
|
|
10171
10091
|
showDescription: boolean;
|
|
10172
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
10092
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
10173
10093
|
} | undefined;
|
|
10174
|
-
tabs?: {
|
|
10175
|
-
name: string;
|
|
10176
|
-
pinned: boolean;
|
|
10177
|
-
isDefault: boolean;
|
|
10178
|
-
visible: boolean;
|
|
10179
|
-
label?: string | undefined;
|
|
10180
|
-
icon?: string | undefined;
|
|
10181
|
-
view?: string | undefined;
|
|
10182
|
-
filter?: {
|
|
10183
|
-
field: string;
|
|
10184
|
-
operator: string;
|
|
10185
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
10186
|
-
}[] | undefined;
|
|
10187
|
-
order?: number | undefined;
|
|
10188
|
-
}[] | undefined;
|
|
10189
10094
|
addRecord?: {
|
|
10190
10095
|
enabled: boolean;
|
|
10191
10096
|
position: "top" | "bottom" | "both";
|
|
@@ -10199,31 +10104,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10199
10104
|
message?: string | undefined;
|
|
10200
10105
|
icon?: string | undefined;
|
|
10201
10106
|
} | undefined;
|
|
10202
|
-
aria?: {
|
|
10203
|
-
ariaLabel?: string | undefined;
|
|
10204
|
-
ariaDescribedBy?: string | undefined;
|
|
10205
|
-
role?: string | undefined;
|
|
10206
|
-
} | undefined;
|
|
10207
|
-
responsive?: {
|
|
10208
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
10209
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
10210
|
-
columns?: {
|
|
10211
|
-
xs?: number | undefined;
|
|
10212
|
-
sm?: number | undefined;
|
|
10213
|
-
md?: number | undefined;
|
|
10214
|
-
lg?: number | undefined;
|
|
10215
|
-
xl?: number | undefined;
|
|
10216
|
-
'2xl'?: number | undefined;
|
|
10217
|
-
} | undefined;
|
|
10218
|
-
order?: {
|
|
10219
|
-
xs?: number | undefined;
|
|
10220
|
-
sm?: number | undefined;
|
|
10221
|
-
md?: number | undefined;
|
|
10222
|
-
lg?: number | undefined;
|
|
10223
|
-
xl?: number | undefined;
|
|
10224
|
-
'2xl'?: number | undefined;
|
|
10225
|
-
} | undefined;
|
|
10226
|
-
} | undefined;
|
|
10227
10107
|
performance?: {
|
|
10228
10108
|
lazyLoad?: boolean | undefined;
|
|
10229
10109
|
virtualScroll?: {
|
|
@@ -10426,7 +10306,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10426
10306
|
readonly inlineTitle?: string | undefined;
|
|
10427
10307
|
readonly inlineColumns?: any[] | undefined;
|
|
10428
10308
|
readonly inlineAmountField?: string | undefined;
|
|
10429
|
-
readonly relatedList?: boolean | undefined;
|
|
10309
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
10430
10310
|
readonly relatedListTitle?: string | undefined;
|
|
10431
10311
|
readonly relatedListColumns?: any[] | undefined;
|
|
10432
10312
|
readonly displayField?: string | undefined;
|
|
@@ -10600,7 +10480,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10600
10480
|
readonly inlineTitle?: string | undefined;
|
|
10601
10481
|
readonly inlineColumns?: any[] | undefined;
|
|
10602
10482
|
readonly inlineAmountField?: string | undefined;
|
|
10603
|
-
readonly relatedList?: boolean | undefined;
|
|
10483
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
10604
10484
|
readonly relatedListTitle?: string | undefined;
|
|
10605
10485
|
readonly relatedListColumns?: any[] | undefined;
|
|
10606
10486
|
readonly displayField?: string | undefined;
|
|
@@ -10774,7 +10654,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10774
10654
|
readonly inlineTitle?: string | undefined;
|
|
10775
10655
|
readonly inlineColumns?: any[] | undefined;
|
|
10776
10656
|
readonly inlineAmountField?: string | undefined;
|
|
10777
|
-
readonly relatedList?: boolean | undefined;
|
|
10657
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
10778
10658
|
readonly relatedListTitle?: string | undefined;
|
|
10779
10659
|
readonly relatedListColumns?: any[] | undefined;
|
|
10780
10660
|
readonly displayField?: string | undefined;
|
|
@@ -10948,7 +10828,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10948
10828
|
readonly inlineTitle?: string | undefined;
|
|
10949
10829
|
readonly inlineColumns?: any[] | undefined;
|
|
10950
10830
|
readonly inlineAmountField?: string | undefined;
|
|
10951
|
-
readonly relatedList?: boolean | undefined;
|
|
10831
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
10952
10832
|
readonly relatedListTitle?: string | undefined;
|
|
10953
10833
|
readonly relatedListColumns?: any[] | undefined;
|
|
10954
10834
|
readonly displayField?: string | undefined;
|
|
@@ -11122,7 +11002,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11122
11002
|
readonly inlineTitle?: string | undefined;
|
|
11123
11003
|
readonly inlineColumns?: any[] | undefined;
|
|
11124
11004
|
readonly inlineAmountField?: string | undefined;
|
|
11125
|
-
readonly relatedList?: boolean | undefined;
|
|
11005
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11126
11006
|
readonly relatedListTitle?: string | undefined;
|
|
11127
11007
|
readonly relatedListColumns?: any[] | undefined;
|
|
11128
11008
|
readonly displayField?: string | undefined;
|
|
@@ -11296,7 +11176,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11296
11176
|
readonly inlineTitle?: string | undefined;
|
|
11297
11177
|
readonly inlineColumns?: any[] | undefined;
|
|
11298
11178
|
readonly inlineAmountField?: string | undefined;
|
|
11299
|
-
readonly relatedList?: boolean | undefined;
|
|
11179
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11300
11180
|
readonly relatedListTitle?: string | undefined;
|
|
11301
11181
|
readonly relatedListColumns?: any[] | undefined;
|
|
11302
11182
|
readonly displayField?: string | undefined;
|
|
@@ -11470,7 +11350,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11470
11350
|
readonly inlineTitle?: string | undefined;
|
|
11471
11351
|
readonly inlineColumns?: any[] | undefined;
|
|
11472
11352
|
readonly inlineAmountField?: string | undefined;
|
|
11473
|
-
readonly relatedList?: boolean | undefined;
|
|
11353
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11474
11354
|
readonly relatedListTitle?: string | undefined;
|
|
11475
11355
|
readonly relatedListColumns?: any[] | undefined;
|
|
11476
11356
|
readonly displayField?: string | undefined;
|
|
@@ -11644,7 +11524,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11644
11524
|
readonly inlineTitle?: string | undefined;
|
|
11645
11525
|
readonly inlineColumns?: any[] | undefined;
|
|
11646
11526
|
readonly inlineAmountField?: string | undefined;
|
|
11647
|
-
readonly relatedList?: boolean | undefined;
|
|
11527
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11648
11528
|
readonly relatedListTitle?: string | undefined;
|
|
11649
11529
|
readonly relatedListColumns?: any[] | undefined;
|
|
11650
11530
|
readonly displayField?: string | undefined;
|
|
@@ -11818,7 +11698,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11818
11698
|
readonly inlineTitle?: string | undefined;
|
|
11819
11699
|
readonly inlineColumns?: any[] | undefined;
|
|
11820
11700
|
readonly inlineAmountField?: string | undefined;
|
|
11821
|
-
readonly relatedList?: boolean | undefined;
|
|
11701
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11822
11702
|
readonly relatedListTitle?: string | undefined;
|
|
11823
11703
|
readonly relatedListColumns?: any[] | undefined;
|
|
11824
11704
|
readonly displayField?: string | undefined;
|
|
@@ -11992,7 +11872,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11992
11872
|
readonly inlineTitle?: string | undefined;
|
|
11993
11873
|
readonly inlineColumns?: any[] | undefined;
|
|
11994
11874
|
readonly inlineAmountField?: string | undefined;
|
|
11995
|
-
readonly relatedList?: boolean | undefined;
|
|
11875
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11996
11876
|
readonly relatedListTitle?: string | undefined;
|
|
11997
11877
|
readonly relatedListColumns?: any[] | undefined;
|
|
11998
11878
|
readonly displayField?: string | undefined;
|
|
@@ -12166,7 +12046,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12166
12046
|
readonly inlineTitle?: string | undefined;
|
|
12167
12047
|
readonly inlineColumns?: any[] | undefined;
|
|
12168
12048
|
readonly inlineAmountField?: string | undefined;
|
|
12169
|
-
readonly relatedList?: boolean | undefined;
|
|
12049
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
12170
12050
|
readonly relatedListTitle?: string | undefined;
|
|
12171
12051
|
readonly relatedListColumns?: any[] | undefined;
|
|
12172
12052
|
readonly displayField?: string | undefined;
|
|
@@ -12340,7 +12220,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12340
12220
|
readonly inlineTitle?: string | undefined;
|
|
12341
12221
|
readonly inlineColumns?: any[] | undefined;
|
|
12342
12222
|
readonly inlineAmountField?: string | undefined;
|
|
12343
|
-
readonly relatedList?: boolean | undefined;
|
|
12223
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
12344
12224
|
readonly relatedListTitle?: string | undefined;
|
|
12345
12225
|
readonly relatedListColumns?: any[] | undefined;
|
|
12346
12226
|
readonly displayField?: string | undefined;
|
|
@@ -12514,7 +12394,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12514
12394
|
readonly inlineTitle?: string | undefined;
|
|
12515
12395
|
readonly inlineColumns?: any[] | undefined;
|
|
12516
12396
|
readonly inlineAmountField?: string | undefined;
|
|
12517
|
-
readonly relatedList?: boolean | undefined;
|
|
12397
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
12518
12398
|
readonly relatedListTitle?: string | undefined;
|
|
12519
12399
|
readonly relatedListColumns?: any[] | undefined;
|
|
12520
12400
|
readonly displayField?: string | undefined;
|
|
@@ -12688,7 +12568,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12688
12568
|
readonly inlineTitle?: string | undefined;
|
|
12689
12569
|
readonly inlineColumns?: any[] | undefined;
|
|
12690
12570
|
readonly inlineAmountField?: string | undefined;
|
|
12691
|
-
readonly relatedList?: boolean | undefined;
|
|
12571
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
12692
12572
|
readonly relatedListTitle?: string | undefined;
|
|
12693
12573
|
readonly relatedListColumns?: any[] | undefined;
|
|
12694
12574
|
readonly displayField?: string | undefined;
|
|
@@ -12868,7 +12748,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12868
12748
|
readonly inlineTitle?: string | undefined;
|
|
12869
12749
|
readonly inlineColumns?: any[] | undefined;
|
|
12870
12750
|
readonly inlineAmountField?: string | undefined;
|
|
12871
|
-
readonly relatedList?: boolean | undefined;
|
|
12751
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
12872
12752
|
readonly relatedListTitle?: string | undefined;
|
|
12873
12753
|
readonly relatedListColumns?: any[] | undefined;
|
|
12874
12754
|
readonly displayField?: string | undefined;
|
|
@@ -13042,7 +12922,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
13042
12922
|
readonly inlineTitle?: string | undefined;
|
|
13043
12923
|
readonly inlineColumns?: any[] | undefined;
|
|
13044
12924
|
readonly inlineAmountField?: string | undefined;
|
|
13045
|
-
readonly relatedList?: boolean | undefined;
|
|
12925
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
13046
12926
|
readonly relatedListTitle?: string | undefined;
|
|
13047
12927
|
readonly relatedListColumns?: any[] | undefined;
|
|
13048
12928
|
readonly displayField?: string | undefined;
|
|
@@ -13216,7 +13096,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
13216
13096
|
readonly inlineTitle?: string | undefined;
|
|
13217
13097
|
readonly inlineColumns?: any[] | undefined;
|
|
13218
13098
|
readonly inlineAmountField?: string | undefined;
|
|
13219
|
-
readonly relatedList?: boolean | undefined;
|
|
13099
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
13220
13100
|
readonly relatedListTitle?: string | undefined;
|
|
13221
13101
|
readonly relatedListColumns?: any[] | undefined;
|
|
13222
13102
|
readonly displayField?: string | undefined;
|
|
@@ -13425,7 +13305,7 @@ declare const SysSavedReport: Omit<{
|
|
|
13425
13305
|
inlineTitle?: string | undefined;
|
|
13426
13306
|
inlineColumns?: any[] | undefined;
|
|
13427
13307
|
inlineAmountField?: string | undefined;
|
|
13428
|
-
relatedList?: boolean | undefined;
|
|
13308
|
+
relatedList?: boolean | "primary" | undefined;
|
|
13429
13309
|
relatedListTitle?: string | undefined;
|
|
13430
13310
|
relatedListColumns?: any[] | undefined;
|
|
13431
13311
|
displayField?: string | undefined;
|
|
@@ -13708,7 +13588,7 @@ declare const SysSavedReport: Omit<{
|
|
|
13708
13588
|
highlightFields?: string[] | undefined;
|
|
13709
13589
|
stageField?: string | false | undefined;
|
|
13710
13590
|
listViews?: Record<string, {
|
|
13711
|
-
type: "tree" | "grid" | "kanban" | "
|
|
13591
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
13712
13592
|
columns: string[] | {
|
|
13713
13593
|
field: string;
|
|
13714
13594
|
label?: string | undefined;
|
|
@@ -13724,8 +13604,55 @@ declare const SysSavedReport: Omit<{
|
|
|
13724
13604
|
link?: boolean | undefined;
|
|
13725
13605
|
action?: string | undefined;
|
|
13726
13606
|
}[];
|
|
13727
|
-
|
|
13607
|
+
sort?: string | {
|
|
13608
|
+
field: string;
|
|
13609
|
+
order: "asc" | "desc";
|
|
13610
|
+
}[] | undefined;
|
|
13611
|
+
filter?: {
|
|
13612
|
+
field: string;
|
|
13613
|
+
operator: string;
|
|
13614
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
13615
|
+
}[] | undefined;
|
|
13616
|
+
description?: string | undefined;
|
|
13728
13617
|
label?: string | undefined;
|
|
13618
|
+
name?: string | undefined;
|
|
13619
|
+
responsive?: {
|
|
13620
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
13621
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
13622
|
+
columns?: {
|
|
13623
|
+
xs?: number | undefined;
|
|
13624
|
+
sm?: number | undefined;
|
|
13625
|
+
md?: number | undefined;
|
|
13626
|
+
lg?: number | undefined;
|
|
13627
|
+
xl?: number | undefined;
|
|
13628
|
+
'2xl'?: number | undefined;
|
|
13629
|
+
} | undefined;
|
|
13630
|
+
order?: {
|
|
13631
|
+
xs?: number | undefined;
|
|
13632
|
+
sm?: number | undefined;
|
|
13633
|
+
md?: number | undefined;
|
|
13634
|
+
lg?: number | undefined;
|
|
13635
|
+
xl?: number | undefined;
|
|
13636
|
+
'2xl'?: number | undefined;
|
|
13637
|
+
} | undefined;
|
|
13638
|
+
} | undefined;
|
|
13639
|
+
navigation?: {
|
|
13640
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
13641
|
+
preventNavigation: boolean;
|
|
13642
|
+
openNewTab: boolean;
|
|
13643
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
13644
|
+
view?: string | undefined;
|
|
13645
|
+
width?: string | number | undefined;
|
|
13646
|
+
} | undefined;
|
|
13647
|
+
sharing?: {
|
|
13648
|
+
type: "personal" | "collaborative";
|
|
13649
|
+
lockedBy?: string | undefined;
|
|
13650
|
+
} | undefined;
|
|
13651
|
+
aria?: {
|
|
13652
|
+
ariaLabel?: string | undefined;
|
|
13653
|
+
ariaDescribedBy?: string | undefined;
|
|
13654
|
+
role?: string | undefined;
|
|
13655
|
+
} | undefined;
|
|
13729
13656
|
data?: {
|
|
13730
13657
|
provider: "object";
|
|
13731
13658
|
object: string;
|
|
@@ -13753,77 +13680,42 @@ declare const SysSavedReport: Omit<{
|
|
|
13753
13680
|
schemaId: string;
|
|
13754
13681
|
schema?: Record<string, unknown> | undefined;
|
|
13755
13682
|
} | undefined;
|
|
13756
|
-
|
|
13757
|
-
|
|
13758
|
-
|
|
13759
|
-
|
|
13760
|
-
|
|
13761
|
-
|
|
13762
|
-
field: string;
|
|
13763
|
-
order: "asc" | "desc";
|
|
13764
|
-
}[] | undefined;
|
|
13765
|
-
searchableFields?: string[] | undefined;
|
|
13766
|
-
filterableFields?: string[] | undefined;
|
|
13767
|
-
userFilters?: {
|
|
13768
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
13769
|
-
fields?: {
|
|
13770
|
-
field: string;
|
|
13771
|
-
label?: string | undefined;
|
|
13772
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
13773
|
-
options?: {
|
|
13774
|
-
value: string | number | boolean;
|
|
13775
|
-
label: string;
|
|
13776
|
-
color?: string | undefined;
|
|
13777
|
-
}[] | undefined;
|
|
13778
|
-
showCount?: boolean | undefined;
|
|
13779
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
13780
|
-
}[] | undefined;
|
|
13781
|
-
tabs?: {
|
|
13782
|
-
name: string;
|
|
13783
|
-
pinned: boolean;
|
|
13784
|
-
isDefault: boolean;
|
|
13785
|
-
visible: boolean;
|
|
13786
|
-
label?: string | undefined;
|
|
13787
|
-
icon?: string | undefined;
|
|
13788
|
-
view?: string | undefined;
|
|
13789
|
-
filter?: {
|
|
13790
|
-
field: string;
|
|
13791
|
-
operator: string;
|
|
13792
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
13793
|
-
}[] | undefined;
|
|
13794
|
-
order?: number | undefined;
|
|
13795
|
-
}[] | undefined;
|
|
13796
|
-
showAllRecords?: boolean | undefined;
|
|
13683
|
+
tree?: {
|
|
13684
|
+
[x: string]: unknown;
|
|
13685
|
+
parentField?: string | undefined;
|
|
13686
|
+
labelField?: string | undefined;
|
|
13687
|
+
fields?: string[] | undefined;
|
|
13688
|
+
defaultExpandedDepth?: number | undefined;
|
|
13797
13689
|
} | undefined;
|
|
13690
|
+
inlineEdit?: boolean | undefined;
|
|
13691
|
+
virtualScroll?: boolean | undefined;
|
|
13798
13692
|
resizable?: boolean | undefined;
|
|
13799
|
-
striped?: boolean | undefined;
|
|
13800
|
-
bordered?: boolean | undefined;
|
|
13801
|
-
compactToolbar?: boolean | undefined;
|
|
13802
|
-
selection?: {
|
|
13803
|
-
type: "none" | "multiple" | "single";
|
|
13804
|
-
} | undefined;
|
|
13805
|
-
navigation?: {
|
|
13806
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
13807
|
-
preventNavigation: boolean;
|
|
13808
|
-
openNewTab: boolean;
|
|
13809
|
-
view?: string | undefined;
|
|
13810
|
-
width?: string | number | undefined;
|
|
13811
|
-
} | undefined;
|
|
13812
|
-
pagination?: {
|
|
13813
|
-
pageSize: number;
|
|
13814
|
-
pageSizeOptions?: number[] | undefined;
|
|
13815
|
-
} | undefined;
|
|
13816
13693
|
kanban?: {
|
|
13817
13694
|
groupByField: string;
|
|
13818
13695
|
columns: string[];
|
|
13819
13696
|
summarizeField?: string | undefined;
|
|
13820
13697
|
} | undefined;
|
|
13698
|
+
gallery?: {
|
|
13699
|
+
coverFit: "cover" | "contain";
|
|
13700
|
+
cardSize: "small" | "medium" | "large";
|
|
13701
|
+
coverField?: string | undefined;
|
|
13702
|
+
titleField?: string | undefined;
|
|
13703
|
+
visibleFields?: string[] | undefined;
|
|
13704
|
+
} | undefined;
|
|
13821
13705
|
calendar?: {
|
|
13822
13706
|
startDateField: string;
|
|
13823
13707
|
titleField: string;
|
|
13824
13708
|
endDateField?: string | undefined;
|
|
13825
13709
|
colorField?: string | undefined;
|
|
13826
13710
|
} | undefined;
|
|
13711
|
+
timeline?: {
|
|
13712
|
+
startDateField: string;
|
|
13713
|
+
titleField: string;
|
|
13714
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
13715
|
+
endDateField?: string | undefined;
|
|
13716
|
+
groupByField?: string | undefined;
|
|
13717
|
+
colorField?: string | undefined;
|
|
13718
|
+
} | undefined;
|
|
13827
13719
|
gantt?: {
|
|
13828
13720
|
[x: string]: unknown;
|
|
13829
13721
|
startDateField: string;
|
|
@@ -13855,40 +13747,40 @@ declare const SysSavedReport: Omit<{
|
|
|
13855
13747
|
}[] | undefined;
|
|
13856
13748
|
autoZoomToFilter?: boolean | undefined;
|
|
13857
13749
|
} | undefined;
|
|
13858
|
-
gallery?: {
|
|
13859
|
-
coverFit: "cover" | "contain";
|
|
13860
|
-
cardSize: "small" | "medium" | "large";
|
|
13861
|
-
coverField?: string | undefined;
|
|
13862
|
-
titleField?: string | undefined;
|
|
13863
|
-
visibleFields?: string[] | undefined;
|
|
13864
|
-
} | undefined;
|
|
13865
|
-
timeline?: {
|
|
13866
|
-
startDateField: string;
|
|
13867
|
-
titleField: string;
|
|
13868
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
13869
|
-
endDateField?: string | undefined;
|
|
13870
|
-
groupByField?: string | undefined;
|
|
13871
|
-
colorField?: string | undefined;
|
|
13872
|
-
} | undefined;
|
|
13873
13750
|
chart?: {
|
|
13874
13751
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
13875
13752
|
dataset: string;
|
|
13876
13753
|
values: string[];
|
|
13877
13754
|
dimensions?: string[] | undefined;
|
|
13878
13755
|
} | undefined;
|
|
13879
|
-
|
|
13880
|
-
|
|
13881
|
-
|
|
13882
|
-
|
|
13883
|
-
|
|
13884
|
-
|
|
13756
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
13757
|
+
tabs?: {
|
|
13758
|
+
name: string;
|
|
13759
|
+
pinned: boolean;
|
|
13760
|
+
isDefault: boolean;
|
|
13761
|
+
visible: boolean;
|
|
13762
|
+
label?: string | undefined;
|
|
13763
|
+
icon?: string | undefined;
|
|
13764
|
+
view?: string | undefined;
|
|
13765
|
+
filter?: {
|
|
13766
|
+
field: string;
|
|
13767
|
+
operator: string;
|
|
13768
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
13769
|
+
}[] | undefined;
|
|
13770
|
+
order?: number | undefined;
|
|
13771
|
+
}[] | undefined;
|
|
13772
|
+
searchableFields?: string[] | undefined;
|
|
13773
|
+
filterableFields?: string[] | undefined;
|
|
13774
|
+
striped?: boolean | undefined;
|
|
13775
|
+
bordered?: boolean | undefined;
|
|
13776
|
+
compactToolbar?: boolean | undefined;
|
|
13777
|
+
selection?: {
|
|
13778
|
+
type: "none" | "multiple" | "single";
|
|
13885
13779
|
} | undefined;
|
|
13886
|
-
|
|
13887
|
-
|
|
13888
|
-
|
|
13889
|
-
lockedBy?: string | undefined;
|
|
13780
|
+
pagination?: {
|
|
13781
|
+
pageSize: number;
|
|
13782
|
+
pageSizeOptions?: number[] | undefined;
|
|
13890
13783
|
} | undefined;
|
|
13891
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
13892
13784
|
grouping?: {
|
|
13893
13785
|
fields: {
|
|
13894
13786
|
field: string;
|
|
@@ -13905,7 +13797,6 @@ declare const SysSavedReport: Omit<{
|
|
|
13905
13797
|
rowActions?: string[] | undefined;
|
|
13906
13798
|
bulkActions?: string[] | undefined;
|
|
13907
13799
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
13908
|
-
virtualScroll?: boolean | undefined;
|
|
13909
13800
|
conditionalFormatting?: {
|
|
13910
13801
|
condition: {
|
|
13911
13802
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -13926,7 +13817,6 @@ declare const SysSavedReport: Omit<{
|
|
|
13926
13817
|
};
|
|
13927
13818
|
style: Record<string, string>;
|
|
13928
13819
|
}[] | undefined;
|
|
13929
|
-
inlineEdit?: boolean | undefined;
|
|
13930
13820
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
13931
13821
|
userActions?: {
|
|
13932
13822
|
sort: boolean;
|
|
@@ -13939,23 +13829,8 @@ declare const SysSavedReport: Omit<{
|
|
|
13939
13829
|
} | undefined;
|
|
13940
13830
|
appearance?: {
|
|
13941
13831
|
showDescription: boolean;
|
|
13942
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
13832
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
13943
13833
|
} | undefined;
|
|
13944
|
-
tabs?: {
|
|
13945
|
-
name: string;
|
|
13946
|
-
pinned: boolean;
|
|
13947
|
-
isDefault: boolean;
|
|
13948
|
-
visible: boolean;
|
|
13949
|
-
label?: string | undefined;
|
|
13950
|
-
icon?: string | undefined;
|
|
13951
|
-
view?: string | undefined;
|
|
13952
|
-
filter?: {
|
|
13953
|
-
field: string;
|
|
13954
|
-
operator: string;
|
|
13955
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
13956
|
-
}[] | undefined;
|
|
13957
|
-
order?: number | undefined;
|
|
13958
|
-
}[] | undefined;
|
|
13959
13834
|
addRecord?: {
|
|
13960
13835
|
enabled: boolean;
|
|
13961
13836
|
position: "top" | "bottom" | "both";
|
|
@@ -13969,31 +13844,6 @@ declare const SysSavedReport: Omit<{
|
|
|
13969
13844
|
message?: string | undefined;
|
|
13970
13845
|
icon?: string | undefined;
|
|
13971
13846
|
} | undefined;
|
|
13972
|
-
aria?: {
|
|
13973
|
-
ariaLabel?: string | undefined;
|
|
13974
|
-
ariaDescribedBy?: string | undefined;
|
|
13975
|
-
role?: string | undefined;
|
|
13976
|
-
} | undefined;
|
|
13977
|
-
responsive?: {
|
|
13978
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
13979
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
13980
|
-
columns?: {
|
|
13981
|
-
xs?: number | undefined;
|
|
13982
|
-
sm?: number | undefined;
|
|
13983
|
-
md?: number | undefined;
|
|
13984
|
-
lg?: number | undefined;
|
|
13985
|
-
xl?: number | undefined;
|
|
13986
|
-
'2xl'?: number | undefined;
|
|
13987
|
-
} | undefined;
|
|
13988
|
-
order?: {
|
|
13989
|
-
xs?: number | undefined;
|
|
13990
|
-
sm?: number | undefined;
|
|
13991
|
-
md?: number | undefined;
|
|
13992
|
-
lg?: number | undefined;
|
|
13993
|
-
xl?: number | undefined;
|
|
13994
|
-
'2xl'?: number | undefined;
|
|
13995
|
-
} | undefined;
|
|
13996
|
-
} | undefined;
|
|
13997
13847
|
performance?: {
|
|
13998
13848
|
lazyLoad?: boolean | undefined;
|
|
13999
13849
|
virtualScroll?: {
|
|
@@ -14196,7 +14046,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14196
14046
|
readonly inlineTitle?: string | undefined;
|
|
14197
14047
|
readonly inlineColumns?: any[] | undefined;
|
|
14198
14048
|
readonly inlineAmountField?: string | undefined;
|
|
14199
|
-
readonly relatedList?: boolean | undefined;
|
|
14049
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
14200
14050
|
readonly relatedListTitle?: string | undefined;
|
|
14201
14051
|
readonly relatedListColumns?: any[] | undefined;
|
|
14202
14052
|
readonly displayField?: string | undefined;
|
|
@@ -14370,7 +14220,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14370
14220
|
readonly inlineTitle?: string | undefined;
|
|
14371
14221
|
readonly inlineColumns?: any[] | undefined;
|
|
14372
14222
|
readonly inlineAmountField?: string | undefined;
|
|
14373
|
-
readonly relatedList?: boolean | undefined;
|
|
14223
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
14374
14224
|
readonly relatedListTitle?: string | undefined;
|
|
14375
14225
|
readonly relatedListColumns?: any[] | undefined;
|
|
14376
14226
|
readonly displayField?: string | undefined;
|
|
@@ -14544,7 +14394,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14544
14394
|
readonly inlineTitle?: string | undefined;
|
|
14545
14395
|
readonly inlineColumns?: any[] | undefined;
|
|
14546
14396
|
readonly inlineAmountField?: string | undefined;
|
|
14547
|
-
readonly relatedList?: boolean | undefined;
|
|
14397
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
14548
14398
|
readonly relatedListTitle?: string | undefined;
|
|
14549
14399
|
readonly relatedListColumns?: any[] | undefined;
|
|
14550
14400
|
readonly displayField?: string | undefined;
|
|
@@ -14718,7 +14568,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14718
14568
|
readonly inlineTitle?: string | undefined;
|
|
14719
14569
|
readonly inlineColumns?: any[] | undefined;
|
|
14720
14570
|
readonly inlineAmountField?: string | undefined;
|
|
14721
|
-
readonly relatedList?: boolean | undefined;
|
|
14571
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
14722
14572
|
readonly relatedListTitle?: string | undefined;
|
|
14723
14573
|
readonly relatedListColumns?: any[] | undefined;
|
|
14724
14574
|
readonly displayField?: string | undefined;
|
|
@@ -14892,7 +14742,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14892
14742
|
readonly inlineTitle?: string | undefined;
|
|
14893
14743
|
readonly inlineColumns?: any[] | undefined;
|
|
14894
14744
|
readonly inlineAmountField?: string | undefined;
|
|
14895
|
-
readonly relatedList?: boolean | undefined;
|
|
14745
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
14896
14746
|
readonly relatedListTitle?: string | undefined;
|
|
14897
14747
|
readonly relatedListColumns?: any[] | undefined;
|
|
14898
14748
|
readonly displayField?: string | undefined;
|
|
@@ -15066,7 +14916,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15066
14916
|
readonly inlineTitle?: string | undefined;
|
|
15067
14917
|
readonly inlineColumns?: any[] | undefined;
|
|
15068
14918
|
readonly inlineAmountField?: string | undefined;
|
|
15069
|
-
readonly relatedList?: boolean | undefined;
|
|
14919
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15070
14920
|
readonly relatedListTitle?: string | undefined;
|
|
15071
14921
|
readonly relatedListColumns?: any[] | undefined;
|
|
15072
14922
|
readonly displayField?: string | undefined;
|
|
@@ -15240,7 +15090,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15240
15090
|
readonly inlineTitle?: string | undefined;
|
|
15241
15091
|
readonly inlineColumns?: any[] | undefined;
|
|
15242
15092
|
readonly inlineAmountField?: string | undefined;
|
|
15243
|
-
readonly relatedList?: boolean | undefined;
|
|
15093
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15244
15094
|
readonly relatedListTitle?: string | undefined;
|
|
15245
15095
|
readonly relatedListColumns?: any[] | undefined;
|
|
15246
15096
|
readonly displayField?: string | undefined;
|
|
@@ -15414,7 +15264,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15414
15264
|
readonly inlineTitle?: string | undefined;
|
|
15415
15265
|
readonly inlineColumns?: any[] | undefined;
|
|
15416
15266
|
readonly inlineAmountField?: string | undefined;
|
|
15417
|
-
readonly relatedList?: boolean | undefined;
|
|
15267
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15418
15268
|
readonly relatedListTitle?: string | undefined;
|
|
15419
15269
|
readonly relatedListColumns?: any[] | undefined;
|
|
15420
15270
|
readonly displayField?: string | undefined;
|
|
@@ -15588,7 +15438,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15588
15438
|
readonly inlineTitle?: string | undefined;
|
|
15589
15439
|
readonly inlineColumns?: any[] | undefined;
|
|
15590
15440
|
readonly inlineAmountField?: string | undefined;
|
|
15591
|
-
readonly relatedList?: boolean | undefined;
|
|
15441
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15592
15442
|
readonly relatedListTitle?: string | undefined;
|
|
15593
15443
|
readonly relatedListColumns?: any[] | undefined;
|
|
15594
15444
|
readonly displayField?: string | undefined;
|
|
@@ -15762,7 +15612,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15762
15612
|
readonly inlineTitle?: string | undefined;
|
|
15763
15613
|
readonly inlineColumns?: any[] | undefined;
|
|
15764
15614
|
readonly inlineAmountField?: string | undefined;
|
|
15765
|
-
readonly relatedList?: boolean | undefined;
|
|
15615
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15766
15616
|
readonly relatedListTitle?: string | undefined;
|
|
15767
15617
|
readonly relatedListColumns?: any[] | undefined;
|
|
15768
15618
|
readonly displayField?: string | undefined;
|
|
@@ -15936,7 +15786,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15936
15786
|
readonly inlineTitle?: string | undefined;
|
|
15937
15787
|
readonly inlineColumns?: any[] | undefined;
|
|
15938
15788
|
readonly inlineAmountField?: string | undefined;
|
|
15939
|
-
readonly relatedList?: boolean | undefined;
|
|
15789
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15940
15790
|
readonly relatedListTitle?: string | undefined;
|
|
15941
15791
|
readonly relatedListColumns?: any[] | undefined;
|
|
15942
15792
|
readonly displayField?: string | undefined;
|
|
@@ -16150,7 +16000,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
16150
16000
|
inlineTitle?: string | undefined;
|
|
16151
16001
|
inlineColumns?: any[] | undefined;
|
|
16152
16002
|
inlineAmountField?: string | undefined;
|
|
16153
|
-
relatedList?: boolean | undefined;
|
|
16003
|
+
relatedList?: boolean | "primary" | undefined;
|
|
16154
16004
|
relatedListTitle?: string | undefined;
|
|
16155
16005
|
relatedListColumns?: any[] | undefined;
|
|
16156
16006
|
displayField?: string | undefined;
|
|
@@ -16433,7 +16283,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
16433
16283
|
highlightFields?: string[] | undefined;
|
|
16434
16284
|
stageField?: string | false | undefined;
|
|
16435
16285
|
listViews?: Record<string, {
|
|
16436
|
-
type: "tree" | "grid" | "kanban" | "
|
|
16286
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
16437
16287
|
columns: string[] | {
|
|
16438
16288
|
field: string;
|
|
16439
16289
|
label?: string | undefined;
|
|
@@ -16449,8 +16299,55 @@ declare const SysReportSchedule: Omit<{
|
|
|
16449
16299
|
link?: boolean | undefined;
|
|
16450
16300
|
action?: string | undefined;
|
|
16451
16301
|
}[];
|
|
16452
|
-
|
|
16302
|
+
sort?: string | {
|
|
16303
|
+
field: string;
|
|
16304
|
+
order: "asc" | "desc";
|
|
16305
|
+
}[] | undefined;
|
|
16306
|
+
filter?: {
|
|
16307
|
+
field: string;
|
|
16308
|
+
operator: string;
|
|
16309
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
16310
|
+
}[] | undefined;
|
|
16311
|
+
description?: string | undefined;
|
|
16453
16312
|
label?: string | undefined;
|
|
16313
|
+
name?: string | undefined;
|
|
16314
|
+
responsive?: {
|
|
16315
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
16316
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
16317
|
+
columns?: {
|
|
16318
|
+
xs?: number | undefined;
|
|
16319
|
+
sm?: number | undefined;
|
|
16320
|
+
md?: number | undefined;
|
|
16321
|
+
lg?: number | undefined;
|
|
16322
|
+
xl?: number | undefined;
|
|
16323
|
+
'2xl'?: number | undefined;
|
|
16324
|
+
} | undefined;
|
|
16325
|
+
order?: {
|
|
16326
|
+
xs?: number | undefined;
|
|
16327
|
+
sm?: number | undefined;
|
|
16328
|
+
md?: number | undefined;
|
|
16329
|
+
lg?: number | undefined;
|
|
16330
|
+
xl?: number | undefined;
|
|
16331
|
+
'2xl'?: number | undefined;
|
|
16332
|
+
} | undefined;
|
|
16333
|
+
} | undefined;
|
|
16334
|
+
navigation?: {
|
|
16335
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
16336
|
+
preventNavigation: boolean;
|
|
16337
|
+
openNewTab: boolean;
|
|
16338
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
16339
|
+
view?: string | undefined;
|
|
16340
|
+
width?: string | number | undefined;
|
|
16341
|
+
} | undefined;
|
|
16342
|
+
sharing?: {
|
|
16343
|
+
type: "personal" | "collaborative";
|
|
16344
|
+
lockedBy?: string | undefined;
|
|
16345
|
+
} | undefined;
|
|
16346
|
+
aria?: {
|
|
16347
|
+
ariaLabel?: string | undefined;
|
|
16348
|
+
ariaDescribedBy?: string | undefined;
|
|
16349
|
+
role?: string | undefined;
|
|
16350
|
+
} | undefined;
|
|
16454
16351
|
data?: {
|
|
16455
16352
|
provider: "object";
|
|
16456
16353
|
object: string;
|
|
@@ -16478,77 +16375,42 @@ declare const SysReportSchedule: Omit<{
|
|
|
16478
16375
|
schemaId: string;
|
|
16479
16376
|
schema?: Record<string, unknown> | undefined;
|
|
16480
16377
|
} | undefined;
|
|
16481
|
-
|
|
16482
|
-
|
|
16483
|
-
|
|
16484
|
-
|
|
16485
|
-
|
|
16486
|
-
|
|
16487
|
-
field: string;
|
|
16488
|
-
order: "asc" | "desc";
|
|
16489
|
-
}[] | undefined;
|
|
16490
|
-
searchableFields?: string[] | undefined;
|
|
16491
|
-
filterableFields?: string[] | undefined;
|
|
16492
|
-
userFilters?: {
|
|
16493
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
16494
|
-
fields?: {
|
|
16495
|
-
field: string;
|
|
16496
|
-
label?: string | undefined;
|
|
16497
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
16498
|
-
options?: {
|
|
16499
|
-
value: string | number | boolean;
|
|
16500
|
-
label: string;
|
|
16501
|
-
color?: string | undefined;
|
|
16502
|
-
}[] | undefined;
|
|
16503
|
-
showCount?: boolean | undefined;
|
|
16504
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
16505
|
-
}[] | undefined;
|
|
16506
|
-
tabs?: {
|
|
16507
|
-
name: string;
|
|
16508
|
-
pinned: boolean;
|
|
16509
|
-
isDefault: boolean;
|
|
16510
|
-
visible: boolean;
|
|
16511
|
-
label?: string | undefined;
|
|
16512
|
-
icon?: string | undefined;
|
|
16513
|
-
view?: string | undefined;
|
|
16514
|
-
filter?: {
|
|
16515
|
-
field: string;
|
|
16516
|
-
operator: string;
|
|
16517
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
16518
|
-
}[] | undefined;
|
|
16519
|
-
order?: number | undefined;
|
|
16520
|
-
}[] | undefined;
|
|
16521
|
-
showAllRecords?: boolean | undefined;
|
|
16378
|
+
tree?: {
|
|
16379
|
+
[x: string]: unknown;
|
|
16380
|
+
parentField?: string | undefined;
|
|
16381
|
+
labelField?: string | undefined;
|
|
16382
|
+
fields?: string[] | undefined;
|
|
16383
|
+
defaultExpandedDepth?: number | undefined;
|
|
16522
16384
|
} | undefined;
|
|
16385
|
+
inlineEdit?: boolean | undefined;
|
|
16386
|
+
virtualScroll?: boolean | undefined;
|
|
16523
16387
|
resizable?: boolean | undefined;
|
|
16524
|
-
striped?: boolean | undefined;
|
|
16525
|
-
bordered?: boolean | undefined;
|
|
16526
|
-
compactToolbar?: boolean | undefined;
|
|
16527
|
-
selection?: {
|
|
16528
|
-
type: "none" | "multiple" | "single";
|
|
16529
|
-
} | undefined;
|
|
16530
|
-
navigation?: {
|
|
16531
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
16532
|
-
preventNavigation: boolean;
|
|
16533
|
-
openNewTab: boolean;
|
|
16534
|
-
view?: string | undefined;
|
|
16535
|
-
width?: string | number | undefined;
|
|
16536
|
-
} | undefined;
|
|
16537
|
-
pagination?: {
|
|
16538
|
-
pageSize: number;
|
|
16539
|
-
pageSizeOptions?: number[] | undefined;
|
|
16540
|
-
} | undefined;
|
|
16541
16388
|
kanban?: {
|
|
16542
16389
|
groupByField: string;
|
|
16543
16390
|
columns: string[];
|
|
16544
16391
|
summarizeField?: string | undefined;
|
|
16545
16392
|
} | undefined;
|
|
16393
|
+
gallery?: {
|
|
16394
|
+
coverFit: "cover" | "contain";
|
|
16395
|
+
cardSize: "small" | "medium" | "large";
|
|
16396
|
+
coverField?: string | undefined;
|
|
16397
|
+
titleField?: string | undefined;
|
|
16398
|
+
visibleFields?: string[] | undefined;
|
|
16399
|
+
} | undefined;
|
|
16546
16400
|
calendar?: {
|
|
16547
16401
|
startDateField: string;
|
|
16548
16402
|
titleField: string;
|
|
16549
16403
|
endDateField?: string | undefined;
|
|
16550
16404
|
colorField?: string | undefined;
|
|
16551
16405
|
} | undefined;
|
|
16406
|
+
timeline?: {
|
|
16407
|
+
startDateField: string;
|
|
16408
|
+
titleField: string;
|
|
16409
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
16410
|
+
endDateField?: string | undefined;
|
|
16411
|
+
groupByField?: string | undefined;
|
|
16412
|
+
colorField?: string | undefined;
|
|
16413
|
+
} | undefined;
|
|
16552
16414
|
gantt?: {
|
|
16553
16415
|
[x: string]: unknown;
|
|
16554
16416
|
startDateField: string;
|
|
@@ -16580,40 +16442,40 @@ declare const SysReportSchedule: Omit<{
|
|
|
16580
16442
|
}[] | undefined;
|
|
16581
16443
|
autoZoomToFilter?: boolean | undefined;
|
|
16582
16444
|
} | undefined;
|
|
16583
|
-
gallery?: {
|
|
16584
|
-
coverFit: "cover" | "contain";
|
|
16585
|
-
cardSize: "small" | "medium" | "large";
|
|
16586
|
-
coverField?: string | undefined;
|
|
16587
|
-
titleField?: string | undefined;
|
|
16588
|
-
visibleFields?: string[] | undefined;
|
|
16589
|
-
} | undefined;
|
|
16590
|
-
timeline?: {
|
|
16591
|
-
startDateField: string;
|
|
16592
|
-
titleField: string;
|
|
16593
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
16594
|
-
endDateField?: string | undefined;
|
|
16595
|
-
groupByField?: string | undefined;
|
|
16596
|
-
colorField?: string | undefined;
|
|
16597
|
-
} | undefined;
|
|
16598
16445
|
chart?: {
|
|
16599
16446
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
16600
16447
|
dataset: string;
|
|
16601
16448
|
values: string[];
|
|
16602
16449
|
dimensions?: string[] | undefined;
|
|
16603
16450
|
} | undefined;
|
|
16604
|
-
|
|
16605
|
-
|
|
16606
|
-
|
|
16607
|
-
|
|
16608
|
-
|
|
16609
|
-
|
|
16451
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
16452
|
+
tabs?: {
|
|
16453
|
+
name: string;
|
|
16454
|
+
pinned: boolean;
|
|
16455
|
+
isDefault: boolean;
|
|
16456
|
+
visible: boolean;
|
|
16457
|
+
label?: string | undefined;
|
|
16458
|
+
icon?: string | undefined;
|
|
16459
|
+
view?: string | undefined;
|
|
16460
|
+
filter?: {
|
|
16461
|
+
field: string;
|
|
16462
|
+
operator: string;
|
|
16463
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
16464
|
+
}[] | undefined;
|
|
16465
|
+
order?: number | undefined;
|
|
16466
|
+
}[] | undefined;
|
|
16467
|
+
searchableFields?: string[] | undefined;
|
|
16468
|
+
filterableFields?: string[] | undefined;
|
|
16469
|
+
striped?: boolean | undefined;
|
|
16470
|
+
bordered?: boolean | undefined;
|
|
16471
|
+
compactToolbar?: boolean | undefined;
|
|
16472
|
+
selection?: {
|
|
16473
|
+
type: "none" | "multiple" | "single";
|
|
16610
16474
|
} | undefined;
|
|
16611
|
-
|
|
16612
|
-
|
|
16613
|
-
|
|
16614
|
-
lockedBy?: string | undefined;
|
|
16475
|
+
pagination?: {
|
|
16476
|
+
pageSize: number;
|
|
16477
|
+
pageSizeOptions?: number[] | undefined;
|
|
16615
16478
|
} | undefined;
|
|
16616
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
16617
16479
|
grouping?: {
|
|
16618
16480
|
fields: {
|
|
16619
16481
|
field: string;
|
|
@@ -16630,7 +16492,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
16630
16492
|
rowActions?: string[] | undefined;
|
|
16631
16493
|
bulkActions?: string[] | undefined;
|
|
16632
16494
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
16633
|
-
virtualScroll?: boolean | undefined;
|
|
16634
16495
|
conditionalFormatting?: {
|
|
16635
16496
|
condition: {
|
|
16636
16497
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -16651,7 +16512,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
16651
16512
|
};
|
|
16652
16513
|
style: Record<string, string>;
|
|
16653
16514
|
}[] | undefined;
|
|
16654
|
-
inlineEdit?: boolean | undefined;
|
|
16655
16515
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
16656
16516
|
userActions?: {
|
|
16657
16517
|
sort: boolean;
|
|
@@ -16664,23 +16524,8 @@ declare const SysReportSchedule: Omit<{
|
|
|
16664
16524
|
} | undefined;
|
|
16665
16525
|
appearance?: {
|
|
16666
16526
|
showDescription: boolean;
|
|
16667
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
16527
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
16668
16528
|
} | undefined;
|
|
16669
|
-
tabs?: {
|
|
16670
|
-
name: string;
|
|
16671
|
-
pinned: boolean;
|
|
16672
|
-
isDefault: boolean;
|
|
16673
|
-
visible: boolean;
|
|
16674
|
-
label?: string | undefined;
|
|
16675
|
-
icon?: string | undefined;
|
|
16676
|
-
view?: string | undefined;
|
|
16677
|
-
filter?: {
|
|
16678
|
-
field: string;
|
|
16679
|
-
operator: string;
|
|
16680
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
16681
|
-
}[] | undefined;
|
|
16682
|
-
order?: number | undefined;
|
|
16683
|
-
}[] | undefined;
|
|
16684
16529
|
addRecord?: {
|
|
16685
16530
|
enabled: boolean;
|
|
16686
16531
|
position: "top" | "bottom" | "both";
|
|
@@ -16694,31 +16539,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
16694
16539
|
message?: string | undefined;
|
|
16695
16540
|
icon?: string | undefined;
|
|
16696
16541
|
} | undefined;
|
|
16697
|
-
aria?: {
|
|
16698
|
-
ariaLabel?: string | undefined;
|
|
16699
|
-
ariaDescribedBy?: string | undefined;
|
|
16700
|
-
role?: string | undefined;
|
|
16701
|
-
} | undefined;
|
|
16702
|
-
responsive?: {
|
|
16703
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
16704
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
16705
|
-
columns?: {
|
|
16706
|
-
xs?: number | undefined;
|
|
16707
|
-
sm?: number | undefined;
|
|
16708
|
-
md?: number | undefined;
|
|
16709
|
-
lg?: number | undefined;
|
|
16710
|
-
xl?: number | undefined;
|
|
16711
|
-
'2xl'?: number | undefined;
|
|
16712
|
-
} | undefined;
|
|
16713
|
-
order?: {
|
|
16714
|
-
xs?: number | undefined;
|
|
16715
|
-
sm?: number | undefined;
|
|
16716
|
-
md?: number | undefined;
|
|
16717
|
-
lg?: number | undefined;
|
|
16718
|
-
xl?: number | undefined;
|
|
16719
|
-
'2xl'?: number | undefined;
|
|
16720
|
-
} | undefined;
|
|
16721
|
-
} | undefined;
|
|
16722
16542
|
performance?: {
|
|
16723
16543
|
lazyLoad?: boolean | undefined;
|
|
16724
16544
|
virtualScroll?: {
|
|
@@ -16919,7 +16739,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
16919
16739
|
readonly inlineTitle?: string | undefined;
|
|
16920
16740
|
readonly inlineColumns?: any[] | undefined;
|
|
16921
16741
|
readonly inlineAmountField?: string | undefined;
|
|
16922
|
-
readonly relatedList?: boolean | undefined;
|
|
16742
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
16923
16743
|
readonly relatedListTitle?: string | undefined;
|
|
16924
16744
|
readonly relatedListColumns?: any[] | undefined;
|
|
16925
16745
|
readonly displayField?: string | undefined;
|
|
@@ -17093,7 +16913,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17093
16913
|
readonly inlineTitle?: string | undefined;
|
|
17094
16914
|
readonly inlineColumns?: any[] | undefined;
|
|
17095
16915
|
readonly inlineAmountField?: string | undefined;
|
|
17096
|
-
readonly relatedList?: boolean | undefined;
|
|
16916
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
17097
16917
|
readonly relatedListTitle?: string | undefined;
|
|
17098
16918
|
readonly relatedListColumns?: any[] | undefined;
|
|
17099
16919
|
readonly displayField?: string | undefined;
|
|
@@ -17267,7 +17087,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17267
17087
|
readonly inlineTitle?: string | undefined;
|
|
17268
17088
|
readonly inlineColumns?: any[] | undefined;
|
|
17269
17089
|
readonly inlineAmountField?: string | undefined;
|
|
17270
|
-
readonly relatedList?: boolean | undefined;
|
|
17090
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
17271
17091
|
readonly relatedListTitle?: string | undefined;
|
|
17272
17092
|
readonly relatedListColumns?: any[] | undefined;
|
|
17273
17093
|
readonly displayField?: string | undefined;
|
|
@@ -17441,7 +17261,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17441
17261
|
readonly inlineTitle?: string | undefined;
|
|
17442
17262
|
readonly inlineColumns?: any[] | undefined;
|
|
17443
17263
|
readonly inlineAmountField?: string | undefined;
|
|
17444
|
-
readonly relatedList?: boolean | undefined;
|
|
17264
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
17445
17265
|
readonly relatedListTitle?: string | undefined;
|
|
17446
17266
|
readonly relatedListColumns?: any[] | undefined;
|
|
17447
17267
|
readonly displayField?: string | undefined;
|
|
@@ -17615,7 +17435,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17615
17435
|
readonly inlineTitle?: string | undefined;
|
|
17616
17436
|
readonly inlineColumns?: any[] | undefined;
|
|
17617
17437
|
readonly inlineAmountField?: string | undefined;
|
|
17618
|
-
readonly relatedList?: boolean | undefined;
|
|
17438
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
17619
17439
|
readonly relatedListTitle?: string | undefined;
|
|
17620
17440
|
readonly relatedListColumns?: any[] | undefined;
|
|
17621
17441
|
readonly displayField?: string | undefined;
|
|
@@ -17789,7 +17609,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17789
17609
|
readonly inlineTitle?: string | undefined;
|
|
17790
17610
|
readonly inlineColumns?: any[] | undefined;
|
|
17791
17611
|
readonly inlineAmountField?: string | undefined;
|
|
17792
|
-
readonly relatedList?: boolean | undefined;
|
|
17612
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
17793
17613
|
readonly relatedListTitle?: string | undefined;
|
|
17794
17614
|
readonly relatedListColumns?: any[] | undefined;
|
|
17795
17615
|
readonly displayField?: string | undefined;
|
|
@@ -17963,7 +17783,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17963
17783
|
readonly inlineTitle?: string | undefined;
|
|
17964
17784
|
readonly inlineColumns?: any[] | undefined;
|
|
17965
17785
|
readonly inlineAmountField?: string | undefined;
|
|
17966
|
-
readonly relatedList?: boolean | undefined;
|
|
17786
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
17967
17787
|
readonly relatedListTitle?: string | undefined;
|
|
17968
17788
|
readonly relatedListColumns?: any[] | undefined;
|
|
17969
17789
|
readonly displayField?: string | undefined;
|
|
@@ -18137,7 +17957,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
18137
17957
|
readonly inlineTitle?: string | undefined;
|
|
18138
17958
|
readonly inlineColumns?: any[] | undefined;
|
|
18139
17959
|
readonly inlineAmountField?: string | undefined;
|
|
18140
|
-
readonly relatedList?: boolean | undefined;
|
|
17960
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18141
17961
|
readonly relatedListTitle?: string | undefined;
|
|
18142
17962
|
readonly relatedListColumns?: any[] | undefined;
|
|
18143
17963
|
readonly displayField?: string | undefined;
|
|
@@ -18311,7 +18131,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
18311
18131
|
readonly inlineTitle?: string | undefined;
|
|
18312
18132
|
readonly inlineColumns?: any[] | undefined;
|
|
18313
18133
|
readonly inlineAmountField?: string | undefined;
|
|
18314
|
-
readonly relatedList?: boolean | undefined;
|
|
18134
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18315
18135
|
readonly relatedListTitle?: string | undefined;
|
|
18316
18136
|
readonly relatedListColumns?: any[] | undefined;
|
|
18317
18137
|
readonly displayField?: string | undefined;
|
|
@@ -18485,7 +18305,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
18485
18305
|
readonly inlineTitle?: string | undefined;
|
|
18486
18306
|
readonly inlineColumns?: any[] | undefined;
|
|
18487
18307
|
readonly inlineAmountField?: string | undefined;
|
|
18488
|
-
readonly relatedList?: boolean | undefined;
|
|
18308
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18489
18309
|
readonly relatedListTitle?: string | undefined;
|
|
18490
18310
|
readonly relatedListColumns?: any[] | undefined;
|
|
18491
18311
|
readonly displayField?: string | undefined;
|
|
@@ -18659,7 +18479,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
18659
18479
|
readonly inlineTitle?: string | undefined;
|
|
18660
18480
|
readonly inlineColumns?: any[] | undefined;
|
|
18661
18481
|
readonly inlineAmountField?: string | undefined;
|
|
18662
|
-
readonly relatedList?: boolean | undefined;
|
|
18482
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18663
18483
|
readonly relatedListTitle?: string | undefined;
|
|
18664
18484
|
readonly relatedListColumns?: any[] | undefined;
|
|
18665
18485
|
readonly displayField?: string | undefined;
|
|
@@ -18833,7 +18653,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
18833
18653
|
readonly inlineTitle?: string | undefined;
|
|
18834
18654
|
readonly inlineColumns?: any[] | undefined;
|
|
18835
18655
|
readonly inlineAmountField?: string | undefined;
|
|
18836
|
-
readonly relatedList?: boolean | undefined;
|
|
18656
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18837
18657
|
readonly relatedListTitle?: string | undefined;
|
|
18838
18658
|
readonly relatedListColumns?: any[] | undefined;
|
|
18839
18659
|
readonly displayField?: string | undefined;
|
|
@@ -19007,7 +18827,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19007
18827
|
readonly inlineTitle?: string | undefined;
|
|
19008
18828
|
readonly inlineColumns?: any[] | undefined;
|
|
19009
18829
|
readonly inlineAmountField?: string | undefined;
|
|
19010
|
-
readonly relatedList?: boolean | undefined;
|
|
18830
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
19011
18831
|
readonly relatedListTitle?: string | undefined;
|
|
19012
18832
|
readonly relatedListColumns?: any[] | undefined;
|
|
19013
18833
|
readonly displayField?: string | undefined;
|
|
@@ -19181,7 +19001,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19181
19001
|
readonly inlineTitle?: string | undefined;
|
|
19182
19002
|
readonly inlineColumns?: any[] | undefined;
|
|
19183
19003
|
readonly inlineAmountField?: string | undefined;
|
|
19184
|
-
readonly relatedList?: boolean | undefined;
|
|
19004
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
19185
19005
|
readonly relatedListTitle?: string | undefined;
|
|
19186
19006
|
readonly relatedListColumns?: any[] | undefined;
|
|
19187
19007
|
readonly displayField?: string | undefined;
|
|
@@ -19355,7 +19175,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19355
19175
|
readonly inlineTitle?: string | undefined;
|
|
19356
19176
|
readonly inlineColumns?: any[] | undefined;
|
|
19357
19177
|
readonly inlineAmountField?: string | undefined;
|
|
19358
|
-
readonly relatedList?: boolean | undefined;
|
|
19178
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
19359
19179
|
readonly relatedListTitle?: string | undefined;
|
|
19360
19180
|
readonly relatedListColumns?: any[] | undefined;
|
|
19361
19181
|
readonly displayField?: string | undefined;
|
|
@@ -19529,7 +19349,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19529
19349
|
readonly inlineTitle?: string | undefined;
|
|
19530
19350
|
readonly inlineColumns?: any[] | undefined;
|
|
19531
19351
|
readonly inlineAmountField?: string | undefined;
|
|
19532
|
-
readonly relatedList?: boolean | undefined;
|
|
19352
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
19533
19353
|
readonly relatedListTitle?: string | undefined;
|
|
19534
19354
|
readonly relatedListColumns?: any[] | undefined;
|
|
19535
19355
|
readonly displayField?: string | undefined;
|
|
@@ -19703,7 +19523,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19703
19523
|
readonly inlineTitle?: string | undefined;
|
|
19704
19524
|
readonly inlineColumns?: any[] | undefined;
|
|
19705
19525
|
readonly inlineAmountField?: string | undefined;
|
|
19706
|
-
readonly relatedList?: boolean | undefined;
|
|
19526
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
19707
19527
|
readonly relatedListTitle?: string | undefined;
|
|
19708
19528
|
readonly relatedListColumns?: any[] | undefined;
|
|
19709
19529
|
readonly displayField?: string | undefined;
|
|
@@ -19903,7 +19723,7 @@ declare const SysJob: Omit<{
|
|
|
19903
19723
|
inlineTitle?: string | undefined;
|
|
19904
19724
|
inlineColumns?: any[] | undefined;
|
|
19905
19725
|
inlineAmountField?: string | undefined;
|
|
19906
|
-
relatedList?: boolean | undefined;
|
|
19726
|
+
relatedList?: boolean | "primary" | undefined;
|
|
19907
19727
|
relatedListTitle?: string | undefined;
|
|
19908
19728
|
relatedListColumns?: any[] | undefined;
|
|
19909
19729
|
displayField?: string | undefined;
|
|
@@ -20186,7 +20006,7 @@ declare const SysJob: Omit<{
|
|
|
20186
20006
|
highlightFields?: string[] | undefined;
|
|
20187
20007
|
stageField?: string | false | undefined;
|
|
20188
20008
|
listViews?: Record<string, {
|
|
20189
|
-
type: "tree" | "grid" | "kanban" | "
|
|
20009
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
20190
20010
|
columns: string[] | {
|
|
20191
20011
|
field: string;
|
|
20192
20012
|
label?: string | undefined;
|
|
@@ -20202,8 +20022,55 @@ declare const SysJob: Omit<{
|
|
|
20202
20022
|
link?: boolean | undefined;
|
|
20203
20023
|
action?: string | undefined;
|
|
20204
20024
|
}[];
|
|
20205
|
-
|
|
20025
|
+
sort?: string | {
|
|
20026
|
+
field: string;
|
|
20027
|
+
order: "asc" | "desc";
|
|
20028
|
+
}[] | undefined;
|
|
20029
|
+
filter?: {
|
|
20030
|
+
field: string;
|
|
20031
|
+
operator: string;
|
|
20032
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
20033
|
+
}[] | undefined;
|
|
20034
|
+
description?: string | undefined;
|
|
20206
20035
|
label?: string | undefined;
|
|
20036
|
+
name?: string | undefined;
|
|
20037
|
+
responsive?: {
|
|
20038
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
20039
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
20040
|
+
columns?: {
|
|
20041
|
+
xs?: number | undefined;
|
|
20042
|
+
sm?: number | undefined;
|
|
20043
|
+
md?: number | undefined;
|
|
20044
|
+
lg?: number | undefined;
|
|
20045
|
+
xl?: number | undefined;
|
|
20046
|
+
'2xl'?: number | undefined;
|
|
20047
|
+
} | undefined;
|
|
20048
|
+
order?: {
|
|
20049
|
+
xs?: number | undefined;
|
|
20050
|
+
sm?: number | undefined;
|
|
20051
|
+
md?: number | undefined;
|
|
20052
|
+
lg?: number | undefined;
|
|
20053
|
+
xl?: number | undefined;
|
|
20054
|
+
'2xl'?: number | undefined;
|
|
20055
|
+
} | undefined;
|
|
20056
|
+
} | undefined;
|
|
20057
|
+
navigation?: {
|
|
20058
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
20059
|
+
preventNavigation: boolean;
|
|
20060
|
+
openNewTab: boolean;
|
|
20061
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
20062
|
+
view?: string | undefined;
|
|
20063
|
+
width?: string | number | undefined;
|
|
20064
|
+
} | undefined;
|
|
20065
|
+
sharing?: {
|
|
20066
|
+
type: "personal" | "collaborative";
|
|
20067
|
+
lockedBy?: string | undefined;
|
|
20068
|
+
} | undefined;
|
|
20069
|
+
aria?: {
|
|
20070
|
+
ariaLabel?: string | undefined;
|
|
20071
|
+
ariaDescribedBy?: string | undefined;
|
|
20072
|
+
role?: string | undefined;
|
|
20073
|
+
} | undefined;
|
|
20207
20074
|
data?: {
|
|
20208
20075
|
provider: "object";
|
|
20209
20076
|
object: string;
|
|
@@ -20231,77 +20098,42 @@ declare const SysJob: Omit<{
|
|
|
20231
20098
|
schemaId: string;
|
|
20232
20099
|
schema?: Record<string, unknown> | undefined;
|
|
20233
20100
|
} | undefined;
|
|
20234
|
-
|
|
20235
|
-
|
|
20236
|
-
|
|
20237
|
-
|
|
20238
|
-
|
|
20239
|
-
|
|
20240
|
-
field: string;
|
|
20241
|
-
order: "asc" | "desc";
|
|
20242
|
-
}[] | undefined;
|
|
20243
|
-
searchableFields?: string[] | undefined;
|
|
20244
|
-
filterableFields?: string[] | undefined;
|
|
20245
|
-
userFilters?: {
|
|
20246
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
20247
|
-
fields?: {
|
|
20248
|
-
field: string;
|
|
20249
|
-
label?: string | undefined;
|
|
20250
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
20251
|
-
options?: {
|
|
20252
|
-
value: string | number | boolean;
|
|
20253
|
-
label: string;
|
|
20254
|
-
color?: string | undefined;
|
|
20255
|
-
}[] | undefined;
|
|
20256
|
-
showCount?: boolean | undefined;
|
|
20257
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
20258
|
-
}[] | undefined;
|
|
20259
|
-
tabs?: {
|
|
20260
|
-
name: string;
|
|
20261
|
-
pinned: boolean;
|
|
20262
|
-
isDefault: boolean;
|
|
20263
|
-
visible: boolean;
|
|
20264
|
-
label?: string | undefined;
|
|
20265
|
-
icon?: string | undefined;
|
|
20266
|
-
view?: string | undefined;
|
|
20267
|
-
filter?: {
|
|
20268
|
-
field: string;
|
|
20269
|
-
operator: string;
|
|
20270
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
20271
|
-
}[] | undefined;
|
|
20272
|
-
order?: number | undefined;
|
|
20273
|
-
}[] | undefined;
|
|
20274
|
-
showAllRecords?: boolean | undefined;
|
|
20101
|
+
tree?: {
|
|
20102
|
+
[x: string]: unknown;
|
|
20103
|
+
parentField?: string | undefined;
|
|
20104
|
+
labelField?: string | undefined;
|
|
20105
|
+
fields?: string[] | undefined;
|
|
20106
|
+
defaultExpandedDepth?: number | undefined;
|
|
20275
20107
|
} | undefined;
|
|
20108
|
+
inlineEdit?: boolean | undefined;
|
|
20109
|
+
virtualScroll?: boolean | undefined;
|
|
20276
20110
|
resizable?: boolean | undefined;
|
|
20277
|
-
striped?: boolean | undefined;
|
|
20278
|
-
bordered?: boolean | undefined;
|
|
20279
|
-
compactToolbar?: boolean | undefined;
|
|
20280
|
-
selection?: {
|
|
20281
|
-
type: "none" | "multiple" | "single";
|
|
20282
|
-
} | undefined;
|
|
20283
|
-
navigation?: {
|
|
20284
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
20285
|
-
preventNavigation: boolean;
|
|
20286
|
-
openNewTab: boolean;
|
|
20287
|
-
view?: string | undefined;
|
|
20288
|
-
width?: string | number | undefined;
|
|
20289
|
-
} | undefined;
|
|
20290
|
-
pagination?: {
|
|
20291
|
-
pageSize: number;
|
|
20292
|
-
pageSizeOptions?: number[] | undefined;
|
|
20293
|
-
} | undefined;
|
|
20294
20111
|
kanban?: {
|
|
20295
20112
|
groupByField: string;
|
|
20296
20113
|
columns: string[];
|
|
20297
20114
|
summarizeField?: string | undefined;
|
|
20298
20115
|
} | undefined;
|
|
20116
|
+
gallery?: {
|
|
20117
|
+
coverFit: "cover" | "contain";
|
|
20118
|
+
cardSize: "small" | "medium" | "large";
|
|
20119
|
+
coverField?: string | undefined;
|
|
20120
|
+
titleField?: string | undefined;
|
|
20121
|
+
visibleFields?: string[] | undefined;
|
|
20122
|
+
} | undefined;
|
|
20299
20123
|
calendar?: {
|
|
20300
20124
|
startDateField: string;
|
|
20301
20125
|
titleField: string;
|
|
20302
20126
|
endDateField?: string | undefined;
|
|
20303
20127
|
colorField?: string | undefined;
|
|
20304
20128
|
} | undefined;
|
|
20129
|
+
timeline?: {
|
|
20130
|
+
startDateField: string;
|
|
20131
|
+
titleField: string;
|
|
20132
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
20133
|
+
endDateField?: string | undefined;
|
|
20134
|
+
groupByField?: string | undefined;
|
|
20135
|
+
colorField?: string | undefined;
|
|
20136
|
+
} | undefined;
|
|
20305
20137
|
gantt?: {
|
|
20306
20138
|
[x: string]: unknown;
|
|
20307
20139
|
startDateField: string;
|
|
@@ -20333,40 +20165,40 @@ declare const SysJob: Omit<{
|
|
|
20333
20165
|
}[] | undefined;
|
|
20334
20166
|
autoZoomToFilter?: boolean | undefined;
|
|
20335
20167
|
} | undefined;
|
|
20336
|
-
gallery?: {
|
|
20337
|
-
coverFit: "cover" | "contain";
|
|
20338
|
-
cardSize: "small" | "medium" | "large";
|
|
20339
|
-
coverField?: string | undefined;
|
|
20340
|
-
titleField?: string | undefined;
|
|
20341
|
-
visibleFields?: string[] | undefined;
|
|
20342
|
-
} | undefined;
|
|
20343
|
-
timeline?: {
|
|
20344
|
-
startDateField: string;
|
|
20345
|
-
titleField: string;
|
|
20346
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
20347
|
-
endDateField?: string | undefined;
|
|
20348
|
-
groupByField?: string | undefined;
|
|
20349
|
-
colorField?: string | undefined;
|
|
20350
|
-
} | undefined;
|
|
20351
20168
|
chart?: {
|
|
20352
20169
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
20353
20170
|
dataset: string;
|
|
20354
20171
|
values: string[];
|
|
20355
20172
|
dimensions?: string[] | undefined;
|
|
20356
20173
|
} | undefined;
|
|
20357
|
-
|
|
20358
|
-
|
|
20359
|
-
|
|
20360
|
-
|
|
20361
|
-
|
|
20362
|
-
|
|
20174
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
20175
|
+
tabs?: {
|
|
20176
|
+
name: string;
|
|
20177
|
+
pinned: boolean;
|
|
20178
|
+
isDefault: boolean;
|
|
20179
|
+
visible: boolean;
|
|
20180
|
+
label?: string | undefined;
|
|
20181
|
+
icon?: string | undefined;
|
|
20182
|
+
view?: string | undefined;
|
|
20183
|
+
filter?: {
|
|
20184
|
+
field: string;
|
|
20185
|
+
operator: string;
|
|
20186
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
20187
|
+
}[] | undefined;
|
|
20188
|
+
order?: number | undefined;
|
|
20189
|
+
}[] | undefined;
|
|
20190
|
+
searchableFields?: string[] | undefined;
|
|
20191
|
+
filterableFields?: string[] | undefined;
|
|
20192
|
+
striped?: boolean | undefined;
|
|
20193
|
+
bordered?: boolean | undefined;
|
|
20194
|
+
compactToolbar?: boolean | undefined;
|
|
20195
|
+
selection?: {
|
|
20196
|
+
type: "none" | "multiple" | "single";
|
|
20363
20197
|
} | undefined;
|
|
20364
|
-
|
|
20365
|
-
|
|
20366
|
-
|
|
20367
|
-
lockedBy?: string | undefined;
|
|
20198
|
+
pagination?: {
|
|
20199
|
+
pageSize: number;
|
|
20200
|
+
pageSizeOptions?: number[] | undefined;
|
|
20368
20201
|
} | undefined;
|
|
20369
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
20370
20202
|
grouping?: {
|
|
20371
20203
|
fields: {
|
|
20372
20204
|
field: string;
|
|
@@ -20383,7 +20215,6 @@ declare const SysJob: Omit<{
|
|
|
20383
20215
|
rowActions?: string[] | undefined;
|
|
20384
20216
|
bulkActions?: string[] | undefined;
|
|
20385
20217
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
20386
|
-
virtualScroll?: boolean | undefined;
|
|
20387
20218
|
conditionalFormatting?: {
|
|
20388
20219
|
condition: {
|
|
20389
20220
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -20404,7 +20235,6 @@ declare const SysJob: Omit<{
|
|
|
20404
20235
|
};
|
|
20405
20236
|
style: Record<string, string>;
|
|
20406
20237
|
}[] | undefined;
|
|
20407
|
-
inlineEdit?: boolean | undefined;
|
|
20408
20238
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
20409
20239
|
userActions?: {
|
|
20410
20240
|
sort: boolean;
|
|
@@ -20417,23 +20247,8 @@ declare const SysJob: Omit<{
|
|
|
20417
20247
|
} | undefined;
|
|
20418
20248
|
appearance?: {
|
|
20419
20249
|
showDescription: boolean;
|
|
20420
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
20250
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
20421
20251
|
} | undefined;
|
|
20422
|
-
tabs?: {
|
|
20423
|
-
name: string;
|
|
20424
|
-
pinned: boolean;
|
|
20425
|
-
isDefault: boolean;
|
|
20426
|
-
visible: boolean;
|
|
20427
|
-
label?: string | undefined;
|
|
20428
|
-
icon?: string | undefined;
|
|
20429
|
-
view?: string | undefined;
|
|
20430
|
-
filter?: {
|
|
20431
|
-
field: string;
|
|
20432
|
-
operator: string;
|
|
20433
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
20434
|
-
}[] | undefined;
|
|
20435
|
-
order?: number | undefined;
|
|
20436
|
-
}[] | undefined;
|
|
20437
20252
|
addRecord?: {
|
|
20438
20253
|
enabled: boolean;
|
|
20439
20254
|
position: "top" | "bottom" | "both";
|
|
@@ -20447,31 +20262,6 @@ declare const SysJob: Omit<{
|
|
|
20447
20262
|
message?: string | undefined;
|
|
20448
20263
|
icon?: string | undefined;
|
|
20449
20264
|
} | undefined;
|
|
20450
|
-
aria?: {
|
|
20451
|
-
ariaLabel?: string | undefined;
|
|
20452
|
-
ariaDescribedBy?: string | undefined;
|
|
20453
|
-
role?: string | undefined;
|
|
20454
|
-
} | undefined;
|
|
20455
|
-
responsive?: {
|
|
20456
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
20457
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
20458
|
-
columns?: {
|
|
20459
|
-
xs?: number | undefined;
|
|
20460
|
-
sm?: number | undefined;
|
|
20461
|
-
md?: number | undefined;
|
|
20462
|
-
lg?: number | undefined;
|
|
20463
|
-
xl?: number | undefined;
|
|
20464
|
-
'2xl'?: number | undefined;
|
|
20465
|
-
} | undefined;
|
|
20466
|
-
order?: {
|
|
20467
|
-
xs?: number | undefined;
|
|
20468
|
-
sm?: number | undefined;
|
|
20469
|
-
md?: number | undefined;
|
|
20470
|
-
lg?: number | undefined;
|
|
20471
|
-
xl?: number | undefined;
|
|
20472
|
-
'2xl'?: number | undefined;
|
|
20473
|
-
} | undefined;
|
|
20474
|
-
} | undefined;
|
|
20475
20265
|
performance?: {
|
|
20476
20266
|
lazyLoad?: boolean | undefined;
|
|
20477
20267
|
virtualScroll?: {
|
|
@@ -20674,7 +20464,7 @@ declare const SysJob: Omit<{
|
|
|
20674
20464
|
readonly inlineTitle?: string | undefined;
|
|
20675
20465
|
readonly inlineColumns?: any[] | undefined;
|
|
20676
20466
|
readonly inlineAmountField?: string | undefined;
|
|
20677
|
-
readonly relatedList?: boolean | undefined;
|
|
20467
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
20678
20468
|
readonly relatedListTitle?: string | undefined;
|
|
20679
20469
|
readonly relatedListColumns?: any[] | undefined;
|
|
20680
20470
|
readonly displayField?: string | undefined;
|
|
@@ -20848,7 +20638,7 @@ declare const SysJob: Omit<{
|
|
|
20848
20638
|
readonly inlineTitle?: string | undefined;
|
|
20849
20639
|
readonly inlineColumns?: any[] | undefined;
|
|
20850
20640
|
readonly inlineAmountField?: string | undefined;
|
|
20851
|
-
readonly relatedList?: boolean | undefined;
|
|
20641
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
20852
20642
|
readonly relatedListTitle?: string | undefined;
|
|
20853
20643
|
readonly relatedListColumns?: any[] | undefined;
|
|
20854
20644
|
readonly displayField?: string | undefined;
|
|
@@ -21022,7 +20812,7 @@ declare const SysJob: Omit<{
|
|
|
21022
20812
|
readonly inlineTitle?: string | undefined;
|
|
21023
20813
|
readonly inlineColumns?: any[] | undefined;
|
|
21024
20814
|
readonly inlineAmountField?: string | undefined;
|
|
21025
|
-
readonly relatedList?: boolean | undefined;
|
|
20815
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
21026
20816
|
readonly relatedListTitle?: string | undefined;
|
|
21027
20817
|
readonly relatedListColumns?: any[] | undefined;
|
|
21028
20818
|
readonly displayField?: string | undefined;
|
|
@@ -21196,7 +20986,7 @@ declare const SysJob: Omit<{
|
|
|
21196
20986
|
readonly inlineTitle?: string | undefined;
|
|
21197
20987
|
readonly inlineColumns?: any[] | undefined;
|
|
21198
20988
|
readonly inlineAmountField?: string | undefined;
|
|
21199
|
-
readonly relatedList?: boolean | undefined;
|
|
20989
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
21200
20990
|
readonly relatedListTitle?: string | undefined;
|
|
21201
20991
|
readonly relatedListColumns?: any[] | undefined;
|
|
21202
20992
|
readonly displayField?: string | undefined;
|
|
@@ -21370,7 +21160,7 @@ declare const SysJob: Omit<{
|
|
|
21370
21160
|
readonly inlineTitle?: string | undefined;
|
|
21371
21161
|
readonly inlineColumns?: any[] | undefined;
|
|
21372
21162
|
readonly inlineAmountField?: string | undefined;
|
|
21373
|
-
readonly relatedList?: boolean | undefined;
|
|
21163
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
21374
21164
|
readonly relatedListTitle?: string | undefined;
|
|
21375
21165
|
readonly relatedListColumns?: any[] | undefined;
|
|
21376
21166
|
readonly displayField?: string | undefined;
|
|
@@ -21544,7 +21334,7 @@ declare const SysJob: Omit<{
|
|
|
21544
21334
|
readonly inlineTitle?: string | undefined;
|
|
21545
21335
|
readonly inlineColumns?: any[] | undefined;
|
|
21546
21336
|
readonly inlineAmountField?: string | undefined;
|
|
21547
|
-
readonly relatedList?: boolean | undefined;
|
|
21337
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
21548
21338
|
readonly relatedListTitle?: string | undefined;
|
|
21549
21339
|
readonly relatedListColumns?: any[] | undefined;
|
|
21550
21340
|
readonly displayField?: string | undefined;
|
|
@@ -21718,7 +21508,7 @@ declare const SysJob: Omit<{
|
|
|
21718
21508
|
readonly inlineTitle?: string | undefined;
|
|
21719
21509
|
readonly inlineColumns?: any[] | undefined;
|
|
21720
21510
|
readonly inlineAmountField?: string | undefined;
|
|
21721
|
-
readonly relatedList?: boolean | undefined;
|
|
21511
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
21722
21512
|
readonly relatedListTitle?: string | undefined;
|
|
21723
21513
|
readonly relatedListColumns?: any[] | undefined;
|
|
21724
21514
|
readonly displayField?: string | undefined;
|
|
@@ -21892,7 +21682,7 @@ declare const SysJob: Omit<{
|
|
|
21892
21682
|
readonly inlineTitle?: string | undefined;
|
|
21893
21683
|
readonly inlineColumns?: any[] | undefined;
|
|
21894
21684
|
readonly inlineAmountField?: string | undefined;
|
|
21895
|
-
readonly relatedList?: boolean | undefined;
|
|
21685
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
21896
21686
|
readonly relatedListTitle?: string | undefined;
|
|
21897
21687
|
readonly relatedListColumns?: any[] | undefined;
|
|
21898
21688
|
readonly displayField?: string | undefined;
|
|
@@ -22066,7 +21856,7 @@ declare const SysJob: Omit<{
|
|
|
22066
21856
|
readonly inlineTitle?: string | undefined;
|
|
22067
21857
|
readonly inlineColumns?: any[] | undefined;
|
|
22068
21858
|
readonly inlineAmountField?: string | undefined;
|
|
22069
|
-
readonly relatedList?: boolean | undefined;
|
|
21859
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
22070
21860
|
readonly relatedListTitle?: string | undefined;
|
|
22071
21861
|
readonly relatedListColumns?: any[] | undefined;
|
|
22072
21862
|
readonly displayField?: string | undefined;
|
|
@@ -22240,7 +22030,7 @@ declare const SysJob: Omit<{
|
|
|
22240
22030
|
readonly inlineTitle?: string | undefined;
|
|
22241
22031
|
readonly inlineColumns?: any[] | undefined;
|
|
22242
22032
|
readonly inlineAmountField?: string | undefined;
|
|
22243
|
-
readonly relatedList?: boolean | undefined;
|
|
22033
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
22244
22034
|
readonly relatedListTitle?: string | undefined;
|
|
22245
22035
|
readonly relatedListColumns?: any[] | undefined;
|
|
22246
22036
|
readonly displayField?: string | undefined;
|
|
@@ -22414,7 +22204,7 @@ declare const SysJob: Omit<{
|
|
|
22414
22204
|
readonly inlineTitle?: string | undefined;
|
|
22415
22205
|
readonly inlineColumns?: any[] | undefined;
|
|
22416
22206
|
readonly inlineAmountField?: string | undefined;
|
|
22417
|
-
readonly relatedList?: boolean | undefined;
|
|
22207
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
22418
22208
|
readonly relatedListTitle?: string | undefined;
|
|
22419
22209
|
readonly relatedListColumns?: any[] | undefined;
|
|
22420
22210
|
readonly displayField?: string | undefined;
|
|
@@ -22588,7 +22378,7 @@ declare const SysJob: Omit<{
|
|
|
22588
22378
|
readonly inlineTitle?: string | undefined;
|
|
22589
22379
|
readonly inlineColumns?: any[] | undefined;
|
|
22590
22380
|
readonly inlineAmountField?: string | undefined;
|
|
22591
|
-
readonly relatedList?: boolean | undefined;
|
|
22381
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
22592
22382
|
readonly relatedListTitle?: string | undefined;
|
|
22593
22383
|
readonly relatedListColumns?: any[] | undefined;
|
|
22594
22384
|
readonly displayField?: string | undefined;
|
|
@@ -22762,7 +22552,7 @@ declare const SysJob: Omit<{
|
|
|
22762
22552
|
readonly inlineTitle?: string | undefined;
|
|
22763
22553
|
readonly inlineColumns?: any[] | undefined;
|
|
22764
22554
|
readonly inlineAmountField?: string | undefined;
|
|
22765
|
-
readonly relatedList?: boolean | undefined;
|
|
22555
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
22766
22556
|
readonly relatedListTitle?: string | undefined;
|
|
22767
22557
|
readonly relatedListColumns?: any[] | undefined;
|
|
22768
22558
|
readonly displayField?: string | undefined;
|
|
@@ -22961,7 +22751,7 @@ declare const SysJobRun: Omit<{
|
|
|
22961
22751
|
inlineTitle?: string | undefined;
|
|
22962
22752
|
inlineColumns?: any[] | undefined;
|
|
22963
22753
|
inlineAmountField?: string | undefined;
|
|
22964
|
-
relatedList?: boolean | undefined;
|
|
22754
|
+
relatedList?: boolean | "primary" | undefined;
|
|
22965
22755
|
relatedListTitle?: string | undefined;
|
|
22966
22756
|
relatedListColumns?: any[] | undefined;
|
|
22967
22757
|
displayField?: string | undefined;
|
|
@@ -23244,7 +23034,7 @@ declare const SysJobRun: Omit<{
|
|
|
23244
23034
|
highlightFields?: string[] | undefined;
|
|
23245
23035
|
stageField?: string | false | undefined;
|
|
23246
23036
|
listViews?: Record<string, {
|
|
23247
|
-
type: "tree" | "grid" | "kanban" | "
|
|
23037
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
23248
23038
|
columns: string[] | {
|
|
23249
23039
|
field: string;
|
|
23250
23040
|
label?: string | undefined;
|
|
@@ -23260,8 +23050,55 @@ declare const SysJobRun: Omit<{
|
|
|
23260
23050
|
link?: boolean | undefined;
|
|
23261
23051
|
action?: string | undefined;
|
|
23262
23052
|
}[];
|
|
23263
|
-
|
|
23053
|
+
sort?: string | {
|
|
23054
|
+
field: string;
|
|
23055
|
+
order: "asc" | "desc";
|
|
23056
|
+
}[] | undefined;
|
|
23057
|
+
filter?: {
|
|
23058
|
+
field: string;
|
|
23059
|
+
operator: string;
|
|
23060
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
23061
|
+
}[] | undefined;
|
|
23062
|
+
description?: string | undefined;
|
|
23264
23063
|
label?: string | undefined;
|
|
23064
|
+
name?: string | undefined;
|
|
23065
|
+
responsive?: {
|
|
23066
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
23067
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
23068
|
+
columns?: {
|
|
23069
|
+
xs?: number | undefined;
|
|
23070
|
+
sm?: number | undefined;
|
|
23071
|
+
md?: number | undefined;
|
|
23072
|
+
lg?: number | undefined;
|
|
23073
|
+
xl?: number | undefined;
|
|
23074
|
+
'2xl'?: number | undefined;
|
|
23075
|
+
} | undefined;
|
|
23076
|
+
order?: {
|
|
23077
|
+
xs?: number | undefined;
|
|
23078
|
+
sm?: number | undefined;
|
|
23079
|
+
md?: number | undefined;
|
|
23080
|
+
lg?: number | undefined;
|
|
23081
|
+
xl?: number | undefined;
|
|
23082
|
+
'2xl'?: number | undefined;
|
|
23083
|
+
} | undefined;
|
|
23084
|
+
} | undefined;
|
|
23085
|
+
navigation?: {
|
|
23086
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
23087
|
+
preventNavigation: boolean;
|
|
23088
|
+
openNewTab: boolean;
|
|
23089
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
23090
|
+
view?: string | undefined;
|
|
23091
|
+
width?: string | number | undefined;
|
|
23092
|
+
} | undefined;
|
|
23093
|
+
sharing?: {
|
|
23094
|
+
type: "personal" | "collaborative";
|
|
23095
|
+
lockedBy?: string | undefined;
|
|
23096
|
+
} | undefined;
|
|
23097
|
+
aria?: {
|
|
23098
|
+
ariaLabel?: string | undefined;
|
|
23099
|
+
ariaDescribedBy?: string | undefined;
|
|
23100
|
+
role?: string | undefined;
|
|
23101
|
+
} | undefined;
|
|
23265
23102
|
data?: {
|
|
23266
23103
|
provider: "object";
|
|
23267
23104
|
object: string;
|
|
@@ -23289,77 +23126,42 @@ declare const SysJobRun: Omit<{
|
|
|
23289
23126
|
schemaId: string;
|
|
23290
23127
|
schema?: Record<string, unknown> | undefined;
|
|
23291
23128
|
} | undefined;
|
|
23292
|
-
|
|
23293
|
-
|
|
23294
|
-
|
|
23295
|
-
|
|
23296
|
-
|
|
23297
|
-
|
|
23298
|
-
field: string;
|
|
23299
|
-
order: "asc" | "desc";
|
|
23300
|
-
}[] | undefined;
|
|
23301
|
-
searchableFields?: string[] | undefined;
|
|
23302
|
-
filterableFields?: string[] | undefined;
|
|
23303
|
-
userFilters?: {
|
|
23304
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
23305
|
-
fields?: {
|
|
23306
|
-
field: string;
|
|
23307
|
-
label?: string | undefined;
|
|
23308
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
23309
|
-
options?: {
|
|
23310
|
-
value: string | number | boolean;
|
|
23311
|
-
label: string;
|
|
23312
|
-
color?: string | undefined;
|
|
23313
|
-
}[] | undefined;
|
|
23314
|
-
showCount?: boolean | undefined;
|
|
23315
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
23316
|
-
}[] | undefined;
|
|
23317
|
-
tabs?: {
|
|
23318
|
-
name: string;
|
|
23319
|
-
pinned: boolean;
|
|
23320
|
-
isDefault: boolean;
|
|
23321
|
-
visible: boolean;
|
|
23322
|
-
label?: string | undefined;
|
|
23323
|
-
icon?: string | undefined;
|
|
23324
|
-
view?: string | undefined;
|
|
23325
|
-
filter?: {
|
|
23326
|
-
field: string;
|
|
23327
|
-
operator: string;
|
|
23328
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
23329
|
-
}[] | undefined;
|
|
23330
|
-
order?: number | undefined;
|
|
23331
|
-
}[] | undefined;
|
|
23332
|
-
showAllRecords?: boolean | undefined;
|
|
23129
|
+
tree?: {
|
|
23130
|
+
[x: string]: unknown;
|
|
23131
|
+
parentField?: string | undefined;
|
|
23132
|
+
labelField?: string | undefined;
|
|
23133
|
+
fields?: string[] | undefined;
|
|
23134
|
+
defaultExpandedDepth?: number | undefined;
|
|
23333
23135
|
} | undefined;
|
|
23136
|
+
inlineEdit?: boolean | undefined;
|
|
23137
|
+
virtualScroll?: boolean | undefined;
|
|
23334
23138
|
resizable?: boolean | undefined;
|
|
23335
|
-
striped?: boolean | undefined;
|
|
23336
|
-
bordered?: boolean | undefined;
|
|
23337
|
-
compactToolbar?: boolean | undefined;
|
|
23338
|
-
selection?: {
|
|
23339
|
-
type: "none" | "multiple" | "single";
|
|
23340
|
-
} | undefined;
|
|
23341
|
-
navigation?: {
|
|
23342
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
23343
|
-
preventNavigation: boolean;
|
|
23344
|
-
openNewTab: boolean;
|
|
23345
|
-
view?: string | undefined;
|
|
23346
|
-
width?: string | number | undefined;
|
|
23347
|
-
} | undefined;
|
|
23348
|
-
pagination?: {
|
|
23349
|
-
pageSize: number;
|
|
23350
|
-
pageSizeOptions?: number[] | undefined;
|
|
23351
|
-
} | undefined;
|
|
23352
23139
|
kanban?: {
|
|
23353
23140
|
groupByField: string;
|
|
23354
23141
|
columns: string[];
|
|
23355
23142
|
summarizeField?: string | undefined;
|
|
23356
23143
|
} | undefined;
|
|
23144
|
+
gallery?: {
|
|
23145
|
+
coverFit: "cover" | "contain";
|
|
23146
|
+
cardSize: "small" | "medium" | "large";
|
|
23147
|
+
coverField?: string | undefined;
|
|
23148
|
+
titleField?: string | undefined;
|
|
23149
|
+
visibleFields?: string[] | undefined;
|
|
23150
|
+
} | undefined;
|
|
23357
23151
|
calendar?: {
|
|
23358
23152
|
startDateField: string;
|
|
23359
23153
|
titleField: string;
|
|
23360
23154
|
endDateField?: string | undefined;
|
|
23361
23155
|
colorField?: string | undefined;
|
|
23362
23156
|
} | undefined;
|
|
23157
|
+
timeline?: {
|
|
23158
|
+
startDateField: string;
|
|
23159
|
+
titleField: string;
|
|
23160
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
23161
|
+
endDateField?: string | undefined;
|
|
23162
|
+
groupByField?: string | undefined;
|
|
23163
|
+
colorField?: string | undefined;
|
|
23164
|
+
} | undefined;
|
|
23363
23165
|
gantt?: {
|
|
23364
23166
|
[x: string]: unknown;
|
|
23365
23167
|
startDateField: string;
|
|
@@ -23391,40 +23193,40 @@ declare const SysJobRun: Omit<{
|
|
|
23391
23193
|
}[] | undefined;
|
|
23392
23194
|
autoZoomToFilter?: boolean | undefined;
|
|
23393
23195
|
} | undefined;
|
|
23394
|
-
gallery?: {
|
|
23395
|
-
coverFit: "cover" | "contain";
|
|
23396
|
-
cardSize: "small" | "medium" | "large";
|
|
23397
|
-
coverField?: string | undefined;
|
|
23398
|
-
titleField?: string | undefined;
|
|
23399
|
-
visibleFields?: string[] | undefined;
|
|
23400
|
-
} | undefined;
|
|
23401
|
-
timeline?: {
|
|
23402
|
-
startDateField: string;
|
|
23403
|
-
titleField: string;
|
|
23404
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
23405
|
-
endDateField?: string | undefined;
|
|
23406
|
-
groupByField?: string | undefined;
|
|
23407
|
-
colorField?: string | undefined;
|
|
23408
|
-
} | undefined;
|
|
23409
23196
|
chart?: {
|
|
23410
23197
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
23411
23198
|
dataset: string;
|
|
23412
23199
|
values: string[];
|
|
23413
23200
|
dimensions?: string[] | undefined;
|
|
23414
23201
|
} | undefined;
|
|
23415
|
-
|
|
23416
|
-
|
|
23417
|
-
|
|
23418
|
-
|
|
23419
|
-
|
|
23420
|
-
|
|
23202
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
23203
|
+
tabs?: {
|
|
23204
|
+
name: string;
|
|
23205
|
+
pinned: boolean;
|
|
23206
|
+
isDefault: boolean;
|
|
23207
|
+
visible: boolean;
|
|
23208
|
+
label?: string | undefined;
|
|
23209
|
+
icon?: string | undefined;
|
|
23210
|
+
view?: string | undefined;
|
|
23211
|
+
filter?: {
|
|
23212
|
+
field: string;
|
|
23213
|
+
operator: string;
|
|
23214
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
23215
|
+
}[] | undefined;
|
|
23216
|
+
order?: number | undefined;
|
|
23217
|
+
}[] | undefined;
|
|
23218
|
+
searchableFields?: string[] | undefined;
|
|
23219
|
+
filterableFields?: string[] | undefined;
|
|
23220
|
+
striped?: boolean | undefined;
|
|
23221
|
+
bordered?: boolean | undefined;
|
|
23222
|
+
compactToolbar?: boolean | undefined;
|
|
23223
|
+
selection?: {
|
|
23224
|
+
type: "none" | "multiple" | "single";
|
|
23421
23225
|
} | undefined;
|
|
23422
|
-
|
|
23423
|
-
|
|
23424
|
-
|
|
23425
|
-
lockedBy?: string | undefined;
|
|
23226
|
+
pagination?: {
|
|
23227
|
+
pageSize: number;
|
|
23228
|
+
pageSizeOptions?: number[] | undefined;
|
|
23426
23229
|
} | undefined;
|
|
23427
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
23428
23230
|
grouping?: {
|
|
23429
23231
|
fields: {
|
|
23430
23232
|
field: string;
|
|
@@ -23441,7 +23243,6 @@ declare const SysJobRun: Omit<{
|
|
|
23441
23243
|
rowActions?: string[] | undefined;
|
|
23442
23244
|
bulkActions?: string[] | undefined;
|
|
23443
23245
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
23444
|
-
virtualScroll?: boolean | undefined;
|
|
23445
23246
|
conditionalFormatting?: {
|
|
23446
23247
|
condition: {
|
|
23447
23248
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -23462,7 +23263,6 @@ declare const SysJobRun: Omit<{
|
|
|
23462
23263
|
};
|
|
23463
23264
|
style: Record<string, string>;
|
|
23464
23265
|
}[] | undefined;
|
|
23465
|
-
inlineEdit?: boolean | undefined;
|
|
23466
23266
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
23467
23267
|
userActions?: {
|
|
23468
23268
|
sort: boolean;
|
|
@@ -23475,23 +23275,8 @@ declare const SysJobRun: Omit<{
|
|
|
23475
23275
|
} | undefined;
|
|
23476
23276
|
appearance?: {
|
|
23477
23277
|
showDescription: boolean;
|
|
23478
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
23278
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
23479
23279
|
} | undefined;
|
|
23480
|
-
tabs?: {
|
|
23481
|
-
name: string;
|
|
23482
|
-
pinned: boolean;
|
|
23483
|
-
isDefault: boolean;
|
|
23484
|
-
visible: boolean;
|
|
23485
|
-
label?: string | undefined;
|
|
23486
|
-
icon?: string | undefined;
|
|
23487
|
-
view?: string | undefined;
|
|
23488
|
-
filter?: {
|
|
23489
|
-
field: string;
|
|
23490
|
-
operator: string;
|
|
23491
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
23492
|
-
}[] | undefined;
|
|
23493
|
-
order?: number | undefined;
|
|
23494
|
-
}[] | undefined;
|
|
23495
23280
|
addRecord?: {
|
|
23496
23281
|
enabled: boolean;
|
|
23497
23282
|
position: "top" | "bottom" | "both";
|
|
@@ -23505,31 +23290,6 @@ declare const SysJobRun: Omit<{
|
|
|
23505
23290
|
message?: string | undefined;
|
|
23506
23291
|
icon?: string | undefined;
|
|
23507
23292
|
} | undefined;
|
|
23508
|
-
aria?: {
|
|
23509
|
-
ariaLabel?: string | undefined;
|
|
23510
|
-
ariaDescribedBy?: string | undefined;
|
|
23511
|
-
role?: string | undefined;
|
|
23512
|
-
} | undefined;
|
|
23513
|
-
responsive?: {
|
|
23514
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
23515
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
23516
|
-
columns?: {
|
|
23517
|
-
xs?: number | undefined;
|
|
23518
|
-
sm?: number | undefined;
|
|
23519
|
-
md?: number | undefined;
|
|
23520
|
-
lg?: number | undefined;
|
|
23521
|
-
xl?: number | undefined;
|
|
23522
|
-
'2xl'?: number | undefined;
|
|
23523
|
-
} | undefined;
|
|
23524
|
-
order?: {
|
|
23525
|
-
xs?: number | undefined;
|
|
23526
|
-
sm?: number | undefined;
|
|
23527
|
-
md?: number | undefined;
|
|
23528
|
-
lg?: number | undefined;
|
|
23529
|
-
xl?: number | undefined;
|
|
23530
|
-
'2xl'?: number | undefined;
|
|
23531
|
-
} | undefined;
|
|
23532
|
-
} | undefined;
|
|
23533
23293
|
performance?: {
|
|
23534
23294
|
lazyLoad?: boolean | undefined;
|
|
23535
23295
|
virtualScroll?: {
|
|
@@ -23732,7 +23492,7 @@ declare const SysJobRun: Omit<{
|
|
|
23732
23492
|
readonly inlineTitle?: string | undefined;
|
|
23733
23493
|
readonly inlineColumns?: any[] | undefined;
|
|
23734
23494
|
readonly inlineAmountField?: string | undefined;
|
|
23735
|
-
readonly relatedList?: boolean | undefined;
|
|
23495
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
23736
23496
|
readonly relatedListTitle?: string | undefined;
|
|
23737
23497
|
readonly relatedListColumns?: any[] | undefined;
|
|
23738
23498
|
readonly displayField?: string | undefined;
|
|
@@ -23906,7 +23666,7 @@ declare const SysJobRun: Omit<{
|
|
|
23906
23666
|
readonly inlineTitle?: string | undefined;
|
|
23907
23667
|
readonly inlineColumns?: any[] | undefined;
|
|
23908
23668
|
readonly inlineAmountField?: string | undefined;
|
|
23909
|
-
readonly relatedList?: boolean | undefined;
|
|
23669
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
23910
23670
|
readonly relatedListTitle?: string | undefined;
|
|
23911
23671
|
readonly relatedListColumns?: any[] | undefined;
|
|
23912
23672
|
readonly displayField?: string | undefined;
|
|
@@ -24080,7 +23840,7 @@ declare const SysJobRun: Omit<{
|
|
|
24080
23840
|
readonly inlineTitle?: string | undefined;
|
|
24081
23841
|
readonly inlineColumns?: any[] | undefined;
|
|
24082
23842
|
readonly inlineAmountField?: string | undefined;
|
|
24083
|
-
readonly relatedList?: boolean | undefined;
|
|
23843
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
24084
23844
|
readonly relatedListTitle?: string | undefined;
|
|
24085
23845
|
readonly relatedListColumns?: any[] | undefined;
|
|
24086
23846
|
readonly displayField?: string | undefined;
|
|
@@ -24254,7 +24014,7 @@ declare const SysJobRun: Omit<{
|
|
|
24254
24014
|
readonly inlineTitle?: string | undefined;
|
|
24255
24015
|
readonly inlineColumns?: any[] | undefined;
|
|
24256
24016
|
readonly inlineAmountField?: string | undefined;
|
|
24257
|
-
readonly relatedList?: boolean | undefined;
|
|
24017
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
24258
24018
|
readonly relatedListTitle?: string | undefined;
|
|
24259
24019
|
readonly relatedListColumns?: any[] | undefined;
|
|
24260
24020
|
readonly displayField?: string | undefined;
|
|
@@ -24428,7 +24188,7 @@ declare const SysJobRun: Omit<{
|
|
|
24428
24188
|
readonly inlineTitle?: string | undefined;
|
|
24429
24189
|
readonly inlineColumns?: any[] | undefined;
|
|
24430
24190
|
readonly inlineAmountField?: string | undefined;
|
|
24431
|
-
readonly relatedList?: boolean | undefined;
|
|
24191
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
24432
24192
|
readonly relatedListTitle?: string | undefined;
|
|
24433
24193
|
readonly relatedListColumns?: any[] | undefined;
|
|
24434
24194
|
readonly displayField?: string | undefined;
|
|
@@ -24602,7 +24362,7 @@ declare const SysJobRun: Omit<{
|
|
|
24602
24362
|
readonly inlineTitle?: string | undefined;
|
|
24603
24363
|
readonly inlineColumns?: any[] | undefined;
|
|
24604
24364
|
readonly inlineAmountField?: string | undefined;
|
|
24605
|
-
readonly relatedList?: boolean | undefined;
|
|
24365
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
24606
24366
|
readonly relatedListTitle?: string | undefined;
|
|
24607
24367
|
readonly relatedListColumns?: any[] | undefined;
|
|
24608
24368
|
readonly displayField?: string | undefined;
|
|
@@ -24776,7 +24536,7 @@ declare const SysJobRun: Omit<{
|
|
|
24776
24536
|
readonly inlineTitle?: string | undefined;
|
|
24777
24537
|
readonly inlineColumns?: any[] | undefined;
|
|
24778
24538
|
readonly inlineAmountField?: string | undefined;
|
|
24779
|
-
readonly relatedList?: boolean | undefined;
|
|
24539
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
24780
24540
|
readonly relatedListTitle?: string | undefined;
|
|
24781
24541
|
readonly relatedListColumns?: any[] | undefined;
|
|
24782
24542
|
readonly displayField?: string | undefined;
|
|
@@ -24950,7 +24710,7 @@ declare const SysJobRun: Omit<{
|
|
|
24950
24710
|
readonly inlineTitle?: string | undefined;
|
|
24951
24711
|
readonly inlineColumns?: any[] | undefined;
|
|
24952
24712
|
readonly inlineAmountField?: string | undefined;
|
|
24953
|
-
readonly relatedList?: boolean | undefined;
|
|
24713
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
24954
24714
|
readonly relatedListTitle?: string | undefined;
|
|
24955
24715
|
readonly relatedListColumns?: any[] | undefined;
|
|
24956
24716
|
readonly displayField?: string | undefined;
|
|
@@ -25124,7 +24884,7 @@ declare const SysJobRun: Omit<{
|
|
|
25124
24884
|
readonly inlineTitle?: string | undefined;
|
|
25125
24885
|
readonly inlineColumns?: any[] | undefined;
|
|
25126
24886
|
readonly inlineAmountField?: string | undefined;
|
|
25127
|
-
readonly relatedList?: boolean | undefined;
|
|
24887
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
25128
24888
|
readonly relatedListTitle?: string | undefined;
|
|
25129
24889
|
readonly relatedListColumns?: any[] | undefined;
|
|
25130
24890
|
readonly displayField?: string | undefined;
|
|
@@ -25298,7 +25058,7 @@ declare const SysJobRun: Omit<{
|
|
|
25298
25058
|
readonly inlineTitle?: string | undefined;
|
|
25299
25059
|
readonly inlineColumns?: any[] | undefined;
|
|
25300
25060
|
readonly inlineAmountField?: string | undefined;
|
|
25301
|
-
readonly relatedList?: boolean | undefined;
|
|
25061
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
25302
25062
|
readonly relatedListTitle?: string | undefined;
|
|
25303
25063
|
readonly relatedListColumns?: any[] | undefined;
|
|
25304
25064
|
readonly displayField?: string | undefined;
|
|
@@ -25505,7 +25265,7 @@ declare const SysJobQueue: Omit<{
|
|
|
25505
25265
|
inlineTitle?: string | undefined;
|
|
25506
25266
|
inlineColumns?: any[] | undefined;
|
|
25507
25267
|
inlineAmountField?: string | undefined;
|
|
25508
|
-
relatedList?: boolean | undefined;
|
|
25268
|
+
relatedList?: boolean | "primary" | undefined;
|
|
25509
25269
|
relatedListTitle?: string | undefined;
|
|
25510
25270
|
relatedListColumns?: any[] | undefined;
|
|
25511
25271
|
displayField?: string | undefined;
|
|
@@ -25788,7 +25548,7 @@ declare const SysJobQueue: Omit<{
|
|
|
25788
25548
|
highlightFields?: string[] | undefined;
|
|
25789
25549
|
stageField?: string | false | undefined;
|
|
25790
25550
|
listViews?: Record<string, {
|
|
25791
|
-
type: "tree" | "grid" | "kanban" | "
|
|
25551
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
25792
25552
|
columns: string[] | {
|
|
25793
25553
|
field: string;
|
|
25794
25554
|
label?: string | undefined;
|
|
@@ -25804,8 +25564,55 @@ declare const SysJobQueue: Omit<{
|
|
|
25804
25564
|
link?: boolean | undefined;
|
|
25805
25565
|
action?: string | undefined;
|
|
25806
25566
|
}[];
|
|
25807
|
-
|
|
25567
|
+
sort?: string | {
|
|
25568
|
+
field: string;
|
|
25569
|
+
order: "asc" | "desc";
|
|
25570
|
+
}[] | undefined;
|
|
25571
|
+
filter?: {
|
|
25572
|
+
field: string;
|
|
25573
|
+
operator: string;
|
|
25574
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
25575
|
+
}[] | undefined;
|
|
25576
|
+
description?: string | undefined;
|
|
25808
25577
|
label?: string | undefined;
|
|
25578
|
+
name?: string | undefined;
|
|
25579
|
+
responsive?: {
|
|
25580
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
25581
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
25582
|
+
columns?: {
|
|
25583
|
+
xs?: number | undefined;
|
|
25584
|
+
sm?: number | undefined;
|
|
25585
|
+
md?: number | undefined;
|
|
25586
|
+
lg?: number | undefined;
|
|
25587
|
+
xl?: number | undefined;
|
|
25588
|
+
'2xl'?: number | undefined;
|
|
25589
|
+
} | undefined;
|
|
25590
|
+
order?: {
|
|
25591
|
+
xs?: number | undefined;
|
|
25592
|
+
sm?: number | undefined;
|
|
25593
|
+
md?: number | undefined;
|
|
25594
|
+
lg?: number | undefined;
|
|
25595
|
+
xl?: number | undefined;
|
|
25596
|
+
'2xl'?: number | undefined;
|
|
25597
|
+
} | undefined;
|
|
25598
|
+
} | undefined;
|
|
25599
|
+
navigation?: {
|
|
25600
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
25601
|
+
preventNavigation: boolean;
|
|
25602
|
+
openNewTab: boolean;
|
|
25603
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
25604
|
+
view?: string | undefined;
|
|
25605
|
+
width?: string | number | undefined;
|
|
25606
|
+
} | undefined;
|
|
25607
|
+
sharing?: {
|
|
25608
|
+
type: "personal" | "collaborative";
|
|
25609
|
+
lockedBy?: string | undefined;
|
|
25610
|
+
} | undefined;
|
|
25611
|
+
aria?: {
|
|
25612
|
+
ariaLabel?: string | undefined;
|
|
25613
|
+
ariaDescribedBy?: string | undefined;
|
|
25614
|
+
role?: string | undefined;
|
|
25615
|
+
} | undefined;
|
|
25809
25616
|
data?: {
|
|
25810
25617
|
provider: "object";
|
|
25811
25618
|
object: string;
|
|
@@ -25833,77 +25640,42 @@ declare const SysJobQueue: Omit<{
|
|
|
25833
25640
|
schemaId: string;
|
|
25834
25641
|
schema?: Record<string, unknown> | undefined;
|
|
25835
25642
|
} | undefined;
|
|
25836
|
-
|
|
25837
|
-
|
|
25838
|
-
|
|
25839
|
-
|
|
25840
|
-
|
|
25841
|
-
|
|
25842
|
-
field: string;
|
|
25843
|
-
order: "asc" | "desc";
|
|
25844
|
-
}[] | undefined;
|
|
25845
|
-
searchableFields?: string[] | undefined;
|
|
25846
|
-
filterableFields?: string[] | undefined;
|
|
25847
|
-
userFilters?: {
|
|
25848
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
25849
|
-
fields?: {
|
|
25850
|
-
field: string;
|
|
25851
|
-
label?: string | undefined;
|
|
25852
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
25853
|
-
options?: {
|
|
25854
|
-
value: string | number | boolean;
|
|
25855
|
-
label: string;
|
|
25856
|
-
color?: string | undefined;
|
|
25857
|
-
}[] | undefined;
|
|
25858
|
-
showCount?: boolean | undefined;
|
|
25859
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
25860
|
-
}[] | undefined;
|
|
25861
|
-
tabs?: {
|
|
25862
|
-
name: string;
|
|
25863
|
-
pinned: boolean;
|
|
25864
|
-
isDefault: boolean;
|
|
25865
|
-
visible: boolean;
|
|
25866
|
-
label?: string | undefined;
|
|
25867
|
-
icon?: string | undefined;
|
|
25868
|
-
view?: string | undefined;
|
|
25869
|
-
filter?: {
|
|
25870
|
-
field: string;
|
|
25871
|
-
operator: string;
|
|
25872
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
25873
|
-
}[] | undefined;
|
|
25874
|
-
order?: number | undefined;
|
|
25875
|
-
}[] | undefined;
|
|
25876
|
-
showAllRecords?: boolean | undefined;
|
|
25643
|
+
tree?: {
|
|
25644
|
+
[x: string]: unknown;
|
|
25645
|
+
parentField?: string | undefined;
|
|
25646
|
+
labelField?: string | undefined;
|
|
25647
|
+
fields?: string[] | undefined;
|
|
25648
|
+
defaultExpandedDepth?: number | undefined;
|
|
25877
25649
|
} | undefined;
|
|
25650
|
+
inlineEdit?: boolean | undefined;
|
|
25651
|
+
virtualScroll?: boolean | undefined;
|
|
25878
25652
|
resizable?: boolean | undefined;
|
|
25879
|
-
striped?: boolean | undefined;
|
|
25880
|
-
bordered?: boolean | undefined;
|
|
25881
|
-
compactToolbar?: boolean | undefined;
|
|
25882
|
-
selection?: {
|
|
25883
|
-
type: "none" | "multiple" | "single";
|
|
25884
|
-
} | undefined;
|
|
25885
|
-
navigation?: {
|
|
25886
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
25887
|
-
preventNavigation: boolean;
|
|
25888
|
-
openNewTab: boolean;
|
|
25889
|
-
view?: string | undefined;
|
|
25890
|
-
width?: string | number | undefined;
|
|
25891
|
-
} | undefined;
|
|
25892
|
-
pagination?: {
|
|
25893
|
-
pageSize: number;
|
|
25894
|
-
pageSizeOptions?: number[] | undefined;
|
|
25895
|
-
} | undefined;
|
|
25896
25653
|
kanban?: {
|
|
25897
25654
|
groupByField: string;
|
|
25898
25655
|
columns: string[];
|
|
25899
25656
|
summarizeField?: string | undefined;
|
|
25900
25657
|
} | undefined;
|
|
25658
|
+
gallery?: {
|
|
25659
|
+
coverFit: "cover" | "contain";
|
|
25660
|
+
cardSize: "small" | "medium" | "large";
|
|
25661
|
+
coverField?: string | undefined;
|
|
25662
|
+
titleField?: string | undefined;
|
|
25663
|
+
visibleFields?: string[] | undefined;
|
|
25664
|
+
} | undefined;
|
|
25901
25665
|
calendar?: {
|
|
25902
25666
|
startDateField: string;
|
|
25903
25667
|
titleField: string;
|
|
25904
25668
|
endDateField?: string | undefined;
|
|
25905
25669
|
colorField?: string | undefined;
|
|
25906
25670
|
} | undefined;
|
|
25671
|
+
timeline?: {
|
|
25672
|
+
startDateField: string;
|
|
25673
|
+
titleField: string;
|
|
25674
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
25675
|
+
endDateField?: string | undefined;
|
|
25676
|
+
groupByField?: string | undefined;
|
|
25677
|
+
colorField?: string | undefined;
|
|
25678
|
+
} | undefined;
|
|
25907
25679
|
gantt?: {
|
|
25908
25680
|
[x: string]: unknown;
|
|
25909
25681
|
startDateField: string;
|
|
@@ -25935,40 +25707,40 @@ declare const SysJobQueue: Omit<{
|
|
|
25935
25707
|
}[] | undefined;
|
|
25936
25708
|
autoZoomToFilter?: boolean | undefined;
|
|
25937
25709
|
} | undefined;
|
|
25938
|
-
gallery?: {
|
|
25939
|
-
coverFit: "cover" | "contain";
|
|
25940
|
-
cardSize: "small" | "medium" | "large";
|
|
25941
|
-
coverField?: string | undefined;
|
|
25942
|
-
titleField?: string | undefined;
|
|
25943
|
-
visibleFields?: string[] | undefined;
|
|
25944
|
-
} | undefined;
|
|
25945
|
-
timeline?: {
|
|
25946
|
-
startDateField: string;
|
|
25947
|
-
titleField: string;
|
|
25948
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
25949
|
-
endDateField?: string | undefined;
|
|
25950
|
-
groupByField?: string | undefined;
|
|
25951
|
-
colorField?: string | undefined;
|
|
25952
|
-
} | undefined;
|
|
25953
25710
|
chart?: {
|
|
25954
25711
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
25955
25712
|
dataset: string;
|
|
25956
25713
|
values: string[];
|
|
25957
25714
|
dimensions?: string[] | undefined;
|
|
25958
25715
|
} | undefined;
|
|
25959
|
-
|
|
25960
|
-
|
|
25961
|
-
|
|
25962
|
-
|
|
25963
|
-
|
|
25964
|
-
|
|
25716
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
25717
|
+
tabs?: {
|
|
25718
|
+
name: string;
|
|
25719
|
+
pinned: boolean;
|
|
25720
|
+
isDefault: boolean;
|
|
25721
|
+
visible: boolean;
|
|
25722
|
+
label?: string | undefined;
|
|
25723
|
+
icon?: string | undefined;
|
|
25724
|
+
view?: string | undefined;
|
|
25725
|
+
filter?: {
|
|
25726
|
+
field: string;
|
|
25727
|
+
operator: string;
|
|
25728
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
25729
|
+
}[] | undefined;
|
|
25730
|
+
order?: number | undefined;
|
|
25731
|
+
}[] | undefined;
|
|
25732
|
+
searchableFields?: string[] | undefined;
|
|
25733
|
+
filterableFields?: string[] | undefined;
|
|
25734
|
+
striped?: boolean | undefined;
|
|
25735
|
+
bordered?: boolean | undefined;
|
|
25736
|
+
compactToolbar?: boolean | undefined;
|
|
25737
|
+
selection?: {
|
|
25738
|
+
type: "none" | "multiple" | "single";
|
|
25965
25739
|
} | undefined;
|
|
25966
|
-
|
|
25967
|
-
|
|
25968
|
-
|
|
25969
|
-
lockedBy?: string | undefined;
|
|
25740
|
+
pagination?: {
|
|
25741
|
+
pageSize: number;
|
|
25742
|
+
pageSizeOptions?: number[] | undefined;
|
|
25970
25743
|
} | undefined;
|
|
25971
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
25972
25744
|
grouping?: {
|
|
25973
25745
|
fields: {
|
|
25974
25746
|
field: string;
|
|
@@ -25985,7 +25757,6 @@ declare const SysJobQueue: Omit<{
|
|
|
25985
25757
|
rowActions?: string[] | undefined;
|
|
25986
25758
|
bulkActions?: string[] | undefined;
|
|
25987
25759
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
25988
|
-
virtualScroll?: boolean | undefined;
|
|
25989
25760
|
conditionalFormatting?: {
|
|
25990
25761
|
condition: {
|
|
25991
25762
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -26006,7 +25777,6 @@ declare const SysJobQueue: Omit<{
|
|
|
26006
25777
|
};
|
|
26007
25778
|
style: Record<string, string>;
|
|
26008
25779
|
}[] | undefined;
|
|
26009
|
-
inlineEdit?: boolean | undefined;
|
|
26010
25780
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
26011
25781
|
userActions?: {
|
|
26012
25782
|
sort: boolean;
|
|
@@ -26019,23 +25789,8 @@ declare const SysJobQueue: Omit<{
|
|
|
26019
25789
|
} | undefined;
|
|
26020
25790
|
appearance?: {
|
|
26021
25791
|
showDescription: boolean;
|
|
26022
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
25792
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
26023
25793
|
} | undefined;
|
|
26024
|
-
tabs?: {
|
|
26025
|
-
name: string;
|
|
26026
|
-
pinned: boolean;
|
|
26027
|
-
isDefault: boolean;
|
|
26028
|
-
visible: boolean;
|
|
26029
|
-
label?: string | undefined;
|
|
26030
|
-
icon?: string | undefined;
|
|
26031
|
-
view?: string | undefined;
|
|
26032
|
-
filter?: {
|
|
26033
|
-
field: string;
|
|
26034
|
-
operator: string;
|
|
26035
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
26036
|
-
}[] | undefined;
|
|
26037
|
-
order?: number | undefined;
|
|
26038
|
-
}[] | undefined;
|
|
26039
25794
|
addRecord?: {
|
|
26040
25795
|
enabled: boolean;
|
|
26041
25796
|
position: "top" | "bottom" | "both";
|
|
@@ -26049,31 +25804,6 @@ declare const SysJobQueue: Omit<{
|
|
|
26049
25804
|
message?: string | undefined;
|
|
26050
25805
|
icon?: string | undefined;
|
|
26051
25806
|
} | undefined;
|
|
26052
|
-
aria?: {
|
|
26053
|
-
ariaLabel?: string | undefined;
|
|
26054
|
-
ariaDescribedBy?: string | undefined;
|
|
26055
|
-
role?: string | undefined;
|
|
26056
|
-
} | undefined;
|
|
26057
|
-
responsive?: {
|
|
26058
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
26059
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
26060
|
-
columns?: {
|
|
26061
|
-
xs?: number | undefined;
|
|
26062
|
-
sm?: number | undefined;
|
|
26063
|
-
md?: number | undefined;
|
|
26064
|
-
lg?: number | undefined;
|
|
26065
|
-
xl?: number | undefined;
|
|
26066
|
-
'2xl'?: number | undefined;
|
|
26067
|
-
} | undefined;
|
|
26068
|
-
order?: {
|
|
26069
|
-
xs?: number | undefined;
|
|
26070
|
-
sm?: number | undefined;
|
|
26071
|
-
md?: number | undefined;
|
|
26072
|
-
lg?: number | undefined;
|
|
26073
|
-
xl?: number | undefined;
|
|
26074
|
-
'2xl'?: number | undefined;
|
|
26075
|
-
} | undefined;
|
|
26076
|
-
} | undefined;
|
|
26077
25807
|
performance?: {
|
|
26078
25808
|
lazyLoad?: boolean | undefined;
|
|
26079
25809
|
virtualScroll?: {
|
|
@@ -26276,7 +26006,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26276
26006
|
readonly inlineTitle?: string | undefined;
|
|
26277
26007
|
readonly inlineColumns?: any[] | undefined;
|
|
26278
26008
|
readonly inlineAmountField?: string | undefined;
|
|
26279
|
-
readonly relatedList?: boolean | undefined;
|
|
26009
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
26280
26010
|
readonly relatedListTitle?: string | undefined;
|
|
26281
26011
|
readonly relatedListColumns?: any[] | undefined;
|
|
26282
26012
|
readonly displayField?: string | undefined;
|
|
@@ -26450,7 +26180,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26450
26180
|
readonly inlineTitle?: string | undefined;
|
|
26451
26181
|
readonly inlineColumns?: any[] | undefined;
|
|
26452
26182
|
readonly inlineAmountField?: string | undefined;
|
|
26453
|
-
readonly relatedList?: boolean | undefined;
|
|
26183
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
26454
26184
|
readonly relatedListTitle?: string | undefined;
|
|
26455
26185
|
readonly relatedListColumns?: any[] | undefined;
|
|
26456
26186
|
readonly displayField?: string | undefined;
|
|
@@ -26624,7 +26354,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26624
26354
|
readonly inlineTitle?: string | undefined;
|
|
26625
26355
|
readonly inlineColumns?: any[] | undefined;
|
|
26626
26356
|
readonly inlineAmountField?: string | undefined;
|
|
26627
|
-
readonly relatedList?: boolean | undefined;
|
|
26357
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
26628
26358
|
readonly relatedListTitle?: string | undefined;
|
|
26629
26359
|
readonly relatedListColumns?: any[] | undefined;
|
|
26630
26360
|
readonly displayField?: string | undefined;
|
|
@@ -26798,7 +26528,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26798
26528
|
readonly inlineTitle?: string | undefined;
|
|
26799
26529
|
readonly inlineColumns?: any[] | undefined;
|
|
26800
26530
|
readonly inlineAmountField?: string | undefined;
|
|
26801
|
-
readonly relatedList?: boolean | undefined;
|
|
26531
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
26802
26532
|
readonly relatedListTitle?: string | undefined;
|
|
26803
26533
|
readonly relatedListColumns?: any[] | undefined;
|
|
26804
26534
|
readonly displayField?: string | undefined;
|
|
@@ -26972,7 +26702,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26972
26702
|
readonly inlineTitle?: string | undefined;
|
|
26973
26703
|
readonly inlineColumns?: any[] | undefined;
|
|
26974
26704
|
readonly inlineAmountField?: string | undefined;
|
|
26975
|
-
readonly relatedList?: boolean | undefined;
|
|
26705
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
26976
26706
|
readonly relatedListTitle?: string | undefined;
|
|
26977
26707
|
readonly relatedListColumns?: any[] | undefined;
|
|
26978
26708
|
readonly displayField?: string | undefined;
|
|
@@ -27146,7 +26876,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27146
26876
|
readonly inlineTitle?: string | undefined;
|
|
27147
26877
|
readonly inlineColumns?: any[] | undefined;
|
|
27148
26878
|
readonly inlineAmountField?: string | undefined;
|
|
27149
|
-
readonly relatedList?: boolean | undefined;
|
|
26879
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
27150
26880
|
readonly relatedListTitle?: string | undefined;
|
|
27151
26881
|
readonly relatedListColumns?: any[] | undefined;
|
|
27152
26882
|
readonly displayField?: string | undefined;
|
|
@@ -27320,7 +27050,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27320
27050
|
readonly inlineTitle?: string | undefined;
|
|
27321
27051
|
readonly inlineColumns?: any[] | undefined;
|
|
27322
27052
|
readonly inlineAmountField?: string | undefined;
|
|
27323
|
-
readonly relatedList?: boolean | undefined;
|
|
27053
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
27324
27054
|
readonly relatedListTitle?: string | undefined;
|
|
27325
27055
|
readonly relatedListColumns?: any[] | undefined;
|
|
27326
27056
|
readonly displayField?: string | undefined;
|
|
@@ -27494,7 +27224,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27494
27224
|
readonly inlineTitle?: string | undefined;
|
|
27495
27225
|
readonly inlineColumns?: any[] | undefined;
|
|
27496
27226
|
readonly inlineAmountField?: string | undefined;
|
|
27497
|
-
readonly relatedList?: boolean | undefined;
|
|
27227
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
27498
27228
|
readonly relatedListTitle?: string | undefined;
|
|
27499
27229
|
readonly relatedListColumns?: any[] | undefined;
|
|
27500
27230
|
readonly displayField?: string | undefined;
|
|
@@ -27668,7 +27398,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27668
27398
|
readonly inlineTitle?: string | undefined;
|
|
27669
27399
|
readonly inlineColumns?: any[] | undefined;
|
|
27670
27400
|
readonly inlineAmountField?: string | undefined;
|
|
27671
|
-
readonly relatedList?: boolean | undefined;
|
|
27401
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
27672
27402
|
readonly relatedListTitle?: string | undefined;
|
|
27673
27403
|
readonly relatedListColumns?: any[] | undefined;
|
|
27674
27404
|
readonly displayField?: string | undefined;
|
|
@@ -27842,7 +27572,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27842
27572
|
readonly inlineTitle?: string | undefined;
|
|
27843
27573
|
readonly inlineColumns?: any[] | undefined;
|
|
27844
27574
|
readonly inlineAmountField?: string | undefined;
|
|
27845
|
-
readonly relatedList?: boolean | undefined;
|
|
27575
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
27846
27576
|
readonly relatedListTitle?: string | undefined;
|
|
27847
27577
|
readonly relatedListColumns?: any[] | undefined;
|
|
27848
27578
|
readonly displayField?: string | undefined;
|
|
@@ -28016,7 +27746,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28016
27746
|
readonly inlineTitle?: string | undefined;
|
|
28017
27747
|
readonly inlineColumns?: any[] | undefined;
|
|
28018
27748
|
readonly inlineAmountField?: string | undefined;
|
|
28019
|
-
readonly relatedList?: boolean | undefined;
|
|
27749
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
28020
27750
|
readonly relatedListTitle?: string | undefined;
|
|
28021
27751
|
readonly relatedListColumns?: any[] | undefined;
|
|
28022
27752
|
readonly displayField?: string | undefined;
|
|
@@ -28190,7 +27920,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28190
27920
|
readonly inlineTitle?: string | undefined;
|
|
28191
27921
|
readonly inlineColumns?: any[] | undefined;
|
|
28192
27922
|
readonly inlineAmountField?: string | undefined;
|
|
28193
|
-
readonly relatedList?: boolean | undefined;
|
|
27923
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
28194
27924
|
readonly relatedListTitle?: string | undefined;
|
|
28195
27925
|
readonly relatedListColumns?: any[] | undefined;
|
|
28196
27926
|
readonly displayField?: string | undefined;
|
|
@@ -28364,7 +28094,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28364
28094
|
readonly inlineTitle?: string | undefined;
|
|
28365
28095
|
readonly inlineColumns?: any[] | undefined;
|
|
28366
28096
|
readonly inlineAmountField?: string | undefined;
|
|
28367
|
-
readonly relatedList?: boolean | undefined;
|
|
28097
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
28368
28098
|
readonly relatedListTitle?: string | undefined;
|
|
28369
28099
|
readonly relatedListColumns?: any[] | undefined;
|
|
28370
28100
|
readonly displayField?: string | undefined;
|
|
@@ -28538,7 +28268,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28538
28268
|
readonly inlineTitle?: string | undefined;
|
|
28539
28269
|
readonly inlineColumns?: any[] | undefined;
|
|
28540
28270
|
readonly inlineAmountField?: string | undefined;
|
|
28541
|
-
readonly relatedList?: boolean | undefined;
|
|
28271
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
28542
28272
|
readonly relatedListTitle?: string | undefined;
|
|
28543
28273
|
readonly relatedListColumns?: any[] | undefined;
|
|
28544
28274
|
readonly displayField?: string | undefined;
|
|
@@ -28712,7 +28442,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28712
28442
|
readonly inlineTitle?: string | undefined;
|
|
28713
28443
|
readonly inlineColumns?: any[] | undefined;
|
|
28714
28444
|
readonly inlineAmountField?: string | undefined;
|
|
28715
|
-
readonly relatedList?: boolean | undefined;
|
|
28445
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
28716
28446
|
readonly relatedListTitle?: string | undefined;
|
|
28717
28447
|
readonly relatedListColumns?: any[] | undefined;
|
|
28718
28448
|
readonly displayField?: string | undefined;
|
|
@@ -28886,7 +28616,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28886
28616
|
readonly inlineTitle?: string | undefined;
|
|
28887
28617
|
readonly inlineColumns?: any[] | undefined;
|
|
28888
28618
|
readonly inlineAmountField?: string | undefined;
|
|
28889
|
-
readonly relatedList?: boolean | undefined;
|
|
28619
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
28890
28620
|
readonly relatedListTitle?: string | undefined;
|
|
28891
28621
|
readonly relatedListColumns?: any[] | undefined;
|
|
28892
28622
|
readonly displayField?: string | undefined;
|
|
@@ -29060,7 +28790,7 @@ declare const SysJobQueue: Omit<{
|
|
|
29060
28790
|
readonly inlineTitle?: string | undefined;
|
|
29061
28791
|
readonly inlineColumns?: any[] | undefined;
|
|
29062
28792
|
readonly inlineAmountField?: string | undefined;
|
|
29063
|
-
readonly relatedList?: boolean | undefined;
|
|
28793
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
29064
28794
|
readonly relatedListTitle?: string | undefined;
|
|
29065
28795
|
readonly relatedListColumns?: any[] | undefined;
|
|
29066
28796
|
readonly displayField?: string | undefined;
|
|
@@ -29234,7 +28964,7 @@ declare const SysJobQueue: Omit<{
|
|
|
29234
28964
|
readonly inlineTitle?: string | undefined;
|
|
29235
28965
|
readonly inlineColumns?: any[] | undefined;
|
|
29236
28966
|
readonly inlineAmountField?: string | undefined;
|
|
29237
|
-
readonly relatedList?: boolean | undefined;
|
|
28967
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
29238
28968
|
readonly relatedListTitle?: string | undefined;
|
|
29239
28969
|
readonly relatedListColumns?: any[] | undefined;
|
|
29240
28970
|
readonly displayField?: string | undefined;
|
|
@@ -29408,7 +29138,7 @@ declare const SysJobQueue: Omit<{
|
|
|
29408
29138
|
readonly inlineTitle?: string | undefined;
|
|
29409
29139
|
readonly inlineColumns?: any[] | undefined;
|
|
29410
29140
|
readonly inlineAmountField?: string | undefined;
|
|
29411
|
-
readonly relatedList?: boolean | undefined;
|
|
29141
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
29412
29142
|
readonly relatedListTitle?: string | undefined;
|
|
29413
29143
|
readonly relatedListColumns?: any[] | undefined;
|
|
29414
29144
|
readonly displayField?: string | undefined;
|
|
@@ -29612,7 +29342,7 @@ declare const SysImportJob: Omit<{
|
|
|
29612
29342
|
inlineTitle?: string | undefined;
|
|
29613
29343
|
inlineColumns?: any[] | undefined;
|
|
29614
29344
|
inlineAmountField?: string | undefined;
|
|
29615
|
-
relatedList?: boolean | undefined;
|
|
29345
|
+
relatedList?: boolean | "primary" | undefined;
|
|
29616
29346
|
relatedListTitle?: string | undefined;
|
|
29617
29347
|
relatedListColumns?: any[] | undefined;
|
|
29618
29348
|
displayField?: string | undefined;
|
|
@@ -29895,7 +29625,7 @@ declare const SysImportJob: Omit<{
|
|
|
29895
29625
|
highlightFields?: string[] | undefined;
|
|
29896
29626
|
stageField?: string | false | undefined;
|
|
29897
29627
|
listViews?: Record<string, {
|
|
29898
|
-
type: "tree" | "grid" | "kanban" | "
|
|
29628
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
29899
29629
|
columns: string[] | {
|
|
29900
29630
|
field: string;
|
|
29901
29631
|
label?: string | undefined;
|
|
@@ -29911,8 +29641,55 @@ declare const SysImportJob: Omit<{
|
|
|
29911
29641
|
link?: boolean | undefined;
|
|
29912
29642
|
action?: string | undefined;
|
|
29913
29643
|
}[];
|
|
29914
|
-
|
|
29644
|
+
sort?: string | {
|
|
29645
|
+
field: string;
|
|
29646
|
+
order: "asc" | "desc";
|
|
29647
|
+
}[] | undefined;
|
|
29648
|
+
filter?: {
|
|
29649
|
+
field: string;
|
|
29650
|
+
operator: string;
|
|
29651
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
29652
|
+
}[] | undefined;
|
|
29653
|
+
description?: string | undefined;
|
|
29915
29654
|
label?: string | undefined;
|
|
29655
|
+
name?: string | undefined;
|
|
29656
|
+
responsive?: {
|
|
29657
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
29658
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
29659
|
+
columns?: {
|
|
29660
|
+
xs?: number | undefined;
|
|
29661
|
+
sm?: number | undefined;
|
|
29662
|
+
md?: number | undefined;
|
|
29663
|
+
lg?: number | undefined;
|
|
29664
|
+
xl?: number | undefined;
|
|
29665
|
+
'2xl'?: number | undefined;
|
|
29666
|
+
} | undefined;
|
|
29667
|
+
order?: {
|
|
29668
|
+
xs?: number | undefined;
|
|
29669
|
+
sm?: number | undefined;
|
|
29670
|
+
md?: number | undefined;
|
|
29671
|
+
lg?: number | undefined;
|
|
29672
|
+
xl?: number | undefined;
|
|
29673
|
+
'2xl'?: number | undefined;
|
|
29674
|
+
} | undefined;
|
|
29675
|
+
} | undefined;
|
|
29676
|
+
navigation?: {
|
|
29677
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
29678
|
+
preventNavigation: boolean;
|
|
29679
|
+
openNewTab: boolean;
|
|
29680
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
29681
|
+
view?: string | undefined;
|
|
29682
|
+
width?: string | number | undefined;
|
|
29683
|
+
} | undefined;
|
|
29684
|
+
sharing?: {
|
|
29685
|
+
type: "personal" | "collaborative";
|
|
29686
|
+
lockedBy?: string | undefined;
|
|
29687
|
+
} | undefined;
|
|
29688
|
+
aria?: {
|
|
29689
|
+
ariaLabel?: string | undefined;
|
|
29690
|
+
ariaDescribedBy?: string | undefined;
|
|
29691
|
+
role?: string | undefined;
|
|
29692
|
+
} | undefined;
|
|
29916
29693
|
data?: {
|
|
29917
29694
|
provider: "object";
|
|
29918
29695
|
object: string;
|
|
@@ -29940,77 +29717,42 @@ declare const SysImportJob: Omit<{
|
|
|
29940
29717
|
schemaId: string;
|
|
29941
29718
|
schema?: Record<string, unknown> | undefined;
|
|
29942
29719
|
} | undefined;
|
|
29943
|
-
|
|
29944
|
-
|
|
29945
|
-
|
|
29946
|
-
|
|
29947
|
-
|
|
29948
|
-
|
|
29949
|
-
field: string;
|
|
29950
|
-
order: "asc" | "desc";
|
|
29951
|
-
}[] | undefined;
|
|
29952
|
-
searchableFields?: string[] | undefined;
|
|
29953
|
-
filterableFields?: string[] | undefined;
|
|
29954
|
-
userFilters?: {
|
|
29955
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
29956
|
-
fields?: {
|
|
29957
|
-
field: string;
|
|
29958
|
-
label?: string | undefined;
|
|
29959
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
29960
|
-
options?: {
|
|
29961
|
-
value: string | number | boolean;
|
|
29962
|
-
label: string;
|
|
29963
|
-
color?: string | undefined;
|
|
29964
|
-
}[] | undefined;
|
|
29965
|
-
showCount?: boolean | undefined;
|
|
29966
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
29967
|
-
}[] | undefined;
|
|
29968
|
-
tabs?: {
|
|
29969
|
-
name: string;
|
|
29970
|
-
pinned: boolean;
|
|
29971
|
-
isDefault: boolean;
|
|
29972
|
-
visible: boolean;
|
|
29973
|
-
label?: string | undefined;
|
|
29974
|
-
icon?: string | undefined;
|
|
29975
|
-
view?: string | undefined;
|
|
29976
|
-
filter?: {
|
|
29977
|
-
field: string;
|
|
29978
|
-
operator: string;
|
|
29979
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
29980
|
-
}[] | undefined;
|
|
29981
|
-
order?: number | undefined;
|
|
29982
|
-
}[] | undefined;
|
|
29983
|
-
showAllRecords?: boolean | undefined;
|
|
29720
|
+
tree?: {
|
|
29721
|
+
[x: string]: unknown;
|
|
29722
|
+
parentField?: string | undefined;
|
|
29723
|
+
labelField?: string | undefined;
|
|
29724
|
+
fields?: string[] | undefined;
|
|
29725
|
+
defaultExpandedDepth?: number | undefined;
|
|
29984
29726
|
} | undefined;
|
|
29727
|
+
inlineEdit?: boolean | undefined;
|
|
29728
|
+
virtualScroll?: boolean | undefined;
|
|
29985
29729
|
resizable?: boolean | undefined;
|
|
29986
|
-
striped?: boolean | undefined;
|
|
29987
|
-
bordered?: boolean | undefined;
|
|
29988
|
-
compactToolbar?: boolean | undefined;
|
|
29989
|
-
selection?: {
|
|
29990
|
-
type: "none" | "multiple" | "single";
|
|
29991
|
-
} | undefined;
|
|
29992
|
-
navigation?: {
|
|
29993
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
29994
|
-
preventNavigation: boolean;
|
|
29995
|
-
openNewTab: boolean;
|
|
29996
|
-
view?: string | undefined;
|
|
29997
|
-
width?: string | number | undefined;
|
|
29998
|
-
} | undefined;
|
|
29999
|
-
pagination?: {
|
|
30000
|
-
pageSize: number;
|
|
30001
|
-
pageSizeOptions?: number[] | undefined;
|
|
30002
|
-
} | undefined;
|
|
30003
29730
|
kanban?: {
|
|
30004
29731
|
groupByField: string;
|
|
30005
29732
|
columns: string[];
|
|
30006
29733
|
summarizeField?: string | undefined;
|
|
30007
29734
|
} | undefined;
|
|
29735
|
+
gallery?: {
|
|
29736
|
+
coverFit: "cover" | "contain";
|
|
29737
|
+
cardSize: "small" | "medium" | "large";
|
|
29738
|
+
coverField?: string | undefined;
|
|
29739
|
+
titleField?: string | undefined;
|
|
29740
|
+
visibleFields?: string[] | undefined;
|
|
29741
|
+
} | undefined;
|
|
30008
29742
|
calendar?: {
|
|
30009
29743
|
startDateField: string;
|
|
30010
29744
|
titleField: string;
|
|
30011
29745
|
endDateField?: string | undefined;
|
|
30012
29746
|
colorField?: string | undefined;
|
|
30013
29747
|
} | undefined;
|
|
29748
|
+
timeline?: {
|
|
29749
|
+
startDateField: string;
|
|
29750
|
+
titleField: string;
|
|
29751
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
29752
|
+
endDateField?: string | undefined;
|
|
29753
|
+
groupByField?: string | undefined;
|
|
29754
|
+
colorField?: string | undefined;
|
|
29755
|
+
} | undefined;
|
|
30014
29756
|
gantt?: {
|
|
30015
29757
|
[x: string]: unknown;
|
|
30016
29758
|
startDateField: string;
|
|
@@ -30042,40 +29784,40 @@ declare const SysImportJob: Omit<{
|
|
|
30042
29784
|
}[] | undefined;
|
|
30043
29785
|
autoZoomToFilter?: boolean | undefined;
|
|
30044
29786
|
} | undefined;
|
|
30045
|
-
gallery?: {
|
|
30046
|
-
coverFit: "cover" | "contain";
|
|
30047
|
-
cardSize: "small" | "medium" | "large";
|
|
30048
|
-
coverField?: string | undefined;
|
|
30049
|
-
titleField?: string | undefined;
|
|
30050
|
-
visibleFields?: string[] | undefined;
|
|
30051
|
-
} | undefined;
|
|
30052
|
-
timeline?: {
|
|
30053
|
-
startDateField: string;
|
|
30054
|
-
titleField: string;
|
|
30055
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
30056
|
-
endDateField?: string | undefined;
|
|
30057
|
-
groupByField?: string | undefined;
|
|
30058
|
-
colorField?: string | undefined;
|
|
30059
|
-
} | undefined;
|
|
30060
29787
|
chart?: {
|
|
30061
29788
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
30062
29789
|
dataset: string;
|
|
30063
29790
|
values: string[];
|
|
30064
29791
|
dimensions?: string[] | undefined;
|
|
30065
29792
|
} | undefined;
|
|
30066
|
-
|
|
30067
|
-
|
|
30068
|
-
|
|
30069
|
-
|
|
30070
|
-
|
|
30071
|
-
|
|
29793
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
29794
|
+
tabs?: {
|
|
29795
|
+
name: string;
|
|
29796
|
+
pinned: boolean;
|
|
29797
|
+
isDefault: boolean;
|
|
29798
|
+
visible: boolean;
|
|
29799
|
+
label?: string | undefined;
|
|
29800
|
+
icon?: string | undefined;
|
|
29801
|
+
view?: string | undefined;
|
|
29802
|
+
filter?: {
|
|
29803
|
+
field: string;
|
|
29804
|
+
operator: string;
|
|
29805
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
29806
|
+
}[] | undefined;
|
|
29807
|
+
order?: number | undefined;
|
|
29808
|
+
}[] | undefined;
|
|
29809
|
+
searchableFields?: string[] | undefined;
|
|
29810
|
+
filterableFields?: string[] | undefined;
|
|
29811
|
+
striped?: boolean | undefined;
|
|
29812
|
+
bordered?: boolean | undefined;
|
|
29813
|
+
compactToolbar?: boolean | undefined;
|
|
29814
|
+
selection?: {
|
|
29815
|
+
type: "none" | "multiple" | "single";
|
|
30072
29816
|
} | undefined;
|
|
30073
|
-
|
|
30074
|
-
|
|
30075
|
-
|
|
30076
|
-
lockedBy?: string | undefined;
|
|
29817
|
+
pagination?: {
|
|
29818
|
+
pageSize: number;
|
|
29819
|
+
pageSizeOptions?: number[] | undefined;
|
|
30077
29820
|
} | undefined;
|
|
30078
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
30079
29821
|
grouping?: {
|
|
30080
29822
|
fields: {
|
|
30081
29823
|
field: string;
|
|
@@ -30092,7 +29834,6 @@ declare const SysImportJob: Omit<{
|
|
|
30092
29834
|
rowActions?: string[] | undefined;
|
|
30093
29835
|
bulkActions?: string[] | undefined;
|
|
30094
29836
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
30095
|
-
virtualScroll?: boolean | undefined;
|
|
30096
29837
|
conditionalFormatting?: {
|
|
30097
29838
|
condition: {
|
|
30098
29839
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -30113,7 +29854,6 @@ declare const SysImportJob: Omit<{
|
|
|
30113
29854
|
};
|
|
30114
29855
|
style: Record<string, string>;
|
|
30115
29856
|
}[] | undefined;
|
|
30116
|
-
inlineEdit?: boolean | undefined;
|
|
30117
29857
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
30118
29858
|
userActions?: {
|
|
30119
29859
|
sort: boolean;
|
|
@@ -30126,23 +29866,8 @@ declare const SysImportJob: Omit<{
|
|
|
30126
29866
|
} | undefined;
|
|
30127
29867
|
appearance?: {
|
|
30128
29868
|
showDescription: boolean;
|
|
30129
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
29869
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
30130
29870
|
} | undefined;
|
|
30131
|
-
tabs?: {
|
|
30132
|
-
name: string;
|
|
30133
|
-
pinned: boolean;
|
|
30134
|
-
isDefault: boolean;
|
|
30135
|
-
visible: boolean;
|
|
30136
|
-
label?: string | undefined;
|
|
30137
|
-
icon?: string | undefined;
|
|
30138
|
-
view?: string | undefined;
|
|
30139
|
-
filter?: {
|
|
30140
|
-
field: string;
|
|
30141
|
-
operator: string;
|
|
30142
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
30143
|
-
}[] | undefined;
|
|
30144
|
-
order?: number | undefined;
|
|
30145
|
-
}[] | undefined;
|
|
30146
29871
|
addRecord?: {
|
|
30147
29872
|
enabled: boolean;
|
|
30148
29873
|
position: "top" | "bottom" | "both";
|
|
@@ -30156,31 +29881,6 @@ declare const SysImportJob: Omit<{
|
|
|
30156
29881
|
message?: string | undefined;
|
|
30157
29882
|
icon?: string | undefined;
|
|
30158
29883
|
} | undefined;
|
|
30159
|
-
aria?: {
|
|
30160
|
-
ariaLabel?: string | undefined;
|
|
30161
|
-
ariaDescribedBy?: string | undefined;
|
|
30162
|
-
role?: string | undefined;
|
|
30163
|
-
} | undefined;
|
|
30164
|
-
responsive?: {
|
|
30165
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
30166
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
30167
|
-
columns?: {
|
|
30168
|
-
xs?: number | undefined;
|
|
30169
|
-
sm?: number | undefined;
|
|
30170
|
-
md?: number | undefined;
|
|
30171
|
-
lg?: number | undefined;
|
|
30172
|
-
xl?: number | undefined;
|
|
30173
|
-
'2xl'?: number | undefined;
|
|
30174
|
-
} | undefined;
|
|
30175
|
-
order?: {
|
|
30176
|
-
xs?: number | undefined;
|
|
30177
|
-
sm?: number | undefined;
|
|
30178
|
-
md?: number | undefined;
|
|
30179
|
-
lg?: number | undefined;
|
|
30180
|
-
xl?: number | undefined;
|
|
30181
|
-
'2xl'?: number | undefined;
|
|
30182
|
-
} | undefined;
|
|
30183
|
-
} | undefined;
|
|
30184
29884
|
performance?: {
|
|
30185
29885
|
lazyLoad?: boolean | undefined;
|
|
30186
29886
|
virtualScroll?: {
|
|
@@ -30383,7 +30083,7 @@ declare const SysImportJob: Omit<{
|
|
|
30383
30083
|
readonly inlineTitle?: string | undefined;
|
|
30384
30084
|
readonly inlineColumns?: any[] | undefined;
|
|
30385
30085
|
readonly inlineAmountField?: string | undefined;
|
|
30386
|
-
readonly relatedList?: boolean | undefined;
|
|
30086
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
30387
30087
|
readonly relatedListTitle?: string | undefined;
|
|
30388
30088
|
readonly relatedListColumns?: any[] | undefined;
|
|
30389
30089
|
readonly displayField?: string | undefined;
|
|
@@ -30557,7 +30257,7 @@ declare const SysImportJob: Omit<{
|
|
|
30557
30257
|
readonly inlineTitle?: string | undefined;
|
|
30558
30258
|
readonly inlineColumns?: any[] | undefined;
|
|
30559
30259
|
readonly inlineAmountField?: string | undefined;
|
|
30560
|
-
readonly relatedList?: boolean | undefined;
|
|
30260
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
30561
30261
|
readonly relatedListTitle?: string | undefined;
|
|
30562
30262
|
readonly relatedListColumns?: any[] | undefined;
|
|
30563
30263
|
readonly displayField?: string | undefined;
|
|
@@ -30731,7 +30431,7 @@ declare const SysImportJob: Omit<{
|
|
|
30731
30431
|
readonly inlineTitle?: string | undefined;
|
|
30732
30432
|
readonly inlineColumns?: any[] | undefined;
|
|
30733
30433
|
readonly inlineAmountField?: string | undefined;
|
|
30734
|
-
readonly relatedList?: boolean | undefined;
|
|
30434
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
30735
30435
|
readonly relatedListTitle?: string | undefined;
|
|
30736
30436
|
readonly relatedListColumns?: any[] | undefined;
|
|
30737
30437
|
readonly displayField?: string | undefined;
|
|
@@ -30905,7 +30605,7 @@ declare const SysImportJob: Omit<{
|
|
|
30905
30605
|
readonly inlineTitle?: string | undefined;
|
|
30906
30606
|
readonly inlineColumns?: any[] | undefined;
|
|
30907
30607
|
readonly inlineAmountField?: string | undefined;
|
|
30908
|
-
readonly relatedList?: boolean | undefined;
|
|
30608
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
30909
30609
|
readonly relatedListTitle?: string | undefined;
|
|
30910
30610
|
readonly relatedListColumns?: any[] | undefined;
|
|
30911
30611
|
readonly displayField?: string | undefined;
|
|
@@ -31079,7 +30779,7 @@ declare const SysImportJob: Omit<{
|
|
|
31079
30779
|
readonly inlineTitle?: string | undefined;
|
|
31080
30780
|
readonly inlineColumns?: any[] | undefined;
|
|
31081
30781
|
readonly inlineAmountField?: string | undefined;
|
|
31082
|
-
readonly relatedList?: boolean | undefined;
|
|
30782
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
31083
30783
|
readonly relatedListTitle?: string | undefined;
|
|
31084
30784
|
readonly relatedListColumns?: any[] | undefined;
|
|
31085
30785
|
readonly displayField?: string | undefined;
|
|
@@ -31253,7 +30953,7 @@ declare const SysImportJob: Omit<{
|
|
|
31253
30953
|
readonly inlineTitle?: string | undefined;
|
|
31254
30954
|
readonly inlineColumns?: any[] | undefined;
|
|
31255
30955
|
readonly inlineAmountField?: string | undefined;
|
|
31256
|
-
readonly relatedList?: boolean | undefined;
|
|
30956
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
31257
30957
|
readonly relatedListTitle?: string | undefined;
|
|
31258
30958
|
readonly relatedListColumns?: any[] | undefined;
|
|
31259
30959
|
readonly displayField?: string | undefined;
|
|
@@ -31427,7 +31127,7 @@ declare const SysImportJob: Omit<{
|
|
|
31427
31127
|
readonly inlineTitle?: string | undefined;
|
|
31428
31128
|
readonly inlineColumns?: any[] | undefined;
|
|
31429
31129
|
readonly inlineAmountField?: string | undefined;
|
|
31430
|
-
readonly relatedList?: boolean | undefined;
|
|
31130
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
31431
31131
|
readonly relatedListTitle?: string | undefined;
|
|
31432
31132
|
readonly relatedListColumns?: any[] | undefined;
|
|
31433
31133
|
readonly displayField?: string | undefined;
|
|
@@ -31601,7 +31301,7 @@ declare const SysImportJob: Omit<{
|
|
|
31601
31301
|
readonly inlineTitle?: string | undefined;
|
|
31602
31302
|
readonly inlineColumns?: any[] | undefined;
|
|
31603
31303
|
readonly inlineAmountField?: string | undefined;
|
|
31604
|
-
readonly relatedList?: boolean | undefined;
|
|
31304
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
31605
31305
|
readonly relatedListTitle?: string | undefined;
|
|
31606
31306
|
readonly relatedListColumns?: any[] | undefined;
|
|
31607
31307
|
readonly displayField?: string | undefined;
|
|
@@ -31775,7 +31475,7 @@ declare const SysImportJob: Omit<{
|
|
|
31775
31475
|
readonly inlineTitle?: string | undefined;
|
|
31776
31476
|
readonly inlineColumns?: any[] | undefined;
|
|
31777
31477
|
readonly inlineAmountField?: string | undefined;
|
|
31778
|
-
readonly relatedList?: boolean | undefined;
|
|
31478
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
31779
31479
|
readonly relatedListTitle?: string | undefined;
|
|
31780
31480
|
readonly relatedListColumns?: any[] | undefined;
|
|
31781
31481
|
readonly displayField?: string | undefined;
|
|
@@ -31949,7 +31649,7 @@ declare const SysImportJob: Omit<{
|
|
|
31949
31649
|
readonly inlineTitle?: string | undefined;
|
|
31950
31650
|
readonly inlineColumns?: any[] | undefined;
|
|
31951
31651
|
readonly inlineAmountField?: string | undefined;
|
|
31952
|
-
readonly relatedList?: boolean | undefined;
|
|
31652
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
31953
31653
|
readonly relatedListTitle?: string | undefined;
|
|
31954
31654
|
readonly relatedListColumns?: any[] | undefined;
|
|
31955
31655
|
readonly displayField?: string | undefined;
|
|
@@ -32123,7 +31823,7 @@ declare const SysImportJob: Omit<{
|
|
|
32123
31823
|
readonly inlineTitle?: string | undefined;
|
|
32124
31824
|
readonly inlineColumns?: any[] | undefined;
|
|
32125
31825
|
readonly inlineAmountField?: string | undefined;
|
|
32126
|
-
readonly relatedList?: boolean | undefined;
|
|
31826
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
32127
31827
|
readonly relatedListTitle?: string | undefined;
|
|
32128
31828
|
readonly relatedListColumns?: any[] | undefined;
|
|
32129
31829
|
readonly displayField?: string | undefined;
|
|
@@ -32297,7 +31997,7 @@ declare const SysImportJob: Omit<{
|
|
|
32297
31997
|
readonly inlineTitle?: string | undefined;
|
|
32298
31998
|
readonly inlineColumns?: any[] | undefined;
|
|
32299
31999
|
readonly inlineAmountField?: string | undefined;
|
|
32300
|
-
readonly relatedList?: boolean | undefined;
|
|
32000
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
32301
32001
|
readonly relatedListTitle?: string | undefined;
|
|
32302
32002
|
readonly relatedListColumns?: any[] | undefined;
|
|
32303
32003
|
readonly displayField?: string | undefined;
|
|
@@ -32471,7 +32171,7 @@ declare const SysImportJob: Omit<{
|
|
|
32471
32171
|
readonly inlineTitle?: string | undefined;
|
|
32472
32172
|
readonly inlineColumns?: any[] | undefined;
|
|
32473
32173
|
readonly inlineAmountField?: string | undefined;
|
|
32474
|
-
readonly relatedList?: boolean | undefined;
|
|
32174
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
32475
32175
|
readonly relatedListTitle?: string | undefined;
|
|
32476
32176
|
readonly relatedListColumns?: any[] | undefined;
|
|
32477
32177
|
readonly displayField?: string | undefined;
|
|
@@ -32645,7 +32345,7 @@ declare const SysImportJob: Omit<{
|
|
|
32645
32345
|
readonly inlineTitle?: string | undefined;
|
|
32646
32346
|
readonly inlineColumns?: any[] | undefined;
|
|
32647
32347
|
readonly inlineAmountField?: string | undefined;
|
|
32648
|
-
readonly relatedList?: boolean | undefined;
|
|
32348
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
32649
32349
|
readonly relatedListTitle?: string | undefined;
|
|
32650
32350
|
readonly relatedListColumns?: any[] | undefined;
|
|
32651
32351
|
readonly displayField?: string | undefined;
|
|
@@ -32819,7 +32519,7 @@ declare const SysImportJob: Omit<{
|
|
|
32819
32519
|
readonly inlineTitle?: string | undefined;
|
|
32820
32520
|
readonly inlineColumns?: any[] | undefined;
|
|
32821
32521
|
readonly inlineAmountField?: string | undefined;
|
|
32822
|
-
readonly relatedList?: boolean | undefined;
|
|
32522
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
32823
32523
|
readonly relatedListTitle?: string | undefined;
|
|
32824
32524
|
readonly relatedListColumns?: any[] | undefined;
|
|
32825
32525
|
readonly displayField?: string | undefined;
|
|
@@ -32993,7 +32693,7 @@ declare const SysImportJob: Omit<{
|
|
|
32993
32693
|
readonly inlineTitle?: string | undefined;
|
|
32994
32694
|
readonly inlineColumns?: any[] | undefined;
|
|
32995
32695
|
readonly inlineAmountField?: string | undefined;
|
|
32996
|
-
readonly relatedList?: boolean | undefined;
|
|
32696
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
32997
32697
|
readonly relatedListTitle?: string | undefined;
|
|
32998
32698
|
readonly relatedListColumns?: any[] | undefined;
|
|
32999
32699
|
readonly displayField?: string | undefined;
|
|
@@ -33167,7 +32867,7 @@ declare const SysImportJob: Omit<{
|
|
|
33167
32867
|
readonly inlineTitle?: string | undefined;
|
|
33168
32868
|
readonly inlineColumns?: any[] | undefined;
|
|
33169
32869
|
readonly inlineAmountField?: string | undefined;
|
|
33170
|
-
readonly relatedList?: boolean | undefined;
|
|
32870
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
33171
32871
|
readonly relatedListTitle?: string | undefined;
|
|
33172
32872
|
readonly relatedListColumns?: any[] | undefined;
|
|
33173
32873
|
readonly displayField?: string | undefined;
|
|
@@ -33341,7 +33041,7 @@ declare const SysImportJob: Omit<{
|
|
|
33341
33041
|
readonly inlineTitle?: string | undefined;
|
|
33342
33042
|
readonly inlineColumns?: any[] | undefined;
|
|
33343
33043
|
readonly inlineAmountField?: string | undefined;
|
|
33344
|
-
readonly relatedList?: boolean | undefined;
|
|
33044
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
33345
33045
|
readonly relatedListTitle?: string | undefined;
|
|
33346
33046
|
readonly relatedListColumns?: any[] | undefined;
|
|
33347
33047
|
readonly displayField?: string | undefined;
|
|
@@ -33515,7 +33215,7 @@ declare const SysImportJob: Omit<{
|
|
|
33515
33215
|
readonly inlineTitle?: string | undefined;
|
|
33516
33216
|
readonly inlineColumns?: any[] | undefined;
|
|
33517
33217
|
readonly inlineAmountField?: string | undefined;
|
|
33518
|
-
readonly relatedList?: boolean | undefined;
|
|
33218
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
33519
33219
|
readonly relatedListTitle?: string | undefined;
|
|
33520
33220
|
readonly relatedListColumns?: any[] | undefined;
|
|
33521
33221
|
readonly displayField?: string | undefined;
|
|
@@ -33689,7 +33389,7 @@ declare const SysImportJob: Omit<{
|
|
|
33689
33389
|
readonly inlineTitle?: string | undefined;
|
|
33690
33390
|
readonly inlineColumns?: any[] | undefined;
|
|
33691
33391
|
readonly inlineAmountField?: string | undefined;
|
|
33692
|
-
readonly relatedList?: boolean | undefined;
|
|
33392
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
33693
33393
|
readonly relatedListTitle?: string | undefined;
|
|
33694
33394
|
readonly relatedListColumns?: any[] | undefined;
|
|
33695
33395
|
readonly displayField?: string | undefined;
|