@objectstack/service-feed 4.0.5 → 4.1.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/index.d.ts 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" | "better-auth" | "platform" | undefined;
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,240 @@ 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" | "inline" | "form";
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;
477
719
  search?: {
478
720
  fields: string[];
479
721
  displayFields?: string[] | undefined;
@@ -489,10 +731,10 @@ declare const FeedItem: Omit<{
489
731
  trash: boolean;
490
732
  mru: boolean;
491
733
  clone: boolean;
492
- apiMethods?: ("search" | "list" | "get" | "delete" | "update" | "upsert" | "history" | "create" | "bulk" | "aggregate" | "restore" | "purge" | "import" | "export")[] | undefined;
734
+ apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
493
735
  } | undefined;
494
736
  recordTypes?: string[] | undefined;
495
- sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
737
+ sharingModel?: "private" | "read" | "full" | "read_write" | undefined;
496
738
  keyPrefix?: string | undefined;
497
739
  actions?: {
498
740
  name: string;
@@ -516,14 +758,20 @@ declare const FeedItem: Omit<{
516
758
  } | undefined;
517
759
  execute?: string | undefined;
518
760
  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
761
  required: boolean;
762
+ name?: string | undefined;
763
+ field?: string | undefined;
764
+ objectOverride?: string | undefined;
765
+ label?: string | undefined;
766
+ 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
767
  options?: {
524
768
  label: string;
525
769
  value: string;
526
770
  }[] | undefined;
771
+ placeholder?: string | undefined;
772
+ helpText?: string | undefined;
773
+ defaultValue?: unknown;
774
+ defaultFromRow?: boolean | undefined;
527
775
  }[] | undefined;
528
776
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
529
777
  confirmText?: string | undefined;
@@ -548,6 +796,14 @@ declare const FeedItem: Omit<{
548
796
  } | undefined;
549
797
  shortcut?: string | undefined;
550
798
  bulkEnabled?: boolean | undefined;
799
+ recordIdParam?: string | undefined;
800
+ recordIdField?: string | undefined;
801
+ bodyShape?: "flat" | {
802
+ wrap: string;
803
+ } | undefined;
804
+ method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
805
+ bodyExtra?: Record<string, unknown> | undefined;
806
+ mode?: "custom" | "delete" | "create" | "edit" | undefined;
551
807
  timeout?: number | undefined;
552
808
  aria?: {
553
809
  ariaLabel?: string | undefined;
@@ -582,6 +838,7 @@ declare const FeedItem: Omit<{
582
838
  readonly dependencies?: string[] | undefined;
583
839
  readonly theme?: string | undefined;
584
840
  readonly externalId?: boolean | undefined;
841
+ readonly system?: boolean | undefined;
585
842
  readonly min?: number | undefined;
586
843
  readonly max?: number | undefined;
587
844
  readonly group?: string | undefined;
@@ -756,6 +1013,7 @@ declare const FeedItem: Omit<{
756
1013
  readonly dependencies?: string[] | undefined;
757
1014
  readonly theme?: string | undefined;
758
1015
  readonly externalId?: boolean | undefined;
1016
+ readonly system?: boolean | undefined;
759
1017
  readonly min?: number | undefined;
760
1018
  readonly max?: number | undefined;
761
1019
  readonly group?: string | undefined;
@@ -930,6 +1188,7 @@ declare const FeedItem: Omit<{
930
1188
  readonly dependencies?: string[] | undefined;
931
1189
  readonly theme?: string | undefined;
932
1190
  readonly externalId?: boolean | undefined;
1191
+ readonly system?: boolean | undefined;
933
1192
  readonly min?: number | undefined;
934
1193
  readonly max?: number | undefined;
935
1194
  readonly group?: string | undefined;
@@ -1104,6 +1363,7 @@ declare const FeedItem: Omit<{
1104
1363
  readonly dependencies?: string[] | undefined;
1105
1364
  readonly theme?: string | undefined;
1106
1365
  readonly externalId?: boolean | undefined;
1366
+ readonly system?: boolean | undefined;
1107
1367
  readonly min?: number | undefined;
1108
1368
  readonly max?: number | undefined;
1109
1369
  readonly group?: string | undefined;
@@ -1278,6 +1538,7 @@ declare const FeedItem: Omit<{
1278
1538
  readonly dependencies?: string[] | undefined;
1279
1539
  readonly theme?: string | undefined;
1280
1540
  readonly externalId?: boolean | undefined;
1541
+ readonly system?: boolean | undefined;
1281
1542
  readonly min?: number | undefined;
1282
1543
  readonly max?: number | undefined;
1283
1544
  readonly group?: string | undefined;
@@ -1452,6 +1713,7 @@ declare const FeedItem: Omit<{
1452
1713
  readonly dependencies?: string[] | undefined;
1453
1714
  readonly theme?: string | undefined;
1454
1715
  readonly externalId?: boolean | undefined;
1716
+ readonly system?: boolean | undefined;
1455
1717
  readonly min?: number | undefined;
1456
1718
  readonly max?: number | undefined;
1457
1719
  readonly group?: string | undefined;
@@ -1626,6 +1888,7 @@ declare const FeedItem: Omit<{
1626
1888
  readonly dependencies?: string[] | undefined;
1627
1889
  readonly theme?: string | undefined;
1628
1890
  readonly externalId?: boolean | undefined;
1891
+ readonly system?: boolean | undefined;
1629
1892
  readonly min?: number | undefined;
1630
1893
  readonly max?: number | undefined;
1631
1894
  readonly group?: string | undefined;
@@ -1800,6 +2063,7 @@ declare const FeedItem: Omit<{
1800
2063
  readonly dependencies?: string[] | undefined;
1801
2064
  readonly theme?: string | undefined;
1802
2065
  readonly externalId?: boolean | undefined;
2066
+ readonly system?: boolean | undefined;
1803
2067
  readonly min?: number | undefined;
1804
2068
  readonly max?: number | undefined;
1805
2069
  readonly group?: string | undefined;
@@ -1974,6 +2238,7 @@ declare const FeedItem: Omit<{
1974
2238
  readonly dependencies?: string[] | undefined;
1975
2239
  readonly theme?: string | undefined;
1976
2240
  readonly externalId?: boolean | undefined;
2241
+ readonly system?: boolean | undefined;
1977
2242
  readonly min?: number | undefined;
1978
2243
  readonly max?: number | undefined;
1979
2244
  readonly group?: string | undefined;
@@ -2148,6 +2413,7 @@ declare const FeedItem: Omit<{
2148
2413
  readonly dependencies?: string[] | undefined;
2149
2414
  readonly theme?: string | undefined;
2150
2415
  readonly externalId?: boolean | undefined;
2416
+ readonly system?: boolean | undefined;
2151
2417
  readonly min?: number | undefined;
2152
2418
  readonly max?: number | undefined;
2153
2419
  readonly group?: string | undefined;
@@ -2322,6 +2588,7 @@ declare const FeedItem: Omit<{
2322
2588
  readonly dependencies?: string[] | undefined;
2323
2589
  readonly theme?: string | undefined;
2324
2590
  readonly externalId?: boolean | undefined;
2591
+ readonly system?: boolean | undefined;
2325
2592
  readonly min?: number | undefined;
2326
2593
  readonly max?: number | undefined;
2327
2594
  readonly group?: string | undefined;
@@ -2496,6 +2763,7 @@ declare const FeedItem: Omit<{
2496
2763
  readonly dependencies?: string[] | undefined;
2497
2764
  readonly theme?: string | undefined;
2498
2765
  readonly externalId?: boolean | undefined;
2766
+ readonly system?: boolean | undefined;
2499
2767
  readonly min?: number | undefined;
2500
2768
  readonly max?: number | undefined;
2501
2769
  readonly group?: string | undefined;
@@ -2670,6 +2938,7 @@ declare const FeedItem: Omit<{
2670
2938
  readonly dependencies?: string[] | undefined;
2671
2939
  readonly theme?: string | undefined;
2672
2940
  readonly externalId?: boolean | undefined;
2941
+ readonly system?: boolean | undefined;
2673
2942
  readonly min?: number | undefined;
2674
2943
  readonly max?: number | undefined;
2675
2944
  readonly group?: string | undefined;
@@ -2844,6 +3113,7 @@ declare const FeedItem: Omit<{
2844
3113
  readonly dependencies?: string[] | undefined;
2845
3114
  readonly theme?: string | undefined;
2846
3115
  readonly externalId?: boolean | undefined;
3116
+ readonly system?: boolean | undefined;
2847
3117
  readonly min?: number | undefined;
2848
3118
  readonly max?: number | undefined;
2849
3119
  readonly group?: string | undefined;
@@ -3018,6 +3288,7 @@ declare const FeedItem: Omit<{
3018
3288
  readonly dependencies?: string[] | undefined;
3019
3289
  readonly theme?: string | undefined;
3020
3290
  readonly externalId?: boolean | undefined;
3291
+ readonly system?: boolean | undefined;
3021
3292
  readonly min?: number | undefined;
3022
3293
  readonly max?: number | undefined;
3023
3294
  readonly group?: string | undefined;
@@ -3192,6 +3463,7 @@ declare const FeedItem: Omit<{
3192
3463
  readonly dependencies?: string[] | undefined;
3193
3464
  readonly theme?: string | undefined;
3194
3465
  readonly externalId?: boolean | undefined;
3466
+ readonly system?: boolean | undefined;
3195
3467
  readonly min?: number | undefined;
3196
3468
  readonly max?: number | undefined;
3197
3469
  readonly group?: string | undefined;
@@ -3366,6 +3638,7 @@ declare const FeedItem: Omit<{
3366
3638
  readonly dependencies?: string[] | undefined;
3367
3639
  readonly theme?: string | undefined;
3368
3640
  readonly externalId?: boolean | undefined;
3641
+ readonly system?: boolean | undefined;
3369
3642
  readonly min?: number | undefined;
3370
3643
  readonly max?: number | undefined;
3371
3644
  readonly group?: string | undefined;
@@ -3540,6 +3813,7 @@ declare const FeedItem: Omit<{
3540
3813
  readonly dependencies?: string[] | undefined;
3541
3814
  readonly theme?: string | undefined;
3542
3815
  readonly externalId?: boolean | undefined;
3816
+ readonly system?: boolean | undefined;
3543
3817
  readonly min?: number | undefined;
3544
3818
  readonly max?: number | undefined;
3545
3819
  readonly group?: string | undefined;
@@ -3714,6 +3988,7 @@ declare const FeedItem: Omit<{
3714
3988
  readonly dependencies?: string[] | undefined;
3715
3989
  readonly theme?: string | undefined;
3716
3990
  readonly externalId?: boolean | undefined;
3991
+ readonly system?: boolean | undefined;
3717
3992
  readonly min?: number | undefined;
3718
3993
  readonly max?: number | undefined;
3719
3994
  readonly group?: string | undefined;
@@ -4093,6 +4368,7 @@ declare const FeedReaction: Omit<{
4093
4368
  generatedBy?: string | undefined;
4094
4369
  } | undefined;
4095
4370
  } | undefined;
4371
+ system?: boolean | undefined;
4096
4372
  inlineHelpText?: string | undefined;
4097
4373
  trackFeedHistory?: boolean | undefined;
4098
4374
  caseSensitive?: boolean | undefined;
@@ -4103,7 +4379,14 @@ declare const FeedReaction: Omit<{
4103
4379
  description?: string | undefined;
4104
4380
  icon?: string | undefined;
4105
4381
  tags?: string[] | undefined;
4106
- managedBy?: "system" | "better-auth" | "platform" | undefined;
4382
+ managedBy?: "system" | "config" | "platform" | "append-only" | "better-auth" | undefined;
4383
+ userActions?: {
4384
+ create?: boolean | undefined;
4385
+ import?: boolean | undefined;
4386
+ edit?: boolean | undefined;
4387
+ delete?: boolean | undefined;
4388
+ exportCsv?: boolean | undefined;
4389
+ } | undefined;
4107
4390
  systemFields?: false | {
4108
4391
  tenant?: boolean | undefined;
4109
4392
  owner?: boolean | undefined;
@@ -4223,6 +4506,240 @@ declare const FeedReaction: Omit<{
4223
4506
  } | undefined;
4224
4507
  } | undefined;
4225
4508
  compactLayout?: string[] | undefined;
4509
+ listViews?: Record<string, {
4510
+ type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "grid";
4511
+ columns: string[] | {
4512
+ field: string;
4513
+ label?: string | undefined;
4514
+ width?: number | undefined;
4515
+ align?: "left" | "center" | "right" | undefined;
4516
+ hidden?: boolean | undefined;
4517
+ sortable?: boolean | undefined;
4518
+ resizable?: boolean | undefined;
4519
+ wrap?: boolean | undefined;
4520
+ type?: string | undefined;
4521
+ pinned?: "left" | "right" | undefined;
4522
+ summary?: "count" | "min" | "max" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
4523
+ link?: boolean | undefined;
4524
+ action?: string | undefined;
4525
+ }[];
4526
+ name?: string | undefined;
4527
+ label?: string | undefined;
4528
+ data?: {
4529
+ provider: "object";
4530
+ object: string;
4531
+ } | {
4532
+ provider: "api";
4533
+ read?: {
4534
+ url: string;
4535
+ method: "GET" | "POST" | "PATCH" | "PUT" | "DELETE";
4536
+ headers?: Record<string, string> | undefined;
4537
+ params?: Record<string, unknown> | undefined;
4538
+ body?: unknown;
4539
+ } | undefined;
4540
+ write?: {
4541
+ url: string;
4542
+ method: "GET" | "POST" | "PATCH" | "PUT" | "DELETE";
4543
+ headers?: Record<string, string> | undefined;
4544
+ params?: Record<string, unknown> | undefined;
4545
+ body?: unknown;
4546
+ } | undefined;
4547
+ } | {
4548
+ provider: "value";
4549
+ items: unknown[];
4550
+ } | undefined;
4551
+ filter?: {
4552
+ field: string;
4553
+ operator: string;
4554
+ value?: string | number | boolean | (string | number)[] | null | undefined;
4555
+ }[] | undefined;
4556
+ sort?: string | {
4557
+ field: string;
4558
+ order: "asc" | "desc";
4559
+ }[] | undefined;
4560
+ searchableFields?: string[] | undefined;
4561
+ filterableFields?: string[] | undefined;
4562
+ resizable?: boolean | undefined;
4563
+ striped?: boolean | undefined;
4564
+ bordered?: boolean | undefined;
4565
+ compactToolbar?: boolean | undefined;
4566
+ selection?: {
4567
+ type: "multiple" | "single" | "none";
4568
+ } | undefined;
4569
+ navigation?: {
4570
+ mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
4571
+ preventNavigation: boolean;
4572
+ openNewTab: boolean;
4573
+ view?: string | undefined;
4574
+ width?: string | number | undefined;
4575
+ } | undefined;
4576
+ pagination?: {
4577
+ pageSize: number;
4578
+ pageSizeOptions?: number[] | undefined;
4579
+ } | undefined;
4580
+ kanban?: {
4581
+ groupByField: string;
4582
+ columns: string[];
4583
+ summarizeField?: string | undefined;
4584
+ } | undefined;
4585
+ calendar?: {
4586
+ startDateField: string;
4587
+ titleField: string;
4588
+ endDateField?: string | undefined;
4589
+ colorField?: string | undefined;
4590
+ } | undefined;
4591
+ gantt?: {
4592
+ startDateField: string;
4593
+ endDateField: string;
4594
+ titleField: string;
4595
+ progressField?: string | undefined;
4596
+ dependenciesField?: string | undefined;
4597
+ } | undefined;
4598
+ gallery?: {
4599
+ coverFit: "cover" | "contain";
4600
+ cardSize: "small" | "medium" | "large";
4601
+ coverField?: string | undefined;
4602
+ titleField?: string | undefined;
4603
+ visibleFields?: string[] | undefined;
4604
+ } | undefined;
4605
+ timeline?: {
4606
+ startDateField: string;
4607
+ titleField: string;
4608
+ scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
4609
+ endDateField?: string | undefined;
4610
+ groupByField?: string | undefined;
4611
+ colorField?: string | undefined;
4612
+ } | undefined;
4613
+ chart?: {
4614
+ chartType: "bar" | "line" | "pie" | "area" | "scatter";
4615
+ xAxisField: string;
4616
+ yAxisFields: string[];
4617
+ aggregation?: "count" | "min" | "max" | "sum" | "avg" | undefined;
4618
+ groupByField?: string | undefined;
4619
+ } | undefined;
4620
+ description?: string | undefined;
4621
+ sharing?: {
4622
+ type: "personal" | "collaborative";
4623
+ lockedBy?: string | undefined;
4624
+ } | undefined;
4625
+ rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
4626
+ grouping?: {
4627
+ fields: {
4628
+ field: string;
4629
+ order: "asc" | "desc";
4630
+ collapsed: boolean;
4631
+ }[];
4632
+ } | undefined;
4633
+ rowColor?: {
4634
+ field: string;
4635
+ colors?: Record<string, string> | undefined;
4636
+ } | undefined;
4637
+ hiddenFields?: string[] | undefined;
4638
+ fieldOrder?: string[] | undefined;
4639
+ rowActions?: string[] | undefined;
4640
+ bulkActions?: string[] | undefined;
4641
+ bulkActionDefs?: Record<string, any>[] | undefined;
4642
+ virtualScroll?: boolean | undefined;
4643
+ conditionalFormatting?: {
4644
+ condition: {
4645
+ dialect: "cel" | "js" | "cron" | "template";
4646
+ source?: string | undefined;
4647
+ ast?: unknown;
4648
+ meta?: {
4649
+ rationale?: string | undefined;
4650
+ generatedBy?: string | undefined;
4651
+ } | undefined;
4652
+ } | {
4653
+ dialect: "cel" | "js" | "cron" | "template";
4654
+ source?: string | undefined;
4655
+ ast?: unknown;
4656
+ meta?: {
4657
+ rationale?: string | undefined;
4658
+ generatedBy?: string | undefined;
4659
+ } | undefined;
4660
+ };
4661
+ style: Record<string, string>;
4662
+ }[] | undefined;
4663
+ inlineEdit?: boolean | undefined;
4664
+ exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
4665
+ userActions?: {
4666
+ sort: boolean;
4667
+ search: boolean;
4668
+ filter: boolean;
4669
+ rowHeight: boolean;
4670
+ addRecordForm: boolean;
4671
+ buttons?: string[] | undefined;
4672
+ } | undefined;
4673
+ appearance?: {
4674
+ showDescription: boolean;
4675
+ allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "grid")[] | undefined;
4676
+ } | undefined;
4677
+ tabs?: {
4678
+ name: string;
4679
+ pinned: boolean;
4680
+ isDefault: boolean;
4681
+ visible: boolean;
4682
+ label?: string | undefined;
4683
+ icon?: string | undefined;
4684
+ view?: string | undefined;
4685
+ filter?: {
4686
+ field: string;
4687
+ operator: string;
4688
+ value?: string | number | boolean | (string | number)[] | null | undefined;
4689
+ }[] | undefined;
4690
+ order?: number | undefined;
4691
+ }[] | undefined;
4692
+ addRecord?: {
4693
+ enabled: boolean;
4694
+ position: "top" | "bottom" | "both";
4695
+ mode: "modal" | "inline" | "form";
4696
+ formView?: string | undefined;
4697
+ } | undefined;
4698
+ showRecordCount?: boolean | undefined;
4699
+ allowPrinting?: boolean | undefined;
4700
+ emptyState?: {
4701
+ title?: string | undefined;
4702
+ message?: string | undefined;
4703
+ icon?: string | undefined;
4704
+ } | undefined;
4705
+ aria?: {
4706
+ ariaLabel?: string | undefined;
4707
+ ariaDescribedBy?: string | undefined;
4708
+ role?: string | undefined;
4709
+ } | undefined;
4710
+ responsive?: {
4711
+ breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
4712
+ hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
4713
+ columns?: {
4714
+ xs?: number | undefined;
4715
+ sm?: number | undefined;
4716
+ md?: number | undefined;
4717
+ lg?: number | undefined;
4718
+ xl?: number | undefined;
4719
+ '2xl'?: number | undefined;
4720
+ } | undefined;
4721
+ order?: {
4722
+ xs?: number | undefined;
4723
+ sm?: number | undefined;
4724
+ md?: number | undefined;
4725
+ lg?: number | undefined;
4726
+ xl?: number | undefined;
4727
+ '2xl'?: number | undefined;
4728
+ } | undefined;
4729
+ } | undefined;
4730
+ performance?: {
4731
+ lazyLoad?: boolean | undefined;
4732
+ virtualScroll?: {
4733
+ enabled: boolean;
4734
+ itemHeight?: number | undefined;
4735
+ overscan?: number | undefined;
4736
+ } | undefined;
4737
+ cacheStrategy?: "none" | "cache-first" | "network-first" | "stale-while-revalidate" | undefined;
4738
+ prefetch?: boolean | undefined;
4739
+ pageSize?: number | undefined;
4740
+ debounceMs?: number | undefined;
4741
+ } | undefined;
4742
+ }> | undefined;
4226
4743
  search?: {
4227
4744
  fields: string[];
4228
4745
  displayFields?: string[] | undefined;
@@ -4238,10 +4755,10 @@ declare const FeedReaction: Omit<{
4238
4755
  trash: boolean;
4239
4756
  mru: boolean;
4240
4757
  clone: boolean;
4241
- apiMethods?: ("search" | "list" | "get" | "delete" | "update" | "upsert" | "history" | "create" | "bulk" | "aggregate" | "restore" | "purge" | "import" | "export")[] | undefined;
4758
+ apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
4242
4759
  } | undefined;
4243
4760
  recordTypes?: string[] | undefined;
4244
- sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
4761
+ sharingModel?: "private" | "read" | "full" | "read_write" | undefined;
4245
4762
  keyPrefix?: string | undefined;
4246
4763
  actions?: {
4247
4764
  name: string;
@@ -4265,14 +4782,20 @@ declare const FeedReaction: Omit<{
4265
4782
  } | undefined;
4266
4783
  execute?: string | undefined;
4267
4784
  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
4785
  required: boolean;
4786
+ name?: string | undefined;
4787
+ field?: string | undefined;
4788
+ objectOverride?: string | undefined;
4789
+ label?: string | undefined;
4790
+ 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
4791
  options?: {
4273
4792
  label: string;
4274
4793
  value: string;
4275
4794
  }[] | undefined;
4795
+ placeholder?: string | undefined;
4796
+ helpText?: string | undefined;
4797
+ defaultValue?: unknown;
4798
+ defaultFromRow?: boolean | undefined;
4276
4799
  }[] | undefined;
4277
4800
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
4278
4801
  confirmText?: string | undefined;
@@ -4297,6 +4820,14 @@ declare const FeedReaction: Omit<{
4297
4820
  } | undefined;
4298
4821
  shortcut?: string | undefined;
4299
4822
  bulkEnabled?: boolean | undefined;
4823
+ recordIdParam?: string | undefined;
4824
+ recordIdField?: string | undefined;
4825
+ bodyShape?: "flat" | {
4826
+ wrap: string;
4827
+ } | undefined;
4828
+ method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
4829
+ bodyExtra?: Record<string, unknown> | undefined;
4830
+ mode?: "custom" | "delete" | "create" | "edit" | undefined;
4300
4831
  timeout?: number | undefined;
4301
4832
  aria?: {
4302
4833
  ariaLabel?: string | undefined;
@@ -4331,6 +4862,7 @@ declare const FeedReaction: Omit<{
4331
4862
  readonly dependencies?: string[] | undefined;
4332
4863
  readonly theme?: string | undefined;
4333
4864
  readonly externalId?: boolean | undefined;
4865
+ readonly system?: boolean | undefined;
4334
4866
  readonly min?: number | undefined;
4335
4867
  readonly max?: number | undefined;
4336
4868
  readonly group?: string | undefined;
@@ -4505,6 +5037,7 @@ declare const FeedReaction: Omit<{
4505
5037
  readonly dependencies?: string[] | undefined;
4506
5038
  readonly theme?: string | undefined;
4507
5039
  readonly externalId?: boolean | undefined;
5040
+ readonly system?: boolean | undefined;
4508
5041
  readonly min?: number | undefined;
4509
5042
  readonly max?: number | undefined;
4510
5043
  readonly group?: string | undefined;
@@ -4679,6 +5212,7 @@ declare const FeedReaction: Omit<{
4679
5212
  readonly dependencies?: string[] | undefined;
4680
5213
  readonly theme?: string | undefined;
4681
5214
  readonly externalId?: boolean | undefined;
5215
+ readonly system?: boolean | undefined;
4682
5216
  readonly min?: number | undefined;
4683
5217
  readonly max?: number | undefined;
4684
5218
  readonly group?: string | undefined;
@@ -4853,6 +5387,7 @@ declare const FeedReaction: Omit<{
4853
5387
  readonly dependencies?: string[] | undefined;
4854
5388
  readonly theme?: string | undefined;
4855
5389
  readonly externalId?: boolean | undefined;
5390
+ readonly system?: boolean | undefined;
4856
5391
  readonly min?: number | undefined;
4857
5392
  readonly max?: number | undefined;
4858
5393
  readonly group?: string | undefined;
@@ -5027,6 +5562,7 @@ declare const FeedReaction: Omit<{
5027
5562
  readonly dependencies?: string[] | undefined;
5028
5563
  readonly theme?: string | undefined;
5029
5564
  readonly externalId?: boolean | undefined;
5565
+ readonly system?: boolean | undefined;
5030
5566
  readonly min?: number | undefined;
5031
5567
  readonly max?: number | undefined;
5032
5568
  readonly group?: string | undefined;
@@ -5403,6 +5939,7 @@ declare const RecordSubscription: Omit<{
5403
5939
  generatedBy?: string | undefined;
5404
5940
  } | undefined;
5405
5941
  } | undefined;
5942
+ system?: boolean | undefined;
5406
5943
  inlineHelpText?: string | undefined;
5407
5944
  trackFeedHistory?: boolean | undefined;
5408
5945
  caseSensitive?: boolean | undefined;
@@ -5413,7 +5950,14 @@ declare const RecordSubscription: Omit<{
5413
5950
  description?: string | undefined;
5414
5951
  icon?: string | undefined;
5415
5952
  tags?: string[] | undefined;
5416
- managedBy?: "system" | "better-auth" | "platform" | undefined;
5953
+ managedBy?: "system" | "config" | "platform" | "append-only" | "better-auth" | undefined;
5954
+ userActions?: {
5955
+ create?: boolean | undefined;
5956
+ import?: boolean | undefined;
5957
+ edit?: boolean | undefined;
5958
+ delete?: boolean | undefined;
5959
+ exportCsv?: boolean | undefined;
5960
+ } | undefined;
5417
5961
  systemFields?: false | {
5418
5962
  tenant?: boolean | undefined;
5419
5963
  owner?: boolean | undefined;
@@ -5533,6 +6077,240 @@ declare const RecordSubscription: Omit<{
5533
6077
  } | undefined;
5534
6078
  } | undefined;
5535
6079
  compactLayout?: string[] | undefined;
6080
+ listViews?: Record<string, {
6081
+ type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "grid";
6082
+ columns: string[] | {
6083
+ field: string;
6084
+ label?: string | undefined;
6085
+ width?: number | undefined;
6086
+ align?: "left" | "center" | "right" | undefined;
6087
+ hidden?: boolean | undefined;
6088
+ sortable?: boolean | undefined;
6089
+ resizable?: boolean | undefined;
6090
+ wrap?: boolean | undefined;
6091
+ type?: string | undefined;
6092
+ pinned?: "left" | "right" | undefined;
6093
+ summary?: "count" | "min" | "max" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
6094
+ link?: boolean | undefined;
6095
+ action?: string | undefined;
6096
+ }[];
6097
+ name?: string | undefined;
6098
+ label?: string | undefined;
6099
+ data?: {
6100
+ provider: "object";
6101
+ object: string;
6102
+ } | {
6103
+ provider: "api";
6104
+ read?: {
6105
+ url: string;
6106
+ method: "GET" | "POST" | "PATCH" | "PUT" | "DELETE";
6107
+ headers?: Record<string, string> | undefined;
6108
+ params?: Record<string, unknown> | undefined;
6109
+ body?: unknown;
6110
+ } | undefined;
6111
+ write?: {
6112
+ url: string;
6113
+ method: "GET" | "POST" | "PATCH" | "PUT" | "DELETE";
6114
+ headers?: Record<string, string> | undefined;
6115
+ params?: Record<string, unknown> | undefined;
6116
+ body?: unknown;
6117
+ } | undefined;
6118
+ } | {
6119
+ provider: "value";
6120
+ items: unknown[];
6121
+ } | undefined;
6122
+ filter?: {
6123
+ field: string;
6124
+ operator: string;
6125
+ value?: string | number | boolean | (string | number)[] | null | undefined;
6126
+ }[] | undefined;
6127
+ sort?: string | {
6128
+ field: string;
6129
+ order: "asc" | "desc";
6130
+ }[] | undefined;
6131
+ searchableFields?: string[] | undefined;
6132
+ filterableFields?: string[] | undefined;
6133
+ resizable?: boolean | undefined;
6134
+ striped?: boolean | undefined;
6135
+ bordered?: boolean | undefined;
6136
+ compactToolbar?: boolean | undefined;
6137
+ selection?: {
6138
+ type: "multiple" | "single" | "none";
6139
+ } | undefined;
6140
+ navigation?: {
6141
+ mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
6142
+ preventNavigation: boolean;
6143
+ openNewTab: boolean;
6144
+ view?: string | undefined;
6145
+ width?: string | number | undefined;
6146
+ } | undefined;
6147
+ pagination?: {
6148
+ pageSize: number;
6149
+ pageSizeOptions?: number[] | undefined;
6150
+ } | undefined;
6151
+ kanban?: {
6152
+ groupByField: string;
6153
+ columns: string[];
6154
+ summarizeField?: string | undefined;
6155
+ } | undefined;
6156
+ calendar?: {
6157
+ startDateField: string;
6158
+ titleField: string;
6159
+ endDateField?: string | undefined;
6160
+ colorField?: string | undefined;
6161
+ } | undefined;
6162
+ gantt?: {
6163
+ startDateField: string;
6164
+ endDateField: string;
6165
+ titleField: string;
6166
+ progressField?: string | undefined;
6167
+ dependenciesField?: string | undefined;
6168
+ } | undefined;
6169
+ gallery?: {
6170
+ coverFit: "cover" | "contain";
6171
+ cardSize: "small" | "medium" | "large";
6172
+ coverField?: string | undefined;
6173
+ titleField?: string | undefined;
6174
+ visibleFields?: string[] | undefined;
6175
+ } | undefined;
6176
+ timeline?: {
6177
+ startDateField: string;
6178
+ titleField: string;
6179
+ scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
6180
+ endDateField?: string | undefined;
6181
+ groupByField?: string | undefined;
6182
+ colorField?: string | undefined;
6183
+ } | undefined;
6184
+ chart?: {
6185
+ chartType: "bar" | "line" | "pie" | "area" | "scatter";
6186
+ xAxisField: string;
6187
+ yAxisFields: string[];
6188
+ aggregation?: "count" | "min" | "max" | "sum" | "avg" | undefined;
6189
+ groupByField?: string | undefined;
6190
+ } | undefined;
6191
+ description?: string | undefined;
6192
+ sharing?: {
6193
+ type: "personal" | "collaborative";
6194
+ lockedBy?: string | undefined;
6195
+ } | undefined;
6196
+ rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
6197
+ grouping?: {
6198
+ fields: {
6199
+ field: string;
6200
+ order: "asc" | "desc";
6201
+ collapsed: boolean;
6202
+ }[];
6203
+ } | undefined;
6204
+ rowColor?: {
6205
+ field: string;
6206
+ colors?: Record<string, string> | undefined;
6207
+ } | undefined;
6208
+ hiddenFields?: string[] | undefined;
6209
+ fieldOrder?: string[] | undefined;
6210
+ rowActions?: string[] | undefined;
6211
+ bulkActions?: string[] | undefined;
6212
+ bulkActionDefs?: Record<string, any>[] | undefined;
6213
+ virtualScroll?: boolean | undefined;
6214
+ conditionalFormatting?: {
6215
+ condition: {
6216
+ dialect: "cel" | "js" | "cron" | "template";
6217
+ source?: string | undefined;
6218
+ ast?: unknown;
6219
+ meta?: {
6220
+ rationale?: string | undefined;
6221
+ generatedBy?: string | undefined;
6222
+ } | undefined;
6223
+ } | {
6224
+ dialect: "cel" | "js" | "cron" | "template";
6225
+ source?: string | undefined;
6226
+ ast?: unknown;
6227
+ meta?: {
6228
+ rationale?: string | undefined;
6229
+ generatedBy?: string | undefined;
6230
+ } | undefined;
6231
+ };
6232
+ style: Record<string, string>;
6233
+ }[] | undefined;
6234
+ inlineEdit?: boolean | undefined;
6235
+ exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
6236
+ userActions?: {
6237
+ sort: boolean;
6238
+ search: boolean;
6239
+ filter: boolean;
6240
+ rowHeight: boolean;
6241
+ addRecordForm: boolean;
6242
+ buttons?: string[] | undefined;
6243
+ } | undefined;
6244
+ appearance?: {
6245
+ showDescription: boolean;
6246
+ allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "grid")[] | undefined;
6247
+ } | undefined;
6248
+ tabs?: {
6249
+ name: string;
6250
+ pinned: boolean;
6251
+ isDefault: boolean;
6252
+ visible: boolean;
6253
+ label?: string | undefined;
6254
+ icon?: string | undefined;
6255
+ view?: string | undefined;
6256
+ filter?: {
6257
+ field: string;
6258
+ operator: string;
6259
+ value?: string | number | boolean | (string | number)[] | null | undefined;
6260
+ }[] | undefined;
6261
+ order?: number | undefined;
6262
+ }[] | undefined;
6263
+ addRecord?: {
6264
+ enabled: boolean;
6265
+ position: "top" | "bottom" | "both";
6266
+ mode: "modal" | "inline" | "form";
6267
+ formView?: string | undefined;
6268
+ } | undefined;
6269
+ showRecordCount?: boolean | undefined;
6270
+ allowPrinting?: boolean | undefined;
6271
+ emptyState?: {
6272
+ title?: string | undefined;
6273
+ message?: string | undefined;
6274
+ icon?: string | undefined;
6275
+ } | undefined;
6276
+ aria?: {
6277
+ ariaLabel?: string | undefined;
6278
+ ariaDescribedBy?: string | undefined;
6279
+ role?: string | undefined;
6280
+ } | undefined;
6281
+ responsive?: {
6282
+ breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
6283
+ hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
6284
+ columns?: {
6285
+ xs?: number | undefined;
6286
+ sm?: number | undefined;
6287
+ md?: number | undefined;
6288
+ lg?: number | undefined;
6289
+ xl?: number | undefined;
6290
+ '2xl'?: number | undefined;
6291
+ } | undefined;
6292
+ order?: {
6293
+ xs?: number | undefined;
6294
+ sm?: number | undefined;
6295
+ md?: number | undefined;
6296
+ lg?: number | undefined;
6297
+ xl?: number | undefined;
6298
+ '2xl'?: number | undefined;
6299
+ } | undefined;
6300
+ } | undefined;
6301
+ performance?: {
6302
+ lazyLoad?: boolean | undefined;
6303
+ virtualScroll?: {
6304
+ enabled: boolean;
6305
+ itemHeight?: number | undefined;
6306
+ overscan?: number | undefined;
6307
+ } | undefined;
6308
+ cacheStrategy?: "none" | "cache-first" | "network-first" | "stale-while-revalidate" | undefined;
6309
+ prefetch?: boolean | undefined;
6310
+ pageSize?: number | undefined;
6311
+ debounceMs?: number | undefined;
6312
+ } | undefined;
6313
+ }> | undefined;
5536
6314
  search?: {
5537
6315
  fields: string[];
5538
6316
  displayFields?: string[] | undefined;
@@ -5548,10 +6326,10 @@ declare const RecordSubscription: Omit<{
5548
6326
  trash: boolean;
5549
6327
  mru: boolean;
5550
6328
  clone: boolean;
5551
- apiMethods?: ("search" | "list" | "get" | "delete" | "update" | "upsert" | "history" | "create" | "bulk" | "aggregate" | "restore" | "purge" | "import" | "export")[] | undefined;
6329
+ apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
5552
6330
  } | undefined;
5553
6331
  recordTypes?: string[] | undefined;
5554
- sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
6332
+ sharingModel?: "private" | "read" | "full" | "read_write" | undefined;
5555
6333
  keyPrefix?: string | undefined;
5556
6334
  actions?: {
5557
6335
  name: string;
@@ -5575,14 +6353,20 @@ declare const RecordSubscription: Omit<{
5575
6353
  } | undefined;
5576
6354
  execute?: string | undefined;
5577
6355
  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
6356
  required: boolean;
6357
+ name?: string | undefined;
6358
+ field?: string | undefined;
6359
+ objectOverride?: string | undefined;
6360
+ label?: string | undefined;
6361
+ 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
6362
  options?: {
5583
6363
  label: string;
5584
6364
  value: string;
5585
6365
  }[] | undefined;
6366
+ placeholder?: string | undefined;
6367
+ helpText?: string | undefined;
6368
+ defaultValue?: unknown;
6369
+ defaultFromRow?: boolean | undefined;
5586
6370
  }[] | undefined;
5587
6371
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
5588
6372
  confirmText?: string | undefined;
@@ -5607,6 +6391,14 @@ declare const RecordSubscription: Omit<{
5607
6391
  } | undefined;
5608
6392
  shortcut?: string | undefined;
5609
6393
  bulkEnabled?: boolean | undefined;
6394
+ recordIdParam?: string | undefined;
6395
+ recordIdField?: string | undefined;
6396
+ bodyShape?: "flat" | {
6397
+ wrap: string;
6398
+ } | undefined;
6399
+ method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
6400
+ bodyExtra?: Record<string, unknown> | undefined;
6401
+ mode?: "custom" | "delete" | "create" | "edit" | undefined;
5610
6402
  timeout?: number | undefined;
5611
6403
  aria?: {
5612
6404
  ariaLabel?: string | undefined;
@@ -5641,6 +6433,7 @@ declare const RecordSubscription: Omit<{
5641
6433
  readonly dependencies?: string[] | undefined;
5642
6434
  readonly theme?: string | undefined;
5643
6435
  readonly externalId?: boolean | undefined;
6436
+ readonly system?: boolean | undefined;
5644
6437
  readonly min?: number | undefined;
5645
6438
  readonly max?: number | undefined;
5646
6439
  readonly group?: string | undefined;
@@ -5815,6 +6608,7 @@ declare const RecordSubscription: Omit<{
5815
6608
  readonly dependencies?: string[] | undefined;
5816
6609
  readonly theme?: string | undefined;
5817
6610
  readonly externalId?: boolean | undefined;
6611
+ readonly system?: boolean | undefined;
5818
6612
  readonly min?: number | undefined;
5819
6613
  readonly max?: number | undefined;
5820
6614
  readonly group?: string | undefined;
@@ -5989,6 +6783,7 @@ declare const RecordSubscription: Omit<{
5989
6783
  readonly dependencies?: string[] | undefined;
5990
6784
  readonly theme?: string | undefined;
5991
6785
  readonly externalId?: boolean | undefined;
6786
+ readonly system?: boolean | undefined;
5992
6787
  readonly min?: number | undefined;
5993
6788
  readonly max?: number | undefined;
5994
6789
  readonly group?: string | undefined;
@@ -6163,6 +6958,7 @@ declare const RecordSubscription: Omit<{
6163
6958
  readonly dependencies?: string[] | undefined;
6164
6959
  readonly theme?: string | undefined;
6165
6960
  readonly externalId?: boolean | undefined;
6961
+ readonly system?: boolean | undefined;
6166
6962
  readonly min?: number | undefined;
6167
6963
  readonly max?: number | undefined;
6168
6964
  readonly group?: string | undefined;
@@ -6337,6 +7133,7 @@ declare const RecordSubscription: Omit<{
6337
7133
  readonly dependencies?: string[] | undefined;
6338
7134
  readonly theme?: string | undefined;
6339
7135
  readonly externalId?: boolean | undefined;
7136
+ readonly system?: boolean | undefined;
6340
7137
  readonly min?: number | undefined;
6341
7138
  readonly max?: number | undefined;
6342
7139
  readonly group?: string | undefined;
@@ -6511,6 +7308,7 @@ declare const RecordSubscription: Omit<{
6511
7308
  readonly dependencies?: string[] | undefined;
6512
7309
  readonly theme?: string | undefined;
6513
7310
  readonly externalId?: boolean | undefined;
7311
+ readonly system?: boolean | undefined;
6514
7312
  readonly min?: number | undefined;
6515
7313
  readonly max?: number | undefined;
6516
7314
  readonly group?: string | undefined;
@@ -6685,6 +7483,7 @@ declare const RecordSubscription: Omit<{
6685
7483
  readonly dependencies?: string[] | undefined;
6686
7484
  readonly theme?: string | undefined;
6687
7485
  readonly externalId?: boolean | undefined;
7486
+ readonly system?: boolean | undefined;
6688
7487
  readonly min?: number | undefined;
6689
7488
  readonly max?: number | undefined;
6690
7489
  readonly group?: string | undefined;
@@ -6859,6 +7658,7 @@ declare const RecordSubscription: Omit<{
6859
7658
  readonly dependencies?: string[] | undefined;
6860
7659
  readonly theme?: string | undefined;
6861
7660
  readonly externalId?: boolean | undefined;
7661
+ readonly system?: boolean | undefined;
6862
7662
  readonly min?: number | undefined;
6863
7663
  readonly max?: number | undefined;
6864
7664
  readonly group?: string | undefined;