@objectstack/service-feed 4.0.5 → 4.1.1
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/index.d.cts +824 -21
- package/dist/index.d.ts +824 -21
- package/package.json +5 -5
package/dist/index.d.cts
CHANGED
|
@@ -344,6 +344,7 @@ declare const FeedItem: Omit<{
|
|
|
344
344
|
generatedBy?: string | undefined;
|
|
345
345
|
} | undefined;
|
|
346
346
|
} | undefined;
|
|
347
|
+
system?: boolean | undefined;
|
|
347
348
|
inlineHelpText?: string | undefined;
|
|
348
349
|
trackFeedHistory?: boolean | undefined;
|
|
349
350
|
caseSensitive?: boolean | undefined;
|
|
@@ -354,7 +355,14 @@ declare const FeedItem: Omit<{
|
|
|
354
355
|
description?: string | undefined;
|
|
355
356
|
icon?: string | undefined;
|
|
356
357
|
tags?: string[] | undefined;
|
|
357
|
-
managedBy?: "system" | "
|
|
358
|
+
managedBy?: "system" | "config" | "platform" | "append-only" | "better-auth" | undefined;
|
|
359
|
+
userActions?: {
|
|
360
|
+
create?: boolean | undefined;
|
|
361
|
+
import?: boolean | undefined;
|
|
362
|
+
edit?: boolean | undefined;
|
|
363
|
+
delete?: boolean | undefined;
|
|
364
|
+
exportCsv?: boolean | undefined;
|
|
365
|
+
} | undefined;
|
|
358
366
|
systemFields?: false | {
|
|
359
367
|
tenant?: boolean | undefined;
|
|
360
368
|
owner?: boolean | undefined;
|
|
@@ -474,6 +482,241 @@ declare const FeedItem: Omit<{
|
|
|
474
482
|
} | undefined;
|
|
475
483
|
} | undefined;
|
|
476
484
|
compactLayout?: string[] | undefined;
|
|
485
|
+
listViews?: Record<string, {
|
|
486
|
+
type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "grid";
|
|
487
|
+
columns: string[] | {
|
|
488
|
+
field: string;
|
|
489
|
+
label?: string | undefined;
|
|
490
|
+
width?: number | undefined;
|
|
491
|
+
align?: "left" | "center" | "right" | undefined;
|
|
492
|
+
hidden?: boolean | undefined;
|
|
493
|
+
sortable?: boolean | undefined;
|
|
494
|
+
resizable?: boolean | undefined;
|
|
495
|
+
wrap?: boolean | undefined;
|
|
496
|
+
type?: string | undefined;
|
|
497
|
+
pinned?: "left" | "right" | undefined;
|
|
498
|
+
summary?: "count" | "min" | "max" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
499
|
+
link?: boolean | undefined;
|
|
500
|
+
action?: string | undefined;
|
|
501
|
+
}[];
|
|
502
|
+
name?: string | undefined;
|
|
503
|
+
label?: string | undefined;
|
|
504
|
+
data?: {
|
|
505
|
+
provider: "object";
|
|
506
|
+
object: string;
|
|
507
|
+
} | {
|
|
508
|
+
provider: "api";
|
|
509
|
+
read?: {
|
|
510
|
+
url: string;
|
|
511
|
+
method: "GET" | "POST" | "PATCH" | "PUT" | "DELETE";
|
|
512
|
+
headers?: Record<string, string> | undefined;
|
|
513
|
+
params?: Record<string, unknown> | undefined;
|
|
514
|
+
body?: unknown;
|
|
515
|
+
} | undefined;
|
|
516
|
+
write?: {
|
|
517
|
+
url: string;
|
|
518
|
+
method: "GET" | "POST" | "PATCH" | "PUT" | "DELETE";
|
|
519
|
+
headers?: Record<string, string> | undefined;
|
|
520
|
+
params?: Record<string, unknown> | undefined;
|
|
521
|
+
body?: unknown;
|
|
522
|
+
} | undefined;
|
|
523
|
+
} | {
|
|
524
|
+
provider: "value";
|
|
525
|
+
items: unknown[];
|
|
526
|
+
} | undefined;
|
|
527
|
+
filter?: {
|
|
528
|
+
field: string;
|
|
529
|
+
operator: string;
|
|
530
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
531
|
+
}[] | undefined;
|
|
532
|
+
sort?: string | {
|
|
533
|
+
field: string;
|
|
534
|
+
order: "asc" | "desc";
|
|
535
|
+
}[] | undefined;
|
|
536
|
+
searchableFields?: string[] | undefined;
|
|
537
|
+
filterableFields?: string[] | undefined;
|
|
538
|
+
resizable?: boolean | undefined;
|
|
539
|
+
striped?: boolean | undefined;
|
|
540
|
+
bordered?: boolean | undefined;
|
|
541
|
+
compactToolbar?: boolean | undefined;
|
|
542
|
+
selection?: {
|
|
543
|
+
type: "multiple" | "single" | "none";
|
|
544
|
+
} | undefined;
|
|
545
|
+
navigation?: {
|
|
546
|
+
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
547
|
+
preventNavigation: boolean;
|
|
548
|
+
openNewTab: boolean;
|
|
549
|
+
view?: string | undefined;
|
|
550
|
+
width?: string | number | undefined;
|
|
551
|
+
} | undefined;
|
|
552
|
+
pagination?: {
|
|
553
|
+
pageSize: number;
|
|
554
|
+
pageSizeOptions?: number[] | undefined;
|
|
555
|
+
} | undefined;
|
|
556
|
+
kanban?: {
|
|
557
|
+
groupByField: string;
|
|
558
|
+
columns: string[];
|
|
559
|
+
summarizeField?: string | undefined;
|
|
560
|
+
} | undefined;
|
|
561
|
+
calendar?: {
|
|
562
|
+
startDateField: string;
|
|
563
|
+
titleField: string;
|
|
564
|
+
endDateField?: string | undefined;
|
|
565
|
+
colorField?: string | undefined;
|
|
566
|
+
} | undefined;
|
|
567
|
+
gantt?: {
|
|
568
|
+
startDateField: string;
|
|
569
|
+
endDateField: string;
|
|
570
|
+
titleField: string;
|
|
571
|
+
progressField?: string | undefined;
|
|
572
|
+
dependenciesField?: string | undefined;
|
|
573
|
+
} | undefined;
|
|
574
|
+
gallery?: {
|
|
575
|
+
coverFit: "cover" | "contain";
|
|
576
|
+
cardSize: "small" | "medium" | "large";
|
|
577
|
+
coverField?: string | undefined;
|
|
578
|
+
titleField?: string | undefined;
|
|
579
|
+
visibleFields?: string[] | undefined;
|
|
580
|
+
} | undefined;
|
|
581
|
+
timeline?: {
|
|
582
|
+
startDateField: string;
|
|
583
|
+
titleField: string;
|
|
584
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
585
|
+
endDateField?: string | undefined;
|
|
586
|
+
groupByField?: string | undefined;
|
|
587
|
+
colorField?: string | undefined;
|
|
588
|
+
} | undefined;
|
|
589
|
+
chart?: {
|
|
590
|
+
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
591
|
+
xAxisField: string;
|
|
592
|
+
yAxisFields: string[];
|
|
593
|
+
aggregation?: "count" | "min" | "max" | "sum" | "avg" | undefined;
|
|
594
|
+
groupByField?: string | undefined;
|
|
595
|
+
} | undefined;
|
|
596
|
+
description?: string | undefined;
|
|
597
|
+
sharing?: {
|
|
598
|
+
type: "personal" | "collaborative";
|
|
599
|
+
lockedBy?: string | undefined;
|
|
600
|
+
} | undefined;
|
|
601
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
602
|
+
grouping?: {
|
|
603
|
+
fields: {
|
|
604
|
+
field: string;
|
|
605
|
+
order: "asc" | "desc";
|
|
606
|
+
collapsed: boolean;
|
|
607
|
+
}[];
|
|
608
|
+
} | undefined;
|
|
609
|
+
rowColor?: {
|
|
610
|
+
field: string;
|
|
611
|
+
colors?: Record<string, string> | undefined;
|
|
612
|
+
} | undefined;
|
|
613
|
+
hiddenFields?: string[] | undefined;
|
|
614
|
+
fieldOrder?: string[] | undefined;
|
|
615
|
+
rowActions?: string[] | undefined;
|
|
616
|
+
bulkActions?: string[] | undefined;
|
|
617
|
+
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
618
|
+
virtualScroll?: boolean | undefined;
|
|
619
|
+
conditionalFormatting?: {
|
|
620
|
+
condition: {
|
|
621
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
622
|
+
source?: string | undefined;
|
|
623
|
+
ast?: unknown;
|
|
624
|
+
meta?: {
|
|
625
|
+
rationale?: string | undefined;
|
|
626
|
+
generatedBy?: string | undefined;
|
|
627
|
+
} | undefined;
|
|
628
|
+
} | {
|
|
629
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
630
|
+
source?: string | undefined;
|
|
631
|
+
ast?: unknown;
|
|
632
|
+
meta?: {
|
|
633
|
+
rationale?: string | undefined;
|
|
634
|
+
generatedBy?: string | undefined;
|
|
635
|
+
} | undefined;
|
|
636
|
+
};
|
|
637
|
+
style: Record<string, string>;
|
|
638
|
+
}[] | undefined;
|
|
639
|
+
inlineEdit?: boolean | undefined;
|
|
640
|
+
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
641
|
+
userActions?: {
|
|
642
|
+
sort: boolean;
|
|
643
|
+
search: boolean;
|
|
644
|
+
filter: boolean;
|
|
645
|
+
rowHeight: boolean;
|
|
646
|
+
addRecordForm: boolean;
|
|
647
|
+
buttons?: string[] | undefined;
|
|
648
|
+
} | undefined;
|
|
649
|
+
appearance?: {
|
|
650
|
+
showDescription: boolean;
|
|
651
|
+
allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "grid")[] | undefined;
|
|
652
|
+
} | undefined;
|
|
653
|
+
tabs?: {
|
|
654
|
+
name: string;
|
|
655
|
+
pinned: boolean;
|
|
656
|
+
isDefault: boolean;
|
|
657
|
+
visible: boolean;
|
|
658
|
+
label?: string | undefined;
|
|
659
|
+
icon?: string | undefined;
|
|
660
|
+
view?: string | undefined;
|
|
661
|
+
filter?: {
|
|
662
|
+
field: string;
|
|
663
|
+
operator: string;
|
|
664
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
665
|
+
}[] | undefined;
|
|
666
|
+
order?: number | undefined;
|
|
667
|
+
}[] | undefined;
|
|
668
|
+
addRecord?: {
|
|
669
|
+
enabled: boolean;
|
|
670
|
+
position: "top" | "bottom" | "both";
|
|
671
|
+
mode: "modal" | "form" | "inline";
|
|
672
|
+
formView?: string | undefined;
|
|
673
|
+
} | undefined;
|
|
674
|
+
showRecordCount?: boolean | undefined;
|
|
675
|
+
allowPrinting?: boolean | undefined;
|
|
676
|
+
emptyState?: {
|
|
677
|
+
title?: string | undefined;
|
|
678
|
+
message?: string | undefined;
|
|
679
|
+
icon?: string | undefined;
|
|
680
|
+
} | undefined;
|
|
681
|
+
aria?: {
|
|
682
|
+
ariaLabel?: string | undefined;
|
|
683
|
+
ariaDescribedBy?: string | undefined;
|
|
684
|
+
role?: string | undefined;
|
|
685
|
+
} | undefined;
|
|
686
|
+
responsive?: {
|
|
687
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
688
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
689
|
+
columns?: {
|
|
690
|
+
xs?: number | undefined;
|
|
691
|
+
sm?: number | undefined;
|
|
692
|
+
md?: number | undefined;
|
|
693
|
+
lg?: number | undefined;
|
|
694
|
+
xl?: number | undefined;
|
|
695
|
+
'2xl'?: number | undefined;
|
|
696
|
+
} | undefined;
|
|
697
|
+
order?: {
|
|
698
|
+
xs?: number | undefined;
|
|
699
|
+
sm?: number | undefined;
|
|
700
|
+
md?: number | undefined;
|
|
701
|
+
lg?: number | undefined;
|
|
702
|
+
xl?: number | undefined;
|
|
703
|
+
'2xl'?: number | undefined;
|
|
704
|
+
} | undefined;
|
|
705
|
+
} | undefined;
|
|
706
|
+
performance?: {
|
|
707
|
+
lazyLoad?: boolean | undefined;
|
|
708
|
+
virtualScroll?: {
|
|
709
|
+
enabled: boolean;
|
|
710
|
+
itemHeight?: number | undefined;
|
|
711
|
+
overscan?: number | undefined;
|
|
712
|
+
} | undefined;
|
|
713
|
+
cacheStrategy?: "none" | "cache-first" | "network-first" | "stale-while-revalidate" | undefined;
|
|
714
|
+
prefetch?: boolean | undefined;
|
|
715
|
+
pageSize?: number | undefined;
|
|
716
|
+
debounceMs?: number | undefined;
|
|
717
|
+
} | undefined;
|
|
718
|
+
}> | undefined;
|
|
719
|
+
defaultDetailForm?: string | undefined;
|
|
477
720
|
search?: {
|
|
478
721
|
fields: string[];
|
|
479
722
|
displayFields?: string[] | undefined;
|
|
@@ -489,15 +732,15 @@ declare const FeedItem: Omit<{
|
|
|
489
732
|
trash: boolean;
|
|
490
733
|
mru: boolean;
|
|
491
734
|
clone: boolean;
|
|
492
|
-
apiMethods?: ("search" | "
|
|
735
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
493
736
|
} | undefined;
|
|
494
737
|
recordTypes?: string[] | undefined;
|
|
495
|
-
sharingModel?: "private" | "
|
|
738
|
+
sharingModel?: "private" | "read" | "full" | "read_write" | undefined;
|
|
496
739
|
keyPrefix?: string | undefined;
|
|
497
740
|
actions?: {
|
|
498
741
|
name: string;
|
|
499
742
|
label: string;
|
|
500
|
-
type: "url" | "flow" | "api" | "script" | "modal";
|
|
743
|
+
type: "url" | "flow" | "api" | "script" | "modal" | "form";
|
|
501
744
|
refreshAfter: boolean;
|
|
502
745
|
objectName?: string | undefined;
|
|
503
746
|
icon?: string | undefined;
|
|
@@ -516,14 +759,20 @@ declare const FeedItem: Omit<{
|
|
|
516
759
|
} | undefined;
|
|
517
760
|
execute?: string | undefined;
|
|
518
761
|
params?: {
|
|
519
|
-
name: string;
|
|
520
|
-
label: string;
|
|
521
|
-
type: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector";
|
|
522
762
|
required: boolean;
|
|
763
|
+
name?: string | undefined;
|
|
764
|
+
field?: string | undefined;
|
|
765
|
+
objectOverride?: string | undefined;
|
|
766
|
+
label?: string | undefined;
|
|
767
|
+
type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
523
768
|
options?: {
|
|
524
769
|
label: string;
|
|
525
770
|
value: string;
|
|
526
771
|
}[] | undefined;
|
|
772
|
+
placeholder?: string | undefined;
|
|
773
|
+
helpText?: string | undefined;
|
|
774
|
+
defaultValue?: unknown;
|
|
775
|
+
defaultFromRow?: boolean | undefined;
|
|
527
776
|
}[] | undefined;
|
|
528
777
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
529
778
|
confirmText?: string | undefined;
|
|
@@ -548,6 +797,14 @@ declare const FeedItem: Omit<{
|
|
|
548
797
|
} | undefined;
|
|
549
798
|
shortcut?: string | undefined;
|
|
550
799
|
bulkEnabled?: boolean | undefined;
|
|
800
|
+
recordIdParam?: string | undefined;
|
|
801
|
+
recordIdField?: string | undefined;
|
|
802
|
+
bodyShape?: "flat" | {
|
|
803
|
+
wrap: string;
|
|
804
|
+
} | undefined;
|
|
805
|
+
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
806
|
+
bodyExtra?: Record<string, unknown> | undefined;
|
|
807
|
+
mode?: "custom" | "delete" | "create" | "edit" | undefined;
|
|
551
808
|
timeout?: number | undefined;
|
|
552
809
|
aria?: {
|
|
553
810
|
ariaLabel?: string | undefined;
|
|
@@ -582,6 +839,7 @@ declare const FeedItem: Omit<{
|
|
|
582
839
|
readonly dependencies?: string[] | undefined;
|
|
583
840
|
readonly theme?: string | undefined;
|
|
584
841
|
readonly externalId?: boolean | undefined;
|
|
842
|
+
readonly system?: boolean | undefined;
|
|
585
843
|
readonly min?: number | undefined;
|
|
586
844
|
readonly max?: number | undefined;
|
|
587
845
|
readonly group?: string | undefined;
|
|
@@ -756,6 +1014,7 @@ declare const FeedItem: Omit<{
|
|
|
756
1014
|
readonly dependencies?: string[] | undefined;
|
|
757
1015
|
readonly theme?: string | undefined;
|
|
758
1016
|
readonly externalId?: boolean | undefined;
|
|
1017
|
+
readonly system?: boolean | undefined;
|
|
759
1018
|
readonly min?: number | undefined;
|
|
760
1019
|
readonly max?: number | undefined;
|
|
761
1020
|
readonly group?: string | undefined;
|
|
@@ -930,6 +1189,7 @@ declare const FeedItem: Omit<{
|
|
|
930
1189
|
readonly dependencies?: string[] | undefined;
|
|
931
1190
|
readonly theme?: string | undefined;
|
|
932
1191
|
readonly externalId?: boolean | undefined;
|
|
1192
|
+
readonly system?: boolean | undefined;
|
|
933
1193
|
readonly min?: number | undefined;
|
|
934
1194
|
readonly max?: number | undefined;
|
|
935
1195
|
readonly group?: string | undefined;
|
|
@@ -1104,6 +1364,7 @@ declare const FeedItem: Omit<{
|
|
|
1104
1364
|
readonly dependencies?: string[] | undefined;
|
|
1105
1365
|
readonly theme?: string | undefined;
|
|
1106
1366
|
readonly externalId?: boolean | undefined;
|
|
1367
|
+
readonly system?: boolean | undefined;
|
|
1107
1368
|
readonly min?: number | undefined;
|
|
1108
1369
|
readonly max?: number | undefined;
|
|
1109
1370
|
readonly group?: string | undefined;
|
|
@@ -1278,6 +1539,7 @@ declare const FeedItem: Omit<{
|
|
|
1278
1539
|
readonly dependencies?: string[] | undefined;
|
|
1279
1540
|
readonly theme?: string | undefined;
|
|
1280
1541
|
readonly externalId?: boolean | undefined;
|
|
1542
|
+
readonly system?: boolean | undefined;
|
|
1281
1543
|
readonly min?: number | undefined;
|
|
1282
1544
|
readonly max?: number | undefined;
|
|
1283
1545
|
readonly group?: string | undefined;
|
|
@@ -1452,6 +1714,7 @@ declare const FeedItem: Omit<{
|
|
|
1452
1714
|
readonly dependencies?: string[] | undefined;
|
|
1453
1715
|
readonly theme?: string | undefined;
|
|
1454
1716
|
readonly externalId?: boolean | undefined;
|
|
1717
|
+
readonly system?: boolean | undefined;
|
|
1455
1718
|
readonly min?: number | undefined;
|
|
1456
1719
|
readonly max?: number | undefined;
|
|
1457
1720
|
readonly group?: string | undefined;
|
|
@@ -1626,6 +1889,7 @@ declare const FeedItem: Omit<{
|
|
|
1626
1889
|
readonly dependencies?: string[] | undefined;
|
|
1627
1890
|
readonly theme?: string | undefined;
|
|
1628
1891
|
readonly externalId?: boolean | undefined;
|
|
1892
|
+
readonly system?: boolean | undefined;
|
|
1629
1893
|
readonly min?: number | undefined;
|
|
1630
1894
|
readonly max?: number | undefined;
|
|
1631
1895
|
readonly group?: string | undefined;
|
|
@@ -1800,6 +2064,7 @@ declare const FeedItem: Omit<{
|
|
|
1800
2064
|
readonly dependencies?: string[] | undefined;
|
|
1801
2065
|
readonly theme?: string | undefined;
|
|
1802
2066
|
readonly externalId?: boolean | undefined;
|
|
2067
|
+
readonly system?: boolean | undefined;
|
|
1803
2068
|
readonly min?: number | undefined;
|
|
1804
2069
|
readonly max?: number | undefined;
|
|
1805
2070
|
readonly group?: string | undefined;
|
|
@@ -1974,6 +2239,7 @@ declare const FeedItem: Omit<{
|
|
|
1974
2239
|
readonly dependencies?: string[] | undefined;
|
|
1975
2240
|
readonly theme?: string | undefined;
|
|
1976
2241
|
readonly externalId?: boolean | undefined;
|
|
2242
|
+
readonly system?: boolean | undefined;
|
|
1977
2243
|
readonly min?: number | undefined;
|
|
1978
2244
|
readonly max?: number | undefined;
|
|
1979
2245
|
readonly group?: string | undefined;
|
|
@@ -2148,6 +2414,7 @@ declare const FeedItem: Omit<{
|
|
|
2148
2414
|
readonly dependencies?: string[] | undefined;
|
|
2149
2415
|
readonly theme?: string | undefined;
|
|
2150
2416
|
readonly externalId?: boolean | undefined;
|
|
2417
|
+
readonly system?: boolean | undefined;
|
|
2151
2418
|
readonly min?: number | undefined;
|
|
2152
2419
|
readonly max?: number | undefined;
|
|
2153
2420
|
readonly group?: string | undefined;
|
|
@@ -2322,6 +2589,7 @@ declare const FeedItem: Omit<{
|
|
|
2322
2589
|
readonly dependencies?: string[] | undefined;
|
|
2323
2590
|
readonly theme?: string | undefined;
|
|
2324
2591
|
readonly externalId?: boolean | undefined;
|
|
2592
|
+
readonly system?: boolean | undefined;
|
|
2325
2593
|
readonly min?: number | undefined;
|
|
2326
2594
|
readonly max?: number | undefined;
|
|
2327
2595
|
readonly group?: string | undefined;
|
|
@@ -2496,6 +2764,7 @@ declare const FeedItem: Omit<{
|
|
|
2496
2764
|
readonly dependencies?: string[] | undefined;
|
|
2497
2765
|
readonly theme?: string | undefined;
|
|
2498
2766
|
readonly externalId?: boolean | undefined;
|
|
2767
|
+
readonly system?: boolean | undefined;
|
|
2499
2768
|
readonly min?: number | undefined;
|
|
2500
2769
|
readonly max?: number | undefined;
|
|
2501
2770
|
readonly group?: string | undefined;
|
|
@@ -2670,6 +2939,7 @@ declare const FeedItem: Omit<{
|
|
|
2670
2939
|
readonly dependencies?: string[] | undefined;
|
|
2671
2940
|
readonly theme?: string | undefined;
|
|
2672
2941
|
readonly externalId?: boolean | undefined;
|
|
2942
|
+
readonly system?: boolean | undefined;
|
|
2673
2943
|
readonly min?: number | undefined;
|
|
2674
2944
|
readonly max?: number | undefined;
|
|
2675
2945
|
readonly group?: string | undefined;
|
|
@@ -2844,6 +3114,7 @@ declare const FeedItem: Omit<{
|
|
|
2844
3114
|
readonly dependencies?: string[] | undefined;
|
|
2845
3115
|
readonly theme?: string | undefined;
|
|
2846
3116
|
readonly externalId?: boolean | undefined;
|
|
3117
|
+
readonly system?: boolean | undefined;
|
|
2847
3118
|
readonly min?: number | undefined;
|
|
2848
3119
|
readonly max?: number | undefined;
|
|
2849
3120
|
readonly group?: string | undefined;
|
|
@@ -3018,6 +3289,7 @@ declare const FeedItem: Omit<{
|
|
|
3018
3289
|
readonly dependencies?: string[] | undefined;
|
|
3019
3290
|
readonly theme?: string | undefined;
|
|
3020
3291
|
readonly externalId?: boolean | undefined;
|
|
3292
|
+
readonly system?: boolean | undefined;
|
|
3021
3293
|
readonly min?: number | undefined;
|
|
3022
3294
|
readonly max?: number | undefined;
|
|
3023
3295
|
readonly group?: string | undefined;
|
|
@@ -3192,6 +3464,7 @@ declare const FeedItem: Omit<{
|
|
|
3192
3464
|
readonly dependencies?: string[] | undefined;
|
|
3193
3465
|
readonly theme?: string | undefined;
|
|
3194
3466
|
readonly externalId?: boolean | undefined;
|
|
3467
|
+
readonly system?: boolean | undefined;
|
|
3195
3468
|
readonly min?: number | undefined;
|
|
3196
3469
|
readonly max?: number | undefined;
|
|
3197
3470
|
readonly group?: string | undefined;
|
|
@@ -3366,6 +3639,7 @@ declare const FeedItem: Omit<{
|
|
|
3366
3639
|
readonly dependencies?: string[] | undefined;
|
|
3367
3640
|
readonly theme?: string | undefined;
|
|
3368
3641
|
readonly externalId?: boolean | undefined;
|
|
3642
|
+
readonly system?: boolean | undefined;
|
|
3369
3643
|
readonly min?: number | undefined;
|
|
3370
3644
|
readonly max?: number | undefined;
|
|
3371
3645
|
readonly group?: string | undefined;
|
|
@@ -3540,6 +3814,7 @@ declare const FeedItem: Omit<{
|
|
|
3540
3814
|
readonly dependencies?: string[] | undefined;
|
|
3541
3815
|
readonly theme?: string | undefined;
|
|
3542
3816
|
readonly externalId?: boolean | undefined;
|
|
3817
|
+
readonly system?: boolean | undefined;
|
|
3543
3818
|
readonly min?: number | undefined;
|
|
3544
3819
|
readonly max?: number | undefined;
|
|
3545
3820
|
readonly group?: string | undefined;
|
|
@@ -3714,6 +3989,7 @@ declare const FeedItem: Omit<{
|
|
|
3714
3989
|
readonly dependencies?: string[] | undefined;
|
|
3715
3990
|
readonly theme?: string | undefined;
|
|
3716
3991
|
readonly externalId?: boolean | undefined;
|
|
3992
|
+
readonly system?: boolean | undefined;
|
|
3717
3993
|
readonly min?: number | undefined;
|
|
3718
3994
|
readonly max?: number | undefined;
|
|
3719
3995
|
readonly group?: string | undefined;
|
|
@@ -4093,6 +4369,7 @@ declare const FeedReaction: Omit<{
|
|
|
4093
4369
|
generatedBy?: string | undefined;
|
|
4094
4370
|
} | undefined;
|
|
4095
4371
|
} | undefined;
|
|
4372
|
+
system?: boolean | undefined;
|
|
4096
4373
|
inlineHelpText?: string | undefined;
|
|
4097
4374
|
trackFeedHistory?: boolean | undefined;
|
|
4098
4375
|
caseSensitive?: boolean | undefined;
|
|
@@ -4103,7 +4380,14 @@ declare const FeedReaction: Omit<{
|
|
|
4103
4380
|
description?: string | undefined;
|
|
4104
4381
|
icon?: string | undefined;
|
|
4105
4382
|
tags?: string[] | undefined;
|
|
4106
|
-
managedBy?: "system" | "
|
|
4383
|
+
managedBy?: "system" | "config" | "platform" | "append-only" | "better-auth" | undefined;
|
|
4384
|
+
userActions?: {
|
|
4385
|
+
create?: boolean | undefined;
|
|
4386
|
+
import?: boolean | undefined;
|
|
4387
|
+
edit?: boolean | undefined;
|
|
4388
|
+
delete?: boolean | undefined;
|
|
4389
|
+
exportCsv?: boolean | undefined;
|
|
4390
|
+
} | undefined;
|
|
4107
4391
|
systemFields?: false | {
|
|
4108
4392
|
tenant?: boolean | undefined;
|
|
4109
4393
|
owner?: boolean | undefined;
|
|
@@ -4223,6 +4507,241 @@ declare const FeedReaction: Omit<{
|
|
|
4223
4507
|
} | undefined;
|
|
4224
4508
|
} | undefined;
|
|
4225
4509
|
compactLayout?: string[] | undefined;
|
|
4510
|
+
listViews?: Record<string, {
|
|
4511
|
+
type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "grid";
|
|
4512
|
+
columns: string[] | {
|
|
4513
|
+
field: string;
|
|
4514
|
+
label?: string | undefined;
|
|
4515
|
+
width?: number | undefined;
|
|
4516
|
+
align?: "left" | "center" | "right" | undefined;
|
|
4517
|
+
hidden?: boolean | undefined;
|
|
4518
|
+
sortable?: boolean | undefined;
|
|
4519
|
+
resizable?: boolean | undefined;
|
|
4520
|
+
wrap?: boolean | undefined;
|
|
4521
|
+
type?: string | undefined;
|
|
4522
|
+
pinned?: "left" | "right" | undefined;
|
|
4523
|
+
summary?: "count" | "min" | "max" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
4524
|
+
link?: boolean | undefined;
|
|
4525
|
+
action?: string | undefined;
|
|
4526
|
+
}[];
|
|
4527
|
+
name?: string | undefined;
|
|
4528
|
+
label?: string | undefined;
|
|
4529
|
+
data?: {
|
|
4530
|
+
provider: "object";
|
|
4531
|
+
object: string;
|
|
4532
|
+
} | {
|
|
4533
|
+
provider: "api";
|
|
4534
|
+
read?: {
|
|
4535
|
+
url: string;
|
|
4536
|
+
method: "GET" | "POST" | "PATCH" | "PUT" | "DELETE";
|
|
4537
|
+
headers?: Record<string, string> | undefined;
|
|
4538
|
+
params?: Record<string, unknown> | undefined;
|
|
4539
|
+
body?: unknown;
|
|
4540
|
+
} | undefined;
|
|
4541
|
+
write?: {
|
|
4542
|
+
url: string;
|
|
4543
|
+
method: "GET" | "POST" | "PATCH" | "PUT" | "DELETE";
|
|
4544
|
+
headers?: Record<string, string> | undefined;
|
|
4545
|
+
params?: Record<string, unknown> | undefined;
|
|
4546
|
+
body?: unknown;
|
|
4547
|
+
} | undefined;
|
|
4548
|
+
} | {
|
|
4549
|
+
provider: "value";
|
|
4550
|
+
items: unknown[];
|
|
4551
|
+
} | undefined;
|
|
4552
|
+
filter?: {
|
|
4553
|
+
field: string;
|
|
4554
|
+
operator: string;
|
|
4555
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
4556
|
+
}[] | undefined;
|
|
4557
|
+
sort?: string | {
|
|
4558
|
+
field: string;
|
|
4559
|
+
order: "asc" | "desc";
|
|
4560
|
+
}[] | undefined;
|
|
4561
|
+
searchableFields?: string[] | undefined;
|
|
4562
|
+
filterableFields?: string[] | undefined;
|
|
4563
|
+
resizable?: boolean | undefined;
|
|
4564
|
+
striped?: boolean | undefined;
|
|
4565
|
+
bordered?: boolean | undefined;
|
|
4566
|
+
compactToolbar?: boolean | undefined;
|
|
4567
|
+
selection?: {
|
|
4568
|
+
type: "multiple" | "single" | "none";
|
|
4569
|
+
} | undefined;
|
|
4570
|
+
navigation?: {
|
|
4571
|
+
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
4572
|
+
preventNavigation: boolean;
|
|
4573
|
+
openNewTab: boolean;
|
|
4574
|
+
view?: string | undefined;
|
|
4575
|
+
width?: string | number | undefined;
|
|
4576
|
+
} | undefined;
|
|
4577
|
+
pagination?: {
|
|
4578
|
+
pageSize: number;
|
|
4579
|
+
pageSizeOptions?: number[] | undefined;
|
|
4580
|
+
} | undefined;
|
|
4581
|
+
kanban?: {
|
|
4582
|
+
groupByField: string;
|
|
4583
|
+
columns: string[];
|
|
4584
|
+
summarizeField?: string | undefined;
|
|
4585
|
+
} | undefined;
|
|
4586
|
+
calendar?: {
|
|
4587
|
+
startDateField: string;
|
|
4588
|
+
titleField: string;
|
|
4589
|
+
endDateField?: string | undefined;
|
|
4590
|
+
colorField?: string | undefined;
|
|
4591
|
+
} | undefined;
|
|
4592
|
+
gantt?: {
|
|
4593
|
+
startDateField: string;
|
|
4594
|
+
endDateField: string;
|
|
4595
|
+
titleField: string;
|
|
4596
|
+
progressField?: string | undefined;
|
|
4597
|
+
dependenciesField?: string | undefined;
|
|
4598
|
+
} | undefined;
|
|
4599
|
+
gallery?: {
|
|
4600
|
+
coverFit: "cover" | "contain";
|
|
4601
|
+
cardSize: "small" | "medium" | "large";
|
|
4602
|
+
coverField?: string | undefined;
|
|
4603
|
+
titleField?: string | undefined;
|
|
4604
|
+
visibleFields?: string[] | undefined;
|
|
4605
|
+
} | undefined;
|
|
4606
|
+
timeline?: {
|
|
4607
|
+
startDateField: string;
|
|
4608
|
+
titleField: string;
|
|
4609
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
4610
|
+
endDateField?: string | undefined;
|
|
4611
|
+
groupByField?: string | undefined;
|
|
4612
|
+
colorField?: string | undefined;
|
|
4613
|
+
} | undefined;
|
|
4614
|
+
chart?: {
|
|
4615
|
+
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
4616
|
+
xAxisField: string;
|
|
4617
|
+
yAxisFields: string[];
|
|
4618
|
+
aggregation?: "count" | "min" | "max" | "sum" | "avg" | undefined;
|
|
4619
|
+
groupByField?: string | undefined;
|
|
4620
|
+
} | undefined;
|
|
4621
|
+
description?: string | undefined;
|
|
4622
|
+
sharing?: {
|
|
4623
|
+
type: "personal" | "collaborative";
|
|
4624
|
+
lockedBy?: string | undefined;
|
|
4625
|
+
} | undefined;
|
|
4626
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
4627
|
+
grouping?: {
|
|
4628
|
+
fields: {
|
|
4629
|
+
field: string;
|
|
4630
|
+
order: "asc" | "desc";
|
|
4631
|
+
collapsed: boolean;
|
|
4632
|
+
}[];
|
|
4633
|
+
} | undefined;
|
|
4634
|
+
rowColor?: {
|
|
4635
|
+
field: string;
|
|
4636
|
+
colors?: Record<string, string> | undefined;
|
|
4637
|
+
} | undefined;
|
|
4638
|
+
hiddenFields?: string[] | undefined;
|
|
4639
|
+
fieldOrder?: string[] | undefined;
|
|
4640
|
+
rowActions?: string[] | undefined;
|
|
4641
|
+
bulkActions?: string[] | undefined;
|
|
4642
|
+
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
4643
|
+
virtualScroll?: boolean | undefined;
|
|
4644
|
+
conditionalFormatting?: {
|
|
4645
|
+
condition: {
|
|
4646
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4647
|
+
source?: string | undefined;
|
|
4648
|
+
ast?: unknown;
|
|
4649
|
+
meta?: {
|
|
4650
|
+
rationale?: string | undefined;
|
|
4651
|
+
generatedBy?: string | undefined;
|
|
4652
|
+
} | undefined;
|
|
4653
|
+
} | {
|
|
4654
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4655
|
+
source?: string | undefined;
|
|
4656
|
+
ast?: unknown;
|
|
4657
|
+
meta?: {
|
|
4658
|
+
rationale?: string | undefined;
|
|
4659
|
+
generatedBy?: string | undefined;
|
|
4660
|
+
} | undefined;
|
|
4661
|
+
};
|
|
4662
|
+
style: Record<string, string>;
|
|
4663
|
+
}[] | undefined;
|
|
4664
|
+
inlineEdit?: boolean | undefined;
|
|
4665
|
+
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
4666
|
+
userActions?: {
|
|
4667
|
+
sort: boolean;
|
|
4668
|
+
search: boolean;
|
|
4669
|
+
filter: boolean;
|
|
4670
|
+
rowHeight: boolean;
|
|
4671
|
+
addRecordForm: boolean;
|
|
4672
|
+
buttons?: string[] | undefined;
|
|
4673
|
+
} | undefined;
|
|
4674
|
+
appearance?: {
|
|
4675
|
+
showDescription: boolean;
|
|
4676
|
+
allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "grid")[] | undefined;
|
|
4677
|
+
} | undefined;
|
|
4678
|
+
tabs?: {
|
|
4679
|
+
name: string;
|
|
4680
|
+
pinned: boolean;
|
|
4681
|
+
isDefault: boolean;
|
|
4682
|
+
visible: boolean;
|
|
4683
|
+
label?: string | undefined;
|
|
4684
|
+
icon?: string | undefined;
|
|
4685
|
+
view?: string | undefined;
|
|
4686
|
+
filter?: {
|
|
4687
|
+
field: string;
|
|
4688
|
+
operator: string;
|
|
4689
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
4690
|
+
}[] | undefined;
|
|
4691
|
+
order?: number | undefined;
|
|
4692
|
+
}[] | undefined;
|
|
4693
|
+
addRecord?: {
|
|
4694
|
+
enabled: boolean;
|
|
4695
|
+
position: "top" | "bottom" | "both";
|
|
4696
|
+
mode: "modal" | "form" | "inline";
|
|
4697
|
+
formView?: string | undefined;
|
|
4698
|
+
} | undefined;
|
|
4699
|
+
showRecordCount?: boolean | undefined;
|
|
4700
|
+
allowPrinting?: boolean | undefined;
|
|
4701
|
+
emptyState?: {
|
|
4702
|
+
title?: string | undefined;
|
|
4703
|
+
message?: string | undefined;
|
|
4704
|
+
icon?: string | undefined;
|
|
4705
|
+
} | undefined;
|
|
4706
|
+
aria?: {
|
|
4707
|
+
ariaLabel?: string | undefined;
|
|
4708
|
+
ariaDescribedBy?: string | undefined;
|
|
4709
|
+
role?: string | undefined;
|
|
4710
|
+
} | undefined;
|
|
4711
|
+
responsive?: {
|
|
4712
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
4713
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
4714
|
+
columns?: {
|
|
4715
|
+
xs?: number | undefined;
|
|
4716
|
+
sm?: number | undefined;
|
|
4717
|
+
md?: number | undefined;
|
|
4718
|
+
lg?: number | undefined;
|
|
4719
|
+
xl?: number | undefined;
|
|
4720
|
+
'2xl'?: number | undefined;
|
|
4721
|
+
} | undefined;
|
|
4722
|
+
order?: {
|
|
4723
|
+
xs?: number | undefined;
|
|
4724
|
+
sm?: number | undefined;
|
|
4725
|
+
md?: number | undefined;
|
|
4726
|
+
lg?: number | undefined;
|
|
4727
|
+
xl?: number | undefined;
|
|
4728
|
+
'2xl'?: number | undefined;
|
|
4729
|
+
} | undefined;
|
|
4730
|
+
} | undefined;
|
|
4731
|
+
performance?: {
|
|
4732
|
+
lazyLoad?: boolean | undefined;
|
|
4733
|
+
virtualScroll?: {
|
|
4734
|
+
enabled: boolean;
|
|
4735
|
+
itemHeight?: number | undefined;
|
|
4736
|
+
overscan?: number | undefined;
|
|
4737
|
+
} | undefined;
|
|
4738
|
+
cacheStrategy?: "none" | "cache-first" | "network-first" | "stale-while-revalidate" | undefined;
|
|
4739
|
+
prefetch?: boolean | undefined;
|
|
4740
|
+
pageSize?: number | undefined;
|
|
4741
|
+
debounceMs?: number | undefined;
|
|
4742
|
+
} | undefined;
|
|
4743
|
+
}> | undefined;
|
|
4744
|
+
defaultDetailForm?: string | undefined;
|
|
4226
4745
|
search?: {
|
|
4227
4746
|
fields: string[];
|
|
4228
4747
|
displayFields?: string[] | undefined;
|
|
@@ -4238,15 +4757,15 @@ declare const FeedReaction: Omit<{
|
|
|
4238
4757
|
trash: boolean;
|
|
4239
4758
|
mru: boolean;
|
|
4240
4759
|
clone: boolean;
|
|
4241
|
-
apiMethods?: ("search" | "
|
|
4760
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
4242
4761
|
} | undefined;
|
|
4243
4762
|
recordTypes?: string[] | undefined;
|
|
4244
|
-
sharingModel?: "private" | "
|
|
4763
|
+
sharingModel?: "private" | "read" | "full" | "read_write" | undefined;
|
|
4245
4764
|
keyPrefix?: string | undefined;
|
|
4246
4765
|
actions?: {
|
|
4247
4766
|
name: string;
|
|
4248
4767
|
label: string;
|
|
4249
|
-
type: "url" | "flow" | "api" | "script" | "modal";
|
|
4768
|
+
type: "url" | "flow" | "api" | "script" | "modal" | "form";
|
|
4250
4769
|
refreshAfter: boolean;
|
|
4251
4770
|
objectName?: string | undefined;
|
|
4252
4771
|
icon?: string | undefined;
|
|
@@ -4265,14 +4784,20 @@ declare const FeedReaction: Omit<{
|
|
|
4265
4784
|
} | undefined;
|
|
4266
4785
|
execute?: string | undefined;
|
|
4267
4786
|
params?: {
|
|
4268
|
-
name: string;
|
|
4269
|
-
label: string;
|
|
4270
|
-
type: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector";
|
|
4271
4787
|
required: boolean;
|
|
4788
|
+
name?: string | undefined;
|
|
4789
|
+
field?: string | undefined;
|
|
4790
|
+
objectOverride?: string | undefined;
|
|
4791
|
+
label?: string | undefined;
|
|
4792
|
+
type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
4272
4793
|
options?: {
|
|
4273
4794
|
label: string;
|
|
4274
4795
|
value: string;
|
|
4275
4796
|
}[] | undefined;
|
|
4797
|
+
placeholder?: string | undefined;
|
|
4798
|
+
helpText?: string | undefined;
|
|
4799
|
+
defaultValue?: unknown;
|
|
4800
|
+
defaultFromRow?: boolean | undefined;
|
|
4276
4801
|
}[] | undefined;
|
|
4277
4802
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
4278
4803
|
confirmText?: string | undefined;
|
|
@@ -4297,6 +4822,14 @@ declare const FeedReaction: Omit<{
|
|
|
4297
4822
|
} | undefined;
|
|
4298
4823
|
shortcut?: string | undefined;
|
|
4299
4824
|
bulkEnabled?: boolean | undefined;
|
|
4825
|
+
recordIdParam?: string | undefined;
|
|
4826
|
+
recordIdField?: string | undefined;
|
|
4827
|
+
bodyShape?: "flat" | {
|
|
4828
|
+
wrap: string;
|
|
4829
|
+
} | undefined;
|
|
4830
|
+
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
4831
|
+
bodyExtra?: Record<string, unknown> | undefined;
|
|
4832
|
+
mode?: "custom" | "delete" | "create" | "edit" | undefined;
|
|
4300
4833
|
timeout?: number | undefined;
|
|
4301
4834
|
aria?: {
|
|
4302
4835
|
ariaLabel?: string | undefined;
|
|
@@ -4331,6 +4864,7 @@ declare const FeedReaction: Omit<{
|
|
|
4331
4864
|
readonly dependencies?: string[] | undefined;
|
|
4332
4865
|
readonly theme?: string | undefined;
|
|
4333
4866
|
readonly externalId?: boolean | undefined;
|
|
4867
|
+
readonly system?: boolean | undefined;
|
|
4334
4868
|
readonly min?: number | undefined;
|
|
4335
4869
|
readonly max?: number | undefined;
|
|
4336
4870
|
readonly group?: string | undefined;
|
|
@@ -4505,6 +5039,7 @@ declare const FeedReaction: Omit<{
|
|
|
4505
5039
|
readonly dependencies?: string[] | undefined;
|
|
4506
5040
|
readonly theme?: string | undefined;
|
|
4507
5041
|
readonly externalId?: boolean | undefined;
|
|
5042
|
+
readonly system?: boolean | undefined;
|
|
4508
5043
|
readonly min?: number | undefined;
|
|
4509
5044
|
readonly max?: number | undefined;
|
|
4510
5045
|
readonly group?: string | undefined;
|
|
@@ -4679,6 +5214,7 @@ declare const FeedReaction: Omit<{
|
|
|
4679
5214
|
readonly dependencies?: string[] | undefined;
|
|
4680
5215
|
readonly theme?: string | undefined;
|
|
4681
5216
|
readonly externalId?: boolean | undefined;
|
|
5217
|
+
readonly system?: boolean | undefined;
|
|
4682
5218
|
readonly min?: number | undefined;
|
|
4683
5219
|
readonly max?: number | undefined;
|
|
4684
5220
|
readonly group?: string | undefined;
|
|
@@ -4853,6 +5389,7 @@ declare const FeedReaction: Omit<{
|
|
|
4853
5389
|
readonly dependencies?: string[] | undefined;
|
|
4854
5390
|
readonly theme?: string | undefined;
|
|
4855
5391
|
readonly externalId?: boolean | undefined;
|
|
5392
|
+
readonly system?: boolean | undefined;
|
|
4856
5393
|
readonly min?: number | undefined;
|
|
4857
5394
|
readonly max?: number | undefined;
|
|
4858
5395
|
readonly group?: string | undefined;
|
|
@@ -5027,6 +5564,7 @@ declare const FeedReaction: Omit<{
|
|
|
5027
5564
|
readonly dependencies?: string[] | undefined;
|
|
5028
5565
|
readonly theme?: string | undefined;
|
|
5029
5566
|
readonly externalId?: boolean | undefined;
|
|
5567
|
+
readonly system?: boolean | undefined;
|
|
5030
5568
|
readonly min?: number | undefined;
|
|
5031
5569
|
readonly max?: number | undefined;
|
|
5032
5570
|
readonly group?: string | undefined;
|
|
@@ -5403,6 +5941,7 @@ declare const RecordSubscription: Omit<{
|
|
|
5403
5941
|
generatedBy?: string | undefined;
|
|
5404
5942
|
} | undefined;
|
|
5405
5943
|
} | undefined;
|
|
5944
|
+
system?: boolean | undefined;
|
|
5406
5945
|
inlineHelpText?: string | undefined;
|
|
5407
5946
|
trackFeedHistory?: boolean | undefined;
|
|
5408
5947
|
caseSensitive?: boolean | undefined;
|
|
@@ -5413,7 +5952,14 @@ declare const RecordSubscription: Omit<{
|
|
|
5413
5952
|
description?: string | undefined;
|
|
5414
5953
|
icon?: string | undefined;
|
|
5415
5954
|
tags?: string[] | undefined;
|
|
5416
|
-
managedBy?: "system" | "
|
|
5955
|
+
managedBy?: "system" | "config" | "platform" | "append-only" | "better-auth" | undefined;
|
|
5956
|
+
userActions?: {
|
|
5957
|
+
create?: boolean | undefined;
|
|
5958
|
+
import?: boolean | undefined;
|
|
5959
|
+
edit?: boolean | undefined;
|
|
5960
|
+
delete?: boolean | undefined;
|
|
5961
|
+
exportCsv?: boolean | undefined;
|
|
5962
|
+
} | undefined;
|
|
5417
5963
|
systemFields?: false | {
|
|
5418
5964
|
tenant?: boolean | undefined;
|
|
5419
5965
|
owner?: boolean | undefined;
|
|
@@ -5533,6 +6079,241 @@ declare const RecordSubscription: Omit<{
|
|
|
5533
6079
|
} | undefined;
|
|
5534
6080
|
} | undefined;
|
|
5535
6081
|
compactLayout?: string[] | undefined;
|
|
6082
|
+
listViews?: Record<string, {
|
|
6083
|
+
type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "grid";
|
|
6084
|
+
columns: string[] | {
|
|
6085
|
+
field: string;
|
|
6086
|
+
label?: string | undefined;
|
|
6087
|
+
width?: number | undefined;
|
|
6088
|
+
align?: "left" | "center" | "right" | undefined;
|
|
6089
|
+
hidden?: boolean | undefined;
|
|
6090
|
+
sortable?: boolean | undefined;
|
|
6091
|
+
resizable?: boolean | undefined;
|
|
6092
|
+
wrap?: boolean | undefined;
|
|
6093
|
+
type?: string | undefined;
|
|
6094
|
+
pinned?: "left" | "right" | undefined;
|
|
6095
|
+
summary?: "count" | "min" | "max" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
6096
|
+
link?: boolean | undefined;
|
|
6097
|
+
action?: string | undefined;
|
|
6098
|
+
}[];
|
|
6099
|
+
name?: string | undefined;
|
|
6100
|
+
label?: string | undefined;
|
|
6101
|
+
data?: {
|
|
6102
|
+
provider: "object";
|
|
6103
|
+
object: string;
|
|
6104
|
+
} | {
|
|
6105
|
+
provider: "api";
|
|
6106
|
+
read?: {
|
|
6107
|
+
url: string;
|
|
6108
|
+
method: "GET" | "POST" | "PATCH" | "PUT" | "DELETE";
|
|
6109
|
+
headers?: Record<string, string> | undefined;
|
|
6110
|
+
params?: Record<string, unknown> | undefined;
|
|
6111
|
+
body?: unknown;
|
|
6112
|
+
} | undefined;
|
|
6113
|
+
write?: {
|
|
6114
|
+
url: string;
|
|
6115
|
+
method: "GET" | "POST" | "PATCH" | "PUT" | "DELETE";
|
|
6116
|
+
headers?: Record<string, string> | undefined;
|
|
6117
|
+
params?: Record<string, unknown> | undefined;
|
|
6118
|
+
body?: unknown;
|
|
6119
|
+
} | undefined;
|
|
6120
|
+
} | {
|
|
6121
|
+
provider: "value";
|
|
6122
|
+
items: unknown[];
|
|
6123
|
+
} | undefined;
|
|
6124
|
+
filter?: {
|
|
6125
|
+
field: string;
|
|
6126
|
+
operator: string;
|
|
6127
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
6128
|
+
}[] | undefined;
|
|
6129
|
+
sort?: string | {
|
|
6130
|
+
field: string;
|
|
6131
|
+
order: "asc" | "desc";
|
|
6132
|
+
}[] | undefined;
|
|
6133
|
+
searchableFields?: string[] | undefined;
|
|
6134
|
+
filterableFields?: string[] | undefined;
|
|
6135
|
+
resizable?: boolean | undefined;
|
|
6136
|
+
striped?: boolean | undefined;
|
|
6137
|
+
bordered?: boolean | undefined;
|
|
6138
|
+
compactToolbar?: boolean | undefined;
|
|
6139
|
+
selection?: {
|
|
6140
|
+
type: "multiple" | "single" | "none";
|
|
6141
|
+
} | undefined;
|
|
6142
|
+
navigation?: {
|
|
6143
|
+
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
6144
|
+
preventNavigation: boolean;
|
|
6145
|
+
openNewTab: boolean;
|
|
6146
|
+
view?: string | undefined;
|
|
6147
|
+
width?: string | number | undefined;
|
|
6148
|
+
} | undefined;
|
|
6149
|
+
pagination?: {
|
|
6150
|
+
pageSize: number;
|
|
6151
|
+
pageSizeOptions?: number[] | undefined;
|
|
6152
|
+
} | undefined;
|
|
6153
|
+
kanban?: {
|
|
6154
|
+
groupByField: string;
|
|
6155
|
+
columns: string[];
|
|
6156
|
+
summarizeField?: string | undefined;
|
|
6157
|
+
} | undefined;
|
|
6158
|
+
calendar?: {
|
|
6159
|
+
startDateField: string;
|
|
6160
|
+
titleField: string;
|
|
6161
|
+
endDateField?: string | undefined;
|
|
6162
|
+
colorField?: string | undefined;
|
|
6163
|
+
} | undefined;
|
|
6164
|
+
gantt?: {
|
|
6165
|
+
startDateField: string;
|
|
6166
|
+
endDateField: string;
|
|
6167
|
+
titleField: string;
|
|
6168
|
+
progressField?: string | undefined;
|
|
6169
|
+
dependenciesField?: string | undefined;
|
|
6170
|
+
} | undefined;
|
|
6171
|
+
gallery?: {
|
|
6172
|
+
coverFit: "cover" | "contain";
|
|
6173
|
+
cardSize: "small" | "medium" | "large";
|
|
6174
|
+
coverField?: string | undefined;
|
|
6175
|
+
titleField?: string | undefined;
|
|
6176
|
+
visibleFields?: string[] | undefined;
|
|
6177
|
+
} | undefined;
|
|
6178
|
+
timeline?: {
|
|
6179
|
+
startDateField: string;
|
|
6180
|
+
titleField: string;
|
|
6181
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
6182
|
+
endDateField?: string | undefined;
|
|
6183
|
+
groupByField?: string | undefined;
|
|
6184
|
+
colorField?: string | undefined;
|
|
6185
|
+
} | undefined;
|
|
6186
|
+
chart?: {
|
|
6187
|
+
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
6188
|
+
xAxisField: string;
|
|
6189
|
+
yAxisFields: string[];
|
|
6190
|
+
aggregation?: "count" | "min" | "max" | "sum" | "avg" | undefined;
|
|
6191
|
+
groupByField?: string | undefined;
|
|
6192
|
+
} | undefined;
|
|
6193
|
+
description?: string | undefined;
|
|
6194
|
+
sharing?: {
|
|
6195
|
+
type: "personal" | "collaborative";
|
|
6196
|
+
lockedBy?: string | undefined;
|
|
6197
|
+
} | undefined;
|
|
6198
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
6199
|
+
grouping?: {
|
|
6200
|
+
fields: {
|
|
6201
|
+
field: string;
|
|
6202
|
+
order: "asc" | "desc";
|
|
6203
|
+
collapsed: boolean;
|
|
6204
|
+
}[];
|
|
6205
|
+
} | undefined;
|
|
6206
|
+
rowColor?: {
|
|
6207
|
+
field: string;
|
|
6208
|
+
colors?: Record<string, string> | undefined;
|
|
6209
|
+
} | undefined;
|
|
6210
|
+
hiddenFields?: string[] | undefined;
|
|
6211
|
+
fieldOrder?: string[] | undefined;
|
|
6212
|
+
rowActions?: string[] | undefined;
|
|
6213
|
+
bulkActions?: string[] | undefined;
|
|
6214
|
+
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
6215
|
+
virtualScroll?: boolean | undefined;
|
|
6216
|
+
conditionalFormatting?: {
|
|
6217
|
+
condition: {
|
|
6218
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6219
|
+
source?: string | undefined;
|
|
6220
|
+
ast?: unknown;
|
|
6221
|
+
meta?: {
|
|
6222
|
+
rationale?: string | undefined;
|
|
6223
|
+
generatedBy?: string | undefined;
|
|
6224
|
+
} | undefined;
|
|
6225
|
+
} | {
|
|
6226
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6227
|
+
source?: string | undefined;
|
|
6228
|
+
ast?: unknown;
|
|
6229
|
+
meta?: {
|
|
6230
|
+
rationale?: string | undefined;
|
|
6231
|
+
generatedBy?: string | undefined;
|
|
6232
|
+
} | undefined;
|
|
6233
|
+
};
|
|
6234
|
+
style: Record<string, string>;
|
|
6235
|
+
}[] | undefined;
|
|
6236
|
+
inlineEdit?: boolean | undefined;
|
|
6237
|
+
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
6238
|
+
userActions?: {
|
|
6239
|
+
sort: boolean;
|
|
6240
|
+
search: boolean;
|
|
6241
|
+
filter: boolean;
|
|
6242
|
+
rowHeight: boolean;
|
|
6243
|
+
addRecordForm: boolean;
|
|
6244
|
+
buttons?: string[] | undefined;
|
|
6245
|
+
} | undefined;
|
|
6246
|
+
appearance?: {
|
|
6247
|
+
showDescription: boolean;
|
|
6248
|
+
allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "grid")[] | undefined;
|
|
6249
|
+
} | undefined;
|
|
6250
|
+
tabs?: {
|
|
6251
|
+
name: string;
|
|
6252
|
+
pinned: boolean;
|
|
6253
|
+
isDefault: boolean;
|
|
6254
|
+
visible: boolean;
|
|
6255
|
+
label?: string | undefined;
|
|
6256
|
+
icon?: string | undefined;
|
|
6257
|
+
view?: string | undefined;
|
|
6258
|
+
filter?: {
|
|
6259
|
+
field: string;
|
|
6260
|
+
operator: string;
|
|
6261
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
6262
|
+
}[] | undefined;
|
|
6263
|
+
order?: number | undefined;
|
|
6264
|
+
}[] | undefined;
|
|
6265
|
+
addRecord?: {
|
|
6266
|
+
enabled: boolean;
|
|
6267
|
+
position: "top" | "bottom" | "both";
|
|
6268
|
+
mode: "modal" | "form" | "inline";
|
|
6269
|
+
formView?: string | undefined;
|
|
6270
|
+
} | undefined;
|
|
6271
|
+
showRecordCount?: boolean | undefined;
|
|
6272
|
+
allowPrinting?: boolean | undefined;
|
|
6273
|
+
emptyState?: {
|
|
6274
|
+
title?: string | undefined;
|
|
6275
|
+
message?: string | undefined;
|
|
6276
|
+
icon?: string | undefined;
|
|
6277
|
+
} | undefined;
|
|
6278
|
+
aria?: {
|
|
6279
|
+
ariaLabel?: string | undefined;
|
|
6280
|
+
ariaDescribedBy?: string | undefined;
|
|
6281
|
+
role?: string | undefined;
|
|
6282
|
+
} | undefined;
|
|
6283
|
+
responsive?: {
|
|
6284
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
6285
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
6286
|
+
columns?: {
|
|
6287
|
+
xs?: number | undefined;
|
|
6288
|
+
sm?: number | undefined;
|
|
6289
|
+
md?: number | undefined;
|
|
6290
|
+
lg?: number | undefined;
|
|
6291
|
+
xl?: number | undefined;
|
|
6292
|
+
'2xl'?: number | undefined;
|
|
6293
|
+
} | undefined;
|
|
6294
|
+
order?: {
|
|
6295
|
+
xs?: number | undefined;
|
|
6296
|
+
sm?: number | undefined;
|
|
6297
|
+
md?: number | undefined;
|
|
6298
|
+
lg?: number | undefined;
|
|
6299
|
+
xl?: number | undefined;
|
|
6300
|
+
'2xl'?: number | undefined;
|
|
6301
|
+
} | undefined;
|
|
6302
|
+
} | undefined;
|
|
6303
|
+
performance?: {
|
|
6304
|
+
lazyLoad?: boolean | undefined;
|
|
6305
|
+
virtualScroll?: {
|
|
6306
|
+
enabled: boolean;
|
|
6307
|
+
itemHeight?: number | undefined;
|
|
6308
|
+
overscan?: number | undefined;
|
|
6309
|
+
} | undefined;
|
|
6310
|
+
cacheStrategy?: "none" | "cache-first" | "network-first" | "stale-while-revalidate" | undefined;
|
|
6311
|
+
prefetch?: boolean | undefined;
|
|
6312
|
+
pageSize?: number | undefined;
|
|
6313
|
+
debounceMs?: number | undefined;
|
|
6314
|
+
} | undefined;
|
|
6315
|
+
}> | undefined;
|
|
6316
|
+
defaultDetailForm?: string | undefined;
|
|
5536
6317
|
search?: {
|
|
5537
6318
|
fields: string[];
|
|
5538
6319
|
displayFields?: string[] | undefined;
|
|
@@ -5548,15 +6329,15 @@ declare const RecordSubscription: Omit<{
|
|
|
5548
6329
|
trash: boolean;
|
|
5549
6330
|
mru: boolean;
|
|
5550
6331
|
clone: boolean;
|
|
5551
|
-
apiMethods?: ("search" | "
|
|
6332
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
5552
6333
|
} | undefined;
|
|
5553
6334
|
recordTypes?: string[] | undefined;
|
|
5554
|
-
sharingModel?: "private" | "
|
|
6335
|
+
sharingModel?: "private" | "read" | "full" | "read_write" | undefined;
|
|
5555
6336
|
keyPrefix?: string | undefined;
|
|
5556
6337
|
actions?: {
|
|
5557
6338
|
name: string;
|
|
5558
6339
|
label: string;
|
|
5559
|
-
type: "url" | "flow" | "api" | "script" | "modal";
|
|
6340
|
+
type: "url" | "flow" | "api" | "script" | "modal" | "form";
|
|
5560
6341
|
refreshAfter: boolean;
|
|
5561
6342
|
objectName?: string | undefined;
|
|
5562
6343
|
icon?: string | undefined;
|
|
@@ -5575,14 +6356,20 @@ declare const RecordSubscription: Omit<{
|
|
|
5575
6356
|
} | undefined;
|
|
5576
6357
|
execute?: string | undefined;
|
|
5577
6358
|
params?: {
|
|
5578
|
-
name: string;
|
|
5579
|
-
label: string;
|
|
5580
|
-
type: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector";
|
|
5581
6359
|
required: boolean;
|
|
6360
|
+
name?: string | undefined;
|
|
6361
|
+
field?: string | undefined;
|
|
6362
|
+
objectOverride?: string | undefined;
|
|
6363
|
+
label?: string | undefined;
|
|
6364
|
+
type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
5582
6365
|
options?: {
|
|
5583
6366
|
label: string;
|
|
5584
6367
|
value: string;
|
|
5585
6368
|
}[] | undefined;
|
|
6369
|
+
placeholder?: string | undefined;
|
|
6370
|
+
helpText?: string | undefined;
|
|
6371
|
+
defaultValue?: unknown;
|
|
6372
|
+
defaultFromRow?: boolean | undefined;
|
|
5586
6373
|
}[] | undefined;
|
|
5587
6374
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
5588
6375
|
confirmText?: string | undefined;
|
|
@@ -5607,6 +6394,14 @@ declare const RecordSubscription: Omit<{
|
|
|
5607
6394
|
} | undefined;
|
|
5608
6395
|
shortcut?: string | undefined;
|
|
5609
6396
|
bulkEnabled?: boolean | undefined;
|
|
6397
|
+
recordIdParam?: string | undefined;
|
|
6398
|
+
recordIdField?: string | undefined;
|
|
6399
|
+
bodyShape?: "flat" | {
|
|
6400
|
+
wrap: string;
|
|
6401
|
+
} | undefined;
|
|
6402
|
+
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
6403
|
+
bodyExtra?: Record<string, unknown> | undefined;
|
|
6404
|
+
mode?: "custom" | "delete" | "create" | "edit" | undefined;
|
|
5610
6405
|
timeout?: number | undefined;
|
|
5611
6406
|
aria?: {
|
|
5612
6407
|
ariaLabel?: string | undefined;
|
|
@@ -5641,6 +6436,7 @@ declare const RecordSubscription: Omit<{
|
|
|
5641
6436
|
readonly dependencies?: string[] | undefined;
|
|
5642
6437
|
readonly theme?: string | undefined;
|
|
5643
6438
|
readonly externalId?: boolean | undefined;
|
|
6439
|
+
readonly system?: boolean | undefined;
|
|
5644
6440
|
readonly min?: number | undefined;
|
|
5645
6441
|
readonly max?: number | undefined;
|
|
5646
6442
|
readonly group?: string | undefined;
|
|
@@ -5815,6 +6611,7 @@ declare const RecordSubscription: Omit<{
|
|
|
5815
6611
|
readonly dependencies?: string[] | undefined;
|
|
5816
6612
|
readonly theme?: string | undefined;
|
|
5817
6613
|
readonly externalId?: boolean | undefined;
|
|
6614
|
+
readonly system?: boolean | undefined;
|
|
5818
6615
|
readonly min?: number | undefined;
|
|
5819
6616
|
readonly max?: number | undefined;
|
|
5820
6617
|
readonly group?: string | undefined;
|
|
@@ -5989,6 +6786,7 @@ declare const RecordSubscription: Omit<{
|
|
|
5989
6786
|
readonly dependencies?: string[] | undefined;
|
|
5990
6787
|
readonly theme?: string | undefined;
|
|
5991
6788
|
readonly externalId?: boolean | undefined;
|
|
6789
|
+
readonly system?: boolean | undefined;
|
|
5992
6790
|
readonly min?: number | undefined;
|
|
5993
6791
|
readonly max?: number | undefined;
|
|
5994
6792
|
readonly group?: string | undefined;
|
|
@@ -6163,6 +6961,7 @@ declare const RecordSubscription: Omit<{
|
|
|
6163
6961
|
readonly dependencies?: string[] | undefined;
|
|
6164
6962
|
readonly theme?: string | undefined;
|
|
6165
6963
|
readonly externalId?: boolean | undefined;
|
|
6964
|
+
readonly system?: boolean | undefined;
|
|
6166
6965
|
readonly min?: number | undefined;
|
|
6167
6966
|
readonly max?: number | undefined;
|
|
6168
6967
|
readonly group?: string | undefined;
|
|
@@ -6337,6 +7136,7 @@ declare const RecordSubscription: Omit<{
|
|
|
6337
7136
|
readonly dependencies?: string[] | undefined;
|
|
6338
7137
|
readonly theme?: string | undefined;
|
|
6339
7138
|
readonly externalId?: boolean | undefined;
|
|
7139
|
+
readonly system?: boolean | undefined;
|
|
6340
7140
|
readonly min?: number | undefined;
|
|
6341
7141
|
readonly max?: number | undefined;
|
|
6342
7142
|
readonly group?: string | undefined;
|
|
@@ -6511,6 +7311,7 @@ declare const RecordSubscription: Omit<{
|
|
|
6511
7311
|
readonly dependencies?: string[] | undefined;
|
|
6512
7312
|
readonly theme?: string | undefined;
|
|
6513
7313
|
readonly externalId?: boolean | undefined;
|
|
7314
|
+
readonly system?: boolean | undefined;
|
|
6514
7315
|
readonly min?: number | undefined;
|
|
6515
7316
|
readonly max?: number | undefined;
|
|
6516
7317
|
readonly group?: string | undefined;
|
|
@@ -6685,6 +7486,7 @@ declare const RecordSubscription: Omit<{
|
|
|
6685
7486
|
readonly dependencies?: string[] | undefined;
|
|
6686
7487
|
readonly theme?: string | undefined;
|
|
6687
7488
|
readonly externalId?: boolean | undefined;
|
|
7489
|
+
readonly system?: boolean | undefined;
|
|
6688
7490
|
readonly min?: number | undefined;
|
|
6689
7491
|
readonly max?: number | undefined;
|
|
6690
7492
|
readonly group?: string | undefined;
|
|
@@ -6859,6 +7661,7 @@ declare const RecordSubscription: Omit<{
|
|
|
6859
7661
|
readonly dependencies?: string[] | undefined;
|
|
6860
7662
|
readonly theme?: string | undefined;
|
|
6861
7663
|
readonly externalId?: boolean | undefined;
|
|
7664
|
+
readonly system?: boolean | undefined;
|
|
6862
7665
|
readonly min?: number | undefined;
|
|
6863
7666
|
readonly max?: number | undefined;
|
|
6864
7667
|
readonly group?: string | undefined;
|