@objectstack/service-messaging 9.11.0 → 10.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/index.d.cts +1795 -22
  2. package/dist/index.d.ts +1795 -22
  3. package/package.json +4 -4
package/dist/index.d.cts CHANGED
@@ -1437,7 +1437,7 @@ declare const InboxMessage: Omit<{
1437
1437
  abstract: boolean;
1438
1438
  datasource: string;
1439
1439
  fields: Record<string, {
1440
- type: "number" | "boolean" | "email" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
1440
+ type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
1441
1441
  required: boolean;
1442
1442
  searchable: boolean;
1443
1443
  multiple: boolean;
@@ -1475,6 +1475,25 @@ declare const InboxMessage: Omit<{
1475
1475
  relatedList?: boolean | undefined;
1476
1476
  relatedListTitle?: string | undefined;
1477
1477
  relatedListColumns?: any[] | undefined;
1478
+ displayField?: string | undefined;
1479
+ descriptionField?: string | undefined;
1480
+ lookupColumns?: (string | {
1481
+ field: string;
1482
+ label?: string | undefined;
1483
+ width?: string | undefined;
1484
+ type?: string | undefined;
1485
+ })[] | undefined;
1486
+ lookupPageSize?: number | undefined;
1487
+ lookupFilters?: {
1488
+ field: string;
1489
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
1490
+ value: any;
1491
+ }[] | undefined;
1492
+ dependsOn?: (string | {
1493
+ field: string;
1494
+ param?: string | undefined;
1495
+ })[] | undefined;
1496
+ allowCreate?: boolean | undefined;
1478
1497
  expression?: {
1479
1498
  dialect: "cel" | "js" | "cron" | "template";
1480
1499
  source?: string | undefined;
@@ -1750,7 +1769,7 @@ declare const InboxMessage: Omit<{
1750
1769
  } | undefined;
1751
1770
  compactLayout?: string[] | undefined;
1752
1771
  listViews?: Record<string, {
1753
- type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
1772
+ type: "map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
1754
1773
  columns: string[] | {
1755
1774
  field: string;
1756
1775
  label?: string | undefined;
@@ -1867,6 +1886,7 @@ declare const InboxMessage: Omit<{
1867
1886
  colorField?: string | undefined;
1868
1887
  } | undefined;
1869
1888
  gantt?: {
1889
+ [x: string]: unknown;
1870
1890
  startDateField: string;
1871
1891
  endDateField: string;
1872
1892
  titleField: string;
@@ -1917,6 +1937,13 @@ declare const InboxMessage: Omit<{
1917
1937
  values: string[];
1918
1938
  dimensions?: string[] | undefined;
1919
1939
  } | undefined;
1940
+ tree?: {
1941
+ [x: string]: unknown;
1942
+ parentField?: string | undefined;
1943
+ labelField?: string | undefined;
1944
+ fields?: string[] | undefined;
1945
+ defaultExpandedDepth?: number | undefined;
1946
+ } | undefined;
1920
1947
  description?: string | undefined;
1921
1948
  sharing?: {
1922
1949
  type: "personal" | "collaborative";
@@ -1972,7 +1999,7 @@ declare const InboxMessage: Omit<{
1972
1999
  } | undefined;
1973
2000
  appearance?: {
1974
2001
  showDescription: boolean;
1975
- allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
2002
+ allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
1976
2003
  } | undefined;
1977
2004
  tabs?: {
1978
2005
  name: string;
@@ -2041,6 +2068,7 @@ declare const InboxMessage: Omit<{
2041
2068
  } | undefined;
2042
2069
  }> | undefined;
2043
2070
  defaultDetailForm?: string | undefined;
2071
+ searchableFields?: string[] | undefined;
2044
2072
  search?: {
2045
2073
  fields: string[];
2046
2074
  displayFields?: string[] | undefined;
@@ -2258,6 +2286,25 @@ declare const InboxMessage: Omit<{
2258
2286
  readonly relatedList?: boolean | undefined;
2259
2287
  readonly relatedListTitle?: string | undefined;
2260
2288
  readonly relatedListColumns?: any[] | undefined;
2289
+ readonly displayField?: string | undefined;
2290
+ readonly descriptionField?: string | undefined;
2291
+ readonly lookupColumns?: (string | {
2292
+ field: string;
2293
+ label?: string | undefined;
2294
+ width?: string | undefined;
2295
+ type?: string | undefined;
2296
+ })[] | undefined;
2297
+ readonly lookupPageSize?: number | undefined;
2298
+ readonly lookupFilters?: {
2299
+ field: string;
2300
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
2301
+ value: any;
2302
+ }[] | undefined;
2303
+ readonly dependsOn?: (string | {
2304
+ field: string;
2305
+ param?: string | undefined;
2306
+ })[] | undefined;
2307
+ readonly allowCreate?: boolean | undefined;
2261
2308
  readonly expression?: {
2262
2309
  dialect: "cel" | "js" | "cron" | "template";
2263
2310
  source?: string | undefined;
@@ -2413,6 +2460,25 @@ declare const InboxMessage: Omit<{
2413
2460
  readonly relatedList?: boolean | undefined;
2414
2461
  readonly relatedListTitle?: string | undefined;
2415
2462
  readonly relatedListColumns?: any[] | undefined;
2463
+ readonly displayField?: string | undefined;
2464
+ readonly descriptionField?: string | undefined;
2465
+ readonly lookupColumns?: (string | {
2466
+ field: string;
2467
+ label?: string | undefined;
2468
+ width?: string | undefined;
2469
+ type?: string | undefined;
2470
+ })[] | undefined;
2471
+ readonly lookupPageSize?: number | undefined;
2472
+ readonly lookupFilters?: {
2473
+ field: string;
2474
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
2475
+ value: any;
2476
+ }[] | undefined;
2477
+ readonly dependsOn?: (string | {
2478
+ field: string;
2479
+ param?: string | undefined;
2480
+ })[] | undefined;
2481
+ readonly allowCreate?: boolean | undefined;
2416
2482
  readonly expression?: {
2417
2483
  dialect: "cel" | "js" | "cron" | "template";
2418
2484
  source?: string | undefined;
@@ -2568,6 +2634,25 @@ declare const InboxMessage: Omit<{
2568
2634
  readonly relatedList?: boolean | undefined;
2569
2635
  readonly relatedListTitle?: string | undefined;
2570
2636
  readonly relatedListColumns?: any[] | undefined;
2637
+ readonly displayField?: string | undefined;
2638
+ readonly descriptionField?: string | undefined;
2639
+ readonly lookupColumns?: (string | {
2640
+ field: string;
2641
+ label?: string | undefined;
2642
+ width?: string | undefined;
2643
+ type?: string | undefined;
2644
+ })[] | undefined;
2645
+ readonly lookupPageSize?: number | undefined;
2646
+ readonly lookupFilters?: {
2647
+ field: string;
2648
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
2649
+ value: any;
2650
+ }[] | undefined;
2651
+ readonly dependsOn?: (string | {
2652
+ field: string;
2653
+ param?: string | undefined;
2654
+ })[] | undefined;
2655
+ readonly allowCreate?: boolean | undefined;
2571
2656
  readonly expression?: {
2572
2657
  dialect: "cel" | "js" | "cron" | "template";
2573
2658
  source?: string | undefined;
@@ -2723,6 +2808,25 @@ declare const InboxMessage: Omit<{
2723
2808
  readonly relatedList?: boolean | undefined;
2724
2809
  readonly relatedListTitle?: string | undefined;
2725
2810
  readonly relatedListColumns?: any[] | undefined;
2811
+ readonly displayField?: string | undefined;
2812
+ readonly descriptionField?: string | undefined;
2813
+ readonly lookupColumns?: (string | {
2814
+ field: string;
2815
+ label?: string | undefined;
2816
+ width?: string | undefined;
2817
+ type?: string | undefined;
2818
+ })[] | undefined;
2819
+ readonly lookupPageSize?: number | undefined;
2820
+ readonly lookupFilters?: {
2821
+ field: string;
2822
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
2823
+ value: any;
2824
+ }[] | undefined;
2825
+ readonly dependsOn?: (string | {
2826
+ field: string;
2827
+ param?: string | undefined;
2828
+ })[] | undefined;
2829
+ readonly allowCreate?: boolean | undefined;
2726
2830
  readonly expression?: {
2727
2831
  dialect: "cel" | "js" | "cron" | "template";
2728
2832
  source?: string | undefined;
@@ -2878,6 +2982,25 @@ declare const InboxMessage: Omit<{
2878
2982
  readonly relatedList?: boolean | undefined;
2879
2983
  readonly relatedListTitle?: string | undefined;
2880
2984
  readonly relatedListColumns?: any[] | undefined;
2985
+ readonly displayField?: string | undefined;
2986
+ readonly descriptionField?: string | undefined;
2987
+ readonly lookupColumns?: (string | {
2988
+ field: string;
2989
+ label?: string | undefined;
2990
+ width?: string | undefined;
2991
+ type?: string | undefined;
2992
+ })[] | undefined;
2993
+ readonly lookupPageSize?: number | undefined;
2994
+ readonly lookupFilters?: {
2995
+ field: string;
2996
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
2997
+ value: any;
2998
+ }[] | undefined;
2999
+ readonly dependsOn?: (string | {
3000
+ field: string;
3001
+ param?: string | undefined;
3002
+ })[] | undefined;
3003
+ readonly allowCreate?: boolean | undefined;
2881
3004
  readonly expression?: {
2882
3005
  dialect: "cel" | "js" | "cron" | "template";
2883
3006
  source?: string | undefined;
@@ -3033,6 +3156,25 @@ declare const InboxMessage: Omit<{
3033
3156
  readonly relatedList?: boolean | undefined;
3034
3157
  readonly relatedListTitle?: string | undefined;
3035
3158
  readonly relatedListColumns?: any[] | undefined;
3159
+ readonly displayField?: string | undefined;
3160
+ readonly descriptionField?: string | undefined;
3161
+ readonly lookupColumns?: (string | {
3162
+ field: string;
3163
+ label?: string | undefined;
3164
+ width?: string | undefined;
3165
+ type?: string | undefined;
3166
+ })[] | undefined;
3167
+ readonly lookupPageSize?: number | undefined;
3168
+ readonly lookupFilters?: {
3169
+ field: string;
3170
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
3171
+ value: any;
3172
+ }[] | undefined;
3173
+ readonly dependsOn?: (string | {
3174
+ field: string;
3175
+ param?: string | undefined;
3176
+ })[] | undefined;
3177
+ readonly allowCreate?: boolean | undefined;
3036
3178
  readonly expression?: {
3037
3179
  dialect: "cel" | "js" | "cron" | "template";
3038
3180
  source?: string | undefined;
@@ -3188,6 +3330,25 @@ declare const InboxMessage: Omit<{
3188
3330
  readonly relatedList?: boolean | undefined;
3189
3331
  readonly relatedListTitle?: string | undefined;
3190
3332
  readonly relatedListColumns?: any[] | undefined;
3333
+ readonly displayField?: string | undefined;
3334
+ readonly descriptionField?: string | undefined;
3335
+ readonly lookupColumns?: (string | {
3336
+ field: string;
3337
+ label?: string | undefined;
3338
+ width?: string | undefined;
3339
+ type?: string | undefined;
3340
+ })[] | undefined;
3341
+ readonly lookupPageSize?: number | undefined;
3342
+ readonly lookupFilters?: {
3343
+ field: string;
3344
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
3345
+ value: any;
3346
+ }[] | undefined;
3347
+ readonly dependsOn?: (string | {
3348
+ field: string;
3349
+ param?: string | undefined;
3350
+ })[] | undefined;
3351
+ readonly allowCreate?: boolean | undefined;
3191
3352
  readonly expression?: {
3192
3353
  dialect: "cel" | "js" | "cron" | "template";
3193
3354
  source?: string | undefined;
@@ -3343,6 +3504,25 @@ declare const InboxMessage: Omit<{
3343
3504
  readonly relatedList?: boolean | undefined;
3344
3505
  readonly relatedListTitle?: string | undefined;
3345
3506
  readonly relatedListColumns?: any[] | undefined;
3507
+ readonly displayField?: string | undefined;
3508
+ readonly descriptionField?: string | undefined;
3509
+ readonly lookupColumns?: (string | {
3510
+ field: string;
3511
+ label?: string | undefined;
3512
+ width?: string | undefined;
3513
+ type?: string | undefined;
3514
+ })[] | undefined;
3515
+ readonly lookupPageSize?: number | undefined;
3516
+ readonly lookupFilters?: {
3517
+ field: string;
3518
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
3519
+ value: any;
3520
+ }[] | undefined;
3521
+ readonly dependsOn?: (string | {
3522
+ field: string;
3523
+ param?: string | undefined;
3524
+ })[] | undefined;
3525
+ readonly allowCreate?: boolean | undefined;
3346
3526
  readonly expression?: {
3347
3527
  dialect: "cel" | "js" | "cron" | "template";
3348
3528
  source?: string | undefined;
@@ -3498,6 +3678,25 @@ declare const InboxMessage: Omit<{
3498
3678
  readonly relatedList?: boolean | undefined;
3499
3679
  readonly relatedListTitle?: string | undefined;
3500
3680
  readonly relatedListColumns?: any[] | undefined;
3681
+ readonly displayField?: string | undefined;
3682
+ readonly descriptionField?: string | undefined;
3683
+ readonly lookupColumns?: (string | {
3684
+ field: string;
3685
+ label?: string | undefined;
3686
+ width?: string | undefined;
3687
+ type?: string | undefined;
3688
+ })[] | undefined;
3689
+ readonly lookupPageSize?: number | undefined;
3690
+ readonly lookupFilters?: {
3691
+ field: string;
3692
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
3693
+ value: any;
3694
+ }[] | undefined;
3695
+ readonly dependsOn?: (string | {
3696
+ field: string;
3697
+ param?: string | undefined;
3698
+ })[] | undefined;
3699
+ readonly allowCreate?: boolean | undefined;
3501
3700
  readonly expression?: {
3502
3701
  dialect: "cel" | "js" | "cron" | "template";
3503
3702
  source?: string | undefined;
@@ -3653,6 +3852,25 @@ declare const InboxMessage: Omit<{
3653
3852
  readonly relatedList?: boolean | undefined;
3654
3853
  readonly relatedListTitle?: string | undefined;
3655
3854
  readonly relatedListColumns?: any[] | undefined;
3855
+ readonly displayField?: string | undefined;
3856
+ readonly descriptionField?: string | undefined;
3857
+ readonly lookupColumns?: (string | {
3858
+ field: string;
3859
+ label?: string | undefined;
3860
+ width?: string | undefined;
3861
+ type?: string | undefined;
3862
+ })[] | undefined;
3863
+ readonly lookupPageSize?: number | undefined;
3864
+ readonly lookupFilters?: {
3865
+ field: string;
3866
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
3867
+ value: any;
3868
+ }[] | undefined;
3869
+ readonly dependsOn?: (string | {
3870
+ field: string;
3871
+ param?: string | undefined;
3872
+ })[] | undefined;
3873
+ readonly allowCreate?: boolean | undefined;
3656
3874
  readonly expression?: {
3657
3875
  dialect: "cel" | "js" | "cron" | "template";
3658
3876
  source?: string | undefined;
@@ -3795,7 +4013,7 @@ declare const NotificationReceipt: Omit<{
3795
4013
  abstract: boolean;
3796
4014
  datasource: string;
3797
4015
  fields: Record<string, {
3798
- type: "number" | "boolean" | "email" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
4016
+ type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
3799
4017
  required: boolean;
3800
4018
  searchable: boolean;
3801
4019
  multiple: boolean;
@@ -3833,6 +4051,25 @@ declare const NotificationReceipt: Omit<{
3833
4051
  relatedList?: boolean | undefined;
3834
4052
  relatedListTitle?: string | undefined;
3835
4053
  relatedListColumns?: any[] | undefined;
4054
+ displayField?: string | undefined;
4055
+ descriptionField?: string | undefined;
4056
+ lookupColumns?: (string | {
4057
+ field: string;
4058
+ label?: string | undefined;
4059
+ width?: string | undefined;
4060
+ type?: string | undefined;
4061
+ })[] | undefined;
4062
+ lookupPageSize?: number | undefined;
4063
+ lookupFilters?: {
4064
+ field: string;
4065
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
4066
+ value: any;
4067
+ }[] | undefined;
4068
+ dependsOn?: (string | {
4069
+ field: string;
4070
+ param?: string | undefined;
4071
+ })[] | undefined;
4072
+ allowCreate?: boolean | undefined;
3836
4073
  expression?: {
3837
4074
  dialect: "cel" | "js" | "cron" | "template";
3838
4075
  source?: string | undefined;
@@ -4108,7 +4345,7 @@ declare const NotificationReceipt: Omit<{
4108
4345
  } | undefined;
4109
4346
  compactLayout?: string[] | undefined;
4110
4347
  listViews?: Record<string, {
4111
- type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
4348
+ type: "map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
4112
4349
  columns: string[] | {
4113
4350
  field: string;
4114
4351
  label?: string | undefined;
@@ -4225,6 +4462,7 @@ declare const NotificationReceipt: Omit<{
4225
4462
  colorField?: string | undefined;
4226
4463
  } | undefined;
4227
4464
  gantt?: {
4465
+ [x: string]: unknown;
4228
4466
  startDateField: string;
4229
4467
  endDateField: string;
4230
4468
  titleField: string;
@@ -4275,6 +4513,13 @@ declare const NotificationReceipt: Omit<{
4275
4513
  values: string[];
4276
4514
  dimensions?: string[] | undefined;
4277
4515
  } | undefined;
4516
+ tree?: {
4517
+ [x: string]: unknown;
4518
+ parentField?: string | undefined;
4519
+ labelField?: string | undefined;
4520
+ fields?: string[] | undefined;
4521
+ defaultExpandedDepth?: number | undefined;
4522
+ } | undefined;
4278
4523
  description?: string | undefined;
4279
4524
  sharing?: {
4280
4525
  type: "personal" | "collaborative";
@@ -4330,7 +4575,7 @@ declare const NotificationReceipt: Omit<{
4330
4575
  } | undefined;
4331
4576
  appearance?: {
4332
4577
  showDescription: boolean;
4333
- allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
4578
+ allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
4334
4579
  } | undefined;
4335
4580
  tabs?: {
4336
4581
  name: string;
@@ -4399,6 +4644,7 @@ declare const NotificationReceipt: Omit<{
4399
4644
  } | undefined;
4400
4645
  }> | undefined;
4401
4646
  defaultDetailForm?: string | undefined;
4647
+ searchableFields?: string[] | undefined;
4402
4648
  search?: {
4403
4649
  fields: string[];
4404
4650
  displayFields?: string[] | undefined;
@@ -4590,6 +4836,25 @@ declare const NotificationReceipt: Omit<{
4590
4836
  readonly relatedList?: boolean | undefined;
4591
4837
  readonly relatedListTitle?: string | undefined;
4592
4838
  readonly relatedListColumns?: any[] | undefined;
4839
+ readonly displayField?: string | undefined;
4840
+ readonly descriptionField?: string | undefined;
4841
+ readonly lookupColumns?: (string | {
4842
+ field: string;
4843
+ label?: string | undefined;
4844
+ width?: string | undefined;
4845
+ type?: string | undefined;
4846
+ })[] | undefined;
4847
+ readonly lookupPageSize?: number | undefined;
4848
+ readonly lookupFilters?: {
4849
+ field: string;
4850
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
4851
+ value: any;
4852
+ }[] | undefined;
4853
+ readonly dependsOn?: (string | {
4854
+ field: string;
4855
+ param?: string | undefined;
4856
+ })[] | undefined;
4857
+ readonly allowCreate?: boolean | undefined;
4593
4858
  readonly expression?: {
4594
4859
  dialect: "cel" | "js" | "cron" | "template";
4595
4860
  source?: string | undefined;
@@ -4745,6 +5010,25 @@ declare const NotificationReceipt: Omit<{
4745
5010
  readonly relatedList?: boolean | undefined;
4746
5011
  readonly relatedListTitle?: string | undefined;
4747
5012
  readonly relatedListColumns?: any[] | undefined;
5013
+ readonly displayField?: string | undefined;
5014
+ readonly descriptionField?: string | undefined;
5015
+ readonly lookupColumns?: (string | {
5016
+ field: string;
5017
+ label?: string | undefined;
5018
+ width?: string | undefined;
5019
+ type?: string | undefined;
5020
+ })[] | undefined;
5021
+ readonly lookupPageSize?: number | undefined;
5022
+ readonly lookupFilters?: {
5023
+ field: string;
5024
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
5025
+ value: any;
5026
+ }[] | undefined;
5027
+ readonly dependsOn?: (string | {
5028
+ field: string;
5029
+ param?: string | undefined;
5030
+ })[] | undefined;
5031
+ readonly allowCreate?: boolean | undefined;
4748
5032
  readonly expression?: {
4749
5033
  dialect: "cel" | "js" | "cron" | "template";
4750
5034
  source?: string | undefined;
@@ -4900,6 +5184,25 @@ declare const NotificationReceipt: Omit<{
4900
5184
  readonly relatedList?: boolean | undefined;
4901
5185
  readonly relatedListTitle?: string | undefined;
4902
5186
  readonly relatedListColumns?: any[] | undefined;
5187
+ readonly displayField?: string | undefined;
5188
+ readonly descriptionField?: string | undefined;
5189
+ readonly lookupColumns?: (string | {
5190
+ field: string;
5191
+ label?: string | undefined;
5192
+ width?: string | undefined;
5193
+ type?: string | undefined;
5194
+ })[] | undefined;
5195
+ readonly lookupPageSize?: number | undefined;
5196
+ readonly lookupFilters?: {
5197
+ field: string;
5198
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
5199
+ value: any;
5200
+ }[] | undefined;
5201
+ readonly dependsOn?: (string | {
5202
+ field: string;
5203
+ param?: string | undefined;
5204
+ })[] | undefined;
5205
+ readonly allowCreate?: boolean | undefined;
4903
5206
  readonly expression?: {
4904
5207
  dialect: "cel" | "js" | "cron" | "template";
4905
5208
  source?: string | undefined;
@@ -5055,6 +5358,25 @@ declare const NotificationReceipt: Omit<{
5055
5358
  readonly relatedList?: boolean | undefined;
5056
5359
  readonly relatedListTitle?: string | undefined;
5057
5360
  readonly relatedListColumns?: any[] | undefined;
5361
+ readonly displayField?: string | undefined;
5362
+ readonly descriptionField?: string | undefined;
5363
+ readonly lookupColumns?: (string | {
5364
+ field: string;
5365
+ label?: string | undefined;
5366
+ width?: string | undefined;
5367
+ type?: string | undefined;
5368
+ })[] | undefined;
5369
+ readonly lookupPageSize?: number | undefined;
5370
+ readonly lookupFilters?: {
5371
+ field: string;
5372
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
5373
+ value: any;
5374
+ }[] | undefined;
5375
+ readonly dependsOn?: (string | {
5376
+ field: string;
5377
+ param?: string | undefined;
5378
+ })[] | undefined;
5379
+ readonly allowCreate?: boolean | undefined;
5058
5380
  readonly expression?: {
5059
5381
  dialect: "cel" | "js" | "cron" | "template";
5060
5382
  source?: string | undefined;
@@ -5210,6 +5532,25 @@ declare const NotificationReceipt: Omit<{
5210
5532
  readonly relatedList?: boolean | undefined;
5211
5533
  readonly relatedListTitle?: string | undefined;
5212
5534
  readonly relatedListColumns?: any[] | undefined;
5535
+ readonly displayField?: string | undefined;
5536
+ readonly descriptionField?: string | undefined;
5537
+ readonly lookupColumns?: (string | {
5538
+ field: string;
5539
+ label?: string | undefined;
5540
+ width?: string | undefined;
5541
+ type?: string | undefined;
5542
+ })[] | undefined;
5543
+ readonly lookupPageSize?: number | undefined;
5544
+ readonly lookupFilters?: {
5545
+ field: string;
5546
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
5547
+ value: any;
5548
+ }[] | undefined;
5549
+ readonly dependsOn?: (string | {
5550
+ field: string;
5551
+ param?: string | undefined;
5552
+ })[] | undefined;
5553
+ readonly allowCreate?: boolean | undefined;
5213
5554
  readonly expression?: {
5214
5555
  dialect: "cel" | "js" | "cron" | "template";
5215
5556
  source?: string | undefined;
@@ -5365,6 +5706,25 @@ declare const NotificationReceipt: Omit<{
5365
5706
  readonly relatedList?: boolean | undefined;
5366
5707
  readonly relatedListTitle?: string | undefined;
5367
5708
  readonly relatedListColumns?: any[] | undefined;
5709
+ readonly displayField?: string | undefined;
5710
+ readonly descriptionField?: string | undefined;
5711
+ readonly lookupColumns?: (string | {
5712
+ field: string;
5713
+ label?: string | undefined;
5714
+ width?: string | undefined;
5715
+ type?: string | undefined;
5716
+ })[] | undefined;
5717
+ readonly lookupPageSize?: number | undefined;
5718
+ readonly lookupFilters?: {
5719
+ field: string;
5720
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
5721
+ value: any;
5722
+ }[] | undefined;
5723
+ readonly dependsOn?: (string | {
5724
+ field: string;
5725
+ param?: string | undefined;
5726
+ })[] | undefined;
5727
+ readonly allowCreate?: boolean | undefined;
5368
5728
  readonly expression?: {
5369
5729
  dialect: "cel" | "js" | "cron" | "template";
5370
5730
  source?: string | undefined;
@@ -5520,6 +5880,25 @@ declare const NotificationReceipt: Omit<{
5520
5880
  readonly relatedList?: boolean | undefined;
5521
5881
  readonly relatedListTitle?: string | undefined;
5522
5882
  readonly relatedListColumns?: any[] | undefined;
5883
+ readonly displayField?: string | undefined;
5884
+ readonly descriptionField?: string | undefined;
5885
+ readonly lookupColumns?: (string | {
5886
+ field: string;
5887
+ label?: string | undefined;
5888
+ width?: string | undefined;
5889
+ type?: string | undefined;
5890
+ })[] | undefined;
5891
+ readonly lookupPageSize?: number | undefined;
5892
+ readonly lookupFilters?: {
5893
+ field: string;
5894
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
5895
+ value: any;
5896
+ }[] | undefined;
5897
+ readonly dependsOn?: (string | {
5898
+ field: string;
5899
+ param?: string | undefined;
5900
+ })[] | undefined;
5901
+ readonly allowCreate?: boolean | undefined;
5523
5902
  readonly expression?: {
5524
5903
  dialect: "cel" | "js" | "cron" | "template";
5525
5904
  source?: string | undefined;
@@ -5675,6 +6054,25 @@ declare const NotificationReceipt: Omit<{
5675
6054
  readonly relatedList?: boolean | undefined;
5676
6055
  readonly relatedListTitle?: string | undefined;
5677
6056
  readonly relatedListColumns?: any[] | undefined;
6057
+ readonly displayField?: string | undefined;
6058
+ readonly descriptionField?: string | undefined;
6059
+ readonly lookupColumns?: (string | {
6060
+ field: string;
6061
+ label?: string | undefined;
6062
+ width?: string | undefined;
6063
+ type?: string | undefined;
6064
+ })[] | undefined;
6065
+ readonly lookupPageSize?: number | undefined;
6066
+ readonly lookupFilters?: {
6067
+ field: string;
6068
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
6069
+ value: any;
6070
+ }[] | undefined;
6071
+ readonly dependsOn?: (string | {
6072
+ field: string;
6073
+ param?: string | undefined;
6074
+ })[] | undefined;
6075
+ readonly allowCreate?: boolean | undefined;
5678
6076
  readonly expression?: {
5679
6077
  dialect: "cel" | "js" | "cron" | "template";
5680
6078
  source?: string | undefined;
@@ -5819,7 +6217,7 @@ declare const NotificationDelivery: Omit<{
5819
6217
  abstract: boolean;
5820
6218
  datasource: string;
5821
6219
  fields: Record<string, {
5822
- type: "number" | "boolean" | "email" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
6220
+ type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
5823
6221
  required: boolean;
5824
6222
  searchable: boolean;
5825
6223
  multiple: boolean;
@@ -5857,6 +6255,25 @@ declare const NotificationDelivery: Omit<{
5857
6255
  relatedList?: boolean | undefined;
5858
6256
  relatedListTitle?: string | undefined;
5859
6257
  relatedListColumns?: any[] | undefined;
6258
+ displayField?: string | undefined;
6259
+ descriptionField?: string | undefined;
6260
+ lookupColumns?: (string | {
6261
+ field: string;
6262
+ label?: string | undefined;
6263
+ width?: string | undefined;
6264
+ type?: string | undefined;
6265
+ })[] | undefined;
6266
+ lookupPageSize?: number | undefined;
6267
+ lookupFilters?: {
6268
+ field: string;
6269
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
6270
+ value: any;
6271
+ }[] | undefined;
6272
+ dependsOn?: (string | {
6273
+ field: string;
6274
+ param?: string | undefined;
6275
+ })[] | undefined;
6276
+ allowCreate?: boolean | undefined;
5860
6277
  expression?: {
5861
6278
  dialect: "cel" | "js" | "cron" | "template";
5862
6279
  source?: string | undefined;
@@ -6132,7 +6549,7 @@ declare const NotificationDelivery: Omit<{
6132
6549
  } | undefined;
6133
6550
  compactLayout?: string[] | undefined;
6134
6551
  listViews?: Record<string, {
6135
- type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
6552
+ type: "map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
6136
6553
  columns: string[] | {
6137
6554
  field: string;
6138
6555
  label?: string | undefined;
@@ -6249,6 +6666,7 @@ declare const NotificationDelivery: Omit<{
6249
6666
  colorField?: string | undefined;
6250
6667
  } | undefined;
6251
6668
  gantt?: {
6669
+ [x: string]: unknown;
6252
6670
  startDateField: string;
6253
6671
  endDateField: string;
6254
6672
  titleField: string;
@@ -6299,6 +6717,13 @@ declare const NotificationDelivery: Omit<{
6299
6717
  values: string[];
6300
6718
  dimensions?: string[] | undefined;
6301
6719
  } | undefined;
6720
+ tree?: {
6721
+ [x: string]: unknown;
6722
+ parentField?: string | undefined;
6723
+ labelField?: string | undefined;
6724
+ fields?: string[] | undefined;
6725
+ defaultExpandedDepth?: number | undefined;
6726
+ } | undefined;
6302
6727
  description?: string | undefined;
6303
6728
  sharing?: {
6304
6729
  type: "personal" | "collaborative";
@@ -6354,7 +6779,7 @@ declare const NotificationDelivery: Omit<{
6354
6779
  } | undefined;
6355
6780
  appearance?: {
6356
6781
  showDescription: boolean;
6357
- allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
6782
+ allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
6358
6783
  } | undefined;
6359
6784
  tabs?: {
6360
6785
  name: string;
@@ -6423,6 +6848,7 @@ declare const NotificationDelivery: Omit<{
6423
6848
  } | undefined;
6424
6849
  }> | undefined;
6425
6850
  defaultDetailForm?: string | undefined;
6851
+ searchableFields?: string[] | undefined;
6426
6852
  search?: {
6427
6853
  fields: string[];
6428
6854
  displayFields?: string[] | undefined;
@@ -6614,6 +7040,25 @@ declare const NotificationDelivery: Omit<{
6614
7040
  readonly relatedList?: boolean | undefined;
6615
7041
  readonly relatedListTitle?: string | undefined;
6616
7042
  readonly relatedListColumns?: any[] | undefined;
7043
+ readonly displayField?: string | undefined;
7044
+ readonly descriptionField?: string | undefined;
7045
+ readonly lookupColumns?: (string | {
7046
+ field: string;
7047
+ label?: string | undefined;
7048
+ width?: string | undefined;
7049
+ type?: string | undefined;
7050
+ })[] | undefined;
7051
+ readonly lookupPageSize?: number | undefined;
7052
+ readonly lookupFilters?: {
7053
+ field: string;
7054
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
7055
+ value: any;
7056
+ }[] | undefined;
7057
+ readonly dependsOn?: (string | {
7058
+ field: string;
7059
+ param?: string | undefined;
7060
+ })[] | undefined;
7061
+ readonly allowCreate?: boolean | undefined;
6617
7062
  readonly expression?: {
6618
7063
  dialect: "cel" | "js" | "cron" | "template";
6619
7064
  source?: string | undefined;
@@ -6769,6 +7214,25 @@ declare const NotificationDelivery: Omit<{
6769
7214
  readonly relatedList?: boolean | undefined;
6770
7215
  readonly relatedListTitle?: string | undefined;
6771
7216
  readonly relatedListColumns?: any[] | undefined;
7217
+ readonly displayField?: string | undefined;
7218
+ readonly descriptionField?: string | undefined;
7219
+ readonly lookupColumns?: (string | {
7220
+ field: string;
7221
+ label?: string | undefined;
7222
+ width?: string | undefined;
7223
+ type?: string | undefined;
7224
+ })[] | undefined;
7225
+ readonly lookupPageSize?: number | undefined;
7226
+ readonly lookupFilters?: {
7227
+ field: string;
7228
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
7229
+ value: any;
7230
+ }[] | undefined;
7231
+ readonly dependsOn?: (string | {
7232
+ field: string;
7233
+ param?: string | undefined;
7234
+ })[] | undefined;
7235
+ readonly allowCreate?: boolean | undefined;
6772
7236
  readonly expression?: {
6773
7237
  dialect: "cel" | "js" | "cron" | "template";
6774
7238
  source?: string | undefined;
@@ -6924,6 +7388,25 @@ declare const NotificationDelivery: Omit<{
6924
7388
  readonly relatedList?: boolean | undefined;
6925
7389
  readonly relatedListTitle?: string | undefined;
6926
7390
  readonly relatedListColumns?: any[] | undefined;
7391
+ readonly displayField?: string | undefined;
7392
+ readonly descriptionField?: string | undefined;
7393
+ readonly lookupColumns?: (string | {
7394
+ field: string;
7395
+ label?: string | undefined;
7396
+ width?: string | undefined;
7397
+ type?: string | undefined;
7398
+ })[] | undefined;
7399
+ readonly lookupPageSize?: number | undefined;
7400
+ readonly lookupFilters?: {
7401
+ field: string;
7402
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
7403
+ value: any;
7404
+ }[] | undefined;
7405
+ readonly dependsOn?: (string | {
7406
+ field: string;
7407
+ param?: string | undefined;
7408
+ })[] | undefined;
7409
+ readonly allowCreate?: boolean | undefined;
6927
7410
  readonly expression?: {
6928
7411
  dialect: "cel" | "js" | "cron" | "template";
6929
7412
  source?: string | undefined;
@@ -7079,6 +7562,25 @@ declare const NotificationDelivery: Omit<{
7079
7562
  readonly relatedList?: boolean | undefined;
7080
7563
  readonly relatedListTitle?: string | undefined;
7081
7564
  readonly relatedListColumns?: any[] | undefined;
7565
+ readonly displayField?: string | undefined;
7566
+ readonly descriptionField?: string | undefined;
7567
+ readonly lookupColumns?: (string | {
7568
+ field: string;
7569
+ label?: string | undefined;
7570
+ width?: string | undefined;
7571
+ type?: string | undefined;
7572
+ })[] | undefined;
7573
+ readonly lookupPageSize?: number | undefined;
7574
+ readonly lookupFilters?: {
7575
+ field: string;
7576
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
7577
+ value: any;
7578
+ }[] | undefined;
7579
+ readonly dependsOn?: (string | {
7580
+ field: string;
7581
+ param?: string | undefined;
7582
+ })[] | undefined;
7583
+ readonly allowCreate?: boolean | undefined;
7082
7584
  readonly expression?: {
7083
7585
  dialect: "cel" | "js" | "cron" | "template";
7084
7586
  source?: string | undefined;
@@ -7234,6 +7736,25 @@ declare const NotificationDelivery: Omit<{
7234
7736
  readonly relatedList?: boolean | undefined;
7235
7737
  readonly relatedListTitle?: string | undefined;
7236
7738
  readonly relatedListColumns?: any[] | undefined;
7739
+ readonly displayField?: string | undefined;
7740
+ readonly descriptionField?: string | undefined;
7741
+ readonly lookupColumns?: (string | {
7742
+ field: string;
7743
+ label?: string | undefined;
7744
+ width?: string | undefined;
7745
+ type?: string | undefined;
7746
+ })[] | undefined;
7747
+ readonly lookupPageSize?: number | undefined;
7748
+ readonly lookupFilters?: {
7749
+ field: string;
7750
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
7751
+ value: any;
7752
+ }[] | undefined;
7753
+ readonly dependsOn?: (string | {
7754
+ field: string;
7755
+ param?: string | undefined;
7756
+ })[] | undefined;
7757
+ readonly allowCreate?: boolean | undefined;
7237
7758
  readonly expression?: {
7238
7759
  dialect: "cel" | "js" | "cron" | "template";
7239
7760
  source?: string | undefined;
@@ -7389,6 +7910,25 @@ declare const NotificationDelivery: Omit<{
7389
7910
  readonly relatedList?: boolean | undefined;
7390
7911
  readonly relatedListTitle?: string | undefined;
7391
7912
  readonly relatedListColumns?: any[] | undefined;
7913
+ readonly displayField?: string | undefined;
7914
+ readonly descriptionField?: string | undefined;
7915
+ readonly lookupColumns?: (string | {
7916
+ field: string;
7917
+ label?: string | undefined;
7918
+ width?: string | undefined;
7919
+ type?: string | undefined;
7920
+ })[] | undefined;
7921
+ readonly lookupPageSize?: number | undefined;
7922
+ readonly lookupFilters?: {
7923
+ field: string;
7924
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
7925
+ value: any;
7926
+ }[] | undefined;
7927
+ readonly dependsOn?: (string | {
7928
+ field: string;
7929
+ param?: string | undefined;
7930
+ })[] | undefined;
7931
+ readonly allowCreate?: boolean | undefined;
7392
7932
  readonly expression?: {
7393
7933
  dialect: "cel" | "js" | "cron" | "template";
7394
7934
  source?: string | undefined;
@@ -7544,6 +8084,25 @@ declare const NotificationDelivery: Omit<{
7544
8084
  readonly relatedList?: boolean | undefined;
7545
8085
  readonly relatedListTitle?: string | undefined;
7546
8086
  readonly relatedListColumns?: any[] | undefined;
8087
+ readonly displayField?: string | undefined;
8088
+ readonly descriptionField?: string | undefined;
8089
+ readonly lookupColumns?: (string | {
8090
+ field: string;
8091
+ label?: string | undefined;
8092
+ width?: string | undefined;
8093
+ type?: string | undefined;
8094
+ })[] | undefined;
8095
+ readonly lookupPageSize?: number | undefined;
8096
+ readonly lookupFilters?: {
8097
+ field: string;
8098
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
8099
+ value: any;
8100
+ }[] | undefined;
8101
+ readonly dependsOn?: (string | {
8102
+ field: string;
8103
+ param?: string | undefined;
8104
+ })[] | undefined;
8105
+ readonly allowCreate?: boolean | undefined;
7547
8106
  readonly expression?: {
7548
8107
  dialect: "cel" | "js" | "cron" | "template";
7549
8108
  source?: string | undefined;
@@ -7699,6 +8258,25 @@ declare const NotificationDelivery: Omit<{
7699
8258
  readonly relatedList?: boolean | undefined;
7700
8259
  readonly relatedListTitle?: string | undefined;
7701
8260
  readonly relatedListColumns?: any[] | undefined;
8261
+ readonly displayField?: string | undefined;
8262
+ readonly descriptionField?: string | undefined;
8263
+ readonly lookupColumns?: (string | {
8264
+ field: string;
8265
+ label?: string | undefined;
8266
+ width?: string | undefined;
8267
+ type?: string | undefined;
8268
+ })[] | undefined;
8269
+ readonly lookupPageSize?: number | undefined;
8270
+ readonly lookupFilters?: {
8271
+ field: string;
8272
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
8273
+ value: any;
8274
+ }[] | undefined;
8275
+ readonly dependsOn?: (string | {
8276
+ field: string;
8277
+ param?: string | undefined;
8278
+ })[] | undefined;
8279
+ readonly allowCreate?: boolean | undefined;
7702
8280
  readonly expression?: {
7703
8281
  dialect: "cel" | "js" | "cron" | "template";
7704
8282
  source?: string | undefined;
@@ -7854,6 +8432,25 @@ declare const NotificationDelivery: Omit<{
7854
8432
  readonly relatedList?: boolean | undefined;
7855
8433
  readonly relatedListTitle?: string | undefined;
7856
8434
  readonly relatedListColumns?: any[] | undefined;
8435
+ readonly displayField?: string | undefined;
8436
+ readonly descriptionField?: string | undefined;
8437
+ readonly lookupColumns?: (string | {
8438
+ field: string;
8439
+ label?: string | undefined;
8440
+ width?: string | undefined;
8441
+ type?: string | undefined;
8442
+ })[] | undefined;
8443
+ readonly lookupPageSize?: number | undefined;
8444
+ readonly lookupFilters?: {
8445
+ field: string;
8446
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
8447
+ value: any;
8448
+ }[] | undefined;
8449
+ readonly dependsOn?: (string | {
8450
+ field: string;
8451
+ param?: string | undefined;
8452
+ })[] | undefined;
8453
+ readonly allowCreate?: boolean | undefined;
7857
8454
  readonly expression?: {
7858
8455
  dialect: "cel" | "js" | "cron" | "template";
7859
8456
  source?: string | undefined;
@@ -8009,6 +8606,25 @@ declare const NotificationDelivery: Omit<{
8009
8606
  readonly relatedList?: boolean | undefined;
8010
8607
  readonly relatedListTitle?: string | undefined;
8011
8608
  readonly relatedListColumns?: any[] | undefined;
8609
+ readonly displayField?: string | undefined;
8610
+ readonly descriptionField?: string | undefined;
8611
+ readonly lookupColumns?: (string | {
8612
+ field: string;
8613
+ label?: string | undefined;
8614
+ width?: string | undefined;
8615
+ type?: string | undefined;
8616
+ })[] | undefined;
8617
+ readonly lookupPageSize?: number | undefined;
8618
+ readonly lookupFilters?: {
8619
+ field: string;
8620
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
8621
+ value: any;
8622
+ }[] | undefined;
8623
+ readonly dependsOn?: (string | {
8624
+ field: string;
8625
+ param?: string | undefined;
8626
+ })[] | undefined;
8627
+ readonly allowCreate?: boolean | undefined;
8012
8628
  readonly expression?: {
8013
8629
  dialect: "cel" | "js" | "cron" | "template";
8014
8630
  source?: string | undefined;
@@ -8164,6 +8780,25 @@ declare const NotificationDelivery: Omit<{
8164
8780
  readonly relatedList?: boolean | undefined;
8165
8781
  readonly relatedListTitle?: string | undefined;
8166
8782
  readonly relatedListColumns?: any[] | undefined;
8783
+ readonly displayField?: string | undefined;
8784
+ readonly descriptionField?: string | undefined;
8785
+ readonly lookupColumns?: (string | {
8786
+ field: string;
8787
+ label?: string | undefined;
8788
+ width?: string | undefined;
8789
+ type?: string | undefined;
8790
+ })[] | undefined;
8791
+ readonly lookupPageSize?: number | undefined;
8792
+ readonly lookupFilters?: {
8793
+ field: string;
8794
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
8795
+ value: any;
8796
+ }[] | undefined;
8797
+ readonly dependsOn?: (string | {
8798
+ field: string;
8799
+ param?: string | undefined;
8800
+ })[] | undefined;
8801
+ readonly allowCreate?: boolean | undefined;
8167
8802
  readonly expression?: {
8168
8803
  dialect: "cel" | "js" | "cron" | "template";
8169
8804
  source?: string | undefined;
@@ -8319,6 +8954,25 @@ declare const NotificationDelivery: Omit<{
8319
8954
  readonly relatedList?: boolean | undefined;
8320
8955
  readonly relatedListTitle?: string | undefined;
8321
8956
  readonly relatedListColumns?: any[] | undefined;
8957
+ readonly displayField?: string | undefined;
8958
+ readonly descriptionField?: string | undefined;
8959
+ readonly lookupColumns?: (string | {
8960
+ field: string;
8961
+ label?: string | undefined;
8962
+ width?: string | undefined;
8963
+ type?: string | undefined;
8964
+ })[] | undefined;
8965
+ readonly lookupPageSize?: number | undefined;
8966
+ readonly lookupFilters?: {
8967
+ field: string;
8968
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
8969
+ value: any;
8970
+ }[] | undefined;
8971
+ readonly dependsOn?: (string | {
8972
+ field: string;
8973
+ param?: string | undefined;
8974
+ })[] | undefined;
8975
+ readonly allowCreate?: boolean | undefined;
8322
8976
  readonly expression?: {
8323
8977
  dialect: "cel" | "js" | "cron" | "template";
8324
8978
  source?: string | undefined;
@@ -8474,6 +9128,25 @@ declare const NotificationDelivery: Omit<{
8474
9128
  readonly relatedList?: boolean | undefined;
8475
9129
  readonly relatedListTitle?: string | undefined;
8476
9130
  readonly relatedListColumns?: any[] | undefined;
9131
+ readonly displayField?: string | undefined;
9132
+ readonly descriptionField?: string | undefined;
9133
+ readonly lookupColumns?: (string | {
9134
+ field: string;
9135
+ label?: string | undefined;
9136
+ width?: string | undefined;
9137
+ type?: string | undefined;
9138
+ })[] | undefined;
9139
+ readonly lookupPageSize?: number | undefined;
9140
+ readonly lookupFilters?: {
9141
+ field: string;
9142
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
9143
+ value: any;
9144
+ }[] | undefined;
9145
+ readonly dependsOn?: (string | {
9146
+ field: string;
9147
+ param?: string | undefined;
9148
+ })[] | undefined;
9149
+ readonly allowCreate?: boolean | undefined;
8477
9150
  readonly expression?: {
8478
9151
  dialect: "cel" | "js" | "cron" | "template";
8479
9152
  source?: string | undefined;
@@ -8629,6 +9302,25 @@ declare const NotificationDelivery: Omit<{
8629
9302
  readonly relatedList?: boolean | undefined;
8630
9303
  readonly relatedListTitle?: string | undefined;
8631
9304
  readonly relatedListColumns?: any[] | undefined;
9305
+ readonly displayField?: string | undefined;
9306
+ readonly descriptionField?: string | undefined;
9307
+ readonly lookupColumns?: (string | {
9308
+ field: string;
9309
+ label?: string | undefined;
9310
+ width?: string | undefined;
9311
+ type?: string | undefined;
9312
+ })[] | undefined;
9313
+ readonly lookupPageSize?: number | undefined;
9314
+ readonly lookupFilters?: {
9315
+ field: string;
9316
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
9317
+ value: any;
9318
+ }[] | undefined;
9319
+ readonly dependsOn?: (string | {
9320
+ field: string;
9321
+ param?: string | undefined;
9322
+ })[] | undefined;
9323
+ readonly allowCreate?: boolean | undefined;
8632
9324
  readonly expression?: {
8633
9325
  dialect: "cel" | "js" | "cron" | "template";
8634
9326
  source?: string | undefined;
@@ -8784,6 +9476,25 @@ declare const NotificationDelivery: Omit<{
8784
9476
  readonly relatedList?: boolean | undefined;
8785
9477
  readonly relatedListTitle?: string | undefined;
8786
9478
  readonly relatedListColumns?: any[] | undefined;
9479
+ readonly displayField?: string | undefined;
9480
+ readonly descriptionField?: string | undefined;
9481
+ readonly lookupColumns?: (string | {
9482
+ field: string;
9483
+ label?: string | undefined;
9484
+ width?: string | undefined;
9485
+ type?: string | undefined;
9486
+ })[] | undefined;
9487
+ readonly lookupPageSize?: number | undefined;
9488
+ readonly lookupFilters?: {
9489
+ field: string;
9490
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
9491
+ value: any;
9492
+ }[] | undefined;
9493
+ readonly dependsOn?: (string | {
9494
+ field: string;
9495
+ param?: string | undefined;
9496
+ })[] | undefined;
9497
+ readonly allowCreate?: boolean | undefined;
8787
9498
  readonly expression?: {
8788
9499
  dialect: "cel" | "js" | "cron" | "template";
8789
9500
  source?: string | undefined;
@@ -8939,7 +9650,26 @@ declare const NotificationDelivery: Omit<{
8939
9650
  readonly relatedList?: boolean | undefined;
8940
9651
  readonly relatedListTitle?: string | undefined;
8941
9652
  readonly relatedListColumns?: any[] | undefined;
8942
- readonly expression?: {
9653
+ readonly displayField?: string | undefined;
9654
+ readonly descriptionField?: string | undefined;
9655
+ readonly lookupColumns?: (string | {
9656
+ field: string;
9657
+ label?: string | undefined;
9658
+ width?: string | undefined;
9659
+ type?: string | undefined;
9660
+ })[] | undefined;
9661
+ readonly lookupPageSize?: number | undefined;
9662
+ readonly lookupFilters?: {
9663
+ field: string;
9664
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
9665
+ value: any;
9666
+ }[] | undefined;
9667
+ readonly dependsOn?: (string | {
9668
+ field: string;
9669
+ param?: string | undefined;
9670
+ })[] | undefined;
9671
+ readonly allowCreate?: boolean | undefined;
9672
+ readonly expression?: {
8943
9673
  dialect: "cel" | "js" | "cron" | "template";
8944
9674
  source?: string | undefined;
8945
9675
  ast?: unknown;
@@ -9094,6 +9824,25 @@ declare const NotificationDelivery: Omit<{
9094
9824
  readonly relatedList?: boolean | undefined;
9095
9825
  readonly relatedListTitle?: string | undefined;
9096
9826
  readonly relatedListColumns?: any[] | undefined;
9827
+ readonly displayField?: string | undefined;
9828
+ readonly descriptionField?: string | undefined;
9829
+ readonly lookupColumns?: (string | {
9830
+ field: string;
9831
+ label?: string | undefined;
9832
+ width?: string | undefined;
9833
+ type?: string | undefined;
9834
+ })[] | undefined;
9835
+ readonly lookupPageSize?: number | undefined;
9836
+ readonly lookupFilters?: {
9837
+ field: string;
9838
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
9839
+ value: any;
9840
+ }[] | undefined;
9841
+ readonly dependsOn?: (string | {
9842
+ field: string;
9843
+ param?: string | undefined;
9844
+ })[] | undefined;
9845
+ readonly allowCreate?: boolean | undefined;
9097
9846
  readonly expression?: {
9098
9847
  dialect: "cel" | "js" | "cron" | "template";
9099
9848
  source?: string | undefined;
@@ -9248,7 +9997,7 @@ declare const NotificationPreference: Omit<{
9248
9997
  abstract: boolean;
9249
9998
  datasource: string;
9250
9999
  fields: Record<string, {
9251
- type: "number" | "boolean" | "email" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
10000
+ type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
9252
10001
  required: boolean;
9253
10002
  searchable: boolean;
9254
10003
  multiple: boolean;
@@ -9286,6 +10035,25 @@ declare const NotificationPreference: Omit<{
9286
10035
  relatedList?: boolean | undefined;
9287
10036
  relatedListTitle?: string | undefined;
9288
10037
  relatedListColumns?: any[] | undefined;
10038
+ displayField?: string | undefined;
10039
+ descriptionField?: string | undefined;
10040
+ lookupColumns?: (string | {
10041
+ field: string;
10042
+ label?: string | undefined;
10043
+ width?: string | undefined;
10044
+ type?: string | undefined;
10045
+ })[] | undefined;
10046
+ lookupPageSize?: number | undefined;
10047
+ lookupFilters?: {
10048
+ field: string;
10049
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
10050
+ value: any;
10051
+ }[] | undefined;
10052
+ dependsOn?: (string | {
10053
+ field: string;
10054
+ param?: string | undefined;
10055
+ })[] | undefined;
10056
+ allowCreate?: boolean | undefined;
9289
10057
  expression?: {
9290
10058
  dialect: "cel" | "js" | "cron" | "template";
9291
10059
  source?: string | undefined;
@@ -9561,7 +10329,7 @@ declare const NotificationPreference: Omit<{
9561
10329
  } | undefined;
9562
10330
  compactLayout?: string[] | undefined;
9563
10331
  listViews?: Record<string, {
9564
- type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
10332
+ type: "map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
9565
10333
  columns: string[] | {
9566
10334
  field: string;
9567
10335
  label?: string | undefined;
@@ -9678,6 +10446,7 @@ declare const NotificationPreference: Omit<{
9678
10446
  colorField?: string | undefined;
9679
10447
  } | undefined;
9680
10448
  gantt?: {
10449
+ [x: string]: unknown;
9681
10450
  startDateField: string;
9682
10451
  endDateField: string;
9683
10452
  titleField: string;
@@ -9728,6 +10497,13 @@ declare const NotificationPreference: Omit<{
9728
10497
  values: string[];
9729
10498
  dimensions?: string[] | undefined;
9730
10499
  } | undefined;
10500
+ tree?: {
10501
+ [x: string]: unknown;
10502
+ parentField?: string | undefined;
10503
+ labelField?: string | undefined;
10504
+ fields?: string[] | undefined;
10505
+ defaultExpandedDepth?: number | undefined;
10506
+ } | undefined;
9731
10507
  description?: string | undefined;
9732
10508
  sharing?: {
9733
10509
  type: "personal" | "collaborative";
@@ -9783,7 +10559,7 @@ declare const NotificationPreference: Omit<{
9783
10559
  } | undefined;
9784
10560
  appearance?: {
9785
10561
  showDescription: boolean;
9786
- allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
10562
+ allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
9787
10563
  } | undefined;
9788
10564
  tabs?: {
9789
10565
  name: string;
@@ -9852,6 +10628,7 @@ declare const NotificationPreference: Omit<{
9852
10628
  } | undefined;
9853
10629
  }> | undefined;
9854
10630
  defaultDetailForm?: string | undefined;
10631
+ searchableFields?: string[] | undefined;
9855
10632
  search?: {
9856
10633
  fields: string[];
9857
10634
  displayFields?: string[] | undefined;
@@ -10043,6 +10820,25 @@ declare const NotificationPreference: Omit<{
10043
10820
  readonly relatedList?: boolean | undefined;
10044
10821
  readonly relatedListTitle?: string | undefined;
10045
10822
  readonly relatedListColumns?: any[] | undefined;
10823
+ readonly displayField?: string | undefined;
10824
+ readonly descriptionField?: string | undefined;
10825
+ readonly lookupColumns?: (string | {
10826
+ field: string;
10827
+ label?: string | undefined;
10828
+ width?: string | undefined;
10829
+ type?: string | undefined;
10830
+ })[] | undefined;
10831
+ readonly lookupPageSize?: number | undefined;
10832
+ readonly lookupFilters?: {
10833
+ field: string;
10834
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
10835
+ value: any;
10836
+ }[] | undefined;
10837
+ readonly dependsOn?: (string | {
10838
+ field: string;
10839
+ param?: string | undefined;
10840
+ })[] | undefined;
10841
+ readonly allowCreate?: boolean | undefined;
10046
10842
  readonly expression?: {
10047
10843
  dialect: "cel" | "js" | "cron" | "template";
10048
10844
  source?: string | undefined;
@@ -10198,6 +10994,25 @@ declare const NotificationPreference: Omit<{
10198
10994
  readonly relatedList?: boolean | undefined;
10199
10995
  readonly relatedListTitle?: string | undefined;
10200
10996
  readonly relatedListColumns?: any[] | undefined;
10997
+ readonly displayField?: string | undefined;
10998
+ readonly descriptionField?: string | undefined;
10999
+ readonly lookupColumns?: (string | {
11000
+ field: string;
11001
+ label?: string | undefined;
11002
+ width?: string | undefined;
11003
+ type?: string | undefined;
11004
+ })[] | undefined;
11005
+ readonly lookupPageSize?: number | undefined;
11006
+ readonly lookupFilters?: {
11007
+ field: string;
11008
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
11009
+ value: any;
11010
+ }[] | undefined;
11011
+ readonly dependsOn?: (string | {
11012
+ field: string;
11013
+ param?: string | undefined;
11014
+ })[] | undefined;
11015
+ readonly allowCreate?: boolean | undefined;
10201
11016
  readonly expression?: {
10202
11017
  dialect: "cel" | "js" | "cron" | "template";
10203
11018
  source?: string | undefined;
@@ -10353,6 +11168,25 @@ declare const NotificationPreference: Omit<{
10353
11168
  readonly relatedList?: boolean | undefined;
10354
11169
  readonly relatedListTitle?: string | undefined;
10355
11170
  readonly relatedListColumns?: any[] | undefined;
11171
+ readonly displayField?: string | undefined;
11172
+ readonly descriptionField?: string | undefined;
11173
+ readonly lookupColumns?: (string | {
11174
+ field: string;
11175
+ label?: string | undefined;
11176
+ width?: string | undefined;
11177
+ type?: string | undefined;
11178
+ })[] | undefined;
11179
+ readonly lookupPageSize?: number | undefined;
11180
+ readonly lookupFilters?: {
11181
+ field: string;
11182
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
11183
+ value: any;
11184
+ }[] | undefined;
11185
+ readonly dependsOn?: (string | {
11186
+ field: string;
11187
+ param?: string | undefined;
11188
+ })[] | undefined;
11189
+ readonly allowCreate?: boolean | undefined;
10356
11190
  readonly expression?: {
10357
11191
  dialect: "cel" | "js" | "cron" | "template";
10358
11192
  source?: string | undefined;
@@ -10508,6 +11342,25 @@ declare const NotificationPreference: Omit<{
10508
11342
  readonly relatedList?: boolean | undefined;
10509
11343
  readonly relatedListTitle?: string | undefined;
10510
11344
  readonly relatedListColumns?: any[] | undefined;
11345
+ readonly displayField?: string | undefined;
11346
+ readonly descriptionField?: string | undefined;
11347
+ readonly lookupColumns?: (string | {
11348
+ field: string;
11349
+ label?: string | undefined;
11350
+ width?: string | undefined;
11351
+ type?: string | undefined;
11352
+ })[] | undefined;
11353
+ readonly lookupPageSize?: number | undefined;
11354
+ readonly lookupFilters?: {
11355
+ field: string;
11356
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
11357
+ value: any;
11358
+ }[] | undefined;
11359
+ readonly dependsOn?: (string | {
11360
+ field: string;
11361
+ param?: string | undefined;
11362
+ })[] | undefined;
11363
+ readonly allowCreate?: boolean | undefined;
10511
11364
  readonly expression?: {
10512
11365
  dialect: "cel" | "js" | "cron" | "template";
10513
11366
  source?: string | undefined;
@@ -10663,6 +11516,25 @@ declare const NotificationPreference: Omit<{
10663
11516
  readonly relatedList?: boolean | undefined;
10664
11517
  readonly relatedListTitle?: string | undefined;
10665
11518
  readonly relatedListColumns?: any[] | undefined;
11519
+ readonly displayField?: string | undefined;
11520
+ readonly descriptionField?: string | undefined;
11521
+ readonly lookupColumns?: (string | {
11522
+ field: string;
11523
+ label?: string | undefined;
11524
+ width?: string | undefined;
11525
+ type?: string | undefined;
11526
+ })[] | undefined;
11527
+ readonly lookupPageSize?: number | undefined;
11528
+ readonly lookupFilters?: {
11529
+ field: string;
11530
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
11531
+ value: any;
11532
+ }[] | undefined;
11533
+ readonly dependsOn?: (string | {
11534
+ field: string;
11535
+ param?: string | undefined;
11536
+ })[] | undefined;
11537
+ readonly allowCreate?: boolean | undefined;
10666
11538
  readonly expression?: {
10667
11539
  dialect: "cel" | "js" | "cron" | "template";
10668
11540
  source?: string | undefined;
@@ -10818,6 +11690,25 @@ declare const NotificationPreference: Omit<{
10818
11690
  readonly relatedList?: boolean | undefined;
10819
11691
  readonly relatedListTitle?: string | undefined;
10820
11692
  readonly relatedListColumns?: any[] | undefined;
11693
+ readonly displayField?: string | undefined;
11694
+ readonly descriptionField?: string | undefined;
11695
+ readonly lookupColumns?: (string | {
11696
+ field: string;
11697
+ label?: string | undefined;
11698
+ width?: string | undefined;
11699
+ type?: string | undefined;
11700
+ })[] | undefined;
11701
+ readonly lookupPageSize?: number | undefined;
11702
+ readonly lookupFilters?: {
11703
+ field: string;
11704
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
11705
+ value: any;
11706
+ }[] | undefined;
11707
+ readonly dependsOn?: (string | {
11708
+ field: string;
11709
+ param?: string | undefined;
11710
+ })[] | undefined;
11711
+ readonly allowCreate?: boolean | undefined;
10821
11712
  readonly expression?: {
10822
11713
  dialect: "cel" | "js" | "cron" | "template";
10823
11714
  source?: string | undefined;
@@ -10973,6 +11864,25 @@ declare const NotificationPreference: Omit<{
10973
11864
  readonly relatedList?: boolean | undefined;
10974
11865
  readonly relatedListTitle?: string | undefined;
10975
11866
  readonly relatedListColumns?: any[] | undefined;
11867
+ readonly displayField?: string | undefined;
11868
+ readonly descriptionField?: string | undefined;
11869
+ readonly lookupColumns?: (string | {
11870
+ field: string;
11871
+ label?: string | undefined;
11872
+ width?: string | undefined;
11873
+ type?: string | undefined;
11874
+ })[] | undefined;
11875
+ readonly lookupPageSize?: number | undefined;
11876
+ readonly lookupFilters?: {
11877
+ field: string;
11878
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
11879
+ value: any;
11880
+ }[] | undefined;
11881
+ readonly dependsOn?: (string | {
11882
+ field: string;
11883
+ param?: string | undefined;
11884
+ })[] | undefined;
11885
+ readonly allowCreate?: boolean | undefined;
10976
11886
  readonly expression?: {
10977
11887
  dialect: "cel" | "js" | "cron" | "template";
10978
11888
  source?: string | undefined;
@@ -11128,6 +12038,25 @@ declare const NotificationPreference: Omit<{
11128
12038
  readonly relatedList?: boolean | undefined;
11129
12039
  readonly relatedListTitle?: string | undefined;
11130
12040
  readonly relatedListColumns?: any[] | undefined;
12041
+ readonly displayField?: string | undefined;
12042
+ readonly descriptionField?: string | undefined;
12043
+ readonly lookupColumns?: (string | {
12044
+ field: string;
12045
+ label?: string | undefined;
12046
+ width?: string | undefined;
12047
+ type?: string | undefined;
12048
+ })[] | undefined;
12049
+ readonly lookupPageSize?: number | undefined;
12050
+ readonly lookupFilters?: {
12051
+ field: string;
12052
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
12053
+ value: any;
12054
+ }[] | undefined;
12055
+ readonly dependsOn?: (string | {
12056
+ field: string;
12057
+ param?: string | undefined;
12058
+ })[] | undefined;
12059
+ readonly allowCreate?: boolean | undefined;
11131
12060
  readonly expression?: {
11132
12061
  dialect: "cel" | "js" | "cron" | "template";
11133
12062
  source?: string | undefined;
@@ -11283,6 +12212,25 @@ declare const NotificationPreference: Omit<{
11283
12212
  readonly relatedList?: boolean | undefined;
11284
12213
  readonly relatedListTitle?: string | undefined;
11285
12214
  readonly relatedListColumns?: any[] | undefined;
12215
+ readonly displayField?: string | undefined;
12216
+ readonly descriptionField?: string | undefined;
12217
+ readonly lookupColumns?: (string | {
12218
+ field: string;
12219
+ label?: string | undefined;
12220
+ width?: string | undefined;
12221
+ type?: string | undefined;
12222
+ })[] | undefined;
12223
+ readonly lookupPageSize?: number | undefined;
12224
+ readonly lookupFilters?: {
12225
+ field: string;
12226
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
12227
+ value: any;
12228
+ }[] | undefined;
12229
+ readonly dependsOn?: (string | {
12230
+ field: string;
12231
+ param?: string | undefined;
12232
+ })[] | undefined;
12233
+ readonly allowCreate?: boolean | undefined;
11286
12234
  readonly expression?: {
11287
12235
  dialect: "cel" | "js" | "cron" | "template";
11288
12236
  source?: string | undefined;
@@ -11429,7 +12377,7 @@ declare const NotificationSubscription: Omit<{
11429
12377
  abstract: boolean;
11430
12378
  datasource: string;
11431
12379
  fields: Record<string, {
11432
- type: "number" | "boolean" | "email" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
12380
+ type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
11433
12381
  required: boolean;
11434
12382
  searchable: boolean;
11435
12383
  multiple: boolean;
@@ -11467,6 +12415,25 @@ declare const NotificationSubscription: Omit<{
11467
12415
  relatedList?: boolean | undefined;
11468
12416
  relatedListTitle?: string | undefined;
11469
12417
  relatedListColumns?: any[] | undefined;
12418
+ displayField?: string | undefined;
12419
+ descriptionField?: string | undefined;
12420
+ lookupColumns?: (string | {
12421
+ field: string;
12422
+ label?: string | undefined;
12423
+ width?: string | undefined;
12424
+ type?: string | undefined;
12425
+ })[] | undefined;
12426
+ lookupPageSize?: number | undefined;
12427
+ lookupFilters?: {
12428
+ field: string;
12429
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
12430
+ value: any;
12431
+ }[] | undefined;
12432
+ dependsOn?: (string | {
12433
+ field: string;
12434
+ param?: string | undefined;
12435
+ })[] | undefined;
12436
+ allowCreate?: boolean | undefined;
11470
12437
  expression?: {
11471
12438
  dialect: "cel" | "js" | "cron" | "template";
11472
12439
  source?: string | undefined;
@@ -11742,7 +12709,7 @@ declare const NotificationSubscription: Omit<{
11742
12709
  } | undefined;
11743
12710
  compactLayout?: string[] | undefined;
11744
12711
  listViews?: Record<string, {
11745
- type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
12712
+ type: "map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
11746
12713
  columns: string[] | {
11747
12714
  field: string;
11748
12715
  label?: string | undefined;
@@ -11859,6 +12826,7 @@ declare const NotificationSubscription: Omit<{
11859
12826
  colorField?: string | undefined;
11860
12827
  } | undefined;
11861
12828
  gantt?: {
12829
+ [x: string]: unknown;
11862
12830
  startDateField: string;
11863
12831
  endDateField: string;
11864
12832
  titleField: string;
@@ -11909,6 +12877,13 @@ declare const NotificationSubscription: Omit<{
11909
12877
  values: string[];
11910
12878
  dimensions?: string[] | undefined;
11911
12879
  } | undefined;
12880
+ tree?: {
12881
+ [x: string]: unknown;
12882
+ parentField?: string | undefined;
12883
+ labelField?: string | undefined;
12884
+ fields?: string[] | undefined;
12885
+ defaultExpandedDepth?: number | undefined;
12886
+ } | undefined;
11912
12887
  description?: string | undefined;
11913
12888
  sharing?: {
11914
12889
  type: "personal" | "collaborative";
@@ -11964,7 +12939,7 @@ declare const NotificationSubscription: Omit<{
11964
12939
  } | undefined;
11965
12940
  appearance?: {
11966
12941
  showDescription: boolean;
11967
- allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
12942
+ allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
11968
12943
  } | undefined;
11969
12944
  tabs?: {
11970
12945
  name: string;
@@ -12033,6 +13008,7 @@ declare const NotificationSubscription: Omit<{
12033
13008
  } | undefined;
12034
13009
  }> | undefined;
12035
13010
  defaultDetailForm?: string | undefined;
13011
+ searchableFields?: string[] | undefined;
12036
13012
  search?: {
12037
13013
  fields: string[];
12038
13014
  displayFields?: string[] | undefined;
@@ -12224,6 +13200,25 @@ declare const NotificationSubscription: Omit<{
12224
13200
  readonly relatedList?: boolean | undefined;
12225
13201
  readonly relatedListTitle?: string | undefined;
12226
13202
  readonly relatedListColumns?: any[] | undefined;
13203
+ readonly displayField?: string | undefined;
13204
+ readonly descriptionField?: string | undefined;
13205
+ readonly lookupColumns?: (string | {
13206
+ field: string;
13207
+ label?: string | undefined;
13208
+ width?: string | undefined;
13209
+ type?: string | undefined;
13210
+ })[] | undefined;
13211
+ readonly lookupPageSize?: number | undefined;
13212
+ readonly lookupFilters?: {
13213
+ field: string;
13214
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
13215
+ value: any;
13216
+ }[] | undefined;
13217
+ readonly dependsOn?: (string | {
13218
+ field: string;
13219
+ param?: string | undefined;
13220
+ })[] | undefined;
13221
+ readonly allowCreate?: boolean | undefined;
12227
13222
  readonly expression?: {
12228
13223
  dialect: "cel" | "js" | "cron" | "template";
12229
13224
  source?: string | undefined;
@@ -12379,6 +13374,25 @@ declare const NotificationSubscription: Omit<{
12379
13374
  readonly relatedList?: boolean | undefined;
12380
13375
  readonly relatedListTitle?: string | undefined;
12381
13376
  readonly relatedListColumns?: any[] | undefined;
13377
+ readonly displayField?: string | undefined;
13378
+ readonly descriptionField?: string | undefined;
13379
+ readonly lookupColumns?: (string | {
13380
+ field: string;
13381
+ label?: string | undefined;
13382
+ width?: string | undefined;
13383
+ type?: string | undefined;
13384
+ })[] | undefined;
13385
+ readonly lookupPageSize?: number | undefined;
13386
+ readonly lookupFilters?: {
13387
+ field: string;
13388
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
13389
+ value: any;
13390
+ }[] | undefined;
13391
+ readonly dependsOn?: (string | {
13392
+ field: string;
13393
+ param?: string | undefined;
13394
+ })[] | undefined;
13395
+ readonly allowCreate?: boolean | undefined;
12382
13396
  readonly expression?: {
12383
13397
  dialect: "cel" | "js" | "cron" | "template";
12384
13398
  source?: string | undefined;
@@ -12534,6 +13548,25 @@ declare const NotificationSubscription: Omit<{
12534
13548
  readonly relatedList?: boolean | undefined;
12535
13549
  readonly relatedListTitle?: string | undefined;
12536
13550
  readonly relatedListColumns?: any[] | undefined;
13551
+ readonly displayField?: string | undefined;
13552
+ readonly descriptionField?: string | undefined;
13553
+ readonly lookupColumns?: (string | {
13554
+ field: string;
13555
+ label?: string | undefined;
13556
+ width?: string | undefined;
13557
+ type?: string | undefined;
13558
+ })[] | undefined;
13559
+ readonly lookupPageSize?: number | undefined;
13560
+ readonly lookupFilters?: {
13561
+ field: string;
13562
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
13563
+ value: any;
13564
+ }[] | undefined;
13565
+ readonly dependsOn?: (string | {
13566
+ field: string;
13567
+ param?: string | undefined;
13568
+ })[] | undefined;
13569
+ readonly allowCreate?: boolean | undefined;
12537
13570
  readonly expression?: {
12538
13571
  dialect: "cel" | "js" | "cron" | "template";
12539
13572
  source?: string | undefined;
@@ -12689,6 +13722,25 @@ declare const NotificationSubscription: Omit<{
12689
13722
  readonly relatedList?: boolean | undefined;
12690
13723
  readonly relatedListTitle?: string | undefined;
12691
13724
  readonly relatedListColumns?: any[] | undefined;
13725
+ readonly displayField?: string | undefined;
13726
+ readonly descriptionField?: string | undefined;
13727
+ readonly lookupColumns?: (string | {
13728
+ field: string;
13729
+ label?: string | undefined;
13730
+ width?: string | undefined;
13731
+ type?: string | undefined;
13732
+ })[] | undefined;
13733
+ readonly lookupPageSize?: number | undefined;
13734
+ readonly lookupFilters?: {
13735
+ field: string;
13736
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
13737
+ value: any;
13738
+ }[] | undefined;
13739
+ readonly dependsOn?: (string | {
13740
+ field: string;
13741
+ param?: string | undefined;
13742
+ })[] | undefined;
13743
+ readonly allowCreate?: boolean | undefined;
12692
13744
  readonly expression?: {
12693
13745
  dialect: "cel" | "js" | "cron" | "template";
12694
13746
  source?: string | undefined;
@@ -12844,6 +13896,25 @@ declare const NotificationSubscription: Omit<{
12844
13896
  readonly relatedList?: boolean | undefined;
12845
13897
  readonly relatedListTitle?: string | undefined;
12846
13898
  readonly relatedListColumns?: any[] | undefined;
13899
+ readonly displayField?: string | undefined;
13900
+ readonly descriptionField?: string | undefined;
13901
+ readonly lookupColumns?: (string | {
13902
+ field: string;
13903
+ label?: string | undefined;
13904
+ width?: string | undefined;
13905
+ type?: string | undefined;
13906
+ })[] | undefined;
13907
+ readonly lookupPageSize?: number | undefined;
13908
+ readonly lookupFilters?: {
13909
+ field: string;
13910
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
13911
+ value: any;
13912
+ }[] | undefined;
13913
+ readonly dependsOn?: (string | {
13914
+ field: string;
13915
+ param?: string | undefined;
13916
+ })[] | undefined;
13917
+ readonly allowCreate?: boolean | undefined;
12847
13918
  readonly expression?: {
12848
13919
  dialect: "cel" | "js" | "cron" | "template";
12849
13920
  source?: string | undefined;
@@ -12989,7 +14060,7 @@ declare const NotificationTemplate: Omit<{
12989
14060
  abstract: boolean;
12990
14061
  datasource: string;
12991
14062
  fields: Record<string, {
12992
- type: "number" | "boolean" | "email" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
14063
+ type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
12993
14064
  required: boolean;
12994
14065
  searchable: boolean;
12995
14066
  multiple: boolean;
@@ -13027,6 +14098,25 @@ declare const NotificationTemplate: Omit<{
13027
14098
  relatedList?: boolean | undefined;
13028
14099
  relatedListTitle?: string | undefined;
13029
14100
  relatedListColumns?: any[] | undefined;
14101
+ displayField?: string | undefined;
14102
+ descriptionField?: string | undefined;
14103
+ lookupColumns?: (string | {
14104
+ field: string;
14105
+ label?: string | undefined;
14106
+ width?: string | undefined;
14107
+ type?: string | undefined;
14108
+ })[] | undefined;
14109
+ lookupPageSize?: number | undefined;
14110
+ lookupFilters?: {
14111
+ field: string;
14112
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
14113
+ value: any;
14114
+ }[] | undefined;
14115
+ dependsOn?: (string | {
14116
+ field: string;
14117
+ param?: string | undefined;
14118
+ })[] | undefined;
14119
+ allowCreate?: boolean | undefined;
13030
14120
  expression?: {
13031
14121
  dialect: "cel" | "js" | "cron" | "template";
13032
14122
  source?: string | undefined;
@@ -13302,7 +14392,7 @@ declare const NotificationTemplate: Omit<{
13302
14392
  } | undefined;
13303
14393
  compactLayout?: string[] | undefined;
13304
14394
  listViews?: Record<string, {
13305
- type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
14395
+ type: "map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
13306
14396
  columns: string[] | {
13307
14397
  field: string;
13308
14398
  label?: string | undefined;
@@ -13419,6 +14509,7 @@ declare const NotificationTemplate: Omit<{
13419
14509
  colorField?: string | undefined;
13420
14510
  } | undefined;
13421
14511
  gantt?: {
14512
+ [x: string]: unknown;
13422
14513
  startDateField: string;
13423
14514
  endDateField: string;
13424
14515
  titleField: string;
@@ -13469,6 +14560,13 @@ declare const NotificationTemplate: Omit<{
13469
14560
  values: string[];
13470
14561
  dimensions?: string[] | undefined;
13471
14562
  } | undefined;
14563
+ tree?: {
14564
+ [x: string]: unknown;
14565
+ parentField?: string | undefined;
14566
+ labelField?: string | undefined;
14567
+ fields?: string[] | undefined;
14568
+ defaultExpandedDepth?: number | undefined;
14569
+ } | undefined;
13472
14570
  description?: string | undefined;
13473
14571
  sharing?: {
13474
14572
  type: "personal" | "collaborative";
@@ -13524,7 +14622,7 @@ declare const NotificationTemplate: Omit<{
13524
14622
  } | undefined;
13525
14623
  appearance?: {
13526
14624
  showDescription: boolean;
13527
- allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
14625
+ allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
13528
14626
  } | undefined;
13529
14627
  tabs?: {
13530
14628
  name: string;
@@ -13593,6 +14691,7 @@ declare const NotificationTemplate: Omit<{
13593
14691
  } | undefined;
13594
14692
  }> | undefined;
13595
14693
  defaultDetailForm?: string | undefined;
14694
+ searchableFields?: string[] | undefined;
13596
14695
  search?: {
13597
14696
  fields: string[];
13598
14697
  displayFields?: string[] | undefined;
@@ -13784,6 +14883,25 @@ declare const NotificationTemplate: Omit<{
13784
14883
  readonly relatedList?: boolean | undefined;
13785
14884
  readonly relatedListTitle?: string | undefined;
13786
14885
  readonly relatedListColumns?: any[] | undefined;
14886
+ readonly displayField?: string | undefined;
14887
+ readonly descriptionField?: string | undefined;
14888
+ readonly lookupColumns?: (string | {
14889
+ field: string;
14890
+ label?: string | undefined;
14891
+ width?: string | undefined;
14892
+ type?: string | undefined;
14893
+ })[] | undefined;
14894
+ readonly lookupPageSize?: number | undefined;
14895
+ readonly lookupFilters?: {
14896
+ field: string;
14897
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
14898
+ value: any;
14899
+ }[] | undefined;
14900
+ readonly dependsOn?: (string | {
14901
+ field: string;
14902
+ param?: string | undefined;
14903
+ })[] | undefined;
14904
+ readonly allowCreate?: boolean | undefined;
13787
14905
  readonly expression?: {
13788
14906
  dialect: "cel" | "js" | "cron" | "template";
13789
14907
  source?: string | undefined;
@@ -13939,6 +15057,25 @@ declare const NotificationTemplate: Omit<{
13939
15057
  readonly relatedList?: boolean | undefined;
13940
15058
  readonly relatedListTitle?: string | undefined;
13941
15059
  readonly relatedListColumns?: any[] | undefined;
15060
+ readonly displayField?: string | undefined;
15061
+ readonly descriptionField?: string | undefined;
15062
+ readonly lookupColumns?: (string | {
15063
+ field: string;
15064
+ label?: string | undefined;
15065
+ width?: string | undefined;
15066
+ type?: string | undefined;
15067
+ })[] | undefined;
15068
+ readonly lookupPageSize?: number | undefined;
15069
+ readonly lookupFilters?: {
15070
+ field: string;
15071
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
15072
+ value: any;
15073
+ }[] | undefined;
15074
+ readonly dependsOn?: (string | {
15075
+ field: string;
15076
+ param?: string | undefined;
15077
+ })[] | undefined;
15078
+ readonly allowCreate?: boolean | undefined;
13942
15079
  readonly expression?: {
13943
15080
  dialect: "cel" | "js" | "cron" | "template";
13944
15081
  source?: string | undefined;
@@ -14094,6 +15231,25 @@ declare const NotificationTemplate: Omit<{
14094
15231
  readonly relatedList?: boolean | undefined;
14095
15232
  readonly relatedListTitle?: string | undefined;
14096
15233
  readonly relatedListColumns?: any[] | undefined;
15234
+ readonly displayField?: string | undefined;
15235
+ readonly descriptionField?: string | undefined;
15236
+ readonly lookupColumns?: (string | {
15237
+ field: string;
15238
+ label?: string | undefined;
15239
+ width?: string | undefined;
15240
+ type?: string | undefined;
15241
+ })[] | undefined;
15242
+ readonly lookupPageSize?: number | undefined;
15243
+ readonly lookupFilters?: {
15244
+ field: string;
15245
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
15246
+ value: any;
15247
+ }[] | undefined;
15248
+ readonly dependsOn?: (string | {
15249
+ field: string;
15250
+ param?: string | undefined;
15251
+ })[] | undefined;
15252
+ readonly allowCreate?: boolean | undefined;
14097
15253
  readonly expression?: {
14098
15254
  dialect: "cel" | "js" | "cron" | "template";
14099
15255
  source?: string | undefined;
@@ -14249,6 +15405,25 @@ declare const NotificationTemplate: Omit<{
14249
15405
  readonly relatedList?: boolean | undefined;
14250
15406
  readonly relatedListTitle?: string | undefined;
14251
15407
  readonly relatedListColumns?: any[] | undefined;
15408
+ readonly displayField?: string | undefined;
15409
+ readonly descriptionField?: string | undefined;
15410
+ readonly lookupColumns?: (string | {
15411
+ field: string;
15412
+ label?: string | undefined;
15413
+ width?: string | undefined;
15414
+ type?: string | undefined;
15415
+ })[] | undefined;
15416
+ readonly lookupPageSize?: number | undefined;
15417
+ readonly lookupFilters?: {
15418
+ field: string;
15419
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
15420
+ value: any;
15421
+ }[] | undefined;
15422
+ readonly dependsOn?: (string | {
15423
+ field: string;
15424
+ param?: string | undefined;
15425
+ })[] | undefined;
15426
+ readonly allowCreate?: boolean | undefined;
14252
15427
  readonly expression?: {
14253
15428
  dialect: "cel" | "js" | "cron" | "template";
14254
15429
  source?: string | undefined;
@@ -14404,6 +15579,25 @@ declare const NotificationTemplate: Omit<{
14404
15579
  readonly relatedList?: boolean | undefined;
14405
15580
  readonly relatedListTitle?: string | undefined;
14406
15581
  readonly relatedListColumns?: any[] | undefined;
15582
+ readonly displayField?: string | undefined;
15583
+ readonly descriptionField?: string | undefined;
15584
+ readonly lookupColumns?: (string | {
15585
+ field: string;
15586
+ label?: string | undefined;
15587
+ width?: string | undefined;
15588
+ type?: string | undefined;
15589
+ })[] | undefined;
15590
+ readonly lookupPageSize?: number | undefined;
15591
+ readonly lookupFilters?: {
15592
+ field: string;
15593
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
15594
+ value: any;
15595
+ }[] | undefined;
15596
+ readonly dependsOn?: (string | {
15597
+ field: string;
15598
+ param?: string | undefined;
15599
+ })[] | undefined;
15600
+ readonly allowCreate?: boolean | undefined;
14407
15601
  readonly expression?: {
14408
15602
  dialect: "cel" | "js" | "cron" | "template";
14409
15603
  source?: string | undefined;
@@ -14559,6 +15753,25 @@ declare const NotificationTemplate: Omit<{
14559
15753
  readonly relatedList?: boolean | undefined;
14560
15754
  readonly relatedListTitle?: string | undefined;
14561
15755
  readonly relatedListColumns?: any[] | undefined;
15756
+ readonly displayField?: string | undefined;
15757
+ readonly descriptionField?: string | undefined;
15758
+ readonly lookupColumns?: (string | {
15759
+ field: string;
15760
+ label?: string | undefined;
15761
+ width?: string | undefined;
15762
+ type?: string | undefined;
15763
+ })[] | undefined;
15764
+ readonly lookupPageSize?: number | undefined;
15765
+ readonly lookupFilters?: {
15766
+ field: string;
15767
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
15768
+ value: any;
15769
+ }[] | undefined;
15770
+ readonly dependsOn?: (string | {
15771
+ field: string;
15772
+ param?: string | undefined;
15773
+ })[] | undefined;
15774
+ readonly allowCreate?: boolean | undefined;
14562
15775
  readonly expression?: {
14563
15776
  dialect: "cel" | "js" | "cron" | "template";
14564
15777
  source?: string | undefined;
@@ -14714,6 +15927,25 @@ declare const NotificationTemplate: Omit<{
14714
15927
  readonly relatedList?: boolean | undefined;
14715
15928
  readonly relatedListTitle?: string | undefined;
14716
15929
  readonly relatedListColumns?: any[] | undefined;
15930
+ readonly displayField?: string | undefined;
15931
+ readonly descriptionField?: string | undefined;
15932
+ readonly lookupColumns?: (string | {
15933
+ field: string;
15934
+ label?: string | undefined;
15935
+ width?: string | undefined;
15936
+ type?: string | undefined;
15937
+ })[] | undefined;
15938
+ readonly lookupPageSize?: number | undefined;
15939
+ readonly lookupFilters?: {
15940
+ field: string;
15941
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
15942
+ value: any;
15943
+ }[] | undefined;
15944
+ readonly dependsOn?: (string | {
15945
+ field: string;
15946
+ param?: string | undefined;
15947
+ })[] | undefined;
15948
+ readonly allowCreate?: boolean | undefined;
14717
15949
  readonly expression?: {
14718
15950
  dialect: "cel" | "js" | "cron" | "template";
14719
15951
  source?: string | undefined;
@@ -14869,6 +16101,25 @@ declare const NotificationTemplate: Omit<{
14869
16101
  readonly relatedList?: boolean | undefined;
14870
16102
  readonly relatedListTitle?: string | undefined;
14871
16103
  readonly relatedListColumns?: any[] | undefined;
16104
+ readonly displayField?: string | undefined;
16105
+ readonly descriptionField?: string | undefined;
16106
+ readonly lookupColumns?: (string | {
16107
+ field: string;
16108
+ label?: string | undefined;
16109
+ width?: string | undefined;
16110
+ type?: string | undefined;
16111
+ })[] | undefined;
16112
+ readonly lookupPageSize?: number | undefined;
16113
+ readonly lookupFilters?: {
16114
+ field: string;
16115
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
16116
+ value: any;
16117
+ }[] | undefined;
16118
+ readonly dependsOn?: (string | {
16119
+ field: string;
16120
+ param?: string | undefined;
16121
+ })[] | undefined;
16122
+ readonly allowCreate?: boolean | undefined;
14872
16123
  readonly expression?: {
14873
16124
  dialect: "cel" | "js" | "cron" | "template";
14874
16125
  source?: string | undefined;
@@ -15024,6 +16275,25 @@ declare const NotificationTemplate: Omit<{
15024
16275
  readonly relatedList?: boolean | undefined;
15025
16276
  readonly relatedListTitle?: string | undefined;
15026
16277
  readonly relatedListColumns?: any[] | undefined;
16278
+ readonly displayField?: string | undefined;
16279
+ readonly descriptionField?: string | undefined;
16280
+ readonly lookupColumns?: (string | {
16281
+ field: string;
16282
+ label?: string | undefined;
16283
+ width?: string | undefined;
16284
+ type?: string | undefined;
16285
+ })[] | undefined;
16286
+ readonly lookupPageSize?: number | undefined;
16287
+ readonly lookupFilters?: {
16288
+ field: string;
16289
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
16290
+ value: any;
16291
+ }[] | undefined;
16292
+ readonly dependsOn?: (string | {
16293
+ field: string;
16294
+ param?: string | undefined;
16295
+ })[] | undefined;
16296
+ readonly allowCreate?: boolean | undefined;
15027
16297
  readonly expression?: {
15028
16298
  dialect: "cel" | "js" | "cron" | "template";
15029
16299
  source?: string | undefined;
@@ -15179,6 +16449,25 @@ declare const NotificationTemplate: Omit<{
15179
16449
  readonly relatedList?: boolean | undefined;
15180
16450
  readonly relatedListTitle?: string | undefined;
15181
16451
  readonly relatedListColumns?: any[] | undefined;
16452
+ readonly displayField?: string | undefined;
16453
+ readonly descriptionField?: string | undefined;
16454
+ readonly lookupColumns?: (string | {
16455
+ field: string;
16456
+ label?: string | undefined;
16457
+ width?: string | undefined;
16458
+ type?: string | undefined;
16459
+ })[] | undefined;
16460
+ readonly lookupPageSize?: number | undefined;
16461
+ readonly lookupFilters?: {
16462
+ field: string;
16463
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
16464
+ value: any;
16465
+ }[] | undefined;
16466
+ readonly dependsOn?: (string | {
16467
+ field: string;
16468
+ param?: string | undefined;
16469
+ })[] | undefined;
16470
+ readonly allowCreate?: boolean | undefined;
15182
16471
  readonly expression?: {
15183
16472
  dialect: "cel" | "js" | "cron" | "template";
15184
16473
  source?: string | undefined;
@@ -15334,6 +16623,25 @@ declare const NotificationTemplate: Omit<{
15334
16623
  readonly relatedList?: boolean | undefined;
15335
16624
  readonly relatedListTitle?: string | undefined;
15336
16625
  readonly relatedListColumns?: any[] | undefined;
16626
+ readonly displayField?: string | undefined;
16627
+ readonly descriptionField?: string | undefined;
16628
+ readonly lookupColumns?: (string | {
16629
+ field: string;
16630
+ label?: string | undefined;
16631
+ width?: string | undefined;
16632
+ type?: string | undefined;
16633
+ })[] | undefined;
16634
+ readonly lookupPageSize?: number | undefined;
16635
+ readonly lookupFilters?: {
16636
+ field: string;
16637
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
16638
+ value: any;
16639
+ }[] | undefined;
16640
+ readonly dependsOn?: (string | {
16641
+ field: string;
16642
+ param?: string | undefined;
16643
+ })[] | undefined;
16644
+ readonly allowCreate?: boolean | undefined;
15337
16645
  readonly expression?: {
15338
16646
  dialect: "cel" | "js" | "cron" | "template";
15339
16647
  source?: string | undefined;
@@ -15487,7 +16795,7 @@ declare const HttpDelivery: Omit<{
15487
16795
  abstract: boolean;
15488
16796
  datasource: string;
15489
16797
  fields: Record<string, {
15490
- type: "number" | "boolean" | "email" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
16798
+ type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
15491
16799
  required: boolean;
15492
16800
  searchable: boolean;
15493
16801
  multiple: boolean;
@@ -15525,6 +16833,25 @@ declare const HttpDelivery: Omit<{
15525
16833
  relatedList?: boolean | undefined;
15526
16834
  relatedListTitle?: string | undefined;
15527
16835
  relatedListColumns?: any[] | undefined;
16836
+ displayField?: string | undefined;
16837
+ descriptionField?: string | undefined;
16838
+ lookupColumns?: (string | {
16839
+ field: string;
16840
+ label?: string | undefined;
16841
+ width?: string | undefined;
16842
+ type?: string | undefined;
16843
+ })[] | undefined;
16844
+ lookupPageSize?: number | undefined;
16845
+ lookupFilters?: {
16846
+ field: string;
16847
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
16848
+ value: any;
16849
+ }[] | undefined;
16850
+ dependsOn?: (string | {
16851
+ field: string;
16852
+ param?: string | undefined;
16853
+ })[] | undefined;
16854
+ allowCreate?: boolean | undefined;
15528
16855
  expression?: {
15529
16856
  dialect: "cel" | "js" | "cron" | "template";
15530
16857
  source?: string | undefined;
@@ -15800,7 +17127,7 @@ declare const HttpDelivery: Omit<{
15800
17127
  } | undefined;
15801
17128
  compactLayout?: string[] | undefined;
15802
17129
  listViews?: Record<string, {
15803
- type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
17130
+ type: "map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
15804
17131
  columns: string[] | {
15805
17132
  field: string;
15806
17133
  label?: string | undefined;
@@ -15917,6 +17244,7 @@ declare const HttpDelivery: Omit<{
15917
17244
  colorField?: string | undefined;
15918
17245
  } | undefined;
15919
17246
  gantt?: {
17247
+ [x: string]: unknown;
15920
17248
  startDateField: string;
15921
17249
  endDateField: string;
15922
17250
  titleField: string;
@@ -15967,6 +17295,13 @@ declare const HttpDelivery: Omit<{
15967
17295
  values: string[];
15968
17296
  dimensions?: string[] | undefined;
15969
17297
  } | undefined;
17298
+ tree?: {
17299
+ [x: string]: unknown;
17300
+ parentField?: string | undefined;
17301
+ labelField?: string | undefined;
17302
+ fields?: string[] | undefined;
17303
+ defaultExpandedDepth?: number | undefined;
17304
+ } | undefined;
15970
17305
  description?: string | undefined;
15971
17306
  sharing?: {
15972
17307
  type: "personal" | "collaborative";
@@ -16022,7 +17357,7 @@ declare const HttpDelivery: Omit<{
16022
17357
  } | undefined;
16023
17358
  appearance?: {
16024
17359
  showDescription: boolean;
16025
- allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
17360
+ allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
16026
17361
  } | undefined;
16027
17362
  tabs?: {
16028
17363
  name: string;
@@ -16091,6 +17426,7 @@ declare const HttpDelivery: Omit<{
16091
17426
  } | undefined;
16092
17427
  }> | undefined;
16093
17428
  defaultDetailForm?: string | undefined;
17429
+ searchableFields?: string[] | undefined;
16094
17430
  search?: {
16095
17431
  fields: string[];
16096
17432
  displayFields?: string[] | undefined;
@@ -16352,6 +17688,25 @@ declare const HttpDelivery: Omit<{
16352
17688
  readonly relatedList?: boolean | undefined;
16353
17689
  readonly relatedListTitle?: string | undefined;
16354
17690
  readonly relatedListColumns?: any[] | undefined;
17691
+ readonly displayField?: string | undefined;
17692
+ readonly descriptionField?: string | undefined;
17693
+ readonly lookupColumns?: (string | {
17694
+ field: string;
17695
+ label?: string | undefined;
17696
+ width?: string | undefined;
17697
+ type?: string | undefined;
17698
+ })[] | undefined;
17699
+ readonly lookupPageSize?: number | undefined;
17700
+ readonly lookupFilters?: {
17701
+ field: string;
17702
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
17703
+ value: any;
17704
+ }[] | undefined;
17705
+ readonly dependsOn?: (string | {
17706
+ field: string;
17707
+ param?: string | undefined;
17708
+ })[] | undefined;
17709
+ readonly allowCreate?: boolean | undefined;
16355
17710
  readonly expression?: {
16356
17711
  dialect: "cel" | "js" | "cron" | "template";
16357
17712
  source?: string | undefined;
@@ -16507,6 +17862,25 @@ declare const HttpDelivery: Omit<{
16507
17862
  readonly relatedList?: boolean | undefined;
16508
17863
  readonly relatedListTitle?: string | undefined;
16509
17864
  readonly relatedListColumns?: any[] | undefined;
17865
+ readonly displayField?: string | undefined;
17866
+ readonly descriptionField?: string | undefined;
17867
+ readonly lookupColumns?: (string | {
17868
+ field: string;
17869
+ label?: string | undefined;
17870
+ width?: string | undefined;
17871
+ type?: string | undefined;
17872
+ })[] | undefined;
17873
+ readonly lookupPageSize?: number | undefined;
17874
+ readonly lookupFilters?: {
17875
+ field: string;
17876
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
17877
+ value: any;
17878
+ }[] | undefined;
17879
+ readonly dependsOn?: (string | {
17880
+ field: string;
17881
+ param?: string | undefined;
17882
+ })[] | undefined;
17883
+ readonly allowCreate?: boolean | undefined;
16510
17884
  readonly expression?: {
16511
17885
  dialect: "cel" | "js" | "cron" | "template";
16512
17886
  source?: string | undefined;
@@ -16662,6 +18036,25 @@ declare const HttpDelivery: Omit<{
16662
18036
  readonly relatedList?: boolean | undefined;
16663
18037
  readonly relatedListTitle?: string | undefined;
16664
18038
  readonly relatedListColumns?: any[] | undefined;
18039
+ readonly displayField?: string | undefined;
18040
+ readonly descriptionField?: string | undefined;
18041
+ readonly lookupColumns?: (string | {
18042
+ field: string;
18043
+ label?: string | undefined;
18044
+ width?: string | undefined;
18045
+ type?: string | undefined;
18046
+ })[] | undefined;
18047
+ readonly lookupPageSize?: number | undefined;
18048
+ readonly lookupFilters?: {
18049
+ field: string;
18050
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
18051
+ value: any;
18052
+ }[] | undefined;
18053
+ readonly dependsOn?: (string | {
18054
+ field: string;
18055
+ param?: string | undefined;
18056
+ })[] | undefined;
18057
+ readonly allowCreate?: boolean | undefined;
16665
18058
  readonly expression?: {
16666
18059
  dialect: "cel" | "js" | "cron" | "template";
16667
18060
  source?: string | undefined;
@@ -16817,6 +18210,25 @@ declare const HttpDelivery: Omit<{
16817
18210
  readonly relatedList?: boolean | undefined;
16818
18211
  readonly relatedListTitle?: string | undefined;
16819
18212
  readonly relatedListColumns?: any[] | undefined;
18213
+ readonly displayField?: string | undefined;
18214
+ readonly descriptionField?: string | undefined;
18215
+ readonly lookupColumns?: (string | {
18216
+ field: string;
18217
+ label?: string | undefined;
18218
+ width?: string | undefined;
18219
+ type?: string | undefined;
18220
+ })[] | undefined;
18221
+ readonly lookupPageSize?: number | undefined;
18222
+ readonly lookupFilters?: {
18223
+ field: string;
18224
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
18225
+ value: any;
18226
+ }[] | undefined;
18227
+ readonly dependsOn?: (string | {
18228
+ field: string;
18229
+ param?: string | undefined;
18230
+ })[] | undefined;
18231
+ readonly allowCreate?: boolean | undefined;
16820
18232
  readonly expression?: {
16821
18233
  dialect: "cel" | "js" | "cron" | "template";
16822
18234
  source?: string | undefined;
@@ -16972,6 +18384,25 @@ declare const HttpDelivery: Omit<{
16972
18384
  readonly relatedList?: boolean | undefined;
16973
18385
  readonly relatedListTitle?: string | undefined;
16974
18386
  readonly relatedListColumns?: any[] | undefined;
18387
+ readonly displayField?: string | undefined;
18388
+ readonly descriptionField?: string | undefined;
18389
+ readonly lookupColumns?: (string | {
18390
+ field: string;
18391
+ label?: string | undefined;
18392
+ width?: string | undefined;
18393
+ type?: string | undefined;
18394
+ })[] | undefined;
18395
+ readonly lookupPageSize?: number | undefined;
18396
+ readonly lookupFilters?: {
18397
+ field: string;
18398
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
18399
+ value: any;
18400
+ }[] | undefined;
18401
+ readonly dependsOn?: (string | {
18402
+ field: string;
18403
+ param?: string | undefined;
18404
+ })[] | undefined;
18405
+ readonly allowCreate?: boolean | undefined;
16975
18406
  readonly expression?: {
16976
18407
  dialect: "cel" | "js" | "cron" | "template";
16977
18408
  source?: string | undefined;
@@ -17127,6 +18558,25 @@ declare const HttpDelivery: Omit<{
17127
18558
  readonly relatedList?: boolean | undefined;
17128
18559
  readonly relatedListTitle?: string | undefined;
17129
18560
  readonly relatedListColumns?: any[] | undefined;
18561
+ readonly displayField?: string | undefined;
18562
+ readonly descriptionField?: string | undefined;
18563
+ readonly lookupColumns?: (string | {
18564
+ field: string;
18565
+ label?: string | undefined;
18566
+ width?: string | undefined;
18567
+ type?: string | undefined;
18568
+ })[] | undefined;
18569
+ readonly lookupPageSize?: number | undefined;
18570
+ readonly lookupFilters?: {
18571
+ field: string;
18572
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
18573
+ value: any;
18574
+ }[] | undefined;
18575
+ readonly dependsOn?: (string | {
18576
+ field: string;
18577
+ param?: string | undefined;
18578
+ })[] | undefined;
18579
+ readonly allowCreate?: boolean | undefined;
17130
18580
  readonly expression?: {
17131
18581
  dialect: "cel" | "js" | "cron" | "template";
17132
18582
  source?: string | undefined;
@@ -17282,6 +18732,25 @@ declare const HttpDelivery: Omit<{
17282
18732
  readonly relatedList?: boolean | undefined;
17283
18733
  readonly relatedListTitle?: string | undefined;
17284
18734
  readonly relatedListColumns?: any[] | undefined;
18735
+ readonly displayField?: string | undefined;
18736
+ readonly descriptionField?: string | undefined;
18737
+ readonly lookupColumns?: (string | {
18738
+ field: string;
18739
+ label?: string | undefined;
18740
+ width?: string | undefined;
18741
+ type?: string | undefined;
18742
+ })[] | undefined;
18743
+ readonly lookupPageSize?: number | undefined;
18744
+ readonly lookupFilters?: {
18745
+ field: string;
18746
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
18747
+ value: any;
18748
+ }[] | undefined;
18749
+ readonly dependsOn?: (string | {
18750
+ field: string;
18751
+ param?: string | undefined;
18752
+ })[] | undefined;
18753
+ readonly allowCreate?: boolean | undefined;
17285
18754
  readonly expression?: {
17286
18755
  dialect: "cel" | "js" | "cron" | "template";
17287
18756
  source?: string | undefined;
@@ -17437,6 +18906,25 @@ declare const HttpDelivery: Omit<{
17437
18906
  readonly relatedList?: boolean | undefined;
17438
18907
  readonly relatedListTitle?: string | undefined;
17439
18908
  readonly relatedListColumns?: any[] | undefined;
18909
+ readonly displayField?: string | undefined;
18910
+ readonly descriptionField?: string | undefined;
18911
+ readonly lookupColumns?: (string | {
18912
+ field: string;
18913
+ label?: string | undefined;
18914
+ width?: string | undefined;
18915
+ type?: string | undefined;
18916
+ })[] | undefined;
18917
+ readonly lookupPageSize?: number | undefined;
18918
+ readonly lookupFilters?: {
18919
+ field: string;
18920
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
18921
+ value: any;
18922
+ }[] | undefined;
18923
+ readonly dependsOn?: (string | {
18924
+ field: string;
18925
+ param?: string | undefined;
18926
+ })[] | undefined;
18927
+ readonly allowCreate?: boolean | undefined;
17440
18928
  readonly expression?: {
17441
18929
  dialect: "cel" | "js" | "cron" | "template";
17442
18930
  source?: string | undefined;
@@ -17592,6 +19080,25 @@ declare const HttpDelivery: Omit<{
17592
19080
  readonly relatedList?: boolean | undefined;
17593
19081
  readonly relatedListTitle?: string | undefined;
17594
19082
  readonly relatedListColumns?: any[] | undefined;
19083
+ readonly displayField?: string | undefined;
19084
+ readonly descriptionField?: string | undefined;
19085
+ readonly lookupColumns?: (string | {
19086
+ field: string;
19087
+ label?: string | undefined;
19088
+ width?: string | undefined;
19089
+ type?: string | undefined;
19090
+ })[] | undefined;
19091
+ readonly lookupPageSize?: number | undefined;
19092
+ readonly lookupFilters?: {
19093
+ field: string;
19094
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
19095
+ value: any;
19096
+ }[] | undefined;
19097
+ readonly dependsOn?: (string | {
19098
+ field: string;
19099
+ param?: string | undefined;
19100
+ })[] | undefined;
19101
+ readonly allowCreate?: boolean | undefined;
17595
19102
  readonly expression?: {
17596
19103
  dialect: "cel" | "js" | "cron" | "template";
17597
19104
  source?: string | undefined;
@@ -17747,6 +19254,25 @@ declare const HttpDelivery: Omit<{
17747
19254
  readonly relatedList?: boolean | undefined;
17748
19255
  readonly relatedListTitle?: string | undefined;
17749
19256
  readonly relatedListColumns?: any[] | undefined;
19257
+ readonly displayField?: string | undefined;
19258
+ readonly descriptionField?: string | undefined;
19259
+ readonly lookupColumns?: (string | {
19260
+ field: string;
19261
+ label?: string | undefined;
19262
+ width?: string | undefined;
19263
+ type?: string | undefined;
19264
+ })[] | undefined;
19265
+ readonly lookupPageSize?: number | undefined;
19266
+ readonly lookupFilters?: {
19267
+ field: string;
19268
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
19269
+ value: any;
19270
+ }[] | undefined;
19271
+ readonly dependsOn?: (string | {
19272
+ field: string;
19273
+ param?: string | undefined;
19274
+ })[] | undefined;
19275
+ readonly allowCreate?: boolean | undefined;
17750
19276
  readonly expression?: {
17751
19277
  dialect: "cel" | "js" | "cron" | "template";
17752
19278
  source?: string | undefined;
@@ -17902,6 +19428,25 @@ declare const HttpDelivery: Omit<{
17902
19428
  readonly relatedList?: boolean | undefined;
17903
19429
  readonly relatedListTitle?: string | undefined;
17904
19430
  readonly relatedListColumns?: any[] | undefined;
19431
+ readonly displayField?: string | undefined;
19432
+ readonly descriptionField?: string | undefined;
19433
+ readonly lookupColumns?: (string | {
19434
+ field: string;
19435
+ label?: string | undefined;
19436
+ width?: string | undefined;
19437
+ type?: string | undefined;
19438
+ })[] | undefined;
19439
+ readonly lookupPageSize?: number | undefined;
19440
+ readonly lookupFilters?: {
19441
+ field: string;
19442
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
19443
+ value: any;
19444
+ }[] | undefined;
19445
+ readonly dependsOn?: (string | {
19446
+ field: string;
19447
+ param?: string | undefined;
19448
+ })[] | undefined;
19449
+ readonly allowCreate?: boolean | undefined;
17905
19450
  readonly expression?: {
17906
19451
  dialect: "cel" | "js" | "cron" | "template";
17907
19452
  source?: string | undefined;
@@ -18057,6 +19602,25 @@ declare const HttpDelivery: Omit<{
18057
19602
  readonly relatedList?: boolean | undefined;
18058
19603
  readonly relatedListTitle?: string | undefined;
18059
19604
  readonly relatedListColumns?: any[] | undefined;
19605
+ readonly displayField?: string | undefined;
19606
+ readonly descriptionField?: string | undefined;
19607
+ readonly lookupColumns?: (string | {
19608
+ field: string;
19609
+ label?: string | undefined;
19610
+ width?: string | undefined;
19611
+ type?: string | undefined;
19612
+ })[] | undefined;
19613
+ readonly lookupPageSize?: number | undefined;
19614
+ readonly lookupFilters?: {
19615
+ field: string;
19616
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
19617
+ value: any;
19618
+ }[] | undefined;
19619
+ readonly dependsOn?: (string | {
19620
+ field: string;
19621
+ param?: string | undefined;
19622
+ })[] | undefined;
19623
+ readonly allowCreate?: boolean | undefined;
18060
19624
  readonly expression?: {
18061
19625
  dialect: "cel" | "js" | "cron" | "template";
18062
19626
  source?: string | undefined;
@@ -18212,6 +19776,25 @@ declare const HttpDelivery: Omit<{
18212
19776
  readonly relatedList?: boolean | undefined;
18213
19777
  readonly relatedListTitle?: string | undefined;
18214
19778
  readonly relatedListColumns?: any[] | undefined;
19779
+ readonly displayField?: string | undefined;
19780
+ readonly descriptionField?: string | undefined;
19781
+ readonly lookupColumns?: (string | {
19782
+ field: string;
19783
+ label?: string | undefined;
19784
+ width?: string | undefined;
19785
+ type?: string | undefined;
19786
+ })[] | undefined;
19787
+ readonly lookupPageSize?: number | undefined;
19788
+ readonly lookupFilters?: {
19789
+ field: string;
19790
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
19791
+ value: any;
19792
+ }[] | undefined;
19793
+ readonly dependsOn?: (string | {
19794
+ field: string;
19795
+ param?: string | undefined;
19796
+ })[] | undefined;
19797
+ readonly allowCreate?: boolean | undefined;
18215
19798
  readonly expression?: {
18216
19799
  dialect: "cel" | "js" | "cron" | "template";
18217
19800
  source?: string | undefined;
@@ -18367,6 +19950,25 @@ declare const HttpDelivery: Omit<{
18367
19950
  readonly relatedList?: boolean | undefined;
18368
19951
  readonly relatedListTitle?: string | undefined;
18369
19952
  readonly relatedListColumns?: any[] | undefined;
19953
+ readonly displayField?: string | undefined;
19954
+ readonly descriptionField?: string | undefined;
19955
+ readonly lookupColumns?: (string | {
19956
+ field: string;
19957
+ label?: string | undefined;
19958
+ width?: string | undefined;
19959
+ type?: string | undefined;
19960
+ })[] | undefined;
19961
+ readonly lookupPageSize?: number | undefined;
19962
+ readonly lookupFilters?: {
19963
+ field: string;
19964
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
19965
+ value: any;
19966
+ }[] | undefined;
19967
+ readonly dependsOn?: (string | {
19968
+ field: string;
19969
+ param?: string | undefined;
19970
+ })[] | undefined;
19971
+ readonly allowCreate?: boolean | undefined;
18370
19972
  readonly expression?: {
18371
19973
  dialect: "cel" | "js" | "cron" | "template";
18372
19974
  source?: string | undefined;
@@ -18522,6 +20124,25 @@ declare const HttpDelivery: Omit<{
18522
20124
  readonly relatedList?: boolean | undefined;
18523
20125
  readonly relatedListTitle?: string | undefined;
18524
20126
  readonly relatedListColumns?: any[] | undefined;
20127
+ readonly displayField?: string | undefined;
20128
+ readonly descriptionField?: string | undefined;
20129
+ readonly lookupColumns?: (string | {
20130
+ field: string;
20131
+ label?: string | undefined;
20132
+ width?: string | undefined;
20133
+ type?: string | undefined;
20134
+ })[] | undefined;
20135
+ readonly lookupPageSize?: number | undefined;
20136
+ readonly lookupFilters?: {
20137
+ field: string;
20138
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
20139
+ value: any;
20140
+ }[] | undefined;
20141
+ readonly dependsOn?: (string | {
20142
+ field: string;
20143
+ param?: string | undefined;
20144
+ })[] | undefined;
20145
+ readonly allowCreate?: boolean | undefined;
18525
20146
  readonly expression?: {
18526
20147
  dialect: "cel" | "js" | "cron" | "template";
18527
20148
  source?: string | undefined;
@@ -18677,6 +20298,25 @@ declare const HttpDelivery: Omit<{
18677
20298
  readonly relatedList?: boolean | undefined;
18678
20299
  readonly relatedListTitle?: string | undefined;
18679
20300
  readonly relatedListColumns?: any[] | undefined;
20301
+ readonly displayField?: string | undefined;
20302
+ readonly descriptionField?: string | undefined;
20303
+ readonly lookupColumns?: (string | {
20304
+ field: string;
20305
+ label?: string | undefined;
20306
+ width?: string | undefined;
20307
+ type?: string | undefined;
20308
+ })[] | undefined;
20309
+ readonly lookupPageSize?: number | undefined;
20310
+ readonly lookupFilters?: {
20311
+ field: string;
20312
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
20313
+ value: any;
20314
+ }[] | undefined;
20315
+ readonly dependsOn?: (string | {
20316
+ field: string;
20317
+ param?: string | undefined;
20318
+ })[] | undefined;
20319
+ readonly allowCreate?: boolean | undefined;
18680
20320
  readonly expression?: {
18681
20321
  dialect: "cel" | "js" | "cron" | "template";
18682
20322
  source?: string | undefined;
@@ -18832,6 +20472,25 @@ declare const HttpDelivery: Omit<{
18832
20472
  readonly relatedList?: boolean | undefined;
18833
20473
  readonly relatedListTitle?: string | undefined;
18834
20474
  readonly relatedListColumns?: any[] | undefined;
20475
+ readonly displayField?: string | undefined;
20476
+ readonly descriptionField?: string | undefined;
20477
+ readonly lookupColumns?: (string | {
20478
+ field: string;
20479
+ label?: string | undefined;
20480
+ width?: string | undefined;
20481
+ type?: string | undefined;
20482
+ })[] | undefined;
20483
+ readonly lookupPageSize?: number | undefined;
20484
+ readonly lookupFilters?: {
20485
+ field: string;
20486
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
20487
+ value: any;
20488
+ }[] | undefined;
20489
+ readonly dependsOn?: (string | {
20490
+ field: string;
20491
+ param?: string | undefined;
20492
+ })[] | undefined;
20493
+ readonly allowCreate?: boolean | undefined;
18835
20494
  readonly expression?: {
18836
20495
  dialect: "cel" | "js" | "cron" | "template";
18837
20496
  source?: string | undefined;
@@ -18987,6 +20646,25 @@ declare const HttpDelivery: Omit<{
18987
20646
  readonly relatedList?: boolean | undefined;
18988
20647
  readonly relatedListTitle?: string | undefined;
18989
20648
  readonly relatedListColumns?: any[] | undefined;
20649
+ readonly displayField?: string | undefined;
20650
+ readonly descriptionField?: string | undefined;
20651
+ readonly lookupColumns?: (string | {
20652
+ field: string;
20653
+ label?: string | undefined;
20654
+ width?: string | undefined;
20655
+ type?: string | undefined;
20656
+ })[] | undefined;
20657
+ readonly lookupPageSize?: number | undefined;
20658
+ readonly lookupFilters?: {
20659
+ field: string;
20660
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
20661
+ value: any;
20662
+ }[] | undefined;
20663
+ readonly dependsOn?: (string | {
20664
+ field: string;
20665
+ param?: string | undefined;
20666
+ })[] | undefined;
20667
+ readonly allowCreate?: boolean | undefined;
18990
20668
  readonly expression?: {
18991
20669
  dialect: "cel" | "js" | "cron" | "template";
18992
20670
  source?: string | undefined;
@@ -19142,6 +20820,25 @@ declare const HttpDelivery: Omit<{
19142
20820
  readonly relatedList?: boolean | undefined;
19143
20821
  readonly relatedListTitle?: string | undefined;
19144
20822
  readonly relatedListColumns?: any[] | undefined;
20823
+ readonly displayField?: string | undefined;
20824
+ readonly descriptionField?: string | undefined;
20825
+ readonly lookupColumns?: (string | {
20826
+ field: string;
20827
+ label?: string | undefined;
20828
+ width?: string | undefined;
20829
+ type?: string | undefined;
20830
+ })[] | undefined;
20831
+ readonly lookupPageSize?: number | undefined;
20832
+ readonly lookupFilters?: {
20833
+ field: string;
20834
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
20835
+ value: any;
20836
+ }[] | undefined;
20837
+ readonly dependsOn?: (string | {
20838
+ field: string;
20839
+ param?: string | undefined;
20840
+ })[] | undefined;
20841
+ readonly allowCreate?: boolean | undefined;
19145
20842
  readonly expression?: {
19146
20843
  dialect: "cel" | "js" | "cron" | "template";
19147
20844
  source?: string | undefined;
@@ -19297,6 +20994,25 @@ declare const HttpDelivery: Omit<{
19297
20994
  readonly relatedList?: boolean | undefined;
19298
20995
  readonly relatedListTitle?: string | undefined;
19299
20996
  readonly relatedListColumns?: any[] | undefined;
20997
+ readonly displayField?: string | undefined;
20998
+ readonly descriptionField?: string | undefined;
20999
+ readonly lookupColumns?: (string | {
21000
+ field: string;
21001
+ label?: string | undefined;
21002
+ width?: string | undefined;
21003
+ type?: string | undefined;
21004
+ })[] | undefined;
21005
+ readonly lookupPageSize?: number | undefined;
21006
+ readonly lookupFilters?: {
21007
+ field: string;
21008
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
21009
+ value: any;
21010
+ }[] | undefined;
21011
+ readonly dependsOn?: (string | {
21012
+ field: string;
21013
+ param?: string | undefined;
21014
+ })[] | undefined;
21015
+ readonly allowCreate?: boolean | undefined;
19300
21016
  readonly expression?: {
19301
21017
  dialect: "cel" | "js" | "cron" | "template";
19302
21018
  source?: string | undefined;
@@ -19452,6 +21168,25 @@ declare const HttpDelivery: Omit<{
19452
21168
  readonly relatedList?: boolean | undefined;
19453
21169
  readonly relatedListTitle?: string | undefined;
19454
21170
  readonly relatedListColumns?: any[] | undefined;
21171
+ readonly displayField?: string | undefined;
21172
+ readonly descriptionField?: string | undefined;
21173
+ readonly lookupColumns?: (string | {
21174
+ field: string;
21175
+ label?: string | undefined;
21176
+ width?: string | undefined;
21177
+ type?: string | undefined;
21178
+ })[] | undefined;
21179
+ readonly lookupPageSize?: number | undefined;
21180
+ readonly lookupFilters?: {
21181
+ field: string;
21182
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
21183
+ value: any;
21184
+ }[] | undefined;
21185
+ readonly dependsOn?: (string | {
21186
+ field: string;
21187
+ param?: string | undefined;
21188
+ })[] | undefined;
21189
+ readonly allowCreate?: boolean | undefined;
19455
21190
  readonly expression?: {
19456
21191
  dialect: "cel" | "js" | "cron" | "template";
19457
21192
  source?: string | undefined;
@@ -19607,6 +21342,25 @@ declare const HttpDelivery: Omit<{
19607
21342
  readonly relatedList?: boolean | undefined;
19608
21343
  readonly relatedListTitle?: string | undefined;
19609
21344
  readonly relatedListColumns?: any[] | undefined;
21345
+ readonly displayField?: string | undefined;
21346
+ readonly descriptionField?: string | undefined;
21347
+ readonly lookupColumns?: (string | {
21348
+ field: string;
21349
+ label?: string | undefined;
21350
+ width?: string | undefined;
21351
+ type?: string | undefined;
21352
+ })[] | undefined;
21353
+ readonly lookupPageSize?: number | undefined;
21354
+ readonly lookupFilters?: {
21355
+ field: string;
21356
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
21357
+ value: any;
21358
+ }[] | undefined;
21359
+ readonly dependsOn?: (string | {
21360
+ field: string;
21361
+ param?: string | undefined;
21362
+ })[] | undefined;
21363
+ readonly allowCreate?: boolean | undefined;
19610
21364
  readonly expression?: {
19611
21365
  dialect: "cel" | "js" | "cron" | "template";
19612
21366
  source?: string | undefined;
@@ -19762,6 +21516,25 @@ declare const HttpDelivery: Omit<{
19762
21516
  readonly relatedList?: boolean | undefined;
19763
21517
  readonly relatedListTitle?: string | undefined;
19764
21518
  readonly relatedListColumns?: any[] | undefined;
21519
+ readonly displayField?: string | undefined;
21520
+ readonly descriptionField?: string | undefined;
21521
+ readonly lookupColumns?: (string | {
21522
+ field: string;
21523
+ label?: string | undefined;
21524
+ width?: string | undefined;
21525
+ type?: string | undefined;
21526
+ })[] | undefined;
21527
+ readonly lookupPageSize?: number | undefined;
21528
+ readonly lookupFilters?: {
21529
+ field: string;
21530
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
21531
+ value: any;
21532
+ }[] | undefined;
21533
+ readonly dependsOn?: (string | {
21534
+ field: string;
21535
+ param?: string | undefined;
21536
+ })[] | undefined;
21537
+ readonly allowCreate?: boolean | undefined;
19765
21538
  readonly expression?: {
19766
21539
  dialect: "cel" | "js" | "cron" | "template";
19767
21540
  source?: string | undefined;