@objectstack/service-messaging 11.0.0 → 11.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.
- package/dist/index.cjs +4 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +23 -236
- package/dist/index.d.ts +23 -236
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1533,7 +1533,6 @@ declare const InboxMessage: Omit<{
|
|
|
1533
1533
|
relationshipField?: string | undefined;
|
|
1534
1534
|
} | undefined;
|
|
1535
1535
|
language?: string | undefined;
|
|
1536
|
-
maxRating?: number | undefined;
|
|
1537
1536
|
step?: number | undefined;
|
|
1538
1537
|
currencyConfig?: {
|
|
1539
1538
|
precision: number;
|
|
@@ -1663,7 +1662,6 @@ declare const InboxMessage: Omit<{
|
|
|
1663
1662
|
requiredPermissions?: string[] | undefined;
|
|
1664
1663
|
system?: boolean | undefined;
|
|
1665
1664
|
inlineHelpText?: string | undefined;
|
|
1666
|
-
caseSensitive?: boolean | undefined;
|
|
1667
1665
|
autonumberFormat?: string | undefined;
|
|
1668
1666
|
}>;
|
|
1669
1667
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -1751,12 +1749,6 @@ declare const InboxMessage: Omit<{
|
|
|
1751
1749
|
versionField: string;
|
|
1752
1750
|
retentionDays?: number | undefined;
|
|
1753
1751
|
} | undefined;
|
|
1754
|
-
partitioning?: {
|
|
1755
|
-
enabled: boolean;
|
|
1756
|
-
strategy: "hash" | "list" | "range";
|
|
1757
|
-
key: string;
|
|
1758
|
-
interval?: string | undefined;
|
|
1759
|
-
} | undefined;
|
|
1760
1752
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
1761
1753
|
activityMilestones?: {
|
|
1762
1754
|
field: string;
|
|
@@ -1764,6 +1756,7 @@ declare const InboxMessage: Omit<{
|
|
|
1764
1756
|
summary: string;
|
|
1765
1757
|
type?: string | undefined;
|
|
1766
1758
|
}[] | undefined;
|
|
1759
|
+
nameField?: string | undefined;
|
|
1767
1760
|
displayNameField?: string | undefined;
|
|
1768
1761
|
recordName?: {
|
|
1769
1762
|
type: "text" | "autonumber";
|
|
@@ -2087,7 +2080,6 @@ declare const InboxMessage: Omit<{
|
|
|
2087
2080
|
debounceMs?: number | undefined;
|
|
2088
2081
|
} | undefined;
|
|
2089
2082
|
}> | undefined;
|
|
2090
|
-
defaultDetailForm?: string | undefined;
|
|
2091
2083
|
searchableFields?: string[] | undefined;
|
|
2092
2084
|
search?: {
|
|
2093
2085
|
fields: string[];
|
|
@@ -2104,7 +2096,7 @@ declare const InboxMessage: Omit<{
|
|
|
2104
2096
|
trash: boolean;
|
|
2105
2097
|
mru: boolean;
|
|
2106
2098
|
clone: boolean;
|
|
2107
|
-
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "
|
|
2099
|
+
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "get" | "update" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
2108
2100
|
} | undefined;
|
|
2109
2101
|
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
2110
2102
|
publicSharing?: {
|
|
@@ -2132,6 +2124,7 @@ declare const InboxMessage: Omit<{
|
|
|
2132
2124
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
2133
2125
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
2134
2126
|
target?: string | undefined;
|
|
2127
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
2135
2128
|
body?: {
|
|
2136
2129
|
language: "expression";
|
|
2137
2130
|
source: string;
|
|
@@ -2236,6 +2229,7 @@ declare const InboxMessage: Omit<{
|
|
|
2236
2229
|
readonly pluralLabel: "Inbox Messages";
|
|
2237
2230
|
readonly icon: "inbox";
|
|
2238
2231
|
readonly description: "User-facing in-app notification rows materialized by the inbox messaging channel.";
|
|
2232
|
+
readonly nameField: "title";
|
|
2239
2233
|
readonly titleFormat: "{title}";
|
|
2240
2234
|
readonly compactLayout: ["title", "user_id", "severity", "created_at"];
|
|
2241
2235
|
readonly listViews: {
|
|
@@ -2344,7 +2338,6 @@ declare const InboxMessage: Omit<{
|
|
|
2344
2338
|
relationshipField?: string | undefined;
|
|
2345
2339
|
} | undefined;
|
|
2346
2340
|
readonly language?: string | undefined;
|
|
2347
|
-
readonly maxRating?: number | undefined;
|
|
2348
2341
|
readonly step?: number | undefined;
|
|
2349
2342
|
readonly currencyConfig?: {
|
|
2350
2343
|
precision: number;
|
|
@@ -2438,7 +2431,6 @@ declare const InboxMessage: Omit<{
|
|
|
2438
2431
|
} | undefined;
|
|
2439
2432
|
readonly sortable?: boolean | undefined;
|
|
2440
2433
|
readonly inlineHelpText?: string | undefined;
|
|
2441
|
-
readonly caseSensitive?: boolean | undefined;
|
|
2442
2434
|
readonly autonumberFormat?: string | undefined;
|
|
2443
2435
|
readonly index?: boolean | undefined;
|
|
2444
2436
|
readonly type: "text";
|
|
@@ -2520,7 +2512,6 @@ declare const InboxMessage: Omit<{
|
|
|
2520
2512
|
relationshipField?: string | undefined;
|
|
2521
2513
|
} | undefined;
|
|
2522
2514
|
readonly language?: string | undefined;
|
|
2523
|
-
readonly maxRating?: number | undefined;
|
|
2524
2515
|
readonly step?: number | undefined;
|
|
2525
2516
|
readonly currencyConfig?: {
|
|
2526
2517
|
precision: number;
|
|
@@ -2614,7 +2605,6 @@ declare const InboxMessage: Omit<{
|
|
|
2614
2605
|
} | undefined;
|
|
2615
2606
|
readonly sortable?: boolean | undefined;
|
|
2616
2607
|
readonly inlineHelpText?: string | undefined;
|
|
2617
|
-
readonly caseSensitive?: boolean | undefined;
|
|
2618
2608
|
readonly autonumberFormat?: string | undefined;
|
|
2619
2609
|
readonly index?: boolean | undefined;
|
|
2620
2610
|
readonly type: "text";
|
|
@@ -2696,7 +2686,6 @@ declare const InboxMessage: Omit<{
|
|
|
2696
2686
|
relationshipField?: string | undefined;
|
|
2697
2687
|
} | undefined;
|
|
2698
2688
|
readonly language?: string | undefined;
|
|
2699
|
-
readonly maxRating?: number | undefined;
|
|
2700
2689
|
readonly step?: number | undefined;
|
|
2701
2690
|
readonly currencyConfig?: {
|
|
2702
2691
|
precision: number;
|
|
@@ -2790,7 +2779,6 @@ declare const InboxMessage: Omit<{
|
|
|
2790
2779
|
} | undefined;
|
|
2791
2780
|
readonly sortable?: boolean | undefined;
|
|
2792
2781
|
readonly inlineHelpText?: string | undefined;
|
|
2793
|
-
readonly caseSensitive?: boolean | undefined;
|
|
2794
2782
|
readonly autonumberFormat?: string | undefined;
|
|
2795
2783
|
readonly index?: boolean | undefined;
|
|
2796
2784
|
readonly type: "text";
|
|
@@ -2872,7 +2860,6 @@ declare const InboxMessage: Omit<{
|
|
|
2872
2860
|
relationshipField?: string | undefined;
|
|
2873
2861
|
} | undefined;
|
|
2874
2862
|
readonly language?: string | undefined;
|
|
2875
|
-
readonly maxRating?: number | undefined;
|
|
2876
2863
|
readonly step?: number | undefined;
|
|
2877
2864
|
readonly currencyConfig?: {
|
|
2878
2865
|
precision: number;
|
|
@@ -2966,7 +2953,6 @@ declare const InboxMessage: Omit<{
|
|
|
2966
2953
|
} | undefined;
|
|
2967
2954
|
readonly sortable?: boolean | undefined;
|
|
2968
2955
|
readonly inlineHelpText?: string | undefined;
|
|
2969
|
-
readonly caseSensitive?: boolean | undefined;
|
|
2970
2956
|
readonly autonumberFormat?: string | undefined;
|
|
2971
2957
|
readonly index?: boolean | undefined;
|
|
2972
2958
|
readonly type: "text";
|
|
@@ -3048,7 +3034,6 @@ declare const InboxMessage: Omit<{
|
|
|
3048
3034
|
relationshipField?: string | undefined;
|
|
3049
3035
|
} | undefined;
|
|
3050
3036
|
readonly language?: string | undefined;
|
|
3051
|
-
readonly maxRating?: number | undefined;
|
|
3052
3037
|
readonly step?: number | undefined;
|
|
3053
3038
|
readonly currencyConfig?: {
|
|
3054
3039
|
precision: number;
|
|
@@ -3142,7 +3127,6 @@ declare const InboxMessage: Omit<{
|
|
|
3142
3127
|
} | undefined;
|
|
3143
3128
|
readonly sortable?: boolean | undefined;
|
|
3144
3129
|
readonly inlineHelpText?: string | undefined;
|
|
3145
|
-
readonly caseSensitive?: boolean | undefined;
|
|
3146
3130
|
readonly autonumberFormat?: string | undefined;
|
|
3147
3131
|
readonly index?: boolean | undefined;
|
|
3148
3132
|
readonly type: "text";
|
|
@@ -3224,7 +3208,6 @@ declare const InboxMessage: Omit<{
|
|
|
3224
3208
|
relationshipField?: string | undefined;
|
|
3225
3209
|
} | undefined;
|
|
3226
3210
|
readonly language?: string | undefined;
|
|
3227
|
-
readonly maxRating?: number | undefined;
|
|
3228
3211
|
readonly step?: number | undefined;
|
|
3229
3212
|
readonly currencyConfig?: {
|
|
3230
3213
|
precision: number;
|
|
@@ -3318,7 +3301,6 @@ declare const InboxMessage: Omit<{
|
|
|
3318
3301
|
} | undefined;
|
|
3319
3302
|
readonly sortable?: boolean | undefined;
|
|
3320
3303
|
readonly inlineHelpText?: string | undefined;
|
|
3321
|
-
readonly caseSensitive?: boolean | undefined;
|
|
3322
3304
|
readonly autonumberFormat?: string | undefined;
|
|
3323
3305
|
readonly index?: boolean | undefined;
|
|
3324
3306
|
readonly type: "text";
|
|
@@ -3400,7 +3382,6 @@ declare const InboxMessage: Omit<{
|
|
|
3400
3382
|
relationshipField?: string | undefined;
|
|
3401
3383
|
} | undefined;
|
|
3402
3384
|
readonly language?: string | undefined;
|
|
3403
|
-
readonly maxRating?: number | undefined;
|
|
3404
3385
|
readonly step?: number | undefined;
|
|
3405
3386
|
readonly currencyConfig?: {
|
|
3406
3387
|
precision: number;
|
|
@@ -3494,7 +3475,6 @@ declare const InboxMessage: Omit<{
|
|
|
3494
3475
|
} | undefined;
|
|
3495
3476
|
readonly sortable?: boolean | undefined;
|
|
3496
3477
|
readonly inlineHelpText?: string | undefined;
|
|
3497
|
-
readonly caseSensitive?: boolean | undefined;
|
|
3498
3478
|
readonly autonumberFormat?: string | undefined;
|
|
3499
3479
|
readonly index?: boolean | undefined;
|
|
3500
3480
|
readonly type: "markdown";
|
|
@@ -3576,7 +3556,6 @@ declare const InboxMessage: Omit<{
|
|
|
3576
3556
|
relationshipField?: string | undefined;
|
|
3577
3557
|
} | undefined;
|
|
3578
3558
|
readonly language?: string | undefined;
|
|
3579
|
-
readonly maxRating?: number | undefined;
|
|
3580
3559
|
readonly step?: number | undefined;
|
|
3581
3560
|
readonly currencyConfig?: {
|
|
3582
3561
|
precision: number;
|
|
@@ -3670,7 +3649,6 @@ declare const InboxMessage: Omit<{
|
|
|
3670
3649
|
} | undefined;
|
|
3671
3650
|
readonly sortable?: boolean | undefined;
|
|
3672
3651
|
readonly inlineHelpText?: string | undefined;
|
|
3673
|
-
readonly caseSensitive?: boolean | undefined;
|
|
3674
3652
|
readonly autonumberFormat?: string | undefined;
|
|
3675
3653
|
readonly index?: boolean | undefined;
|
|
3676
3654
|
readonly type: "select";
|
|
@@ -3752,7 +3730,6 @@ declare const InboxMessage: Omit<{
|
|
|
3752
3730
|
relationshipField?: string | undefined;
|
|
3753
3731
|
} | undefined;
|
|
3754
3732
|
readonly language?: string | undefined;
|
|
3755
|
-
readonly maxRating?: number | undefined;
|
|
3756
3733
|
readonly step?: number | undefined;
|
|
3757
3734
|
readonly currencyConfig?: {
|
|
3758
3735
|
precision: number;
|
|
@@ -3846,7 +3823,6 @@ declare const InboxMessage: Omit<{
|
|
|
3846
3823
|
} | undefined;
|
|
3847
3824
|
readonly sortable?: boolean | undefined;
|
|
3848
3825
|
readonly inlineHelpText?: string | undefined;
|
|
3849
|
-
readonly caseSensitive?: boolean | undefined;
|
|
3850
3826
|
readonly autonumberFormat?: string | undefined;
|
|
3851
3827
|
readonly index?: boolean | undefined;
|
|
3852
3828
|
readonly type: "text";
|
|
@@ -3928,7 +3904,6 @@ declare const InboxMessage: Omit<{
|
|
|
3928
3904
|
relationshipField?: string | undefined;
|
|
3929
3905
|
} | undefined;
|
|
3930
3906
|
readonly language?: string | undefined;
|
|
3931
|
-
readonly maxRating?: number | undefined;
|
|
3932
3907
|
readonly step?: number | undefined;
|
|
3933
3908
|
readonly currencyConfig?: {
|
|
3934
3909
|
precision: number;
|
|
@@ -4022,7 +3997,6 @@ declare const InboxMessage: Omit<{
|
|
|
4022
3997
|
} | undefined;
|
|
4023
3998
|
readonly sortable?: boolean | undefined;
|
|
4024
3999
|
readonly inlineHelpText?: string | undefined;
|
|
4025
|
-
readonly caseSensitive?: boolean | undefined;
|
|
4026
4000
|
readonly autonumberFormat?: string | undefined;
|
|
4027
4001
|
readonly index?: boolean | undefined;
|
|
4028
4002
|
readonly type: "datetime";
|
|
@@ -4136,7 +4110,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
4136
4110
|
relationshipField?: string | undefined;
|
|
4137
4111
|
} | undefined;
|
|
4138
4112
|
language?: string | undefined;
|
|
4139
|
-
maxRating?: number | undefined;
|
|
4140
4113
|
step?: number | undefined;
|
|
4141
4114
|
currencyConfig?: {
|
|
4142
4115
|
precision: number;
|
|
@@ -4266,7 +4239,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
4266
4239
|
requiredPermissions?: string[] | undefined;
|
|
4267
4240
|
system?: boolean | undefined;
|
|
4268
4241
|
inlineHelpText?: string | undefined;
|
|
4269
|
-
caseSensitive?: boolean | undefined;
|
|
4270
4242
|
autonumberFormat?: string | undefined;
|
|
4271
4243
|
}>;
|
|
4272
4244
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -4354,12 +4326,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
4354
4326
|
versionField: string;
|
|
4355
4327
|
retentionDays?: number | undefined;
|
|
4356
4328
|
} | undefined;
|
|
4357
|
-
partitioning?: {
|
|
4358
|
-
enabled: boolean;
|
|
4359
|
-
strategy: "hash" | "list" | "range";
|
|
4360
|
-
key: string;
|
|
4361
|
-
interval?: string | undefined;
|
|
4362
|
-
} | undefined;
|
|
4363
4329
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
4364
4330
|
activityMilestones?: {
|
|
4365
4331
|
field: string;
|
|
@@ -4367,6 +4333,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4367
4333
|
summary: string;
|
|
4368
4334
|
type?: string | undefined;
|
|
4369
4335
|
}[] | undefined;
|
|
4336
|
+
nameField?: string | undefined;
|
|
4370
4337
|
displayNameField?: string | undefined;
|
|
4371
4338
|
recordName?: {
|
|
4372
4339
|
type: "text" | "autonumber";
|
|
@@ -4690,7 +4657,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
4690
4657
|
debounceMs?: number | undefined;
|
|
4691
4658
|
} | undefined;
|
|
4692
4659
|
}> | undefined;
|
|
4693
|
-
defaultDetailForm?: string | undefined;
|
|
4694
4660
|
searchableFields?: string[] | undefined;
|
|
4695
4661
|
search?: {
|
|
4696
4662
|
fields: string[];
|
|
@@ -4707,7 +4673,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4707
4673
|
trash: boolean;
|
|
4708
4674
|
mru: boolean;
|
|
4709
4675
|
clone: boolean;
|
|
4710
|
-
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "
|
|
4676
|
+
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "get" | "update" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
4711
4677
|
} | undefined;
|
|
4712
4678
|
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
4713
4679
|
publicSharing?: {
|
|
@@ -4735,6 +4701,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4735
4701
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
4736
4702
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
4737
4703
|
target?: string | undefined;
|
|
4704
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
4738
4705
|
body?: {
|
|
4739
4706
|
language: "expression";
|
|
4740
4707
|
source: string;
|
|
@@ -4921,7 +4888,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
4921
4888
|
relationshipField?: string | undefined;
|
|
4922
4889
|
} | undefined;
|
|
4923
4890
|
readonly language?: string | undefined;
|
|
4924
|
-
readonly maxRating?: number | undefined;
|
|
4925
4891
|
readonly step?: number | undefined;
|
|
4926
4892
|
readonly currencyConfig?: {
|
|
4927
4893
|
precision: number;
|
|
@@ -5015,7 +4981,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5015
4981
|
} | undefined;
|
|
5016
4982
|
readonly sortable?: boolean | undefined;
|
|
5017
4983
|
readonly inlineHelpText?: string | undefined;
|
|
5018
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5019
4984
|
readonly autonumberFormat?: string | undefined;
|
|
5020
4985
|
readonly index?: boolean | undefined;
|
|
5021
4986
|
readonly type: "text";
|
|
@@ -5097,7 +5062,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5097
5062
|
relationshipField?: string | undefined;
|
|
5098
5063
|
} | undefined;
|
|
5099
5064
|
readonly language?: string | undefined;
|
|
5100
|
-
readonly maxRating?: number | undefined;
|
|
5101
5065
|
readonly step?: number | undefined;
|
|
5102
5066
|
readonly currencyConfig?: {
|
|
5103
5067
|
precision: number;
|
|
@@ -5191,7 +5155,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5191
5155
|
} | undefined;
|
|
5192
5156
|
readonly sortable?: boolean | undefined;
|
|
5193
5157
|
readonly inlineHelpText?: string | undefined;
|
|
5194
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5195
5158
|
readonly autonumberFormat?: string | undefined;
|
|
5196
5159
|
readonly index?: boolean | undefined;
|
|
5197
5160
|
readonly type: "text";
|
|
@@ -5273,7 +5236,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5273
5236
|
relationshipField?: string | undefined;
|
|
5274
5237
|
} | undefined;
|
|
5275
5238
|
readonly language?: string | undefined;
|
|
5276
|
-
readonly maxRating?: number | undefined;
|
|
5277
5239
|
readonly step?: number | undefined;
|
|
5278
5240
|
readonly currencyConfig?: {
|
|
5279
5241
|
precision: number;
|
|
@@ -5367,7 +5329,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5367
5329
|
} | undefined;
|
|
5368
5330
|
readonly sortable?: boolean | undefined;
|
|
5369
5331
|
readonly inlineHelpText?: string | undefined;
|
|
5370
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5371
5332
|
readonly autonumberFormat?: string | undefined;
|
|
5372
5333
|
readonly index?: boolean | undefined;
|
|
5373
5334
|
readonly type: "text";
|
|
@@ -5449,7 +5410,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5449
5410
|
relationshipField?: string | undefined;
|
|
5450
5411
|
} | undefined;
|
|
5451
5412
|
readonly language?: string | undefined;
|
|
5452
|
-
readonly maxRating?: number | undefined;
|
|
5453
5413
|
readonly step?: number | undefined;
|
|
5454
5414
|
readonly currencyConfig?: {
|
|
5455
5415
|
precision: number;
|
|
@@ -5543,7 +5503,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5543
5503
|
} | undefined;
|
|
5544
5504
|
readonly sortable?: boolean | undefined;
|
|
5545
5505
|
readonly inlineHelpText?: string | undefined;
|
|
5546
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5547
5506
|
readonly autonumberFormat?: string | undefined;
|
|
5548
5507
|
readonly index?: boolean | undefined;
|
|
5549
5508
|
readonly type: "text";
|
|
@@ -5625,7 +5584,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5625
5584
|
relationshipField?: string | undefined;
|
|
5626
5585
|
} | undefined;
|
|
5627
5586
|
readonly language?: string | undefined;
|
|
5628
|
-
readonly maxRating?: number | undefined;
|
|
5629
5587
|
readonly step?: number | undefined;
|
|
5630
5588
|
readonly currencyConfig?: {
|
|
5631
5589
|
precision: number;
|
|
@@ -5719,7 +5677,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5719
5677
|
} | undefined;
|
|
5720
5678
|
readonly sortable?: boolean | undefined;
|
|
5721
5679
|
readonly inlineHelpText?: string | undefined;
|
|
5722
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5723
5680
|
readonly autonumberFormat?: string | undefined;
|
|
5724
5681
|
readonly index?: boolean | undefined;
|
|
5725
5682
|
readonly type: "text";
|
|
@@ -5801,7 +5758,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5801
5758
|
relationshipField?: string | undefined;
|
|
5802
5759
|
} | undefined;
|
|
5803
5760
|
readonly language?: string | undefined;
|
|
5804
|
-
readonly maxRating?: number | undefined;
|
|
5805
5761
|
readonly step?: number | undefined;
|
|
5806
5762
|
readonly currencyConfig?: {
|
|
5807
5763
|
precision: number;
|
|
@@ -5895,7 +5851,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5895
5851
|
} | undefined;
|
|
5896
5852
|
readonly sortable?: boolean | undefined;
|
|
5897
5853
|
readonly inlineHelpText?: string | undefined;
|
|
5898
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5899
5854
|
readonly autonumberFormat?: string | undefined;
|
|
5900
5855
|
readonly index?: boolean | undefined;
|
|
5901
5856
|
readonly type: "select";
|
|
@@ -5977,7 +5932,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5977
5932
|
relationshipField?: string | undefined;
|
|
5978
5933
|
} | undefined;
|
|
5979
5934
|
readonly language?: string | undefined;
|
|
5980
|
-
readonly maxRating?: number | undefined;
|
|
5981
5935
|
readonly step?: number | undefined;
|
|
5982
5936
|
readonly currencyConfig?: {
|
|
5983
5937
|
precision: number;
|
|
@@ -6071,7 +6025,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
6071
6025
|
} | undefined;
|
|
6072
6026
|
readonly sortable?: boolean | undefined;
|
|
6073
6027
|
readonly inlineHelpText?: string | undefined;
|
|
6074
|
-
readonly caseSensitive?: boolean | undefined;
|
|
6075
6028
|
readonly autonumberFormat?: string | undefined;
|
|
6076
6029
|
readonly index?: boolean | undefined;
|
|
6077
6030
|
readonly type: "datetime";
|
|
@@ -6153,7 +6106,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
6153
6106
|
relationshipField?: string | undefined;
|
|
6154
6107
|
} | undefined;
|
|
6155
6108
|
readonly language?: string | undefined;
|
|
6156
|
-
readonly maxRating?: number | undefined;
|
|
6157
6109
|
readonly step?: number | undefined;
|
|
6158
6110
|
readonly currencyConfig?: {
|
|
6159
6111
|
precision: number;
|
|
@@ -6247,7 +6199,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
6247
6199
|
} | undefined;
|
|
6248
6200
|
readonly sortable?: boolean | undefined;
|
|
6249
6201
|
readonly inlineHelpText?: string | undefined;
|
|
6250
|
-
readonly caseSensitive?: boolean | undefined;
|
|
6251
6202
|
readonly autonumberFormat?: string | undefined;
|
|
6252
6203
|
readonly index?: boolean | undefined;
|
|
6253
6204
|
readonly type: "datetime";
|
|
@@ -6365,7 +6316,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
6365
6316
|
relationshipField?: string | undefined;
|
|
6366
6317
|
} | undefined;
|
|
6367
6318
|
language?: string | undefined;
|
|
6368
|
-
maxRating?: number | undefined;
|
|
6369
6319
|
step?: number | undefined;
|
|
6370
6320
|
currencyConfig?: {
|
|
6371
6321
|
precision: number;
|
|
@@ -6495,7 +6445,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
6495
6445
|
requiredPermissions?: string[] | undefined;
|
|
6496
6446
|
system?: boolean | undefined;
|
|
6497
6447
|
inlineHelpText?: string | undefined;
|
|
6498
|
-
caseSensitive?: boolean | undefined;
|
|
6499
6448
|
autonumberFormat?: string | undefined;
|
|
6500
6449
|
}>;
|
|
6501
6450
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -6583,12 +6532,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
6583
6532
|
versionField: string;
|
|
6584
6533
|
retentionDays?: number | undefined;
|
|
6585
6534
|
} | undefined;
|
|
6586
|
-
partitioning?: {
|
|
6587
|
-
enabled: boolean;
|
|
6588
|
-
strategy: "hash" | "list" | "range";
|
|
6589
|
-
key: string;
|
|
6590
|
-
interval?: string | undefined;
|
|
6591
|
-
} | undefined;
|
|
6592
6535
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
6593
6536
|
activityMilestones?: {
|
|
6594
6537
|
field: string;
|
|
@@ -6596,6 +6539,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6596
6539
|
summary: string;
|
|
6597
6540
|
type?: string | undefined;
|
|
6598
6541
|
}[] | undefined;
|
|
6542
|
+
nameField?: string | undefined;
|
|
6599
6543
|
displayNameField?: string | undefined;
|
|
6600
6544
|
recordName?: {
|
|
6601
6545
|
type: "text" | "autonumber";
|
|
@@ -6919,7 +6863,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
6919
6863
|
debounceMs?: number | undefined;
|
|
6920
6864
|
} | undefined;
|
|
6921
6865
|
}> | undefined;
|
|
6922
|
-
defaultDetailForm?: string | undefined;
|
|
6923
6866
|
searchableFields?: string[] | undefined;
|
|
6924
6867
|
search?: {
|
|
6925
6868
|
fields: string[];
|
|
@@ -6936,7 +6879,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6936
6879
|
trash: boolean;
|
|
6937
6880
|
mru: boolean;
|
|
6938
6881
|
clone: boolean;
|
|
6939
|
-
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "
|
|
6882
|
+
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "get" | "update" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
6940
6883
|
} | undefined;
|
|
6941
6884
|
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
6942
6885
|
publicSharing?: {
|
|
@@ -6964,6 +6907,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6964
6907
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
6965
6908
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
6966
6909
|
target?: string | undefined;
|
|
6910
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
6967
6911
|
body?: {
|
|
6968
6912
|
language: "expression";
|
|
6969
6913
|
source: string;
|
|
@@ -7150,7 +7094,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
7150
7094
|
relationshipField?: string | undefined;
|
|
7151
7095
|
} | undefined;
|
|
7152
7096
|
readonly language?: string | undefined;
|
|
7153
|
-
readonly maxRating?: number | undefined;
|
|
7154
7097
|
readonly step?: number | undefined;
|
|
7155
7098
|
readonly currencyConfig?: {
|
|
7156
7099
|
precision: number;
|
|
@@ -7244,7 +7187,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
7244
7187
|
} | undefined;
|
|
7245
7188
|
readonly sortable?: boolean | undefined;
|
|
7246
7189
|
readonly inlineHelpText?: string | undefined;
|
|
7247
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7248
7190
|
readonly autonumberFormat?: string | undefined;
|
|
7249
7191
|
readonly index?: boolean | undefined;
|
|
7250
7192
|
readonly type: "text";
|
|
@@ -7326,7 +7268,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
7326
7268
|
relationshipField?: string | undefined;
|
|
7327
7269
|
} | undefined;
|
|
7328
7270
|
readonly language?: string | undefined;
|
|
7329
|
-
readonly maxRating?: number | undefined;
|
|
7330
7271
|
readonly step?: number | undefined;
|
|
7331
7272
|
readonly currencyConfig?: {
|
|
7332
7273
|
precision: number;
|
|
@@ -7420,7 +7361,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
7420
7361
|
} | undefined;
|
|
7421
7362
|
readonly sortable?: boolean | undefined;
|
|
7422
7363
|
readonly inlineHelpText?: string | undefined;
|
|
7423
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7424
7364
|
readonly autonumberFormat?: string | undefined;
|
|
7425
7365
|
readonly index?: boolean | undefined;
|
|
7426
7366
|
readonly type: "text";
|
|
@@ -7502,7 +7442,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
7502
7442
|
relationshipField?: string | undefined;
|
|
7503
7443
|
} | undefined;
|
|
7504
7444
|
readonly language?: string | undefined;
|
|
7505
|
-
readonly maxRating?: number | undefined;
|
|
7506
7445
|
readonly step?: number | undefined;
|
|
7507
7446
|
readonly currencyConfig?: {
|
|
7508
7447
|
precision: number;
|
|
@@ -7596,7 +7535,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
7596
7535
|
} | undefined;
|
|
7597
7536
|
readonly sortable?: boolean | undefined;
|
|
7598
7537
|
readonly inlineHelpText?: string | undefined;
|
|
7599
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7600
7538
|
readonly autonumberFormat?: string | undefined;
|
|
7601
7539
|
readonly index?: boolean | undefined;
|
|
7602
7540
|
readonly type: "text";
|
|
@@ -7678,7 +7616,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
7678
7616
|
relationshipField?: string | undefined;
|
|
7679
7617
|
} | undefined;
|
|
7680
7618
|
readonly language?: string | undefined;
|
|
7681
|
-
readonly maxRating?: number | undefined;
|
|
7682
7619
|
readonly step?: number | undefined;
|
|
7683
7620
|
readonly currencyConfig?: {
|
|
7684
7621
|
precision: number;
|
|
@@ -7772,7 +7709,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
7772
7709
|
} | undefined;
|
|
7773
7710
|
readonly sortable?: boolean | undefined;
|
|
7774
7711
|
readonly inlineHelpText?: string | undefined;
|
|
7775
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7776
7712
|
readonly autonumberFormat?: string | undefined;
|
|
7777
7713
|
readonly index?: boolean | undefined;
|
|
7778
7714
|
readonly type: "text";
|
|
@@ -7854,7 +7790,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
7854
7790
|
relationshipField?: string | undefined;
|
|
7855
7791
|
} | undefined;
|
|
7856
7792
|
readonly language?: string | undefined;
|
|
7857
|
-
readonly maxRating?: number | undefined;
|
|
7858
7793
|
readonly step?: number | undefined;
|
|
7859
7794
|
readonly currencyConfig?: {
|
|
7860
7795
|
precision: number;
|
|
@@ -7948,7 +7883,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
7948
7883
|
} | undefined;
|
|
7949
7884
|
readonly sortable?: boolean | undefined;
|
|
7950
7885
|
readonly inlineHelpText?: string | undefined;
|
|
7951
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7952
7886
|
readonly autonumberFormat?: string | undefined;
|
|
7953
7887
|
readonly index?: boolean | undefined;
|
|
7954
7888
|
readonly type: "text";
|
|
@@ -8030,7 +7964,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8030
7964
|
relationshipField?: string | undefined;
|
|
8031
7965
|
} | undefined;
|
|
8032
7966
|
readonly language?: string | undefined;
|
|
8033
|
-
readonly maxRating?: number | undefined;
|
|
8034
7967
|
readonly step?: number | undefined;
|
|
8035
7968
|
readonly currencyConfig?: {
|
|
8036
7969
|
precision: number;
|
|
@@ -8124,7 +8057,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8124
8057
|
} | undefined;
|
|
8125
8058
|
readonly sortable?: boolean | undefined;
|
|
8126
8059
|
readonly inlineHelpText?: string | undefined;
|
|
8127
|
-
readonly caseSensitive?: boolean | undefined;
|
|
8128
8060
|
readonly autonumberFormat?: string | undefined;
|
|
8129
8061
|
readonly index?: boolean | undefined;
|
|
8130
8062
|
readonly type: "text";
|
|
@@ -8206,7 +8138,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8206
8138
|
relationshipField?: string | undefined;
|
|
8207
8139
|
} | undefined;
|
|
8208
8140
|
readonly language?: string | undefined;
|
|
8209
|
-
readonly maxRating?: number | undefined;
|
|
8210
8141
|
readonly step?: number | undefined;
|
|
8211
8142
|
readonly currencyConfig?: {
|
|
8212
8143
|
precision: number;
|
|
@@ -8300,7 +8231,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8300
8231
|
} | undefined;
|
|
8301
8232
|
readonly sortable?: boolean | undefined;
|
|
8302
8233
|
readonly inlineHelpText?: string | undefined;
|
|
8303
|
-
readonly caseSensitive?: boolean | undefined;
|
|
8304
8234
|
readonly autonumberFormat?: string | undefined;
|
|
8305
8235
|
readonly index?: boolean | undefined;
|
|
8306
8236
|
readonly type: "json";
|
|
@@ -8382,7 +8312,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8382
8312
|
relationshipField?: string | undefined;
|
|
8383
8313
|
} | undefined;
|
|
8384
8314
|
readonly language?: string | undefined;
|
|
8385
|
-
readonly maxRating?: number | undefined;
|
|
8386
8315
|
readonly step?: number | undefined;
|
|
8387
8316
|
readonly currencyConfig?: {
|
|
8388
8317
|
precision: number;
|
|
@@ -8476,7 +8405,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8476
8405
|
} | undefined;
|
|
8477
8406
|
readonly sortable?: boolean | undefined;
|
|
8478
8407
|
readonly inlineHelpText?: string | undefined;
|
|
8479
|
-
readonly caseSensitive?: boolean | undefined;
|
|
8480
8408
|
readonly autonumberFormat?: string | undefined;
|
|
8481
8409
|
readonly index?: boolean | undefined;
|
|
8482
8410
|
readonly type: "select";
|
|
@@ -8558,7 +8486,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8558
8486
|
relationshipField?: string | undefined;
|
|
8559
8487
|
} | undefined;
|
|
8560
8488
|
readonly language?: string | undefined;
|
|
8561
|
-
readonly maxRating?: number | undefined;
|
|
8562
8489
|
readonly step?: number | undefined;
|
|
8563
8490
|
readonly currencyConfig?: {
|
|
8564
8491
|
precision: number;
|
|
@@ -8652,7 +8579,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8652
8579
|
} | undefined;
|
|
8653
8580
|
readonly sortable?: boolean | undefined;
|
|
8654
8581
|
readonly inlineHelpText?: string | undefined;
|
|
8655
|
-
readonly caseSensitive?: boolean | undefined;
|
|
8656
8582
|
readonly autonumberFormat?: string | undefined;
|
|
8657
8583
|
readonly index?: boolean | undefined;
|
|
8658
8584
|
readonly type: "number";
|
|
@@ -8734,7 +8660,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8734
8660
|
relationshipField?: string | undefined;
|
|
8735
8661
|
} | undefined;
|
|
8736
8662
|
readonly language?: string | undefined;
|
|
8737
|
-
readonly maxRating?: number | undefined;
|
|
8738
8663
|
readonly step?: number | undefined;
|
|
8739
8664
|
readonly currencyConfig?: {
|
|
8740
8665
|
precision: number;
|
|
@@ -8828,7 +8753,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8828
8753
|
} | undefined;
|
|
8829
8754
|
readonly sortable?: boolean | undefined;
|
|
8830
8755
|
readonly inlineHelpText?: string | undefined;
|
|
8831
|
-
readonly caseSensitive?: boolean | undefined;
|
|
8832
8756
|
readonly autonumberFormat?: string | undefined;
|
|
8833
8757
|
readonly index?: boolean | undefined;
|
|
8834
8758
|
readonly type: "number";
|
|
@@ -8910,7 +8834,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8910
8834
|
relationshipField?: string | undefined;
|
|
8911
8835
|
} | undefined;
|
|
8912
8836
|
readonly language?: string | undefined;
|
|
8913
|
-
readonly maxRating?: number | undefined;
|
|
8914
8837
|
readonly step?: number | undefined;
|
|
8915
8838
|
readonly currencyConfig?: {
|
|
8916
8839
|
precision: number;
|
|
@@ -9004,7 +8927,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9004
8927
|
} | undefined;
|
|
9005
8928
|
readonly sortable?: boolean | undefined;
|
|
9006
8929
|
readonly inlineHelpText?: string | undefined;
|
|
9007
|
-
readonly caseSensitive?: boolean | undefined;
|
|
9008
8930
|
readonly autonumberFormat?: string | undefined;
|
|
9009
8931
|
readonly index?: boolean | undefined;
|
|
9010
8932
|
readonly type: "text";
|
|
@@ -9086,7 +9008,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9086
9008
|
relationshipField?: string | undefined;
|
|
9087
9009
|
} | undefined;
|
|
9088
9010
|
readonly language?: string | undefined;
|
|
9089
|
-
readonly maxRating?: number | undefined;
|
|
9090
9011
|
readonly step?: number | undefined;
|
|
9091
9012
|
readonly currencyConfig?: {
|
|
9092
9013
|
precision: number;
|
|
@@ -9180,7 +9101,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9180
9101
|
} | undefined;
|
|
9181
9102
|
readonly sortable?: boolean | undefined;
|
|
9182
9103
|
readonly inlineHelpText?: string | undefined;
|
|
9183
|
-
readonly caseSensitive?: boolean | undefined;
|
|
9184
9104
|
readonly autonumberFormat?: string | undefined;
|
|
9185
9105
|
readonly index?: boolean | undefined;
|
|
9186
9106
|
readonly type: "number";
|
|
@@ -9262,7 +9182,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9262
9182
|
relationshipField?: string | undefined;
|
|
9263
9183
|
} | undefined;
|
|
9264
9184
|
readonly language?: string | undefined;
|
|
9265
|
-
readonly maxRating?: number | undefined;
|
|
9266
9185
|
readonly step?: number | undefined;
|
|
9267
9186
|
readonly currencyConfig?: {
|
|
9268
9187
|
precision: number;
|
|
@@ -9356,7 +9275,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9356
9275
|
} | undefined;
|
|
9357
9276
|
readonly sortable?: boolean | undefined;
|
|
9358
9277
|
readonly inlineHelpText?: string | undefined;
|
|
9359
|
-
readonly caseSensitive?: boolean | undefined;
|
|
9360
9278
|
readonly autonumberFormat?: string | undefined;
|
|
9361
9279
|
readonly index?: boolean | undefined;
|
|
9362
9280
|
readonly type: "number";
|
|
@@ -9438,7 +9356,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9438
9356
|
relationshipField?: string | undefined;
|
|
9439
9357
|
} | undefined;
|
|
9440
9358
|
readonly language?: string | undefined;
|
|
9441
|
-
readonly maxRating?: number | undefined;
|
|
9442
9359
|
readonly step?: number | undefined;
|
|
9443
9360
|
readonly currencyConfig?: {
|
|
9444
9361
|
precision: number;
|
|
@@ -9532,7 +9449,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9532
9449
|
} | undefined;
|
|
9533
9450
|
readonly sortable?: boolean | undefined;
|
|
9534
9451
|
readonly inlineHelpText?: string | undefined;
|
|
9535
|
-
readonly caseSensitive?: boolean | undefined;
|
|
9536
9452
|
readonly autonumberFormat?: string | undefined;
|
|
9537
9453
|
readonly index?: boolean | undefined;
|
|
9538
9454
|
readonly type: "number";
|
|
@@ -9614,7 +9530,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9614
9530
|
relationshipField?: string | undefined;
|
|
9615
9531
|
} | undefined;
|
|
9616
9532
|
readonly language?: string | undefined;
|
|
9617
|
-
readonly maxRating?: number | undefined;
|
|
9618
9533
|
readonly step?: number | undefined;
|
|
9619
9534
|
readonly currencyConfig?: {
|
|
9620
9535
|
precision: number;
|
|
@@ -9708,7 +9623,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9708
9623
|
} | undefined;
|
|
9709
9624
|
readonly sortable?: boolean | undefined;
|
|
9710
9625
|
readonly inlineHelpText?: string | undefined;
|
|
9711
|
-
readonly caseSensitive?: boolean | undefined;
|
|
9712
9626
|
readonly autonumberFormat?: string | undefined;
|
|
9713
9627
|
readonly index?: boolean | undefined;
|
|
9714
9628
|
readonly type: "textarea";
|
|
@@ -9790,7 +9704,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9790
9704
|
relationshipField?: string | undefined;
|
|
9791
9705
|
} | undefined;
|
|
9792
9706
|
readonly language?: string | undefined;
|
|
9793
|
-
readonly maxRating?: number | undefined;
|
|
9794
9707
|
readonly step?: number | undefined;
|
|
9795
9708
|
readonly currencyConfig?: {
|
|
9796
9709
|
precision: number;
|
|
@@ -9884,7 +9797,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9884
9797
|
} | undefined;
|
|
9885
9798
|
readonly sortable?: boolean | undefined;
|
|
9886
9799
|
readonly inlineHelpText?: string | undefined;
|
|
9887
|
-
readonly caseSensitive?: boolean | undefined;
|
|
9888
9800
|
readonly autonumberFormat?: string | undefined;
|
|
9889
9801
|
readonly index?: boolean | undefined;
|
|
9890
9802
|
readonly type: "datetime";
|
|
@@ -9966,7 +9878,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9966
9878
|
relationshipField?: string | undefined;
|
|
9967
9879
|
} | undefined;
|
|
9968
9880
|
readonly language?: string | undefined;
|
|
9969
|
-
readonly maxRating?: number | undefined;
|
|
9970
9881
|
readonly step?: number | undefined;
|
|
9971
9882
|
readonly currencyConfig?: {
|
|
9972
9883
|
precision: number;
|
|
@@ -10060,7 +9971,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
10060
9971
|
} | undefined;
|
|
10061
9972
|
readonly sortable?: boolean | undefined;
|
|
10062
9973
|
readonly inlineHelpText?: string | undefined;
|
|
10063
|
-
readonly caseSensitive?: boolean | undefined;
|
|
10064
9974
|
readonly autonumberFormat?: string | undefined;
|
|
10065
9975
|
readonly index?: boolean | undefined;
|
|
10066
9976
|
readonly type: "datetime";
|
|
@@ -10186,7 +10096,6 @@ declare const NotificationPreference: Omit<{
|
|
|
10186
10096
|
relationshipField?: string | undefined;
|
|
10187
10097
|
} | undefined;
|
|
10188
10098
|
language?: string | undefined;
|
|
10189
|
-
maxRating?: number | undefined;
|
|
10190
10099
|
step?: number | undefined;
|
|
10191
10100
|
currencyConfig?: {
|
|
10192
10101
|
precision: number;
|
|
@@ -10316,7 +10225,6 @@ declare const NotificationPreference: Omit<{
|
|
|
10316
10225
|
requiredPermissions?: string[] | undefined;
|
|
10317
10226
|
system?: boolean | undefined;
|
|
10318
10227
|
inlineHelpText?: string | undefined;
|
|
10319
|
-
caseSensitive?: boolean | undefined;
|
|
10320
10228
|
autonumberFormat?: string | undefined;
|
|
10321
10229
|
}>;
|
|
10322
10230
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -10404,12 +10312,6 @@ declare const NotificationPreference: Omit<{
|
|
|
10404
10312
|
versionField: string;
|
|
10405
10313
|
retentionDays?: number | undefined;
|
|
10406
10314
|
} | undefined;
|
|
10407
|
-
partitioning?: {
|
|
10408
|
-
enabled: boolean;
|
|
10409
|
-
strategy: "hash" | "list" | "range";
|
|
10410
|
-
key: string;
|
|
10411
|
-
interval?: string | undefined;
|
|
10412
|
-
} | undefined;
|
|
10413
10315
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
10414
10316
|
activityMilestones?: {
|
|
10415
10317
|
field: string;
|
|
@@ -10417,6 +10319,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10417
10319
|
summary: string;
|
|
10418
10320
|
type?: string | undefined;
|
|
10419
10321
|
}[] | undefined;
|
|
10322
|
+
nameField?: string | undefined;
|
|
10420
10323
|
displayNameField?: string | undefined;
|
|
10421
10324
|
recordName?: {
|
|
10422
10325
|
type: "text" | "autonumber";
|
|
@@ -10740,7 +10643,6 @@ declare const NotificationPreference: Omit<{
|
|
|
10740
10643
|
debounceMs?: number | undefined;
|
|
10741
10644
|
} | undefined;
|
|
10742
10645
|
}> | undefined;
|
|
10743
|
-
defaultDetailForm?: string | undefined;
|
|
10744
10646
|
searchableFields?: string[] | undefined;
|
|
10745
10647
|
search?: {
|
|
10746
10648
|
fields: string[];
|
|
@@ -10757,7 +10659,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10757
10659
|
trash: boolean;
|
|
10758
10660
|
mru: boolean;
|
|
10759
10661
|
clone: boolean;
|
|
10760
|
-
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "
|
|
10662
|
+
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "get" | "update" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
10761
10663
|
} | undefined;
|
|
10762
10664
|
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
10763
10665
|
publicSharing?: {
|
|
@@ -10785,6 +10687,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10785
10687
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
10786
10688
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
10787
10689
|
target?: string | undefined;
|
|
10690
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
10788
10691
|
body?: {
|
|
10789
10692
|
language: "expression";
|
|
10790
10693
|
source: string;
|
|
@@ -10971,7 +10874,6 @@ declare const NotificationPreference: Omit<{
|
|
|
10971
10874
|
relationshipField?: string | undefined;
|
|
10972
10875
|
} | undefined;
|
|
10973
10876
|
readonly language?: string | undefined;
|
|
10974
|
-
readonly maxRating?: number | undefined;
|
|
10975
10877
|
readonly step?: number | undefined;
|
|
10976
10878
|
readonly currencyConfig?: {
|
|
10977
10879
|
precision: number;
|
|
@@ -11065,7 +10967,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11065
10967
|
} | undefined;
|
|
11066
10968
|
readonly sortable?: boolean | undefined;
|
|
11067
10969
|
readonly inlineHelpText?: string | undefined;
|
|
11068
|
-
readonly caseSensitive?: boolean | undefined;
|
|
11069
10970
|
readonly autonumberFormat?: string | undefined;
|
|
11070
10971
|
readonly index?: boolean | undefined;
|
|
11071
10972
|
readonly type: "text";
|
|
@@ -11147,7 +11048,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11147
11048
|
relationshipField?: string | undefined;
|
|
11148
11049
|
} | undefined;
|
|
11149
11050
|
readonly language?: string | undefined;
|
|
11150
|
-
readonly maxRating?: number | undefined;
|
|
11151
11051
|
readonly step?: number | undefined;
|
|
11152
11052
|
readonly currencyConfig?: {
|
|
11153
11053
|
precision: number;
|
|
@@ -11241,7 +11141,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11241
11141
|
} | undefined;
|
|
11242
11142
|
readonly sortable?: boolean | undefined;
|
|
11243
11143
|
readonly inlineHelpText?: string | undefined;
|
|
11244
|
-
readonly caseSensitive?: boolean | undefined;
|
|
11245
11144
|
readonly autonumberFormat?: string | undefined;
|
|
11246
11145
|
readonly index?: boolean | undefined;
|
|
11247
11146
|
readonly type: "text";
|
|
@@ -11323,7 +11222,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11323
11222
|
relationshipField?: string | undefined;
|
|
11324
11223
|
} | undefined;
|
|
11325
11224
|
readonly language?: string | undefined;
|
|
11326
|
-
readonly maxRating?: number | undefined;
|
|
11327
11225
|
readonly step?: number | undefined;
|
|
11328
11226
|
readonly currencyConfig?: {
|
|
11329
11227
|
precision: number;
|
|
@@ -11417,7 +11315,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11417
11315
|
} | undefined;
|
|
11418
11316
|
readonly sortable?: boolean | undefined;
|
|
11419
11317
|
readonly inlineHelpText?: string | undefined;
|
|
11420
|
-
readonly caseSensitive?: boolean | undefined;
|
|
11421
11318
|
readonly autonumberFormat?: string | undefined;
|
|
11422
11319
|
readonly index?: boolean | undefined;
|
|
11423
11320
|
readonly type: "text";
|
|
@@ -11499,7 +11396,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11499
11396
|
relationshipField?: string | undefined;
|
|
11500
11397
|
} | undefined;
|
|
11501
11398
|
readonly language?: string | undefined;
|
|
11502
|
-
readonly maxRating?: number | undefined;
|
|
11503
11399
|
readonly step?: number | undefined;
|
|
11504
11400
|
readonly currencyConfig?: {
|
|
11505
11401
|
precision: number;
|
|
@@ -11593,7 +11489,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11593
11489
|
} | undefined;
|
|
11594
11490
|
readonly sortable?: boolean | undefined;
|
|
11595
11491
|
readonly inlineHelpText?: string | undefined;
|
|
11596
|
-
readonly caseSensitive?: boolean | undefined;
|
|
11597
11492
|
readonly autonumberFormat?: string | undefined;
|
|
11598
11493
|
readonly index?: boolean | undefined;
|
|
11599
11494
|
readonly type: "text";
|
|
@@ -11675,7 +11570,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11675
11570
|
relationshipField?: string | undefined;
|
|
11676
11571
|
} | undefined;
|
|
11677
11572
|
readonly language?: string | undefined;
|
|
11678
|
-
readonly maxRating?: number | undefined;
|
|
11679
11573
|
readonly step?: number | undefined;
|
|
11680
11574
|
readonly currencyConfig?: {
|
|
11681
11575
|
precision: number;
|
|
@@ -11769,7 +11663,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11769
11663
|
} | undefined;
|
|
11770
11664
|
readonly sortable?: boolean | undefined;
|
|
11771
11665
|
readonly inlineHelpText?: string | undefined;
|
|
11772
|
-
readonly caseSensitive?: boolean | undefined;
|
|
11773
11666
|
readonly autonumberFormat?: string | undefined;
|
|
11774
11667
|
readonly index?: boolean | undefined;
|
|
11775
11668
|
readonly type: "boolean";
|
|
@@ -11851,7 +11744,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11851
11744
|
relationshipField?: string | undefined;
|
|
11852
11745
|
} | undefined;
|
|
11853
11746
|
readonly language?: string | undefined;
|
|
11854
|
-
readonly maxRating?: number | undefined;
|
|
11855
11747
|
readonly step?: number | undefined;
|
|
11856
11748
|
readonly currencyConfig?: {
|
|
11857
11749
|
precision: number;
|
|
@@ -11945,7 +11837,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11945
11837
|
} | undefined;
|
|
11946
11838
|
readonly sortable?: boolean | undefined;
|
|
11947
11839
|
readonly inlineHelpText?: string | undefined;
|
|
11948
|
-
readonly caseSensitive?: boolean | undefined;
|
|
11949
11840
|
readonly autonumberFormat?: string | undefined;
|
|
11950
11841
|
readonly index?: boolean | undefined;
|
|
11951
11842
|
readonly type: "select";
|
|
@@ -12027,7 +11918,6 @@ declare const NotificationPreference: Omit<{
|
|
|
12027
11918
|
relationshipField?: string | undefined;
|
|
12028
11919
|
} | undefined;
|
|
12029
11920
|
readonly language?: string | undefined;
|
|
12030
|
-
readonly maxRating?: number | undefined;
|
|
12031
11921
|
readonly step?: number | undefined;
|
|
12032
11922
|
readonly currencyConfig?: {
|
|
12033
11923
|
precision: number;
|
|
@@ -12121,7 +12011,6 @@ declare const NotificationPreference: Omit<{
|
|
|
12121
12011
|
} | undefined;
|
|
12122
12012
|
readonly sortable?: boolean | undefined;
|
|
12123
12013
|
readonly inlineHelpText?: string | undefined;
|
|
12124
|
-
readonly caseSensitive?: boolean | undefined;
|
|
12125
12014
|
readonly autonumberFormat?: string | undefined;
|
|
12126
12015
|
readonly index?: boolean | undefined;
|
|
12127
12016
|
readonly type: "json";
|
|
@@ -12203,7 +12092,6 @@ declare const NotificationPreference: Omit<{
|
|
|
12203
12092
|
relationshipField?: string | undefined;
|
|
12204
12093
|
} | undefined;
|
|
12205
12094
|
readonly language?: string | undefined;
|
|
12206
|
-
readonly maxRating?: number | undefined;
|
|
12207
12095
|
readonly step?: number | undefined;
|
|
12208
12096
|
readonly currencyConfig?: {
|
|
12209
12097
|
precision: number;
|
|
@@ -12297,7 +12185,6 @@ declare const NotificationPreference: Omit<{
|
|
|
12297
12185
|
} | undefined;
|
|
12298
12186
|
readonly sortable?: boolean | undefined;
|
|
12299
12187
|
readonly inlineHelpText?: string | undefined;
|
|
12300
|
-
readonly caseSensitive?: boolean | undefined;
|
|
12301
12188
|
readonly autonumberFormat?: string | undefined;
|
|
12302
12189
|
readonly index?: boolean | undefined;
|
|
12303
12190
|
readonly type: "datetime";
|
|
@@ -12379,7 +12266,6 @@ declare const NotificationPreference: Omit<{
|
|
|
12379
12266
|
relationshipField?: string | undefined;
|
|
12380
12267
|
} | undefined;
|
|
12381
12268
|
readonly language?: string | undefined;
|
|
12382
|
-
readonly maxRating?: number | undefined;
|
|
12383
12269
|
readonly step?: number | undefined;
|
|
12384
12270
|
readonly currencyConfig?: {
|
|
12385
12271
|
precision: number;
|
|
@@ -12473,7 +12359,6 @@ declare const NotificationPreference: Omit<{
|
|
|
12473
12359
|
} | undefined;
|
|
12474
12360
|
readonly sortable?: boolean | undefined;
|
|
12475
12361
|
readonly inlineHelpText?: string | undefined;
|
|
12476
|
-
readonly caseSensitive?: boolean | undefined;
|
|
12477
12362
|
readonly autonumberFormat?: string | undefined;
|
|
12478
12363
|
readonly index?: boolean | undefined;
|
|
12479
12364
|
readonly type: "datetime";
|
|
@@ -12591,7 +12476,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
12591
12476
|
relationshipField?: string | undefined;
|
|
12592
12477
|
} | undefined;
|
|
12593
12478
|
language?: string | undefined;
|
|
12594
|
-
maxRating?: number | undefined;
|
|
12595
12479
|
step?: number | undefined;
|
|
12596
12480
|
currencyConfig?: {
|
|
12597
12481
|
precision: number;
|
|
@@ -12721,7 +12605,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
12721
12605
|
requiredPermissions?: string[] | undefined;
|
|
12722
12606
|
system?: boolean | undefined;
|
|
12723
12607
|
inlineHelpText?: string | undefined;
|
|
12724
|
-
caseSensitive?: boolean | undefined;
|
|
12725
12608
|
autonumberFormat?: string | undefined;
|
|
12726
12609
|
}>;
|
|
12727
12610
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -12809,12 +12692,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
12809
12692
|
versionField: string;
|
|
12810
12693
|
retentionDays?: number | undefined;
|
|
12811
12694
|
} | undefined;
|
|
12812
|
-
partitioning?: {
|
|
12813
|
-
enabled: boolean;
|
|
12814
|
-
strategy: "hash" | "list" | "range";
|
|
12815
|
-
key: string;
|
|
12816
|
-
interval?: string | undefined;
|
|
12817
|
-
} | undefined;
|
|
12818
12695
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
12819
12696
|
activityMilestones?: {
|
|
12820
12697
|
field: string;
|
|
@@ -12822,6 +12699,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
12822
12699
|
summary: string;
|
|
12823
12700
|
type?: string | undefined;
|
|
12824
12701
|
}[] | undefined;
|
|
12702
|
+
nameField?: string | undefined;
|
|
12825
12703
|
displayNameField?: string | undefined;
|
|
12826
12704
|
recordName?: {
|
|
12827
12705
|
type: "text" | "autonumber";
|
|
@@ -13145,7 +13023,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
13145
13023
|
debounceMs?: number | undefined;
|
|
13146
13024
|
} | undefined;
|
|
13147
13025
|
}> | undefined;
|
|
13148
|
-
defaultDetailForm?: string | undefined;
|
|
13149
13026
|
searchableFields?: string[] | undefined;
|
|
13150
13027
|
search?: {
|
|
13151
13028
|
fields: string[];
|
|
@@ -13162,7 +13039,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13162
13039
|
trash: boolean;
|
|
13163
13040
|
mru: boolean;
|
|
13164
13041
|
clone: boolean;
|
|
13165
|
-
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "
|
|
13042
|
+
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "get" | "update" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
13166
13043
|
} | undefined;
|
|
13167
13044
|
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
13168
13045
|
publicSharing?: {
|
|
@@ -13190,6 +13067,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13190
13067
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
13191
13068
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
13192
13069
|
target?: string | undefined;
|
|
13070
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
13193
13071
|
body?: {
|
|
13194
13072
|
language: "expression";
|
|
13195
13073
|
source: string;
|
|
@@ -13376,7 +13254,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
13376
13254
|
relationshipField?: string | undefined;
|
|
13377
13255
|
} | undefined;
|
|
13378
13256
|
readonly language?: string | undefined;
|
|
13379
|
-
readonly maxRating?: number | undefined;
|
|
13380
13257
|
readonly step?: number | undefined;
|
|
13381
13258
|
readonly currencyConfig?: {
|
|
13382
13259
|
precision: number;
|
|
@@ -13470,7 +13347,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
13470
13347
|
} | undefined;
|
|
13471
13348
|
readonly sortable?: boolean | undefined;
|
|
13472
13349
|
readonly inlineHelpText?: string | undefined;
|
|
13473
|
-
readonly caseSensitive?: boolean | undefined;
|
|
13474
13350
|
readonly autonumberFormat?: string | undefined;
|
|
13475
13351
|
readonly index?: boolean | undefined;
|
|
13476
13352
|
readonly type: "text";
|
|
@@ -13552,7 +13428,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
13552
13428
|
relationshipField?: string | undefined;
|
|
13553
13429
|
} | undefined;
|
|
13554
13430
|
readonly language?: string | undefined;
|
|
13555
|
-
readonly maxRating?: number | undefined;
|
|
13556
13431
|
readonly step?: number | undefined;
|
|
13557
13432
|
readonly currencyConfig?: {
|
|
13558
13433
|
precision: number;
|
|
@@ -13646,7 +13521,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
13646
13521
|
} | undefined;
|
|
13647
13522
|
readonly sortable?: boolean | undefined;
|
|
13648
13523
|
readonly inlineHelpText?: string | undefined;
|
|
13649
|
-
readonly caseSensitive?: boolean | undefined;
|
|
13650
13524
|
readonly autonumberFormat?: string | undefined;
|
|
13651
13525
|
readonly index?: boolean | undefined;
|
|
13652
13526
|
readonly type: "text";
|
|
@@ -13728,7 +13602,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
13728
13602
|
relationshipField?: string | undefined;
|
|
13729
13603
|
} | undefined;
|
|
13730
13604
|
readonly language?: string | undefined;
|
|
13731
|
-
readonly maxRating?: number | undefined;
|
|
13732
13605
|
readonly step?: number | undefined;
|
|
13733
13606
|
readonly currencyConfig?: {
|
|
13734
13607
|
precision: number;
|
|
@@ -13822,7 +13695,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
13822
13695
|
} | undefined;
|
|
13823
13696
|
readonly sortable?: boolean | undefined;
|
|
13824
13697
|
readonly inlineHelpText?: string | undefined;
|
|
13825
|
-
readonly caseSensitive?: boolean | undefined;
|
|
13826
13698
|
readonly autonumberFormat?: string | undefined;
|
|
13827
13699
|
readonly index?: boolean | undefined;
|
|
13828
13700
|
readonly type: "text";
|
|
@@ -13904,7 +13776,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
13904
13776
|
relationshipField?: string | undefined;
|
|
13905
13777
|
} | undefined;
|
|
13906
13778
|
readonly language?: string | undefined;
|
|
13907
|
-
readonly maxRating?: number | undefined;
|
|
13908
13779
|
readonly step?: number | undefined;
|
|
13909
13780
|
readonly currencyConfig?: {
|
|
13910
13781
|
precision: number;
|
|
@@ -13998,7 +13869,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
13998
13869
|
} | undefined;
|
|
13999
13870
|
readonly sortable?: boolean | undefined;
|
|
14000
13871
|
readonly inlineHelpText?: string | undefined;
|
|
14001
|
-
readonly caseSensitive?: boolean | undefined;
|
|
14002
13872
|
readonly autonumberFormat?: string | undefined;
|
|
14003
13873
|
readonly index?: boolean | undefined;
|
|
14004
13874
|
readonly type: "boolean";
|
|
@@ -14080,7 +13950,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
14080
13950
|
relationshipField?: string | undefined;
|
|
14081
13951
|
} | undefined;
|
|
14082
13952
|
readonly language?: string | undefined;
|
|
14083
|
-
readonly maxRating?: number | undefined;
|
|
14084
13953
|
readonly step?: number | undefined;
|
|
14085
13954
|
readonly currencyConfig?: {
|
|
14086
13955
|
precision: number;
|
|
@@ -14174,7 +14043,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
14174
14043
|
} | undefined;
|
|
14175
14044
|
readonly sortable?: boolean | undefined;
|
|
14176
14045
|
readonly inlineHelpText?: string | undefined;
|
|
14177
|
-
readonly caseSensitive?: boolean | undefined;
|
|
14178
14046
|
readonly autonumberFormat?: string | undefined;
|
|
14179
14047
|
readonly index?: boolean | undefined;
|
|
14180
14048
|
readonly type: "datetime";
|
|
@@ -14291,7 +14159,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
14291
14159
|
relationshipField?: string | undefined;
|
|
14292
14160
|
} | undefined;
|
|
14293
14161
|
language?: string | undefined;
|
|
14294
|
-
maxRating?: number | undefined;
|
|
14295
14162
|
step?: number | undefined;
|
|
14296
14163
|
currencyConfig?: {
|
|
14297
14164
|
precision: number;
|
|
@@ -14421,7 +14288,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
14421
14288
|
requiredPermissions?: string[] | undefined;
|
|
14422
14289
|
system?: boolean | undefined;
|
|
14423
14290
|
inlineHelpText?: string | undefined;
|
|
14424
|
-
caseSensitive?: boolean | undefined;
|
|
14425
14291
|
autonumberFormat?: string | undefined;
|
|
14426
14292
|
}>;
|
|
14427
14293
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -14509,12 +14375,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
14509
14375
|
versionField: string;
|
|
14510
14376
|
retentionDays?: number | undefined;
|
|
14511
14377
|
} | undefined;
|
|
14512
|
-
partitioning?: {
|
|
14513
|
-
enabled: boolean;
|
|
14514
|
-
strategy: "hash" | "list" | "range";
|
|
14515
|
-
key: string;
|
|
14516
|
-
interval?: string | undefined;
|
|
14517
|
-
} | undefined;
|
|
14518
14378
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
14519
14379
|
activityMilestones?: {
|
|
14520
14380
|
field: string;
|
|
@@ -14522,6 +14382,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14522
14382
|
summary: string;
|
|
14523
14383
|
type?: string | undefined;
|
|
14524
14384
|
}[] | undefined;
|
|
14385
|
+
nameField?: string | undefined;
|
|
14525
14386
|
displayNameField?: string | undefined;
|
|
14526
14387
|
recordName?: {
|
|
14527
14388
|
type: "text" | "autonumber";
|
|
@@ -14845,7 +14706,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
14845
14706
|
debounceMs?: number | undefined;
|
|
14846
14707
|
} | undefined;
|
|
14847
14708
|
}> | undefined;
|
|
14848
|
-
defaultDetailForm?: string | undefined;
|
|
14849
14709
|
searchableFields?: string[] | undefined;
|
|
14850
14710
|
search?: {
|
|
14851
14711
|
fields: string[];
|
|
@@ -14862,7 +14722,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14862
14722
|
trash: boolean;
|
|
14863
14723
|
mru: boolean;
|
|
14864
14724
|
clone: boolean;
|
|
14865
|
-
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "
|
|
14725
|
+
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "get" | "update" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
14866
14726
|
} | undefined;
|
|
14867
14727
|
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
14868
14728
|
publicSharing?: {
|
|
@@ -14890,6 +14750,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14890
14750
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
14891
14751
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
14892
14752
|
target?: string | undefined;
|
|
14753
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
14893
14754
|
body?: {
|
|
14894
14755
|
language: "expression";
|
|
14895
14756
|
source: string;
|
|
@@ -15076,7 +14937,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15076
14937
|
relationshipField?: string | undefined;
|
|
15077
14938
|
} | undefined;
|
|
15078
14939
|
readonly language?: string | undefined;
|
|
15079
|
-
readonly maxRating?: number | undefined;
|
|
15080
14940
|
readonly step?: number | undefined;
|
|
15081
14941
|
readonly currencyConfig?: {
|
|
15082
14942
|
precision: number;
|
|
@@ -15170,7 +15030,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15170
15030
|
} | undefined;
|
|
15171
15031
|
readonly sortable?: boolean | undefined;
|
|
15172
15032
|
readonly inlineHelpText?: string | undefined;
|
|
15173
|
-
readonly caseSensitive?: boolean | undefined;
|
|
15174
15033
|
readonly autonumberFormat?: string | undefined;
|
|
15175
15034
|
readonly index?: boolean | undefined;
|
|
15176
15035
|
readonly type: "text";
|
|
@@ -15252,7 +15111,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15252
15111
|
relationshipField?: string | undefined;
|
|
15253
15112
|
} | undefined;
|
|
15254
15113
|
readonly language?: string | undefined;
|
|
15255
|
-
readonly maxRating?: number | undefined;
|
|
15256
15114
|
readonly step?: number | undefined;
|
|
15257
15115
|
readonly currencyConfig?: {
|
|
15258
15116
|
precision: number;
|
|
@@ -15346,7 +15204,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15346
15204
|
} | undefined;
|
|
15347
15205
|
readonly sortable?: boolean | undefined;
|
|
15348
15206
|
readonly inlineHelpText?: string | undefined;
|
|
15349
|
-
readonly caseSensitive?: boolean | undefined;
|
|
15350
15207
|
readonly autonumberFormat?: string | undefined;
|
|
15351
15208
|
readonly index?: boolean | undefined;
|
|
15352
15209
|
readonly type: "text";
|
|
@@ -15428,7 +15285,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15428
15285
|
relationshipField?: string | undefined;
|
|
15429
15286
|
} | undefined;
|
|
15430
15287
|
readonly language?: string | undefined;
|
|
15431
|
-
readonly maxRating?: number | undefined;
|
|
15432
15288
|
readonly step?: number | undefined;
|
|
15433
15289
|
readonly currencyConfig?: {
|
|
15434
15290
|
precision: number;
|
|
@@ -15522,7 +15378,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15522
15378
|
} | undefined;
|
|
15523
15379
|
readonly sortable?: boolean | undefined;
|
|
15524
15380
|
readonly inlineHelpText?: string | undefined;
|
|
15525
|
-
readonly caseSensitive?: boolean | undefined;
|
|
15526
15381
|
readonly autonumberFormat?: string | undefined;
|
|
15527
15382
|
readonly index?: boolean | undefined;
|
|
15528
15383
|
readonly type: "text";
|
|
@@ -15604,7 +15459,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15604
15459
|
relationshipField?: string | undefined;
|
|
15605
15460
|
} | undefined;
|
|
15606
15461
|
readonly language?: string | undefined;
|
|
15607
|
-
readonly maxRating?: number | undefined;
|
|
15608
15462
|
readonly step?: number | undefined;
|
|
15609
15463
|
readonly currencyConfig?: {
|
|
15610
15464
|
precision: number;
|
|
@@ -15698,7 +15552,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15698
15552
|
} | undefined;
|
|
15699
15553
|
readonly sortable?: boolean | undefined;
|
|
15700
15554
|
readonly inlineHelpText?: string | undefined;
|
|
15701
|
-
readonly caseSensitive?: boolean | undefined;
|
|
15702
15555
|
readonly autonumberFormat?: string | undefined;
|
|
15703
15556
|
readonly index?: boolean | undefined;
|
|
15704
15557
|
readonly type: "text";
|
|
@@ -15780,7 +15633,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15780
15633
|
relationshipField?: string | undefined;
|
|
15781
15634
|
} | undefined;
|
|
15782
15635
|
readonly language?: string | undefined;
|
|
15783
|
-
readonly maxRating?: number | undefined;
|
|
15784
15636
|
readonly step?: number | undefined;
|
|
15785
15637
|
readonly currencyConfig?: {
|
|
15786
15638
|
precision: number;
|
|
@@ -15874,7 +15726,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15874
15726
|
} | undefined;
|
|
15875
15727
|
readonly sortable?: boolean | undefined;
|
|
15876
15728
|
readonly inlineHelpText?: string | undefined;
|
|
15877
|
-
readonly caseSensitive?: boolean | undefined;
|
|
15878
15729
|
readonly autonumberFormat?: string | undefined;
|
|
15879
15730
|
readonly index?: boolean | undefined;
|
|
15880
15731
|
readonly type: "number";
|
|
@@ -15956,7 +15807,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15956
15807
|
relationshipField?: string | undefined;
|
|
15957
15808
|
} | undefined;
|
|
15958
15809
|
readonly language?: string | undefined;
|
|
15959
|
-
readonly maxRating?: number | undefined;
|
|
15960
15810
|
readonly step?: number | undefined;
|
|
15961
15811
|
readonly currencyConfig?: {
|
|
15962
15812
|
precision: number;
|
|
@@ -16050,7 +15900,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
16050
15900
|
} | undefined;
|
|
16051
15901
|
readonly sortable?: boolean | undefined;
|
|
16052
15902
|
readonly inlineHelpText?: string | undefined;
|
|
16053
|
-
readonly caseSensitive?: boolean | undefined;
|
|
16054
15903
|
readonly autonumberFormat?: string | undefined;
|
|
16055
15904
|
readonly index?: boolean | undefined;
|
|
16056
15905
|
readonly type: "text";
|
|
@@ -16132,7 +15981,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
16132
15981
|
relationshipField?: string | undefined;
|
|
16133
15982
|
} | undefined;
|
|
16134
15983
|
readonly language?: string | undefined;
|
|
16135
|
-
readonly maxRating?: number | undefined;
|
|
16136
15984
|
readonly step?: number | undefined;
|
|
16137
15985
|
readonly currencyConfig?: {
|
|
16138
15986
|
precision: number;
|
|
@@ -16226,7 +16074,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
16226
16074
|
} | undefined;
|
|
16227
16075
|
readonly sortable?: boolean | undefined;
|
|
16228
16076
|
readonly inlineHelpText?: string | undefined;
|
|
16229
|
-
readonly caseSensitive?: boolean | undefined;
|
|
16230
16077
|
readonly autonumberFormat?: string | undefined;
|
|
16231
16078
|
readonly index?: boolean | undefined;
|
|
16232
16079
|
readonly type: "markdown";
|
|
@@ -16308,7 +16155,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
16308
16155
|
relationshipField?: string | undefined;
|
|
16309
16156
|
} | undefined;
|
|
16310
16157
|
readonly language?: string | undefined;
|
|
16311
|
-
readonly maxRating?: number | undefined;
|
|
16312
16158
|
readonly step?: number | undefined;
|
|
16313
16159
|
readonly currencyConfig?: {
|
|
16314
16160
|
precision: number;
|
|
@@ -16402,7 +16248,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
16402
16248
|
} | undefined;
|
|
16403
16249
|
readonly sortable?: boolean | undefined;
|
|
16404
16250
|
readonly inlineHelpText?: string | undefined;
|
|
16405
|
-
readonly caseSensitive?: boolean | undefined;
|
|
16406
16251
|
readonly autonumberFormat?: string | undefined;
|
|
16407
16252
|
readonly index?: boolean | undefined;
|
|
16408
16253
|
readonly type: "select";
|
|
@@ -16484,7 +16329,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
16484
16329
|
relationshipField?: string | undefined;
|
|
16485
16330
|
} | undefined;
|
|
16486
16331
|
readonly language?: string | undefined;
|
|
16487
|
-
readonly maxRating?: number | undefined;
|
|
16488
16332
|
readonly step?: number | undefined;
|
|
16489
16333
|
readonly currencyConfig?: {
|
|
16490
16334
|
precision: number;
|
|
@@ -16578,7 +16422,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
16578
16422
|
} | undefined;
|
|
16579
16423
|
readonly sortable?: boolean | undefined;
|
|
16580
16424
|
readonly inlineHelpText?: string | undefined;
|
|
16581
|
-
readonly caseSensitive?: boolean | undefined;
|
|
16582
16425
|
readonly autonumberFormat?: string | undefined;
|
|
16583
16426
|
readonly index?: boolean | undefined;
|
|
16584
16427
|
readonly type: "boolean";
|
|
@@ -16660,7 +16503,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
16660
16503
|
relationshipField?: string | undefined;
|
|
16661
16504
|
} | undefined;
|
|
16662
16505
|
readonly language?: string | undefined;
|
|
16663
|
-
readonly maxRating?: number | undefined;
|
|
16664
16506
|
readonly step?: number | undefined;
|
|
16665
16507
|
readonly currencyConfig?: {
|
|
16666
16508
|
precision: number;
|
|
@@ -16754,7 +16596,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
16754
16596
|
} | undefined;
|
|
16755
16597
|
readonly sortable?: boolean | undefined;
|
|
16756
16598
|
readonly inlineHelpText?: string | undefined;
|
|
16757
|
-
readonly caseSensitive?: boolean | undefined;
|
|
16758
16599
|
readonly autonumberFormat?: string | undefined;
|
|
16759
16600
|
readonly index?: boolean | undefined;
|
|
16760
16601
|
readonly type: "datetime";
|
|
@@ -16836,7 +16677,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
16836
16677
|
relationshipField?: string | undefined;
|
|
16837
16678
|
} | undefined;
|
|
16838
16679
|
readonly language?: string | undefined;
|
|
16839
|
-
readonly maxRating?: number | undefined;
|
|
16840
16680
|
readonly step?: number | undefined;
|
|
16841
16681
|
readonly currencyConfig?: {
|
|
16842
16682
|
precision: number;
|
|
@@ -16930,7 +16770,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
16930
16770
|
} | undefined;
|
|
16931
16771
|
readonly sortable?: boolean | undefined;
|
|
16932
16772
|
readonly inlineHelpText?: string | undefined;
|
|
16933
|
-
readonly caseSensitive?: boolean | undefined;
|
|
16934
16773
|
readonly autonumberFormat?: string | undefined;
|
|
16935
16774
|
readonly index?: boolean | undefined;
|
|
16936
16775
|
readonly type: "datetime";
|
|
@@ -17055,7 +16894,6 @@ declare const HttpDelivery: Omit<{
|
|
|
17055
16894
|
relationshipField?: string | undefined;
|
|
17056
16895
|
} | undefined;
|
|
17057
16896
|
language?: string | undefined;
|
|
17058
|
-
maxRating?: number | undefined;
|
|
17059
16897
|
step?: number | undefined;
|
|
17060
16898
|
currencyConfig?: {
|
|
17061
16899
|
precision: number;
|
|
@@ -17185,7 +17023,6 @@ declare const HttpDelivery: Omit<{
|
|
|
17185
17023
|
requiredPermissions?: string[] | undefined;
|
|
17186
17024
|
system?: boolean | undefined;
|
|
17187
17025
|
inlineHelpText?: string | undefined;
|
|
17188
|
-
caseSensitive?: boolean | undefined;
|
|
17189
17026
|
autonumberFormat?: string | undefined;
|
|
17190
17027
|
}>;
|
|
17191
17028
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -17273,12 +17110,6 @@ declare const HttpDelivery: Omit<{
|
|
|
17273
17110
|
versionField: string;
|
|
17274
17111
|
retentionDays?: number | undefined;
|
|
17275
17112
|
} | undefined;
|
|
17276
|
-
partitioning?: {
|
|
17277
|
-
enabled: boolean;
|
|
17278
|
-
strategy: "hash" | "list" | "range";
|
|
17279
|
-
key: string;
|
|
17280
|
-
interval?: string | undefined;
|
|
17281
|
-
} | undefined;
|
|
17282
17113
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
17283
17114
|
activityMilestones?: {
|
|
17284
17115
|
field: string;
|
|
@@ -17286,6 +17117,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17286
17117
|
summary: string;
|
|
17287
17118
|
type?: string | undefined;
|
|
17288
17119
|
}[] | undefined;
|
|
17120
|
+
nameField?: string | undefined;
|
|
17289
17121
|
displayNameField?: string | undefined;
|
|
17290
17122
|
recordName?: {
|
|
17291
17123
|
type: "text" | "autonumber";
|
|
@@ -17609,7 +17441,6 @@ declare const HttpDelivery: Omit<{
|
|
|
17609
17441
|
debounceMs?: number | undefined;
|
|
17610
17442
|
} | undefined;
|
|
17611
17443
|
}> | undefined;
|
|
17612
|
-
defaultDetailForm?: string | undefined;
|
|
17613
17444
|
searchableFields?: string[] | undefined;
|
|
17614
17445
|
search?: {
|
|
17615
17446
|
fields: string[];
|
|
@@ -17626,7 +17457,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17626
17457
|
trash: boolean;
|
|
17627
17458
|
mru: boolean;
|
|
17628
17459
|
clone: boolean;
|
|
17629
|
-
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "
|
|
17460
|
+
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "get" | "update" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
17630
17461
|
} | undefined;
|
|
17631
17462
|
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
17632
17463
|
publicSharing?: {
|
|
@@ -17654,6 +17485,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17654
17485
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
17655
17486
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
17656
17487
|
target?: string | undefined;
|
|
17488
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
17657
17489
|
body?: {
|
|
17658
17490
|
language: "expression";
|
|
17659
17491
|
source: string;
|
|
@@ -17767,6 +17599,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17767
17599
|
};
|
|
17768
17600
|
readonly description: "Durable outbox row for one outbound-HTTP attempt (ADR-0018). Managed by @objectstack/service-messaging; do not write directly.";
|
|
17769
17601
|
readonly displayNameField: "id";
|
|
17602
|
+
readonly nameField: "id";
|
|
17770
17603
|
readonly titleFormat: "{label} → {url}";
|
|
17771
17604
|
readonly compactLayout: ["source", "url", "status", "attempts", "next_retry_at"];
|
|
17772
17605
|
readonly listViews: {
|
|
@@ -17910,7 +17743,6 @@ declare const HttpDelivery: Omit<{
|
|
|
17910
17743
|
relationshipField?: string | undefined;
|
|
17911
17744
|
} | undefined;
|
|
17912
17745
|
readonly language?: string | undefined;
|
|
17913
|
-
readonly maxRating?: number | undefined;
|
|
17914
17746
|
readonly step?: number | undefined;
|
|
17915
17747
|
readonly currencyConfig?: {
|
|
17916
17748
|
precision: number;
|
|
@@ -18004,7 +17836,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18004
17836
|
} | undefined;
|
|
18005
17837
|
readonly sortable?: boolean | undefined;
|
|
18006
17838
|
readonly inlineHelpText?: string | undefined;
|
|
18007
|
-
readonly caseSensitive?: boolean | undefined;
|
|
18008
17839
|
readonly autonumberFormat?: string | undefined;
|
|
18009
17840
|
readonly index?: boolean | undefined;
|
|
18010
17841
|
readonly type: "text";
|
|
@@ -18086,7 +17917,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18086
17917
|
relationshipField?: string | undefined;
|
|
18087
17918
|
} | undefined;
|
|
18088
17919
|
readonly language?: string | undefined;
|
|
18089
|
-
readonly maxRating?: number | undefined;
|
|
18090
17920
|
readonly step?: number | undefined;
|
|
18091
17921
|
readonly currencyConfig?: {
|
|
18092
17922
|
precision: number;
|
|
@@ -18180,7 +18010,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18180
18010
|
} | undefined;
|
|
18181
18011
|
readonly sortable?: boolean | undefined;
|
|
18182
18012
|
readonly inlineHelpText?: string | undefined;
|
|
18183
|
-
readonly caseSensitive?: boolean | undefined;
|
|
18184
18013
|
readonly autonumberFormat?: string | undefined;
|
|
18185
18014
|
readonly index?: boolean | undefined;
|
|
18186
18015
|
readonly type: "text";
|
|
@@ -18262,7 +18091,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18262
18091
|
relationshipField?: string | undefined;
|
|
18263
18092
|
} | undefined;
|
|
18264
18093
|
readonly language?: string | undefined;
|
|
18265
|
-
readonly maxRating?: number | undefined;
|
|
18266
18094
|
readonly step?: number | undefined;
|
|
18267
18095
|
readonly currencyConfig?: {
|
|
18268
18096
|
precision: number;
|
|
@@ -18356,7 +18184,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18356
18184
|
} | undefined;
|
|
18357
18185
|
readonly sortable?: boolean | undefined;
|
|
18358
18186
|
readonly inlineHelpText?: string | undefined;
|
|
18359
|
-
readonly caseSensitive?: boolean | undefined;
|
|
18360
18187
|
readonly autonumberFormat?: string | undefined;
|
|
18361
18188
|
readonly index?: boolean | undefined;
|
|
18362
18189
|
readonly type: "text";
|
|
@@ -18438,7 +18265,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18438
18265
|
relationshipField?: string | undefined;
|
|
18439
18266
|
} | undefined;
|
|
18440
18267
|
readonly language?: string | undefined;
|
|
18441
|
-
readonly maxRating?: number | undefined;
|
|
18442
18268
|
readonly step?: number | undefined;
|
|
18443
18269
|
readonly currencyConfig?: {
|
|
18444
18270
|
precision: number;
|
|
@@ -18532,7 +18358,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18532
18358
|
} | undefined;
|
|
18533
18359
|
readonly sortable?: boolean | undefined;
|
|
18534
18360
|
readonly inlineHelpText?: string | undefined;
|
|
18535
|
-
readonly caseSensitive?: boolean | undefined;
|
|
18536
18361
|
readonly autonumberFormat?: string | undefined;
|
|
18537
18362
|
readonly index?: boolean | undefined;
|
|
18538
18363
|
readonly type: "text";
|
|
@@ -18614,7 +18439,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18614
18439
|
relationshipField?: string | undefined;
|
|
18615
18440
|
} | undefined;
|
|
18616
18441
|
readonly language?: string | undefined;
|
|
18617
|
-
readonly maxRating?: number | undefined;
|
|
18618
18442
|
readonly step?: number | undefined;
|
|
18619
18443
|
readonly currencyConfig?: {
|
|
18620
18444
|
precision: number;
|
|
@@ -18708,7 +18532,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18708
18532
|
} | undefined;
|
|
18709
18533
|
readonly sortable?: boolean | undefined;
|
|
18710
18534
|
readonly inlineHelpText?: string | undefined;
|
|
18711
|
-
readonly caseSensitive?: boolean | undefined;
|
|
18712
18535
|
readonly autonumberFormat?: string | undefined;
|
|
18713
18536
|
readonly index?: boolean | undefined;
|
|
18714
18537
|
readonly type: "text";
|
|
@@ -18790,7 +18613,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18790
18613
|
relationshipField?: string | undefined;
|
|
18791
18614
|
} | undefined;
|
|
18792
18615
|
readonly language?: string | undefined;
|
|
18793
|
-
readonly maxRating?: number | undefined;
|
|
18794
18616
|
readonly step?: number | undefined;
|
|
18795
18617
|
readonly currencyConfig?: {
|
|
18796
18618
|
precision: number;
|
|
@@ -18884,7 +18706,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18884
18706
|
} | undefined;
|
|
18885
18707
|
readonly sortable?: boolean | undefined;
|
|
18886
18708
|
readonly inlineHelpText?: string | undefined;
|
|
18887
|
-
readonly caseSensitive?: boolean | undefined;
|
|
18888
18709
|
readonly autonumberFormat?: string | undefined;
|
|
18889
18710
|
readonly index?: boolean | undefined;
|
|
18890
18711
|
readonly type: "text";
|
|
@@ -18966,7 +18787,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18966
18787
|
relationshipField?: string | undefined;
|
|
18967
18788
|
} | undefined;
|
|
18968
18789
|
readonly language?: string | undefined;
|
|
18969
|
-
readonly maxRating?: number | undefined;
|
|
18970
18790
|
readonly step?: number | undefined;
|
|
18971
18791
|
readonly currencyConfig?: {
|
|
18972
18792
|
precision: number;
|
|
@@ -19060,7 +18880,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19060
18880
|
} | undefined;
|
|
19061
18881
|
readonly sortable?: boolean | undefined;
|
|
19062
18882
|
readonly inlineHelpText?: string | undefined;
|
|
19063
|
-
readonly caseSensitive?: boolean | undefined;
|
|
19064
18883
|
readonly autonumberFormat?: string | undefined;
|
|
19065
18884
|
readonly index?: boolean | undefined;
|
|
19066
18885
|
readonly type: "text";
|
|
@@ -19142,7 +18961,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19142
18961
|
relationshipField?: string | undefined;
|
|
19143
18962
|
} | undefined;
|
|
19144
18963
|
readonly language?: string | undefined;
|
|
19145
|
-
readonly maxRating?: number | undefined;
|
|
19146
18964
|
readonly step?: number | undefined;
|
|
19147
18965
|
readonly currencyConfig?: {
|
|
19148
18966
|
precision: number;
|
|
@@ -19236,7 +19054,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19236
19054
|
} | undefined;
|
|
19237
19055
|
readonly sortable?: boolean | undefined;
|
|
19238
19056
|
readonly inlineHelpText?: string | undefined;
|
|
19239
|
-
readonly caseSensitive?: boolean | undefined;
|
|
19240
19057
|
readonly autonumberFormat?: string | undefined;
|
|
19241
19058
|
readonly index?: boolean | undefined;
|
|
19242
19059
|
readonly type: "textarea";
|
|
@@ -19318,7 +19135,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19318
19135
|
relationshipField?: string | undefined;
|
|
19319
19136
|
} | undefined;
|
|
19320
19137
|
readonly language?: string | undefined;
|
|
19321
|
-
readonly maxRating?: number | undefined;
|
|
19322
19138
|
readonly step?: number | undefined;
|
|
19323
19139
|
readonly currencyConfig?: {
|
|
19324
19140
|
precision: number;
|
|
@@ -19412,7 +19228,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19412
19228
|
} | undefined;
|
|
19413
19229
|
readonly sortable?: boolean | undefined;
|
|
19414
19230
|
readonly inlineHelpText?: string | undefined;
|
|
19415
|
-
readonly caseSensitive?: boolean | undefined;
|
|
19416
19231
|
readonly autonumberFormat?: string | undefined;
|
|
19417
19232
|
readonly index?: boolean | undefined;
|
|
19418
19233
|
readonly type: "text";
|
|
@@ -19494,7 +19309,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19494
19309
|
relationshipField?: string | undefined;
|
|
19495
19310
|
} | undefined;
|
|
19496
19311
|
readonly language?: string | undefined;
|
|
19497
|
-
readonly maxRating?: number | undefined;
|
|
19498
19312
|
readonly step?: number | undefined;
|
|
19499
19313
|
readonly currencyConfig?: {
|
|
19500
19314
|
precision: number;
|
|
@@ -19588,7 +19402,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19588
19402
|
} | undefined;
|
|
19589
19403
|
readonly sortable?: boolean | undefined;
|
|
19590
19404
|
readonly inlineHelpText?: string | undefined;
|
|
19591
|
-
readonly caseSensitive?: boolean | undefined;
|
|
19592
19405
|
readonly autonumberFormat?: string | undefined;
|
|
19593
19406
|
readonly index?: boolean | undefined;
|
|
19594
19407
|
readonly type: "number";
|
|
@@ -19670,7 +19483,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19670
19483
|
relationshipField?: string | undefined;
|
|
19671
19484
|
} | undefined;
|
|
19672
19485
|
readonly language?: string | undefined;
|
|
19673
|
-
readonly maxRating?: number | undefined;
|
|
19674
19486
|
readonly step?: number | undefined;
|
|
19675
19487
|
readonly currencyConfig?: {
|
|
19676
19488
|
precision: number;
|
|
@@ -19764,7 +19576,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19764
19576
|
} | undefined;
|
|
19765
19577
|
readonly sortable?: boolean | undefined;
|
|
19766
19578
|
readonly inlineHelpText?: string | undefined;
|
|
19767
|
-
readonly caseSensitive?: boolean | undefined;
|
|
19768
19579
|
readonly autonumberFormat?: string | undefined;
|
|
19769
19580
|
readonly index?: boolean | undefined;
|
|
19770
19581
|
readonly type: "textarea";
|
|
@@ -19846,7 +19657,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19846
19657
|
relationshipField?: string | undefined;
|
|
19847
19658
|
} | undefined;
|
|
19848
19659
|
readonly language?: string | undefined;
|
|
19849
|
-
readonly maxRating?: number | undefined;
|
|
19850
19660
|
readonly step?: number | undefined;
|
|
19851
19661
|
readonly currencyConfig?: {
|
|
19852
19662
|
precision: number;
|
|
@@ -19940,7 +19750,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19940
19750
|
} | undefined;
|
|
19941
19751
|
readonly sortable?: boolean | undefined;
|
|
19942
19752
|
readonly inlineHelpText?: string | undefined;
|
|
19943
|
-
readonly caseSensitive?: boolean | undefined;
|
|
19944
19753
|
readonly autonumberFormat?: string | undefined;
|
|
19945
19754
|
readonly index?: boolean | undefined;
|
|
19946
19755
|
readonly type: "number";
|
|
@@ -20022,7 +19831,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20022
19831
|
relationshipField?: string | undefined;
|
|
20023
19832
|
} | undefined;
|
|
20024
19833
|
readonly language?: string | undefined;
|
|
20025
|
-
readonly maxRating?: number | undefined;
|
|
20026
19834
|
readonly step?: number | undefined;
|
|
20027
19835
|
readonly currencyConfig?: {
|
|
20028
19836
|
precision: number;
|
|
@@ -20116,7 +19924,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20116
19924
|
} | undefined;
|
|
20117
19925
|
readonly sortable?: boolean | undefined;
|
|
20118
19926
|
readonly inlineHelpText?: string | undefined;
|
|
20119
|
-
readonly caseSensitive?: boolean | undefined;
|
|
20120
19927
|
readonly autonumberFormat?: string | undefined;
|
|
20121
19928
|
readonly index?: boolean | undefined;
|
|
20122
19929
|
readonly type: "text";
|
|
@@ -20198,7 +20005,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20198
20005
|
relationshipField?: string | undefined;
|
|
20199
20006
|
} | undefined;
|
|
20200
20007
|
readonly language?: string | undefined;
|
|
20201
|
-
readonly maxRating?: number | undefined;
|
|
20202
20008
|
readonly step?: number | undefined;
|
|
20203
20009
|
readonly currencyConfig?: {
|
|
20204
20010
|
precision: number;
|
|
@@ -20292,7 +20098,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20292
20098
|
} | undefined;
|
|
20293
20099
|
readonly sortable?: boolean | undefined;
|
|
20294
20100
|
readonly inlineHelpText?: string | undefined;
|
|
20295
|
-
readonly caseSensitive?: boolean | undefined;
|
|
20296
20101
|
readonly autonumberFormat?: string | undefined;
|
|
20297
20102
|
readonly index?: boolean | undefined;
|
|
20298
20103
|
readonly type: "number";
|
|
@@ -20374,7 +20179,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20374
20179
|
relationshipField?: string | undefined;
|
|
20375
20180
|
} | undefined;
|
|
20376
20181
|
readonly language?: string | undefined;
|
|
20377
|
-
readonly maxRating?: number | undefined;
|
|
20378
20182
|
readonly step?: number | undefined;
|
|
20379
20183
|
readonly currencyConfig?: {
|
|
20380
20184
|
precision: number;
|
|
@@ -20468,7 +20272,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20468
20272
|
} | undefined;
|
|
20469
20273
|
readonly sortable?: boolean | undefined;
|
|
20470
20274
|
readonly inlineHelpText?: string | undefined;
|
|
20471
|
-
readonly caseSensitive?: boolean | undefined;
|
|
20472
20275
|
readonly autonumberFormat?: string | undefined;
|
|
20473
20276
|
readonly index?: boolean | undefined;
|
|
20474
20277
|
readonly type: "text";
|
|
@@ -20550,7 +20353,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20550
20353
|
relationshipField?: string | undefined;
|
|
20551
20354
|
} | undefined;
|
|
20552
20355
|
readonly language?: string | undefined;
|
|
20553
|
-
readonly maxRating?: number | undefined;
|
|
20554
20356
|
readonly step?: number | undefined;
|
|
20555
20357
|
readonly currencyConfig?: {
|
|
20556
20358
|
precision: number;
|
|
@@ -20644,7 +20446,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20644
20446
|
} | undefined;
|
|
20645
20447
|
readonly sortable?: boolean | undefined;
|
|
20646
20448
|
readonly inlineHelpText?: string | undefined;
|
|
20647
|
-
readonly caseSensitive?: boolean | undefined;
|
|
20648
20449
|
readonly autonumberFormat?: string | undefined;
|
|
20649
20450
|
readonly index?: boolean | undefined;
|
|
20650
20451
|
readonly type: "number";
|
|
@@ -20726,7 +20527,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20726
20527
|
relationshipField?: string | undefined;
|
|
20727
20528
|
} | undefined;
|
|
20728
20529
|
readonly language?: string | undefined;
|
|
20729
|
-
readonly maxRating?: number | undefined;
|
|
20730
20530
|
readonly step?: number | undefined;
|
|
20731
20531
|
readonly currencyConfig?: {
|
|
20732
20532
|
precision: number;
|
|
@@ -20820,7 +20620,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20820
20620
|
} | undefined;
|
|
20821
20621
|
readonly sortable?: boolean | undefined;
|
|
20822
20622
|
readonly inlineHelpText?: string | undefined;
|
|
20823
|
-
readonly caseSensitive?: boolean | undefined;
|
|
20824
20623
|
readonly autonumberFormat?: string | undefined;
|
|
20825
20624
|
readonly index?: boolean | undefined;
|
|
20826
20625
|
readonly type: "number";
|
|
@@ -20902,7 +20701,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20902
20701
|
relationshipField?: string | undefined;
|
|
20903
20702
|
} | undefined;
|
|
20904
20703
|
readonly language?: string | undefined;
|
|
20905
|
-
readonly maxRating?: number | undefined;
|
|
20906
20704
|
readonly step?: number | undefined;
|
|
20907
20705
|
readonly currencyConfig?: {
|
|
20908
20706
|
precision: number;
|
|
@@ -20996,7 +20794,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20996
20794
|
} | undefined;
|
|
20997
20795
|
readonly sortable?: boolean | undefined;
|
|
20998
20796
|
readonly inlineHelpText?: string | undefined;
|
|
20999
|
-
readonly caseSensitive?: boolean | undefined;
|
|
21000
20797
|
readonly autonumberFormat?: string | undefined;
|
|
21001
20798
|
readonly index?: boolean | undefined;
|
|
21002
20799
|
readonly type: "number";
|
|
@@ -21078,7 +20875,6 @@ declare const HttpDelivery: Omit<{
|
|
|
21078
20875
|
relationshipField?: string | undefined;
|
|
21079
20876
|
} | undefined;
|
|
21080
20877
|
readonly language?: string | undefined;
|
|
21081
|
-
readonly maxRating?: number | undefined;
|
|
21082
20878
|
readonly step?: number | undefined;
|
|
21083
20879
|
readonly currencyConfig?: {
|
|
21084
20880
|
precision: number;
|
|
@@ -21172,7 +20968,6 @@ declare const HttpDelivery: Omit<{
|
|
|
21172
20968
|
} | undefined;
|
|
21173
20969
|
readonly sortable?: boolean | undefined;
|
|
21174
20970
|
readonly inlineHelpText?: string | undefined;
|
|
21175
|
-
readonly caseSensitive?: boolean | undefined;
|
|
21176
20971
|
readonly autonumberFormat?: string | undefined;
|
|
21177
20972
|
readonly index?: boolean | undefined;
|
|
21178
20973
|
readonly type: "number";
|
|
@@ -21254,7 +21049,6 @@ declare const HttpDelivery: Omit<{
|
|
|
21254
21049
|
relationshipField?: string | undefined;
|
|
21255
21050
|
} | undefined;
|
|
21256
21051
|
readonly language?: string | undefined;
|
|
21257
|
-
readonly maxRating?: number | undefined;
|
|
21258
21052
|
readonly step?: number | undefined;
|
|
21259
21053
|
readonly currencyConfig?: {
|
|
21260
21054
|
precision: number;
|
|
@@ -21348,7 +21142,6 @@ declare const HttpDelivery: Omit<{
|
|
|
21348
21142
|
} | undefined;
|
|
21349
21143
|
readonly sortable?: boolean | undefined;
|
|
21350
21144
|
readonly inlineHelpText?: string | undefined;
|
|
21351
|
-
readonly caseSensitive?: boolean | undefined;
|
|
21352
21145
|
readonly autonumberFormat?: string | undefined;
|
|
21353
21146
|
readonly index?: boolean | undefined;
|
|
21354
21147
|
readonly type: "textarea";
|
|
@@ -21430,7 +21223,6 @@ declare const HttpDelivery: Omit<{
|
|
|
21430
21223
|
relationshipField?: string | undefined;
|
|
21431
21224
|
} | undefined;
|
|
21432
21225
|
readonly language?: string | undefined;
|
|
21433
|
-
readonly maxRating?: number | undefined;
|
|
21434
21226
|
readonly step?: number | undefined;
|
|
21435
21227
|
readonly currencyConfig?: {
|
|
21436
21228
|
precision: number;
|
|
@@ -21524,7 +21316,6 @@ declare const HttpDelivery: Omit<{
|
|
|
21524
21316
|
} | undefined;
|
|
21525
21317
|
readonly sortable?: boolean | undefined;
|
|
21526
21318
|
readonly inlineHelpText?: string | undefined;
|
|
21527
|
-
readonly caseSensitive?: boolean | undefined;
|
|
21528
21319
|
readonly autonumberFormat?: string | undefined;
|
|
21529
21320
|
readonly index?: boolean | undefined;
|
|
21530
21321
|
readonly type: "textarea";
|
|
@@ -21606,7 +21397,6 @@ declare const HttpDelivery: Omit<{
|
|
|
21606
21397
|
relationshipField?: string | undefined;
|
|
21607
21398
|
} | undefined;
|
|
21608
21399
|
readonly language?: string | undefined;
|
|
21609
|
-
readonly maxRating?: number | undefined;
|
|
21610
21400
|
readonly step?: number | undefined;
|
|
21611
21401
|
readonly currencyConfig?: {
|
|
21612
21402
|
precision: number;
|
|
@@ -21700,7 +21490,6 @@ declare const HttpDelivery: Omit<{
|
|
|
21700
21490
|
} | undefined;
|
|
21701
21491
|
readonly sortable?: boolean | undefined;
|
|
21702
21492
|
readonly inlineHelpText?: string | undefined;
|
|
21703
|
-
readonly caseSensitive?: boolean | undefined;
|
|
21704
21493
|
readonly autonumberFormat?: string | undefined;
|
|
21705
21494
|
readonly index?: boolean | undefined;
|
|
21706
21495
|
readonly type: "datetime";
|
|
@@ -21782,7 +21571,6 @@ declare const HttpDelivery: Omit<{
|
|
|
21782
21571
|
relationshipField?: string | undefined;
|
|
21783
21572
|
} | undefined;
|
|
21784
21573
|
readonly language?: string | undefined;
|
|
21785
|
-
readonly maxRating?: number | undefined;
|
|
21786
21574
|
readonly step?: number | undefined;
|
|
21787
21575
|
readonly currencyConfig?: {
|
|
21788
21576
|
precision: number;
|
|
@@ -21876,7 +21664,6 @@ declare const HttpDelivery: Omit<{
|
|
|
21876
21664
|
} | undefined;
|
|
21877
21665
|
readonly sortable?: boolean | undefined;
|
|
21878
21666
|
readonly inlineHelpText?: string | undefined;
|
|
21879
|
-
readonly caseSensitive?: boolean | undefined;
|
|
21880
21667
|
readonly autonumberFormat?: string | undefined;
|
|
21881
21668
|
readonly index?: boolean | undefined;
|
|
21882
21669
|
readonly type: "datetime";
|