@objectstack/service-messaging 10.3.0 → 11.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +38 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +131 -250
- package/dist/index.d.ts +131 -250
- package/dist/index.js +38 -0
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/LICENSE.apache +0 -202
package/dist/index.d.cts
CHANGED
|
@@ -74,6 +74,19 @@ declare class MessagingServicePlugin implements Plugin {
|
|
|
74
74
|
private retentionTimer?;
|
|
75
75
|
constructor(options?: MessagingServicePluginOptions);
|
|
76
76
|
init(ctx: PluginContext): Promise<void>;
|
|
77
|
+
/**
|
|
78
|
+
* Provision the physical tables for this service's system objects up-front.
|
|
79
|
+
*
|
|
80
|
+
* These objects are lazy-created on first WRITE (the SQL driver issues DDL
|
|
81
|
+
* when the first row is inserted), so an env that READS them first — the
|
|
82
|
+
* Console bell / inbox queries sys_inbox_message + sys_notification_receipt
|
|
83
|
+
* before any notification has been delivered — hits "no such table", which
|
|
84
|
+
* the engine logs as a `Find operation failed` ERROR on every page load.
|
|
85
|
+
* Creating the tables at kernel:ready makes a new env consistent from the
|
|
86
|
+
* start. Idempotent (the driver only creates a table when absent), so it is
|
|
87
|
+
* safe on every boot; per-object failures are isolated.
|
|
88
|
+
*/
|
|
89
|
+
private provisionSystemTables;
|
|
77
90
|
/** Stop the dispatcher loop + retention sweep on shutdown. */
|
|
78
91
|
stop(): Promise<void>;
|
|
79
92
|
}
|
|
@@ -1438,7 +1451,7 @@ declare const InboxMessage: Omit<{
|
|
|
1438
1451
|
abstract: boolean;
|
|
1439
1452
|
datasource: string;
|
|
1440
1453
|
fields: Record<string, {
|
|
1441
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
1454
|
+
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
1442
1455
|
required: boolean;
|
|
1443
1456
|
searchable: boolean;
|
|
1444
1457
|
multiple: boolean;
|
|
@@ -1512,6 +1525,7 @@ declare const InboxMessage: Omit<{
|
|
|
1512
1525
|
generatedBy?: string | undefined;
|
|
1513
1526
|
} | undefined;
|
|
1514
1527
|
} | undefined;
|
|
1528
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1515
1529
|
summaryOperations?: {
|
|
1516
1530
|
object: string;
|
|
1517
1531
|
field: string;
|
|
@@ -1519,7 +1533,6 @@ declare const InboxMessage: Omit<{
|
|
|
1519
1533
|
relationshipField?: string | undefined;
|
|
1520
1534
|
} | undefined;
|
|
1521
1535
|
language?: string | undefined;
|
|
1522
|
-
maxRating?: number | undefined;
|
|
1523
1536
|
step?: number | undefined;
|
|
1524
1537
|
currencyConfig?: {
|
|
1525
1538
|
precision: number;
|
|
@@ -1649,7 +1662,6 @@ declare const InboxMessage: Omit<{
|
|
|
1649
1662
|
requiredPermissions?: string[] | undefined;
|
|
1650
1663
|
system?: boolean | undefined;
|
|
1651
1664
|
inlineHelpText?: string | undefined;
|
|
1652
|
-
caseSensitive?: boolean | undefined;
|
|
1653
1665
|
autonumberFormat?: string | undefined;
|
|
1654
1666
|
}>;
|
|
1655
1667
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -1737,12 +1749,6 @@ declare const InboxMessage: Omit<{
|
|
|
1737
1749
|
versionField: string;
|
|
1738
1750
|
retentionDays?: number | undefined;
|
|
1739
1751
|
} | undefined;
|
|
1740
|
-
partitioning?: {
|
|
1741
|
-
enabled: boolean;
|
|
1742
|
-
strategy: "hash" | "list" | "range";
|
|
1743
|
-
key: string;
|
|
1744
|
-
interval?: string | undefined;
|
|
1745
|
-
} | undefined;
|
|
1746
1752
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
1747
1753
|
activityMilestones?: {
|
|
1748
1754
|
field: string;
|
|
@@ -2073,7 +2079,6 @@ declare const InboxMessage: Omit<{
|
|
|
2073
2079
|
debounceMs?: number | undefined;
|
|
2074
2080
|
} | undefined;
|
|
2075
2081
|
}> | undefined;
|
|
2076
|
-
defaultDetailForm?: string | undefined;
|
|
2077
2082
|
searchableFields?: string[] | undefined;
|
|
2078
2083
|
search?: {
|
|
2079
2084
|
fields: string[];
|
|
@@ -2090,7 +2095,7 @@ declare const InboxMessage: Omit<{
|
|
|
2090
2095
|
trash: boolean;
|
|
2091
2096
|
mru: boolean;
|
|
2092
2097
|
clone: boolean;
|
|
2093
|
-
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "
|
|
2098
|
+
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "get" | "update" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
2094
2099
|
} | undefined;
|
|
2095
2100
|
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
2096
2101
|
publicSharing?: {
|
|
@@ -2118,6 +2123,7 @@ declare const InboxMessage: Omit<{
|
|
|
2118
2123
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
2119
2124
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
2120
2125
|
target?: string | undefined;
|
|
2126
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
2121
2127
|
body?: {
|
|
2122
2128
|
language: "expression";
|
|
2123
2129
|
source: string;
|
|
@@ -2135,7 +2141,7 @@ declare const InboxMessage: Omit<{
|
|
|
2135
2141
|
field?: string | undefined;
|
|
2136
2142
|
objectOverride?: string | undefined;
|
|
2137
2143
|
label?: string | undefined;
|
|
2138
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
2144
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
2139
2145
|
options?: {
|
|
2140
2146
|
label: string;
|
|
2141
2147
|
value: string;
|
|
@@ -2267,6 +2273,7 @@ declare const InboxMessage: Omit<{
|
|
|
2267
2273
|
readonly name?: string | undefined;
|
|
2268
2274
|
readonly precision?: number | undefined;
|
|
2269
2275
|
readonly required?: boolean | undefined;
|
|
2276
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2270
2277
|
readonly multiple?: boolean | undefined;
|
|
2271
2278
|
readonly dependencies?: string[] | undefined;
|
|
2272
2279
|
readonly externalId?: boolean | undefined;
|
|
@@ -2329,7 +2336,6 @@ declare const InboxMessage: Omit<{
|
|
|
2329
2336
|
relationshipField?: string | undefined;
|
|
2330
2337
|
} | undefined;
|
|
2331
2338
|
readonly language?: string | undefined;
|
|
2332
|
-
readonly maxRating?: number | undefined;
|
|
2333
2339
|
readonly step?: number | undefined;
|
|
2334
2340
|
readonly currencyConfig?: {
|
|
2335
2341
|
precision: number;
|
|
@@ -2423,7 +2429,6 @@ declare const InboxMessage: Omit<{
|
|
|
2423
2429
|
} | undefined;
|
|
2424
2430
|
readonly sortable?: boolean | undefined;
|
|
2425
2431
|
readonly inlineHelpText?: string | undefined;
|
|
2426
|
-
readonly caseSensitive?: boolean | undefined;
|
|
2427
2432
|
readonly autonumberFormat?: string | undefined;
|
|
2428
2433
|
readonly index?: boolean | undefined;
|
|
2429
2434
|
readonly type: "text";
|
|
@@ -2442,6 +2447,7 @@ declare const InboxMessage: Omit<{
|
|
|
2442
2447
|
readonly name?: string | undefined;
|
|
2443
2448
|
readonly precision?: number | undefined;
|
|
2444
2449
|
readonly required?: boolean | undefined;
|
|
2450
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2445
2451
|
readonly multiple?: boolean | undefined;
|
|
2446
2452
|
readonly dependencies?: string[] | undefined;
|
|
2447
2453
|
readonly externalId?: boolean | undefined;
|
|
@@ -2504,7 +2510,6 @@ declare const InboxMessage: Omit<{
|
|
|
2504
2510
|
relationshipField?: string | undefined;
|
|
2505
2511
|
} | undefined;
|
|
2506
2512
|
readonly language?: string | undefined;
|
|
2507
|
-
readonly maxRating?: number | undefined;
|
|
2508
2513
|
readonly step?: number | undefined;
|
|
2509
2514
|
readonly currencyConfig?: {
|
|
2510
2515
|
precision: number;
|
|
@@ -2598,7 +2603,6 @@ declare const InboxMessage: Omit<{
|
|
|
2598
2603
|
} | undefined;
|
|
2599
2604
|
readonly sortable?: boolean | undefined;
|
|
2600
2605
|
readonly inlineHelpText?: string | undefined;
|
|
2601
|
-
readonly caseSensitive?: boolean | undefined;
|
|
2602
2606
|
readonly autonumberFormat?: string | undefined;
|
|
2603
2607
|
readonly index?: boolean | undefined;
|
|
2604
2608
|
readonly type: "text";
|
|
@@ -2617,6 +2621,7 @@ declare const InboxMessage: Omit<{
|
|
|
2617
2621
|
readonly name?: string | undefined;
|
|
2618
2622
|
readonly precision?: number | undefined;
|
|
2619
2623
|
readonly required?: boolean | undefined;
|
|
2624
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2620
2625
|
readonly multiple?: boolean | undefined;
|
|
2621
2626
|
readonly dependencies?: string[] | undefined;
|
|
2622
2627
|
readonly externalId?: boolean | undefined;
|
|
@@ -2679,7 +2684,6 @@ declare const InboxMessage: Omit<{
|
|
|
2679
2684
|
relationshipField?: string | undefined;
|
|
2680
2685
|
} | undefined;
|
|
2681
2686
|
readonly language?: string | undefined;
|
|
2682
|
-
readonly maxRating?: number | undefined;
|
|
2683
2687
|
readonly step?: number | undefined;
|
|
2684
2688
|
readonly currencyConfig?: {
|
|
2685
2689
|
precision: number;
|
|
@@ -2773,7 +2777,6 @@ declare const InboxMessage: Omit<{
|
|
|
2773
2777
|
} | undefined;
|
|
2774
2778
|
readonly sortable?: boolean | undefined;
|
|
2775
2779
|
readonly inlineHelpText?: string | undefined;
|
|
2776
|
-
readonly caseSensitive?: boolean | undefined;
|
|
2777
2780
|
readonly autonumberFormat?: string | undefined;
|
|
2778
2781
|
readonly index?: boolean | undefined;
|
|
2779
2782
|
readonly type: "text";
|
|
@@ -2792,6 +2795,7 @@ declare const InboxMessage: Omit<{
|
|
|
2792
2795
|
readonly name?: string | undefined;
|
|
2793
2796
|
readonly precision?: number | undefined;
|
|
2794
2797
|
readonly required?: boolean | undefined;
|
|
2798
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2795
2799
|
readonly multiple?: boolean | undefined;
|
|
2796
2800
|
readonly dependencies?: string[] | undefined;
|
|
2797
2801
|
readonly externalId?: boolean | undefined;
|
|
@@ -2854,7 +2858,6 @@ declare const InboxMessage: Omit<{
|
|
|
2854
2858
|
relationshipField?: string | undefined;
|
|
2855
2859
|
} | undefined;
|
|
2856
2860
|
readonly language?: string | undefined;
|
|
2857
|
-
readonly maxRating?: number | undefined;
|
|
2858
2861
|
readonly step?: number | undefined;
|
|
2859
2862
|
readonly currencyConfig?: {
|
|
2860
2863
|
precision: number;
|
|
@@ -2948,7 +2951,6 @@ declare const InboxMessage: Omit<{
|
|
|
2948
2951
|
} | undefined;
|
|
2949
2952
|
readonly sortable?: boolean | undefined;
|
|
2950
2953
|
readonly inlineHelpText?: string | undefined;
|
|
2951
|
-
readonly caseSensitive?: boolean | undefined;
|
|
2952
2954
|
readonly autonumberFormat?: string | undefined;
|
|
2953
2955
|
readonly index?: boolean | undefined;
|
|
2954
2956
|
readonly type: "text";
|
|
@@ -2967,6 +2969,7 @@ declare const InboxMessage: Omit<{
|
|
|
2967
2969
|
readonly name?: string | undefined;
|
|
2968
2970
|
readonly precision?: number | undefined;
|
|
2969
2971
|
readonly required?: boolean | undefined;
|
|
2972
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2970
2973
|
readonly multiple?: boolean | undefined;
|
|
2971
2974
|
readonly dependencies?: string[] | undefined;
|
|
2972
2975
|
readonly externalId?: boolean | undefined;
|
|
@@ -3029,7 +3032,6 @@ declare const InboxMessage: Omit<{
|
|
|
3029
3032
|
relationshipField?: string | undefined;
|
|
3030
3033
|
} | undefined;
|
|
3031
3034
|
readonly language?: string | undefined;
|
|
3032
|
-
readonly maxRating?: number | undefined;
|
|
3033
3035
|
readonly step?: number | undefined;
|
|
3034
3036
|
readonly currencyConfig?: {
|
|
3035
3037
|
precision: number;
|
|
@@ -3123,7 +3125,6 @@ declare const InboxMessage: Omit<{
|
|
|
3123
3125
|
} | undefined;
|
|
3124
3126
|
readonly sortable?: boolean | undefined;
|
|
3125
3127
|
readonly inlineHelpText?: string | undefined;
|
|
3126
|
-
readonly caseSensitive?: boolean | undefined;
|
|
3127
3128
|
readonly autonumberFormat?: string | undefined;
|
|
3128
3129
|
readonly index?: boolean | undefined;
|
|
3129
3130
|
readonly type: "text";
|
|
@@ -3142,6 +3143,7 @@ declare const InboxMessage: Omit<{
|
|
|
3142
3143
|
readonly name?: string | undefined;
|
|
3143
3144
|
readonly precision?: number | undefined;
|
|
3144
3145
|
readonly required?: boolean | undefined;
|
|
3146
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3145
3147
|
readonly multiple?: boolean | undefined;
|
|
3146
3148
|
readonly dependencies?: string[] | undefined;
|
|
3147
3149
|
readonly externalId?: boolean | undefined;
|
|
@@ -3204,7 +3206,6 @@ declare const InboxMessage: Omit<{
|
|
|
3204
3206
|
relationshipField?: string | undefined;
|
|
3205
3207
|
} | undefined;
|
|
3206
3208
|
readonly language?: string | undefined;
|
|
3207
|
-
readonly maxRating?: number | undefined;
|
|
3208
3209
|
readonly step?: number | undefined;
|
|
3209
3210
|
readonly currencyConfig?: {
|
|
3210
3211
|
precision: number;
|
|
@@ -3298,7 +3299,6 @@ declare const InboxMessage: Omit<{
|
|
|
3298
3299
|
} | undefined;
|
|
3299
3300
|
readonly sortable?: boolean | undefined;
|
|
3300
3301
|
readonly inlineHelpText?: string | undefined;
|
|
3301
|
-
readonly caseSensitive?: boolean | undefined;
|
|
3302
3302
|
readonly autonumberFormat?: string | undefined;
|
|
3303
3303
|
readonly index?: boolean | undefined;
|
|
3304
3304
|
readonly type: "text";
|
|
@@ -3317,6 +3317,7 @@ declare const InboxMessage: Omit<{
|
|
|
3317
3317
|
readonly name?: string | undefined;
|
|
3318
3318
|
readonly precision?: number | undefined;
|
|
3319
3319
|
readonly required?: boolean | undefined;
|
|
3320
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3320
3321
|
readonly multiple?: boolean | undefined;
|
|
3321
3322
|
readonly dependencies?: string[] | undefined;
|
|
3322
3323
|
readonly externalId?: boolean | undefined;
|
|
@@ -3379,7 +3380,6 @@ declare const InboxMessage: Omit<{
|
|
|
3379
3380
|
relationshipField?: string | undefined;
|
|
3380
3381
|
} | undefined;
|
|
3381
3382
|
readonly language?: string | undefined;
|
|
3382
|
-
readonly maxRating?: number | undefined;
|
|
3383
3383
|
readonly step?: number | undefined;
|
|
3384
3384
|
readonly currencyConfig?: {
|
|
3385
3385
|
precision: number;
|
|
@@ -3473,7 +3473,6 @@ declare const InboxMessage: Omit<{
|
|
|
3473
3473
|
} | undefined;
|
|
3474
3474
|
readonly sortable?: boolean | undefined;
|
|
3475
3475
|
readonly inlineHelpText?: string | undefined;
|
|
3476
|
-
readonly caseSensitive?: boolean | undefined;
|
|
3477
3476
|
readonly autonumberFormat?: string | undefined;
|
|
3478
3477
|
readonly index?: boolean | undefined;
|
|
3479
3478
|
readonly type: "markdown";
|
|
@@ -3492,6 +3491,7 @@ declare const InboxMessage: Omit<{
|
|
|
3492
3491
|
readonly name?: string | undefined;
|
|
3493
3492
|
readonly precision?: number | undefined;
|
|
3494
3493
|
readonly required?: boolean | undefined;
|
|
3494
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3495
3495
|
readonly multiple?: boolean | undefined;
|
|
3496
3496
|
readonly dependencies?: string[] | undefined;
|
|
3497
3497
|
readonly externalId?: boolean | undefined;
|
|
@@ -3554,7 +3554,6 @@ declare const InboxMessage: Omit<{
|
|
|
3554
3554
|
relationshipField?: string | undefined;
|
|
3555
3555
|
} | undefined;
|
|
3556
3556
|
readonly language?: string | undefined;
|
|
3557
|
-
readonly maxRating?: number | undefined;
|
|
3558
3557
|
readonly step?: number | undefined;
|
|
3559
3558
|
readonly currencyConfig?: {
|
|
3560
3559
|
precision: number;
|
|
@@ -3648,7 +3647,6 @@ declare const InboxMessage: Omit<{
|
|
|
3648
3647
|
} | undefined;
|
|
3649
3648
|
readonly sortable?: boolean | undefined;
|
|
3650
3649
|
readonly inlineHelpText?: string | undefined;
|
|
3651
|
-
readonly caseSensitive?: boolean | undefined;
|
|
3652
3650
|
readonly autonumberFormat?: string | undefined;
|
|
3653
3651
|
readonly index?: boolean | undefined;
|
|
3654
3652
|
readonly type: "select";
|
|
@@ -3667,6 +3665,7 @@ declare const InboxMessage: Omit<{
|
|
|
3667
3665
|
readonly name?: string | undefined;
|
|
3668
3666
|
readonly precision?: number | undefined;
|
|
3669
3667
|
readonly required?: boolean | undefined;
|
|
3668
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3670
3669
|
readonly multiple?: boolean | undefined;
|
|
3671
3670
|
readonly dependencies?: string[] | undefined;
|
|
3672
3671
|
readonly externalId?: boolean | undefined;
|
|
@@ -3729,7 +3728,6 @@ declare const InboxMessage: Omit<{
|
|
|
3729
3728
|
relationshipField?: string | undefined;
|
|
3730
3729
|
} | undefined;
|
|
3731
3730
|
readonly language?: string | undefined;
|
|
3732
|
-
readonly maxRating?: number | undefined;
|
|
3733
3731
|
readonly step?: number | undefined;
|
|
3734
3732
|
readonly currencyConfig?: {
|
|
3735
3733
|
precision: number;
|
|
@@ -3823,7 +3821,6 @@ declare const InboxMessage: Omit<{
|
|
|
3823
3821
|
} | undefined;
|
|
3824
3822
|
readonly sortable?: boolean | undefined;
|
|
3825
3823
|
readonly inlineHelpText?: string | undefined;
|
|
3826
|
-
readonly caseSensitive?: boolean | undefined;
|
|
3827
3824
|
readonly autonumberFormat?: string | undefined;
|
|
3828
3825
|
readonly index?: boolean | undefined;
|
|
3829
3826
|
readonly type: "text";
|
|
@@ -3842,6 +3839,7 @@ declare const InboxMessage: Omit<{
|
|
|
3842
3839
|
readonly name?: string | undefined;
|
|
3843
3840
|
readonly precision?: number | undefined;
|
|
3844
3841
|
readonly required?: boolean | undefined;
|
|
3842
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3845
3843
|
readonly multiple?: boolean | undefined;
|
|
3846
3844
|
readonly dependencies?: string[] | undefined;
|
|
3847
3845
|
readonly externalId?: boolean | undefined;
|
|
@@ -3904,7 +3902,6 @@ declare const InboxMessage: Omit<{
|
|
|
3904
3902
|
relationshipField?: string | undefined;
|
|
3905
3903
|
} | undefined;
|
|
3906
3904
|
readonly language?: string | undefined;
|
|
3907
|
-
readonly maxRating?: number | undefined;
|
|
3908
3905
|
readonly step?: number | undefined;
|
|
3909
3906
|
readonly currencyConfig?: {
|
|
3910
3907
|
precision: number;
|
|
@@ -3998,7 +3995,6 @@ declare const InboxMessage: Omit<{
|
|
|
3998
3995
|
} | undefined;
|
|
3999
3996
|
readonly sortable?: boolean | undefined;
|
|
4000
3997
|
readonly inlineHelpText?: string | undefined;
|
|
4001
|
-
readonly caseSensitive?: boolean | undefined;
|
|
4002
3998
|
readonly autonumberFormat?: string | undefined;
|
|
4003
3999
|
readonly index?: boolean | undefined;
|
|
4004
4000
|
readonly type: "datetime";
|
|
@@ -4030,7 +4026,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4030
4026
|
abstract: boolean;
|
|
4031
4027
|
datasource: string;
|
|
4032
4028
|
fields: Record<string, {
|
|
4033
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
4029
|
+
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
4034
4030
|
required: boolean;
|
|
4035
4031
|
searchable: boolean;
|
|
4036
4032
|
multiple: boolean;
|
|
@@ -4104,6 +4100,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4104
4100
|
generatedBy?: string | undefined;
|
|
4105
4101
|
} | undefined;
|
|
4106
4102
|
} | undefined;
|
|
4103
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4107
4104
|
summaryOperations?: {
|
|
4108
4105
|
object: string;
|
|
4109
4106
|
field: string;
|
|
@@ -4111,7 +4108,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
4111
4108
|
relationshipField?: string | undefined;
|
|
4112
4109
|
} | undefined;
|
|
4113
4110
|
language?: string | undefined;
|
|
4114
|
-
maxRating?: number | undefined;
|
|
4115
4111
|
step?: number | undefined;
|
|
4116
4112
|
currencyConfig?: {
|
|
4117
4113
|
precision: number;
|
|
@@ -4241,7 +4237,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
4241
4237
|
requiredPermissions?: string[] | undefined;
|
|
4242
4238
|
system?: boolean | undefined;
|
|
4243
4239
|
inlineHelpText?: string | undefined;
|
|
4244
|
-
caseSensitive?: boolean | undefined;
|
|
4245
4240
|
autonumberFormat?: string | undefined;
|
|
4246
4241
|
}>;
|
|
4247
4242
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -4329,12 +4324,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
4329
4324
|
versionField: string;
|
|
4330
4325
|
retentionDays?: number | undefined;
|
|
4331
4326
|
} | undefined;
|
|
4332
|
-
partitioning?: {
|
|
4333
|
-
enabled: boolean;
|
|
4334
|
-
strategy: "hash" | "list" | "range";
|
|
4335
|
-
key: string;
|
|
4336
|
-
interval?: string | undefined;
|
|
4337
|
-
} | undefined;
|
|
4338
4327
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
4339
4328
|
activityMilestones?: {
|
|
4340
4329
|
field: string;
|
|
@@ -4665,7 +4654,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
4665
4654
|
debounceMs?: number | undefined;
|
|
4666
4655
|
} | undefined;
|
|
4667
4656
|
}> | undefined;
|
|
4668
|
-
defaultDetailForm?: string | undefined;
|
|
4669
4657
|
searchableFields?: string[] | undefined;
|
|
4670
4658
|
search?: {
|
|
4671
4659
|
fields: string[];
|
|
@@ -4682,7 +4670,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4682
4670
|
trash: boolean;
|
|
4683
4671
|
mru: boolean;
|
|
4684
4672
|
clone: boolean;
|
|
4685
|
-
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "
|
|
4673
|
+
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "get" | "update" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
4686
4674
|
} | undefined;
|
|
4687
4675
|
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
4688
4676
|
publicSharing?: {
|
|
@@ -4710,6 +4698,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4710
4698
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
4711
4699
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
4712
4700
|
target?: string | undefined;
|
|
4701
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
4713
4702
|
body?: {
|
|
4714
4703
|
language: "expression";
|
|
4715
4704
|
source: string;
|
|
@@ -4727,7 +4716,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4727
4716
|
field?: string | undefined;
|
|
4728
4717
|
objectOverride?: string | undefined;
|
|
4729
4718
|
label?: string | undefined;
|
|
4730
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
4719
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
4731
4720
|
options?: {
|
|
4732
4721
|
label: string;
|
|
4733
4722
|
value: string;
|
|
@@ -4833,6 +4822,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4833
4822
|
readonly name?: string | undefined;
|
|
4834
4823
|
readonly precision?: number | undefined;
|
|
4835
4824
|
readonly required?: boolean | undefined;
|
|
4825
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4836
4826
|
readonly multiple?: boolean | undefined;
|
|
4837
4827
|
readonly dependencies?: string[] | undefined;
|
|
4838
4828
|
readonly externalId?: boolean | undefined;
|
|
@@ -4895,7 +4885,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
4895
4885
|
relationshipField?: string | undefined;
|
|
4896
4886
|
} | undefined;
|
|
4897
4887
|
readonly language?: string | undefined;
|
|
4898
|
-
readonly maxRating?: number | undefined;
|
|
4899
4888
|
readonly step?: number | undefined;
|
|
4900
4889
|
readonly currencyConfig?: {
|
|
4901
4890
|
precision: number;
|
|
@@ -4989,7 +4978,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
4989
4978
|
} | undefined;
|
|
4990
4979
|
readonly sortable?: boolean | undefined;
|
|
4991
4980
|
readonly inlineHelpText?: string | undefined;
|
|
4992
|
-
readonly caseSensitive?: boolean | undefined;
|
|
4993
4981
|
readonly autonumberFormat?: string | undefined;
|
|
4994
4982
|
readonly index?: boolean | undefined;
|
|
4995
4983
|
readonly type: "text";
|
|
@@ -5008,6 +4996,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5008
4996
|
readonly name?: string | undefined;
|
|
5009
4997
|
readonly precision?: number | undefined;
|
|
5010
4998
|
readonly required?: boolean | undefined;
|
|
4999
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5011
5000
|
readonly multiple?: boolean | undefined;
|
|
5012
5001
|
readonly dependencies?: string[] | undefined;
|
|
5013
5002
|
readonly externalId?: boolean | undefined;
|
|
@@ -5070,7 +5059,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5070
5059
|
relationshipField?: string | undefined;
|
|
5071
5060
|
} | undefined;
|
|
5072
5061
|
readonly language?: string | undefined;
|
|
5073
|
-
readonly maxRating?: number | undefined;
|
|
5074
5062
|
readonly step?: number | undefined;
|
|
5075
5063
|
readonly currencyConfig?: {
|
|
5076
5064
|
precision: number;
|
|
@@ -5164,7 +5152,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5164
5152
|
} | undefined;
|
|
5165
5153
|
readonly sortable?: boolean | undefined;
|
|
5166
5154
|
readonly inlineHelpText?: string | undefined;
|
|
5167
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5168
5155
|
readonly autonumberFormat?: string | undefined;
|
|
5169
5156
|
readonly index?: boolean | undefined;
|
|
5170
5157
|
readonly type: "text";
|
|
@@ -5183,6 +5170,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5183
5170
|
readonly name?: string | undefined;
|
|
5184
5171
|
readonly precision?: number | undefined;
|
|
5185
5172
|
readonly required?: boolean | undefined;
|
|
5173
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5186
5174
|
readonly multiple?: boolean | undefined;
|
|
5187
5175
|
readonly dependencies?: string[] | undefined;
|
|
5188
5176
|
readonly externalId?: boolean | undefined;
|
|
@@ -5245,7 +5233,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5245
5233
|
relationshipField?: string | undefined;
|
|
5246
5234
|
} | undefined;
|
|
5247
5235
|
readonly language?: string | undefined;
|
|
5248
|
-
readonly maxRating?: number | undefined;
|
|
5249
5236
|
readonly step?: number | undefined;
|
|
5250
5237
|
readonly currencyConfig?: {
|
|
5251
5238
|
precision: number;
|
|
@@ -5339,7 +5326,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5339
5326
|
} | undefined;
|
|
5340
5327
|
readonly sortable?: boolean | undefined;
|
|
5341
5328
|
readonly inlineHelpText?: string | undefined;
|
|
5342
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5343
5329
|
readonly autonumberFormat?: string | undefined;
|
|
5344
5330
|
readonly index?: boolean | undefined;
|
|
5345
5331
|
readonly type: "text";
|
|
@@ -5358,6 +5344,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5358
5344
|
readonly name?: string | undefined;
|
|
5359
5345
|
readonly precision?: number | undefined;
|
|
5360
5346
|
readonly required?: boolean | undefined;
|
|
5347
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5361
5348
|
readonly multiple?: boolean | undefined;
|
|
5362
5349
|
readonly dependencies?: string[] | undefined;
|
|
5363
5350
|
readonly externalId?: boolean | undefined;
|
|
@@ -5420,7 +5407,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5420
5407
|
relationshipField?: string | undefined;
|
|
5421
5408
|
} | undefined;
|
|
5422
5409
|
readonly language?: string | undefined;
|
|
5423
|
-
readonly maxRating?: number | undefined;
|
|
5424
5410
|
readonly step?: number | undefined;
|
|
5425
5411
|
readonly currencyConfig?: {
|
|
5426
5412
|
precision: number;
|
|
@@ -5514,7 +5500,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5514
5500
|
} | undefined;
|
|
5515
5501
|
readonly sortable?: boolean | undefined;
|
|
5516
5502
|
readonly inlineHelpText?: string | undefined;
|
|
5517
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5518
5503
|
readonly autonumberFormat?: string | undefined;
|
|
5519
5504
|
readonly index?: boolean | undefined;
|
|
5520
5505
|
readonly type: "text";
|
|
@@ -5533,6 +5518,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5533
5518
|
readonly name?: string | undefined;
|
|
5534
5519
|
readonly precision?: number | undefined;
|
|
5535
5520
|
readonly required?: boolean | undefined;
|
|
5521
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5536
5522
|
readonly multiple?: boolean | undefined;
|
|
5537
5523
|
readonly dependencies?: string[] | undefined;
|
|
5538
5524
|
readonly externalId?: boolean | undefined;
|
|
@@ -5595,7 +5581,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5595
5581
|
relationshipField?: string | undefined;
|
|
5596
5582
|
} | undefined;
|
|
5597
5583
|
readonly language?: string | undefined;
|
|
5598
|
-
readonly maxRating?: number | undefined;
|
|
5599
5584
|
readonly step?: number | undefined;
|
|
5600
5585
|
readonly currencyConfig?: {
|
|
5601
5586
|
precision: number;
|
|
@@ -5689,7 +5674,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5689
5674
|
} | undefined;
|
|
5690
5675
|
readonly sortable?: boolean | undefined;
|
|
5691
5676
|
readonly inlineHelpText?: string | undefined;
|
|
5692
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5693
5677
|
readonly autonumberFormat?: string | undefined;
|
|
5694
5678
|
readonly index?: boolean | undefined;
|
|
5695
5679
|
readonly type: "text";
|
|
@@ -5708,6 +5692,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5708
5692
|
readonly name?: string | undefined;
|
|
5709
5693
|
readonly precision?: number | undefined;
|
|
5710
5694
|
readonly required?: boolean | undefined;
|
|
5695
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5711
5696
|
readonly multiple?: boolean | undefined;
|
|
5712
5697
|
readonly dependencies?: string[] | undefined;
|
|
5713
5698
|
readonly externalId?: boolean | undefined;
|
|
@@ -5770,7 +5755,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5770
5755
|
relationshipField?: string | undefined;
|
|
5771
5756
|
} | undefined;
|
|
5772
5757
|
readonly language?: string | undefined;
|
|
5773
|
-
readonly maxRating?: number | undefined;
|
|
5774
5758
|
readonly step?: number | undefined;
|
|
5775
5759
|
readonly currencyConfig?: {
|
|
5776
5760
|
precision: number;
|
|
@@ -5864,7 +5848,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5864
5848
|
} | undefined;
|
|
5865
5849
|
readonly sortable?: boolean | undefined;
|
|
5866
5850
|
readonly inlineHelpText?: string | undefined;
|
|
5867
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5868
5851
|
readonly autonumberFormat?: string | undefined;
|
|
5869
5852
|
readonly index?: boolean | undefined;
|
|
5870
5853
|
readonly type: "select";
|
|
@@ -5883,6 +5866,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5883
5866
|
readonly name?: string | undefined;
|
|
5884
5867
|
readonly precision?: number | undefined;
|
|
5885
5868
|
readonly required?: boolean | undefined;
|
|
5869
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5886
5870
|
readonly multiple?: boolean | undefined;
|
|
5887
5871
|
readonly dependencies?: string[] | undefined;
|
|
5888
5872
|
readonly externalId?: boolean | undefined;
|
|
@@ -5945,7 +5929,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
5945
5929
|
relationshipField?: string | undefined;
|
|
5946
5930
|
} | undefined;
|
|
5947
5931
|
readonly language?: string | undefined;
|
|
5948
|
-
readonly maxRating?: number | undefined;
|
|
5949
5932
|
readonly step?: number | undefined;
|
|
5950
5933
|
readonly currencyConfig?: {
|
|
5951
5934
|
precision: number;
|
|
@@ -6039,7 +6022,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
6039
6022
|
} | undefined;
|
|
6040
6023
|
readonly sortable?: boolean | undefined;
|
|
6041
6024
|
readonly inlineHelpText?: string | undefined;
|
|
6042
|
-
readonly caseSensitive?: boolean | undefined;
|
|
6043
6025
|
readonly autonumberFormat?: string | undefined;
|
|
6044
6026
|
readonly index?: boolean | undefined;
|
|
6045
6027
|
readonly type: "datetime";
|
|
@@ -6058,6 +6040,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
6058
6040
|
readonly name?: string | undefined;
|
|
6059
6041
|
readonly precision?: number | undefined;
|
|
6060
6042
|
readonly required?: boolean | undefined;
|
|
6043
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6061
6044
|
readonly multiple?: boolean | undefined;
|
|
6062
6045
|
readonly dependencies?: string[] | undefined;
|
|
6063
6046
|
readonly externalId?: boolean | undefined;
|
|
@@ -6120,7 +6103,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
6120
6103
|
relationshipField?: string | undefined;
|
|
6121
6104
|
} | undefined;
|
|
6122
6105
|
readonly language?: string | undefined;
|
|
6123
|
-
readonly maxRating?: number | undefined;
|
|
6124
6106
|
readonly step?: number | undefined;
|
|
6125
6107
|
readonly currencyConfig?: {
|
|
6126
6108
|
precision: number;
|
|
@@ -6214,7 +6196,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
6214
6196
|
} | undefined;
|
|
6215
6197
|
readonly sortable?: boolean | undefined;
|
|
6216
6198
|
readonly inlineHelpText?: string | undefined;
|
|
6217
|
-
readonly caseSensitive?: boolean | undefined;
|
|
6218
6199
|
readonly autonumberFormat?: string | undefined;
|
|
6219
6200
|
readonly index?: boolean | undefined;
|
|
6220
6201
|
readonly type: "datetime";
|
|
@@ -6250,7 +6231,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6250
6231
|
abstract: boolean;
|
|
6251
6232
|
datasource: string;
|
|
6252
6233
|
fields: Record<string, {
|
|
6253
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
6234
|
+
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
6254
6235
|
required: boolean;
|
|
6255
6236
|
searchable: boolean;
|
|
6256
6237
|
multiple: boolean;
|
|
@@ -6324,6 +6305,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6324
6305
|
generatedBy?: string | undefined;
|
|
6325
6306
|
} | undefined;
|
|
6326
6307
|
} | undefined;
|
|
6308
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6327
6309
|
summaryOperations?: {
|
|
6328
6310
|
object: string;
|
|
6329
6311
|
field: string;
|
|
@@ -6331,7 +6313,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
6331
6313
|
relationshipField?: string | undefined;
|
|
6332
6314
|
} | undefined;
|
|
6333
6315
|
language?: string | undefined;
|
|
6334
|
-
maxRating?: number | undefined;
|
|
6335
6316
|
step?: number | undefined;
|
|
6336
6317
|
currencyConfig?: {
|
|
6337
6318
|
precision: number;
|
|
@@ -6461,7 +6442,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
6461
6442
|
requiredPermissions?: string[] | undefined;
|
|
6462
6443
|
system?: boolean | undefined;
|
|
6463
6444
|
inlineHelpText?: string | undefined;
|
|
6464
|
-
caseSensitive?: boolean | undefined;
|
|
6465
6445
|
autonumberFormat?: string | undefined;
|
|
6466
6446
|
}>;
|
|
6467
6447
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -6549,12 +6529,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
6549
6529
|
versionField: string;
|
|
6550
6530
|
retentionDays?: number | undefined;
|
|
6551
6531
|
} | undefined;
|
|
6552
|
-
partitioning?: {
|
|
6553
|
-
enabled: boolean;
|
|
6554
|
-
strategy: "hash" | "list" | "range";
|
|
6555
|
-
key: string;
|
|
6556
|
-
interval?: string | undefined;
|
|
6557
|
-
} | undefined;
|
|
6558
6532
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
6559
6533
|
activityMilestones?: {
|
|
6560
6534
|
field: string;
|
|
@@ -6885,7 +6859,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
6885
6859
|
debounceMs?: number | undefined;
|
|
6886
6860
|
} | undefined;
|
|
6887
6861
|
}> | undefined;
|
|
6888
|
-
defaultDetailForm?: string | undefined;
|
|
6889
6862
|
searchableFields?: string[] | undefined;
|
|
6890
6863
|
search?: {
|
|
6891
6864
|
fields: string[];
|
|
@@ -6902,7 +6875,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6902
6875
|
trash: boolean;
|
|
6903
6876
|
mru: boolean;
|
|
6904
6877
|
clone: boolean;
|
|
6905
|
-
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "
|
|
6878
|
+
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "get" | "update" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
6906
6879
|
} | undefined;
|
|
6907
6880
|
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
6908
6881
|
publicSharing?: {
|
|
@@ -6930,6 +6903,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6930
6903
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
6931
6904
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
6932
6905
|
target?: string | undefined;
|
|
6906
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
6933
6907
|
body?: {
|
|
6934
6908
|
language: "expression";
|
|
6935
6909
|
source: string;
|
|
@@ -6947,7 +6921,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6947
6921
|
field?: string | undefined;
|
|
6948
6922
|
objectOverride?: string | undefined;
|
|
6949
6923
|
label?: string | undefined;
|
|
6950
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
6924
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
6951
6925
|
options?: {
|
|
6952
6926
|
label: string;
|
|
6953
6927
|
value: string;
|
|
@@ -7053,6 +7027,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7053
7027
|
readonly name?: string | undefined;
|
|
7054
7028
|
readonly precision?: number | undefined;
|
|
7055
7029
|
readonly required?: boolean | undefined;
|
|
7030
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7056
7031
|
readonly multiple?: boolean | undefined;
|
|
7057
7032
|
readonly dependencies?: string[] | undefined;
|
|
7058
7033
|
readonly externalId?: boolean | undefined;
|
|
@@ -7115,7 +7090,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
7115
7090
|
relationshipField?: string | undefined;
|
|
7116
7091
|
} | undefined;
|
|
7117
7092
|
readonly language?: string | undefined;
|
|
7118
|
-
readonly maxRating?: number | undefined;
|
|
7119
7093
|
readonly step?: number | undefined;
|
|
7120
7094
|
readonly currencyConfig?: {
|
|
7121
7095
|
precision: number;
|
|
@@ -7209,7 +7183,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
7209
7183
|
} | undefined;
|
|
7210
7184
|
readonly sortable?: boolean | undefined;
|
|
7211
7185
|
readonly inlineHelpText?: string | undefined;
|
|
7212
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7213
7186
|
readonly autonumberFormat?: string | undefined;
|
|
7214
7187
|
readonly index?: boolean | undefined;
|
|
7215
7188
|
readonly type: "text";
|
|
@@ -7228,6 +7201,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7228
7201
|
readonly name?: string | undefined;
|
|
7229
7202
|
readonly precision?: number | undefined;
|
|
7230
7203
|
readonly required?: boolean | undefined;
|
|
7204
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7231
7205
|
readonly multiple?: boolean | undefined;
|
|
7232
7206
|
readonly dependencies?: string[] | undefined;
|
|
7233
7207
|
readonly externalId?: boolean | undefined;
|
|
@@ -7290,7 +7264,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
7290
7264
|
relationshipField?: string | undefined;
|
|
7291
7265
|
} | undefined;
|
|
7292
7266
|
readonly language?: string | undefined;
|
|
7293
|
-
readonly maxRating?: number | undefined;
|
|
7294
7267
|
readonly step?: number | undefined;
|
|
7295
7268
|
readonly currencyConfig?: {
|
|
7296
7269
|
precision: number;
|
|
@@ -7384,7 +7357,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
7384
7357
|
} | undefined;
|
|
7385
7358
|
readonly sortable?: boolean | undefined;
|
|
7386
7359
|
readonly inlineHelpText?: string | undefined;
|
|
7387
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7388
7360
|
readonly autonumberFormat?: string | undefined;
|
|
7389
7361
|
readonly index?: boolean | undefined;
|
|
7390
7362
|
readonly type: "text";
|
|
@@ -7403,6 +7375,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7403
7375
|
readonly name?: string | undefined;
|
|
7404
7376
|
readonly precision?: number | undefined;
|
|
7405
7377
|
readonly required?: boolean | undefined;
|
|
7378
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7406
7379
|
readonly multiple?: boolean | undefined;
|
|
7407
7380
|
readonly dependencies?: string[] | undefined;
|
|
7408
7381
|
readonly externalId?: boolean | undefined;
|
|
@@ -7465,7 +7438,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
7465
7438
|
relationshipField?: string | undefined;
|
|
7466
7439
|
} | undefined;
|
|
7467
7440
|
readonly language?: string | undefined;
|
|
7468
|
-
readonly maxRating?: number | undefined;
|
|
7469
7441
|
readonly step?: number | undefined;
|
|
7470
7442
|
readonly currencyConfig?: {
|
|
7471
7443
|
precision: number;
|
|
@@ -7559,7 +7531,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
7559
7531
|
} | undefined;
|
|
7560
7532
|
readonly sortable?: boolean | undefined;
|
|
7561
7533
|
readonly inlineHelpText?: string | undefined;
|
|
7562
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7563
7534
|
readonly autonumberFormat?: string | undefined;
|
|
7564
7535
|
readonly index?: boolean | undefined;
|
|
7565
7536
|
readonly type: "text";
|
|
@@ -7578,6 +7549,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7578
7549
|
readonly name?: string | undefined;
|
|
7579
7550
|
readonly precision?: number | undefined;
|
|
7580
7551
|
readonly required?: boolean | undefined;
|
|
7552
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7581
7553
|
readonly multiple?: boolean | undefined;
|
|
7582
7554
|
readonly dependencies?: string[] | undefined;
|
|
7583
7555
|
readonly externalId?: boolean | undefined;
|
|
@@ -7640,7 +7612,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
7640
7612
|
relationshipField?: string | undefined;
|
|
7641
7613
|
} | undefined;
|
|
7642
7614
|
readonly language?: string | undefined;
|
|
7643
|
-
readonly maxRating?: number | undefined;
|
|
7644
7615
|
readonly step?: number | undefined;
|
|
7645
7616
|
readonly currencyConfig?: {
|
|
7646
7617
|
precision: number;
|
|
@@ -7734,7 +7705,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
7734
7705
|
} | undefined;
|
|
7735
7706
|
readonly sortable?: boolean | undefined;
|
|
7736
7707
|
readonly inlineHelpText?: string | undefined;
|
|
7737
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7738
7708
|
readonly autonumberFormat?: string | undefined;
|
|
7739
7709
|
readonly index?: boolean | undefined;
|
|
7740
7710
|
readonly type: "text";
|
|
@@ -7753,6 +7723,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7753
7723
|
readonly name?: string | undefined;
|
|
7754
7724
|
readonly precision?: number | undefined;
|
|
7755
7725
|
readonly required?: boolean | undefined;
|
|
7726
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7756
7727
|
readonly multiple?: boolean | undefined;
|
|
7757
7728
|
readonly dependencies?: string[] | undefined;
|
|
7758
7729
|
readonly externalId?: boolean | undefined;
|
|
@@ -7815,7 +7786,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
7815
7786
|
relationshipField?: string | undefined;
|
|
7816
7787
|
} | undefined;
|
|
7817
7788
|
readonly language?: string | undefined;
|
|
7818
|
-
readonly maxRating?: number | undefined;
|
|
7819
7789
|
readonly step?: number | undefined;
|
|
7820
7790
|
readonly currencyConfig?: {
|
|
7821
7791
|
precision: number;
|
|
@@ -7909,7 +7879,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
7909
7879
|
} | undefined;
|
|
7910
7880
|
readonly sortable?: boolean | undefined;
|
|
7911
7881
|
readonly inlineHelpText?: string | undefined;
|
|
7912
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7913
7882
|
readonly autonumberFormat?: string | undefined;
|
|
7914
7883
|
readonly index?: boolean | undefined;
|
|
7915
7884
|
readonly type: "text";
|
|
@@ -7928,6 +7897,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7928
7897
|
readonly name?: string | undefined;
|
|
7929
7898
|
readonly precision?: number | undefined;
|
|
7930
7899
|
readonly required?: boolean | undefined;
|
|
7900
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7931
7901
|
readonly multiple?: boolean | undefined;
|
|
7932
7902
|
readonly dependencies?: string[] | undefined;
|
|
7933
7903
|
readonly externalId?: boolean | undefined;
|
|
@@ -7990,7 +7960,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
7990
7960
|
relationshipField?: string | undefined;
|
|
7991
7961
|
} | undefined;
|
|
7992
7962
|
readonly language?: string | undefined;
|
|
7993
|
-
readonly maxRating?: number | undefined;
|
|
7994
7963
|
readonly step?: number | undefined;
|
|
7995
7964
|
readonly currencyConfig?: {
|
|
7996
7965
|
precision: number;
|
|
@@ -8084,7 +8053,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8084
8053
|
} | undefined;
|
|
8085
8054
|
readonly sortable?: boolean | undefined;
|
|
8086
8055
|
readonly inlineHelpText?: string | undefined;
|
|
8087
|
-
readonly caseSensitive?: boolean | undefined;
|
|
8088
8056
|
readonly autonumberFormat?: string | undefined;
|
|
8089
8057
|
readonly index?: boolean | undefined;
|
|
8090
8058
|
readonly type: "text";
|
|
@@ -8103,6 +8071,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8103
8071
|
readonly name?: string | undefined;
|
|
8104
8072
|
readonly precision?: number | undefined;
|
|
8105
8073
|
readonly required?: boolean | undefined;
|
|
8074
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8106
8075
|
readonly multiple?: boolean | undefined;
|
|
8107
8076
|
readonly dependencies?: string[] | undefined;
|
|
8108
8077
|
readonly externalId?: boolean | undefined;
|
|
@@ -8165,7 +8134,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8165
8134
|
relationshipField?: string | undefined;
|
|
8166
8135
|
} | undefined;
|
|
8167
8136
|
readonly language?: string | undefined;
|
|
8168
|
-
readonly maxRating?: number | undefined;
|
|
8169
8137
|
readonly step?: number | undefined;
|
|
8170
8138
|
readonly currencyConfig?: {
|
|
8171
8139
|
precision: number;
|
|
@@ -8259,7 +8227,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8259
8227
|
} | undefined;
|
|
8260
8228
|
readonly sortable?: boolean | undefined;
|
|
8261
8229
|
readonly inlineHelpText?: string | undefined;
|
|
8262
|
-
readonly caseSensitive?: boolean | undefined;
|
|
8263
8230
|
readonly autonumberFormat?: string | undefined;
|
|
8264
8231
|
readonly index?: boolean | undefined;
|
|
8265
8232
|
readonly type: "json";
|
|
@@ -8278,6 +8245,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8278
8245
|
readonly name?: string | undefined;
|
|
8279
8246
|
readonly precision?: number | undefined;
|
|
8280
8247
|
readonly required?: boolean | undefined;
|
|
8248
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8281
8249
|
readonly multiple?: boolean | undefined;
|
|
8282
8250
|
readonly dependencies?: string[] | undefined;
|
|
8283
8251
|
readonly externalId?: boolean | undefined;
|
|
@@ -8340,7 +8308,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8340
8308
|
relationshipField?: string | undefined;
|
|
8341
8309
|
} | undefined;
|
|
8342
8310
|
readonly language?: string | undefined;
|
|
8343
|
-
readonly maxRating?: number | undefined;
|
|
8344
8311
|
readonly step?: number | undefined;
|
|
8345
8312
|
readonly currencyConfig?: {
|
|
8346
8313
|
precision: number;
|
|
@@ -8434,7 +8401,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8434
8401
|
} | undefined;
|
|
8435
8402
|
readonly sortable?: boolean | undefined;
|
|
8436
8403
|
readonly inlineHelpText?: string | undefined;
|
|
8437
|
-
readonly caseSensitive?: boolean | undefined;
|
|
8438
8404
|
readonly autonumberFormat?: string | undefined;
|
|
8439
8405
|
readonly index?: boolean | undefined;
|
|
8440
8406
|
readonly type: "select";
|
|
@@ -8453,6 +8419,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8453
8419
|
readonly name?: string | undefined;
|
|
8454
8420
|
readonly precision?: number | undefined;
|
|
8455
8421
|
readonly required?: boolean | undefined;
|
|
8422
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8456
8423
|
readonly multiple?: boolean | undefined;
|
|
8457
8424
|
readonly dependencies?: string[] | undefined;
|
|
8458
8425
|
readonly externalId?: boolean | undefined;
|
|
@@ -8515,7 +8482,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8515
8482
|
relationshipField?: string | undefined;
|
|
8516
8483
|
} | undefined;
|
|
8517
8484
|
readonly language?: string | undefined;
|
|
8518
|
-
readonly maxRating?: number | undefined;
|
|
8519
8485
|
readonly step?: number | undefined;
|
|
8520
8486
|
readonly currencyConfig?: {
|
|
8521
8487
|
precision: number;
|
|
@@ -8609,7 +8575,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8609
8575
|
} | undefined;
|
|
8610
8576
|
readonly sortable?: boolean | undefined;
|
|
8611
8577
|
readonly inlineHelpText?: string | undefined;
|
|
8612
|
-
readonly caseSensitive?: boolean | undefined;
|
|
8613
8578
|
readonly autonumberFormat?: string | undefined;
|
|
8614
8579
|
readonly index?: boolean | undefined;
|
|
8615
8580
|
readonly type: "number";
|
|
@@ -8628,6 +8593,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8628
8593
|
readonly name?: string | undefined;
|
|
8629
8594
|
readonly precision?: number | undefined;
|
|
8630
8595
|
readonly required?: boolean | undefined;
|
|
8596
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8631
8597
|
readonly multiple?: boolean | undefined;
|
|
8632
8598
|
readonly dependencies?: string[] | undefined;
|
|
8633
8599
|
readonly externalId?: boolean | undefined;
|
|
@@ -8690,7 +8656,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8690
8656
|
relationshipField?: string | undefined;
|
|
8691
8657
|
} | undefined;
|
|
8692
8658
|
readonly language?: string | undefined;
|
|
8693
|
-
readonly maxRating?: number | undefined;
|
|
8694
8659
|
readonly step?: number | undefined;
|
|
8695
8660
|
readonly currencyConfig?: {
|
|
8696
8661
|
precision: number;
|
|
@@ -8784,7 +8749,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8784
8749
|
} | undefined;
|
|
8785
8750
|
readonly sortable?: boolean | undefined;
|
|
8786
8751
|
readonly inlineHelpText?: string | undefined;
|
|
8787
|
-
readonly caseSensitive?: boolean | undefined;
|
|
8788
8752
|
readonly autonumberFormat?: string | undefined;
|
|
8789
8753
|
readonly index?: boolean | undefined;
|
|
8790
8754
|
readonly type: "number";
|
|
@@ -8803,6 +8767,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8803
8767
|
readonly name?: string | undefined;
|
|
8804
8768
|
readonly precision?: number | undefined;
|
|
8805
8769
|
readonly required?: boolean | undefined;
|
|
8770
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8806
8771
|
readonly multiple?: boolean | undefined;
|
|
8807
8772
|
readonly dependencies?: string[] | undefined;
|
|
8808
8773
|
readonly externalId?: boolean | undefined;
|
|
@@ -8865,7 +8830,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8865
8830
|
relationshipField?: string | undefined;
|
|
8866
8831
|
} | undefined;
|
|
8867
8832
|
readonly language?: string | undefined;
|
|
8868
|
-
readonly maxRating?: number | undefined;
|
|
8869
8833
|
readonly step?: number | undefined;
|
|
8870
8834
|
readonly currencyConfig?: {
|
|
8871
8835
|
precision: number;
|
|
@@ -8959,7 +8923,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
8959
8923
|
} | undefined;
|
|
8960
8924
|
readonly sortable?: boolean | undefined;
|
|
8961
8925
|
readonly inlineHelpText?: string | undefined;
|
|
8962
|
-
readonly caseSensitive?: boolean | undefined;
|
|
8963
8926
|
readonly autonumberFormat?: string | undefined;
|
|
8964
8927
|
readonly index?: boolean | undefined;
|
|
8965
8928
|
readonly type: "text";
|
|
@@ -8978,6 +8941,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8978
8941
|
readonly name?: string | undefined;
|
|
8979
8942
|
readonly precision?: number | undefined;
|
|
8980
8943
|
readonly required?: boolean | undefined;
|
|
8944
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8981
8945
|
readonly multiple?: boolean | undefined;
|
|
8982
8946
|
readonly dependencies?: string[] | undefined;
|
|
8983
8947
|
readonly externalId?: boolean | undefined;
|
|
@@ -9040,7 +9004,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9040
9004
|
relationshipField?: string | undefined;
|
|
9041
9005
|
} | undefined;
|
|
9042
9006
|
readonly language?: string | undefined;
|
|
9043
|
-
readonly maxRating?: number | undefined;
|
|
9044
9007
|
readonly step?: number | undefined;
|
|
9045
9008
|
readonly currencyConfig?: {
|
|
9046
9009
|
precision: number;
|
|
@@ -9134,7 +9097,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9134
9097
|
} | undefined;
|
|
9135
9098
|
readonly sortable?: boolean | undefined;
|
|
9136
9099
|
readonly inlineHelpText?: string | undefined;
|
|
9137
|
-
readonly caseSensitive?: boolean | undefined;
|
|
9138
9100
|
readonly autonumberFormat?: string | undefined;
|
|
9139
9101
|
readonly index?: boolean | undefined;
|
|
9140
9102
|
readonly type: "number";
|
|
@@ -9153,6 +9115,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9153
9115
|
readonly name?: string | undefined;
|
|
9154
9116
|
readonly precision?: number | undefined;
|
|
9155
9117
|
readonly required?: boolean | undefined;
|
|
9118
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9156
9119
|
readonly multiple?: boolean | undefined;
|
|
9157
9120
|
readonly dependencies?: string[] | undefined;
|
|
9158
9121
|
readonly externalId?: boolean | undefined;
|
|
@@ -9215,7 +9178,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9215
9178
|
relationshipField?: string | undefined;
|
|
9216
9179
|
} | undefined;
|
|
9217
9180
|
readonly language?: string | undefined;
|
|
9218
|
-
readonly maxRating?: number | undefined;
|
|
9219
9181
|
readonly step?: number | undefined;
|
|
9220
9182
|
readonly currencyConfig?: {
|
|
9221
9183
|
precision: number;
|
|
@@ -9309,7 +9271,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9309
9271
|
} | undefined;
|
|
9310
9272
|
readonly sortable?: boolean | undefined;
|
|
9311
9273
|
readonly inlineHelpText?: string | undefined;
|
|
9312
|
-
readonly caseSensitive?: boolean | undefined;
|
|
9313
9274
|
readonly autonumberFormat?: string | undefined;
|
|
9314
9275
|
readonly index?: boolean | undefined;
|
|
9315
9276
|
readonly type: "number";
|
|
@@ -9328,6 +9289,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9328
9289
|
readonly name?: string | undefined;
|
|
9329
9290
|
readonly precision?: number | undefined;
|
|
9330
9291
|
readonly required?: boolean | undefined;
|
|
9292
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9331
9293
|
readonly multiple?: boolean | undefined;
|
|
9332
9294
|
readonly dependencies?: string[] | undefined;
|
|
9333
9295
|
readonly externalId?: boolean | undefined;
|
|
@@ -9390,7 +9352,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9390
9352
|
relationshipField?: string | undefined;
|
|
9391
9353
|
} | undefined;
|
|
9392
9354
|
readonly language?: string | undefined;
|
|
9393
|
-
readonly maxRating?: number | undefined;
|
|
9394
9355
|
readonly step?: number | undefined;
|
|
9395
9356
|
readonly currencyConfig?: {
|
|
9396
9357
|
precision: number;
|
|
@@ -9484,7 +9445,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9484
9445
|
} | undefined;
|
|
9485
9446
|
readonly sortable?: boolean | undefined;
|
|
9486
9447
|
readonly inlineHelpText?: string | undefined;
|
|
9487
|
-
readonly caseSensitive?: boolean | undefined;
|
|
9488
9448
|
readonly autonumberFormat?: string | undefined;
|
|
9489
9449
|
readonly index?: boolean | undefined;
|
|
9490
9450
|
readonly type: "number";
|
|
@@ -9503,6 +9463,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9503
9463
|
readonly name?: string | undefined;
|
|
9504
9464
|
readonly precision?: number | undefined;
|
|
9505
9465
|
readonly required?: boolean | undefined;
|
|
9466
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9506
9467
|
readonly multiple?: boolean | undefined;
|
|
9507
9468
|
readonly dependencies?: string[] | undefined;
|
|
9508
9469
|
readonly externalId?: boolean | undefined;
|
|
@@ -9565,7 +9526,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9565
9526
|
relationshipField?: string | undefined;
|
|
9566
9527
|
} | undefined;
|
|
9567
9528
|
readonly language?: string | undefined;
|
|
9568
|
-
readonly maxRating?: number | undefined;
|
|
9569
9529
|
readonly step?: number | undefined;
|
|
9570
9530
|
readonly currencyConfig?: {
|
|
9571
9531
|
precision: number;
|
|
@@ -9659,7 +9619,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9659
9619
|
} | undefined;
|
|
9660
9620
|
readonly sortable?: boolean | undefined;
|
|
9661
9621
|
readonly inlineHelpText?: string | undefined;
|
|
9662
|
-
readonly caseSensitive?: boolean | undefined;
|
|
9663
9622
|
readonly autonumberFormat?: string | undefined;
|
|
9664
9623
|
readonly index?: boolean | undefined;
|
|
9665
9624
|
readonly type: "textarea";
|
|
@@ -9678,6 +9637,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9678
9637
|
readonly name?: string | undefined;
|
|
9679
9638
|
readonly precision?: number | undefined;
|
|
9680
9639
|
readonly required?: boolean | undefined;
|
|
9640
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9681
9641
|
readonly multiple?: boolean | undefined;
|
|
9682
9642
|
readonly dependencies?: string[] | undefined;
|
|
9683
9643
|
readonly externalId?: boolean | undefined;
|
|
@@ -9740,7 +9700,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9740
9700
|
relationshipField?: string | undefined;
|
|
9741
9701
|
} | undefined;
|
|
9742
9702
|
readonly language?: string | undefined;
|
|
9743
|
-
readonly maxRating?: number | undefined;
|
|
9744
9703
|
readonly step?: number | undefined;
|
|
9745
9704
|
readonly currencyConfig?: {
|
|
9746
9705
|
precision: number;
|
|
@@ -9834,7 +9793,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9834
9793
|
} | undefined;
|
|
9835
9794
|
readonly sortable?: boolean | undefined;
|
|
9836
9795
|
readonly inlineHelpText?: string | undefined;
|
|
9837
|
-
readonly caseSensitive?: boolean | undefined;
|
|
9838
9796
|
readonly autonumberFormat?: string | undefined;
|
|
9839
9797
|
readonly index?: boolean | undefined;
|
|
9840
9798
|
readonly type: "datetime";
|
|
@@ -9853,6 +9811,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9853
9811
|
readonly name?: string | undefined;
|
|
9854
9812
|
readonly precision?: number | undefined;
|
|
9855
9813
|
readonly required?: boolean | undefined;
|
|
9814
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9856
9815
|
readonly multiple?: boolean | undefined;
|
|
9857
9816
|
readonly dependencies?: string[] | undefined;
|
|
9858
9817
|
readonly externalId?: boolean | undefined;
|
|
@@ -9915,7 +9874,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
9915
9874
|
relationshipField?: string | undefined;
|
|
9916
9875
|
} | undefined;
|
|
9917
9876
|
readonly language?: string | undefined;
|
|
9918
|
-
readonly maxRating?: number | undefined;
|
|
9919
9877
|
readonly step?: number | undefined;
|
|
9920
9878
|
readonly currencyConfig?: {
|
|
9921
9879
|
precision: number;
|
|
@@ -10009,7 +9967,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
10009
9967
|
} | undefined;
|
|
10010
9968
|
readonly sortable?: boolean | undefined;
|
|
10011
9969
|
readonly inlineHelpText?: string | undefined;
|
|
10012
|
-
readonly caseSensitive?: boolean | undefined;
|
|
10013
9970
|
readonly autonumberFormat?: string | undefined;
|
|
10014
9971
|
readonly index?: boolean | undefined;
|
|
10015
9972
|
readonly type: "datetime";
|
|
@@ -10053,7 +10010,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10053
10010
|
abstract: boolean;
|
|
10054
10011
|
datasource: string;
|
|
10055
10012
|
fields: Record<string, {
|
|
10056
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
10013
|
+
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
10057
10014
|
required: boolean;
|
|
10058
10015
|
searchable: boolean;
|
|
10059
10016
|
multiple: boolean;
|
|
@@ -10127,6 +10084,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10127
10084
|
generatedBy?: string | undefined;
|
|
10128
10085
|
} | undefined;
|
|
10129
10086
|
} | undefined;
|
|
10087
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
10130
10088
|
summaryOperations?: {
|
|
10131
10089
|
object: string;
|
|
10132
10090
|
field: string;
|
|
@@ -10134,7 +10092,6 @@ declare const NotificationPreference: Omit<{
|
|
|
10134
10092
|
relationshipField?: string | undefined;
|
|
10135
10093
|
} | undefined;
|
|
10136
10094
|
language?: string | undefined;
|
|
10137
|
-
maxRating?: number | undefined;
|
|
10138
10095
|
step?: number | undefined;
|
|
10139
10096
|
currencyConfig?: {
|
|
10140
10097
|
precision: number;
|
|
@@ -10264,7 +10221,6 @@ declare const NotificationPreference: Omit<{
|
|
|
10264
10221
|
requiredPermissions?: string[] | undefined;
|
|
10265
10222
|
system?: boolean | undefined;
|
|
10266
10223
|
inlineHelpText?: string | undefined;
|
|
10267
|
-
caseSensitive?: boolean | undefined;
|
|
10268
10224
|
autonumberFormat?: string | undefined;
|
|
10269
10225
|
}>;
|
|
10270
10226
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -10352,12 +10308,6 @@ declare const NotificationPreference: Omit<{
|
|
|
10352
10308
|
versionField: string;
|
|
10353
10309
|
retentionDays?: number | undefined;
|
|
10354
10310
|
} | undefined;
|
|
10355
|
-
partitioning?: {
|
|
10356
|
-
enabled: boolean;
|
|
10357
|
-
strategy: "hash" | "list" | "range";
|
|
10358
|
-
key: string;
|
|
10359
|
-
interval?: string | undefined;
|
|
10360
|
-
} | undefined;
|
|
10361
10311
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
10362
10312
|
activityMilestones?: {
|
|
10363
10313
|
field: string;
|
|
@@ -10688,7 +10638,6 @@ declare const NotificationPreference: Omit<{
|
|
|
10688
10638
|
debounceMs?: number | undefined;
|
|
10689
10639
|
} | undefined;
|
|
10690
10640
|
}> | undefined;
|
|
10691
|
-
defaultDetailForm?: string | undefined;
|
|
10692
10641
|
searchableFields?: string[] | undefined;
|
|
10693
10642
|
search?: {
|
|
10694
10643
|
fields: string[];
|
|
@@ -10705,7 +10654,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10705
10654
|
trash: boolean;
|
|
10706
10655
|
mru: boolean;
|
|
10707
10656
|
clone: boolean;
|
|
10708
|
-
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "
|
|
10657
|
+
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "get" | "update" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
10709
10658
|
} | undefined;
|
|
10710
10659
|
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
10711
10660
|
publicSharing?: {
|
|
@@ -10733,6 +10682,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10733
10682
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
10734
10683
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
10735
10684
|
target?: string | undefined;
|
|
10685
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
10736
10686
|
body?: {
|
|
10737
10687
|
language: "expression";
|
|
10738
10688
|
source: string;
|
|
@@ -10750,7 +10700,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10750
10700
|
field?: string | undefined;
|
|
10751
10701
|
objectOverride?: string | undefined;
|
|
10752
10702
|
label?: string | undefined;
|
|
10753
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
10703
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
10754
10704
|
options?: {
|
|
10755
10705
|
label: string;
|
|
10756
10706
|
value: string;
|
|
@@ -10856,6 +10806,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10856
10806
|
readonly name?: string | undefined;
|
|
10857
10807
|
readonly precision?: number | undefined;
|
|
10858
10808
|
readonly required?: boolean | undefined;
|
|
10809
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
10859
10810
|
readonly multiple?: boolean | undefined;
|
|
10860
10811
|
readonly dependencies?: string[] | undefined;
|
|
10861
10812
|
readonly externalId?: boolean | undefined;
|
|
@@ -10918,7 +10869,6 @@ declare const NotificationPreference: Omit<{
|
|
|
10918
10869
|
relationshipField?: string | undefined;
|
|
10919
10870
|
} | undefined;
|
|
10920
10871
|
readonly language?: string | undefined;
|
|
10921
|
-
readonly maxRating?: number | undefined;
|
|
10922
10872
|
readonly step?: number | undefined;
|
|
10923
10873
|
readonly currencyConfig?: {
|
|
10924
10874
|
precision: number;
|
|
@@ -11012,7 +10962,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11012
10962
|
} | undefined;
|
|
11013
10963
|
readonly sortable?: boolean | undefined;
|
|
11014
10964
|
readonly inlineHelpText?: string | undefined;
|
|
11015
|
-
readonly caseSensitive?: boolean | undefined;
|
|
11016
10965
|
readonly autonumberFormat?: string | undefined;
|
|
11017
10966
|
readonly index?: boolean | undefined;
|
|
11018
10967
|
readonly type: "text";
|
|
@@ -11031,6 +10980,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11031
10980
|
readonly name?: string | undefined;
|
|
11032
10981
|
readonly precision?: number | undefined;
|
|
11033
10982
|
readonly required?: boolean | undefined;
|
|
10983
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11034
10984
|
readonly multiple?: boolean | undefined;
|
|
11035
10985
|
readonly dependencies?: string[] | undefined;
|
|
11036
10986
|
readonly externalId?: boolean | undefined;
|
|
@@ -11093,7 +11043,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11093
11043
|
relationshipField?: string | undefined;
|
|
11094
11044
|
} | undefined;
|
|
11095
11045
|
readonly language?: string | undefined;
|
|
11096
|
-
readonly maxRating?: number | undefined;
|
|
11097
11046
|
readonly step?: number | undefined;
|
|
11098
11047
|
readonly currencyConfig?: {
|
|
11099
11048
|
precision: number;
|
|
@@ -11187,7 +11136,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11187
11136
|
} | undefined;
|
|
11188
11137
|
readonly sortable?: boolean | undefined;
|
|
11189
11138
|
readonly inlineHelpText?: string | undefined;
|
|
11190
|
-
readonly caseSensitive?: boolean | undefined;
|
|
11191
11139
|
readonly autonumberFormat?: string | undefined;
|
|
11192
11140
|
readonly index?: boolean | undefined;
|
|
11193
11141
|
readonly type: "text";
|
|
@@ -11206,6 +11154,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11206
11154
|
readonly name?: string | undefined;
|
|
11207
11155
|
readonly precision?: number | undefined;
|
|
11208
11156
|
readonly required?: boolean | undefined;
|
|
11157
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11209
11158
|
readonly multiple?: boolean | undefined;
|
|
11210
11159
|
readonly dependencies?: string[] | undefined;
|
|
11211
11160
|
readonly externalId?: boolean | undefined;
|
|
@@ -11268,7 +11217,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11268
11217
|
relationshipField?: string | undefined;
|
|
11269
11218
|
} | undefined;
|
|
11270
11219
|
readonly language?: string | undefined;
|
|
11271
|
-
readonly maxRating?: number | undefined;
|
|
11272
11220
|
readonly step?: number | undefined;
|
|
11273
11221
|
readonly currencyConfig?: {
|
|
11274
11222
|
precision: number;
|
|
@@ -11362,7 +11310,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11362
11310
|
} | undefined;
|
|
11363
11311
|
readonly sortable?: boolean | undefined;
|
|
11364
11312
|
readonly inlineHelpText?: string | undefined;
|
|
11365
|
-
readonly caseSensitive?: boolean | undefined;
|
|
11366
11313
|
readonly autonumberFormat?: string | undefined;
|
|
11367
11314
|
readonly index?: boolean | undefined;
|
|
11368
11315
|
readonly type: "text";
|
|
@@ -11381,6 +11328,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11381
11328
|
readonly name?: string | undefined;
|
|
11382
11329
|
readonly precision?: number | undefined;
|
|
11383
11330
|
readonly required?: boolean | undefined;
|
|
11331
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11384
11332
|
readonly multiple?: boolean | undefined;
|
|
11385
11333
|
readonly dependencies?: string[] | undefined;
|
|
11386
11334
|
readonly externalId?: boolean | undefined;
|
|
@@ -11443,7 +11391,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11443
11391
|
relationshipField?: string | undefined;
|
|
11444
11392
|
} | undefined;
|
|
11445
11393
|
readonly language?: string | undefined;
|
|
11446
|
-
readonly maxRating?: number | undefined;
|
|
11447
11394
|
readonly step?: number | undefined;
|
|
11448
11395
|
readonly currencyConfig?: {
|
|
11449
11396
|
precision: number;
|
|
@@ -11537,7 +11484,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11537
11484
|
} | undefined;
|
|
11538
11485
|
readonly sortable?: boolean | undefined;
|
|
11539
11486
|
readonly inlineHelpText?: string | undefined;
|
|
11540
|
-
readonly caseSensitive?: boolean | undefined;
|
|
11541
11487
|
readonly autonumberFormat?: string | undefined;
|
|
11542
11488
|
readonly index?: boolean | undefined;
|
|
11543
11489
|
readonly type: "text";
|
|
@@ -11556,6 +11502,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11556
11502
|
readonly name?: string | undefined;
|
|
11557
11503
|
readonly precision?: number | undefined;
|
|
11558
11504
|
readonly required?: boolean | undefined;
|
|
11505
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11559
11506
|
readonly multiple?: boolean | undefined;
|
|
11560
11507
|
readonly dependencies?: string[] | undefined;
|
|
11561
11508
|
readonly externalId?: boolean | undefined;
|
|
@@ -11618,7 +11565,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11618
11565
|
relationshipField?: string | undefined;
|
|
11619
11566
|
} | undefined;
|
|
11620
11567
|
readonly language?: string | undefined;
|
|
11621
|
-
readonly maxRating?: number | undefined;
|
|
11622
11568
|
readonly step?: number | undefined;
|
|
11623
11569
|
readonly currencyConfig?: {
|
|
11624
11570
|
precision: number;
|
|
@@ -11712,7 +11658,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11712
11658
|
} | undefined;
|
|
11713
11659
|
readonly sortable?: boolean | undefined;
|
|
11714
11660
|
readonly inlineHelpText?: string | undefined;
|
|
11715
|
-
readonly caseSensitive?: boolean | undefined;
|
|
11716
11661
|
readonly autonumberFormat?: string | undefined;
|
|
11717
11662
|
readonly index?: boolean | undefined;
|
|
11718
11663
|
readonly type: "boolean";
|
|
@@ -11731,6 +11676,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11731
11676
|
readonly name?: string | undefined;
|
|
11732
11677
|
readonly precision?: number | undefined;
|
|
11733
11678
|
readonly required?: boolean | undefined;
|
|
11679
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11734
11680
|
readonly multiple?: boolean | undefined;
|
|
11735
11681
|
readonly dependencies?: string[] | undefined;
|
|
11736
11682
|
readonly externalId?: boolean | undefined;
|
|
@@ -11793,7 +11739,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11793
11739
|
relationshipField?: string | undefined;
|
|
11794
11740
|
} | undefined;
|
|
11795
11741
|
readonly language?: string | undefined;
|
|
11796
|
-
readonly maxRating?: number | undefined;
|
|
11797
11742
|
readonly step?: number | undefined;
|
|
11798
11743
|
readonly currencyConfig?: {
|
|
11799
11744
|
precision: number;
|
|
@@ -11887,7 +11832,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11887
11832
|
} | undefined;
|
|
11888
11833
|
readonly sortable?: boolean | undefined;
|
|
11889
11834
|
readonly inlineHelpText?: string | undefined;
|
|
11890
|
-
readonly caseSensitive?: boolean | undefined;
|
|
11891
11835
|
readonly autonumberFormat?: string | undefined;
|
|
11892
11836
|
readonly index?: boolean | undefined;
|
|
11893
11837
|
readonly type: "select";
|
|
@@ -11906,6 +11850,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11906
11850
|
readonly name?: string | undefined;
|
|
11907
11851
|
readonly precision?: number | undefined;
|
|
11908
11852
|
readonly required?: boolean | undefined;
|
|
11853
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11909
11854
|
readonly multiple?: boolean | undefined;
|
|
11910
11855
|
readonly dependencies?: string[] | undefined;
|
|
11911
11856
|
readonly externalId?: boolean | undefined;
|
|
@@ -11968,7 +11913,6 @@ declare const NotificationPreference: Omit<{
|
|
|
11968
11913
|
relationshipField?: string | undefined;
|
|
11969
11914
|
} | undefined;
|
|
11970
11915
|
readonly language?: string | undefined;
|
|
11971
|
-
readonly maxRating?: number | undefined;
|
|
11972
11916
|
readonly step?: number | undefined;
|
|
11973
11917
|
readonly currencyConfig?: {
|
|
11974
11918
|
precision: number;
|
|
@@ -12062,7 +12006,6 @@ declare const NotificationPreference: Omit<{
|
|
|
12062
12006
|
} | undefined;
|
|
12063
12007
|
readonly sortable?: boolean | undefined;
|
|
12064
12008
|
readonly inlineHelpText?: string | undefined;
|
|
12065
|
-
readonly caseSensitive?: boolean | undefined;
|
|
12066
12009
|
readonly autonumberFormat?: string | undefined;
|
|
12067
12010
|
readonly index?: boolean | undefined;
|
|
12068
12011
|
readonly type: "json";
|
|
@@ -12081,6 +12024,7 @@ declare const NotificationPreference: Omit<{
|
|
|
12081
12024
|
readonly name?: string | undefined;
|
|
12082
12025
|
readonly precision?: number | undefined;
|
|
12083
12026
|
readonly required?: boolean | undefined;
|
|
12027
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12084
12028
|
readonly multiple?: boolean | undefined;
|
|
12085
12029
|
readonly dependencies?: string[] | undefined;
|
|
12086
12030
|
readonly externalId?: boolean | undefined;
|
|
@@ -12143,7 +12087,6 @@ declare const NotificationPreference: Omit<{
|
|
|
12143
12087
|
relationshipField?: string | undefined;
|
|
12144
12088
|
} | undefined;
|
|
12145
12089
|
readonly language?: string | undefined;
|
|
12146
|
-
readonly maxRating?: number | undefined;
|
|
12147
12090
|
readonly step?: number | undefined;
|
|
12148
12091
|
readonly currencyConfig?: {
|
|
12149
12092
|
precision: number;
|
|
@@ -12237,7 +12180,6 @@ declare const NotificationPreference: Omit<{
|
|
|
12237
12180
|
} | undefined;
|
|
12238
12181
|
readonly sortable?: boolean | undefined;
|
|
12239
12182
|
readonly inlineHelpText?: string | undefined;
|
|
12240
|
-
readonly caseSensitive?: boolean | undefined;
|
|
12241
12183
|
readonly autonumberFormat?: string | undefined;
|
|
12242
12184
|
readonly index?: boolean | undefined;
|
|
12243
12185
|
readonly type: "datetime";
|
|
@@ -12256,6 +12198,7 @@ declare const NotificationPreference: Omit<{
|
|
|
12256
12198
|
readonly name?: string | undefined;
|
|
12257
12199
|
readonly precision?: number | undefined;
|
|
12258
12200
|
readonly required?: boolean | undefined;
|
|
12201
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12259
12202
|
readonly multiple?: boolean | undefined;
|
|
12260
12203
|
readonly dependencies?: string[] | undefined;
|
|
12261
12204
|
readonly externalId?: boolean | undefined;
|
|
@@ -12318,7 +12261,6 @@ declare const NotificationPreference: Omit<{
|
|
|
12318
12261
|
relationshipField?: string | undefined;
|
|
12319
12262
|
} | undefined;
|
|
12320
12263
|
readonly language?: string | undefined;
|
|
12321
|
-
readonly maxRating?: number | undefined;
|
|
12322
12264
|
readonly step?: number | undefined;
|
|
12323
12265
|
readonly currencyConfig?: {
|
|
12324
12266
|
precision: number;
|
|
@@ -12412,7 +12354,6 @@ declare const NotificationPreference: Omit<{
|
|
|
12412
12354
|
} | undefined;
|
|
12413
12355
|
readonly sortable?: boolean | undefined;
|
|
12414
12356
|
readonly inlineHelpText?: string | undefined;
|
|
12415
|
-
readonly caseSensitive?: boolean | undefined;
|
|
12416
12357
|
readonly autonumberFormat?: string | undefined;
|
|
12417
12358
|
readonly index?: boolean | undefined;
|
|
12418
12359
|
readonly type: "datetime";
|
|
@@ -12448,7 +12389,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
12448
12389
|
abstract: boolean;
|
|
12449
12390
|
datasource: string;
|
|
12450
12391
|
fields: Record<string, {
|
|
12451
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
12392
|
+
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
12452
12393
|
required: boolean;
|
|
12453
12394
|
searchable: boolean;
|
|
12454
12395
|
multiple: boolean;
|
|
@@ -12522,6 +12463,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
12522
12463
|
generatedBy?: string | undefined;
|
|
12523
12464
|
} | undefined;
|
|
12524
12465
|
} | undefined;
|
|
12466
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12525
12467
|
summaryOperations?: {
|
|
12526
12468
|
object: string;
|
|
12527
12469
|
field: string;
|
|
@@ -12529,7 +12471,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
12529
12471
|
relationshipField?: string | undefined;
|
|
12530
12472
|
} | undefined;
|
|
12531
12473
|
language?: string | undefined;
|
|
12532
|
-
maxRating?: number | undefined;
|
|
12533
12474
|
step?: number | undefined;
|
|
12534
12475
|
currencyConfig?: {
|
|
12535
12476
|
precision: number;
|
|
@@ -12659,7 +12600,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
12659
12600
|
requiredPermissions?: string[] | undefined;
|
|
12660
12601
|
system?: boolean | undefined;
|
|
12661
12602
|
inlineHelpText?: string | undefined;
|
|
12662
|
-
caseSensitive?: boolean | undefined;
|
|
12663
12603
|
autonumberFormat?: string | undefined;
|
|
12664
12604
|
}>;
|
|
12665
12605
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -12747,12 +12687,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
12747
12687
|
versionField: string;
|
|
12748
12688
|
retentionDays?: number | undefined;
|
|
12749
12689
|
} | undefined;
|
|
12750
|
-
partitioning?: {
|
|
12751
|
-
enabled: boolean;
|
|
12752
|
-
strategy: "hash" | "list" | "range";
|
|
12753
|
-
key: string;
|
|
12754
|
-
interval?: string | undefined;
|
|
12755
|
-
} | undefined;
|
|
12756
12690
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
12757
12691
|
activityMilestones?: {
|
|
12758
12692
|
field: string;
|
|
@@ -13083,7 +13017,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
13083
13017
|
debounceMs?: number | undefined;
|
|
13084
13018
|
} | undefined;
|
|
13085
13019
|
}> | undefined;
|
|
13086
|
-
defaultDetailForm?: string | undefined;
|
|
13087
13020
|
searchableFields?: string[] | undefined;
|
|
13088
13021
|
search?: {
|
|
13089
13022
|
fields: string[];
|
|
@@ -13100,7 +13033,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13100
13033
|
trash: boolean;
|
|
13101
13034
|
mru: boolean;
|
|
13102
13035
|
clone: boolean;
|
|
13103
|
-
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "
|
|
13036
|
+
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "get" | "update" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
13104
13037
|
} | undefined;
|
|
13105
13038
|
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
13106
13039
|
publicSharing?: {
|
|
@@ -13128,6 +13061,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13128
13061
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
13129
13062
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
13130
13063
|
target?: string | undefined;
|
|
13064
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
13131
13065
|
body?: {
|
|
13132
13066
|
language: "expression";
|
|
13133
13067
|
source: string;
|
|
@@ -13145,7 +13079,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13145
13079
|
field?: string | undefined;
|
|
13146
13080
|
objectOverride?: string | undefined;
|
|
13147
13081
|
label?: string | undefined;
|
|
13148
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
13082
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
13149
13083
|
options?: {
|
|
13150
13084
|
label: string;
|
|
13151
13085
|
value: string;
|
|
@@ -13251,6 +13185,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13251
13185
|
readonly name?: string | undefined;
|
|
13252
13186
|
readonly precision?: number | undefined;
|
|
13253
13187
|
readonly required?: boolean | undefined;
|
|
13188
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13254
13189
|
readonly multiple?: boolean | undefined;
|
|
13255
13190
|
readonly dependencies?: string[] | undefined;
|
|
13256
13191
|
readonly externalId?: boolean | undefined;
|
|
@@ -13313,7 +13248,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
13313
13248
|
relationshipField?: string | undefined;
|
|
13314
13249
|
} | undefined;
|
|
13315
13250
|
readonly language?: string | undefined;
|
|
13316
|
-
readonly maxRating?: number | undefined;
|
|
13317
13251
|
readonly step?: number | undefined;
|
|
13318
13252
|
readonly currencyConfig?: {
|
|
13319
13253
|
precision: number;
|
|
@@ -13407,7 +13341,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
13407
13341
|
} | undefined;
|
|
13408
13342
|
readonly sortable?: boolean | undefined;
|
|
13409
13343
|
readonly inlineHelpText?: string | undefined;
|
|
13410
|
-
readonly caseSensitive?: boolean | undefined;
|
|
13411
13344
|
readonly autonumberFormat?: string | undefined;
|
|
13412
13345
|
readonly index?: boolean | undefined;
|
|
13413
13346
|
readonly type: "text";
|
|
@@ -13426,6 +13359,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13426
13359
|
readonly name?: string | undefined;
|
|
13427
13360
|
readonly precision?: number | undefined;
|
|
13428
13361
|
readonly required?: boolean | undefined;
|
|
13362
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13429
13363
|
readonly multiple?: boolean | undefined;
|
|
13430
13364
|
readonly dependencies?: string[] | undefined;
|
|
13431
13365
|
readonly externalId?: boolean | undefined;
|
|
@@ -13488,7 +13422,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
13488
13422
|
relationshipField?: string | undefined;
|
|
13489
13423
|
} | undefined;
|
|
13490
13424
|
readonly language?: string | undefined;
|
|
13491
|
-
readonly maxRating?: number | undefined;
|
|
13492
13425
|
readonly step?: number | undefined;
|
|
13493
13426
|
readonly currencyConfig?: {
|
|
13494
13427
|
precision: number;
|
|
@@ -13582,7 +13515,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
13582
13515
|
} | undefined;
|
|
13583
13516
|
readonly sortable?: boolean | undefined;
|
|
13584
13517
|
readonly inlineHelpText?: string | undefined;
|
|
13585
|
-
readonly caseSensitive?: boolean | undefined;
|
|
13586
13518
|
readonly autonumberFormat?: string | undefined;
|
|
13587
13519
|
readonly index?: boolean | undefined;
|
|
13588
13520
|
readonly type: "text";
|
|
@@ -13601,6 +13533,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13601
13533
|
readonly name?: string | undefined;
|
|
13602
13534
|
readonly precision?: number | undefined;
|
|
13603
13535
|
readonly required?: boolean | undefined;
|
|
13536
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13604
13537
|
readonly multiple?: boolean | undefined;
|
|
13605
13538
|
readonly dependencies?: string[] | undefined;
|
|
13606
13539
|
readonly externalId?: boolean | undefined;
|
|
@@ -13663,7 +13596,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
13663
13596
|
relationshipField?: string | undefined;
|
|
13664
13597
|
} | undefined;
|
|
13665
13598
|
readonly language?: string | undefined;
|
|
13666
|
-
readonly maxRating?: number | undefined;
|
|
13667
13599
|
readonly step?: number | undefined;
|
|
13668
13600
|
readonly currencyConfig?: {
|
|
13669
13601
|
precision: number;
|
|
@@ -13757,7 +13689,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
13757
13689
|
} | undefined;
|
|
13758
13690
|
readonly sortable?: boolean | undefined;
|
|
13759
13691
|
readonly inlineHelpText?: string | undefined;
|
|
13760
|
-
readonly caseSensitive?: boolean | undefined;
|
|
13761
13692
|
readonly autonumberFormat?: string | undefined;
|
|
13762
13693
|
readonly index?: boolean | undefined;
|
|
13763
13694
|
readonly type: "text";
|
|
@@ -13776,6 +13707,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13776
13707
|
readonly name?: string | undefined;
|
|
13777
13708
|
readonly precision?: number | undefined;
|
|
13778
13709
|
readonly required?: boolean | undefined;
|
|
13710
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13779
13711
|
readonly multiple?: boolean | undefined;
|
|
13780
13712
|
readonly dependencies?: string[] | undefined;
|
|
13781
13713
|
readonly externalId?: boolean | undefined;
|
|
@@ -13838,7 +13770,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
13838
13770
|
relationshipField?: string | undefined;
|
|
13839
13771
|
} | undefined;
|
|
13840
13772
|
readonly language?: string | undefined;
|
|
13841
|
-
readonly maxRating?: number | undefined;
|
|
13842
13773
|
readonly step?: number | undefined;
|
|
13843
13774
|
readonly currencyConfig?: {
|
|
13844
13775
|
precision: number;
|
|
@@ -13932,7 +13863,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
13932
13863
|
} | undefined;
|
|
13933
13864
|
readonly sortable?: boolean | undefined;
|
|
13934
13865
|
readonly inlineHelpText?: string | undefined;
|
|
13935
|
-
readonly caseSensitive?: boolean | undefined;
|
|
13936
13866
|
readonly autonumberFormat?: string | undefined;
|
|
13937
13867
|
readonly index?: boolean | undefined;
|
|
13938
13868
|
readonly type: "boolean";
|
|
@@ -13951,6 +13881,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13951
13881
|
readonly name?: string | undefined;
|
|
13952
13882
|
readonly precision?: number | undefined;
|
|
13953
13883
|
readonly required?: boolean | undefined;
|
|
13884
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13954
13885
|
readonly multiple?: boolean | undefined;
|
|
13955
13886
|
readonly dependencies?: string[] | undefined;
|
|
13956
13887
|
readonly externalId?: boolean | undefined;
|
|
@@ -14013,7 +13944,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
14013
13944
|
relationshipField?: string | undefined;
|
|
14014
13945
|
} | undefined;
|
|
14015
13946
|
readonly language?: string | undefined;
|
|
14016
|
-
readonly maxRating?: number | undefined;
|
|
14017
13947
|
readonly step?: number | undefined;
|
|
14018
13948
|
readonly currencyConfig?: {
|
|
14019
13949
|
precision: number;
|
|
@@ -14107,7 +14037,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
14107
14037
|
} | undefined;
|
|
14108
14038
|
readonly sortable?: boolean | undefined;
|
|
14109
14039
|
readonly inlineHelpText?: string | undefined;
|
|
14110
|
-
readonly caseSensitive?: boolean | undefined;
|
|
14111
14040
|
readonly autonumberFormat?: string | undefined;
|
|
14112
14041
|
readonly index?: boolean | undefined;
|
|
14113
14042
|
readonly type: "datetime";
|
|
@@ -14142,7 +14071,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14142
14071
|
abstract: boolean;
|
|
14143
14072
|
datasource: string;
|
|
14144
14073
|
fields: Record<string, {
|
|
14145
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
14074
|
+
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
14146
14075
|
required: boolean;
|
|
14147
14076
|
searchable: boolean;
|
|
14148
14077
|
multiple: boolean;
|
|
@@ -14216,6 +14145,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14216
14145
|
generatedBy?: string | undefined;
|
|
14217
14146
|
} | undefined;
|
|
14218
14147
|
} | undefined;
|
|
14148
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
14219
14149
|
summaryOperations?: {
|
|
14220
14150
|
object: string;
|
|
14221
14151
|
field: string;
|
|
@@ -14223,7 +14153,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
14223
14153
|
relationshipField?: string | undefined;
|
|
14224
14154
|
} | undefined;
|
|
14225
14155
|
language?: string | undefined;
|
|
14226
|
-
maxRating?: number | undefined;
|
|
14227
14156
|
step?: number | undefined;
|
|
14228
14157
|
currencyConfig?: {
|
|
14229
14158
|
precision: number;
|
|
@@ -14353,7 +14282,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
14353
14282
|
requiredPermissions?: string[] | undefined;
|
|
14354
14283
|
system?: boolean | undefined;
|
|
14355
14284
|
inlineHelpText?: string | undefined;
|
|
14356
|
-
caseSensitive?: boolean | undefined;
|
|
14357
14285
|
autonumberFormat?: string | undefined;
|
|
14358
14286
|
}>;
|
|
14359
14287
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -14441,12 +14369,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
14441
14369
|
versionField: string;
|
|
14442
14370
|
retentionDays?: number | undefined;
|
|
14443
14371
|
} | undefined;
|
|
14444
|
-
partitioning?: {
|
|
14445
|
-
enabled: boolean;
|
|
14446
|
-
strategy: "hash" | "list" | "range";
|
|
14447
|
-
key: string;
|
|
14448
|
-
interval?: string | undefined;
|
|
14449
|
-
} | undefined;
|
|
14450
14372
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
14451
14373
|
activityMilestones?: {
|
|
14452
14374
|
field: string;
|
|
@@ -14777,7 +14699,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
14777
14699
|
debounceMs?: number | undefined;
|
|
14778
14700
|
} | undefined;
|
|
14779
14701
|
}> | undefined;
|
|
14780
|
-
defaultDetailForm?: string | undefined;
|
|
14781
14702
|
searchableFields?: string[] | undefined;
|
|
14782
14703
|
search?: {
|
|
14783
14704
|
fields: string[];
|
|
@@ -14794,7 +14715,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14794
14715
|
trash: boolean;
|
|
14795
14716
|
mru: boolean;
|
|
14796
14717
|
clone: boolean;
|
|
14797
|
-
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "
|
|
14718
|
+
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "get" | "update" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
14798
14719
|
} | undefined;
|
|
14799
14720
|
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
14800
14721
|
publicSharing?: {
|
|
@@ -14822,6 +14743,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14822
14743
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
14823
14744
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
14824
14745
|
target?: string | undefined;
|
|
14746
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
14825
14747
|
body?: {
|
|
14826
14748
|
language: "expression";
|
|
14827
14749
|
source: string;
|
|
@@ -14839,7 +14761,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14839
14761
|
field?: string | undefined;
|
|
14840
14762
|
objectOverride?: string | undefined;
|
|
14841
14763
|
label?: string | undefined;
|
|
14842
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
14764
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
14843
14765
|
options?: {
|
|
14844
14766
|
label: string;
|
|
14845
14767
|
value: string;
|
|
@@ -14945,6 +14867,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14945
14867
|
readonly name?: string | undefined;
|
|
14946
14868
|
readonly precision?: number | undefined;
|
|
14947
14869
|
readonly required?: boolean | undefined;
|
|
14870
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
14948
14871
|
readonly multiple?: boolean | undefined;
|
|
14949
14872
|
readonly dependencies?: string[] | undefined;
|
|
14950
14873
|
readonly externalId?: boolean | undefined;
|
|
@@ -15007,7 +14930,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15007
14930
|
relationshipField?: string | undefined;
|
|
15008
14931
|
} | undefined;
|
|
15009
14932
|
readonly language?: string | undefined;
|
|
15010
|
-
readonly maxRating?: number | undefined;
|
|
15011
14933
|
readonly step?: number | undefined;
|
|
15012
14934
|
readonly currencyConfig?: {
|
|
15013
14935
|
precision: number;
|
|
@@ -15101,7 +15023,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15101
15023
|
} | undefined;
|
|
15102
15024
|
readonly sortable?: boolean | undefined;
|
|
15103
15025
|
readonly inlineHelpText?: string | undefined;
|
|
15104
|
-
readonly caseSensitive?: boolean | undefined;
|
|
15105
15026
|
readonly autonumberFormat?: string | undefined;
|
|
15106
15027
|
readonly index?: boolean | undefined;
|
|
15107
15028
|
readonly type: "text";
|
|
@@ -15120,6 +15041,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15120
15041
|
readonly name?: string | undefined;
|
|
15121
15042
|
readonly precision?: number | undefined;
|
|
15122
15043
|
readonly required?: boolean | undefined;
|
|
15044
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15123
15045
|
readonly multiple?: boolean | undefined;
|
|
15124
15046
|
readonly dependencies?: string[] | undefined;
|
|
15125
15047
|
readonly externalId?: boolean | undefined;
|
|
@@ -15182,7 +15104,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15182
15104
|
relationshipField?: string | undefined;
|
|
15183
15105
|
} | undefined;
|
|
15184
15106
|
readonly language?: string | undefined;
|
|
15185
|
-
readonly maxRating?: number | undefined;
|
|
15186
15107
|
readonly step?: number | undefined;
|
|
15187
15108
|
readonly currencyConfig?: {
|
|
15188
15109
|
precision: number;
|
|
@@ -15276,7 +15197,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15276
15197
|
} | undefined;
|
|
15277
15198
|
readonly sortable?: boolean | undefined;
|
|
15278
15199
|
readonly inlineHelpText?: string | undefined;
|
|
15279
|
-
readonly caseSensitive?: boolean | undefined;
|
|
15280
15200
|
readonly autonumberFormat?: string | undefined;
|
|
15281
15201
|
readonly index?: boolean | undefined;
|
|
15282
15202
|
readonly type: "text";
|
|
@@ -15295,6 +15215,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15295
15215
|
readonly name?: string | undefined;
|
|
15296
15216
|
readonly precision?: number | undefined;
|
|
15297
15217
|
readonly required?: boolean | undefined;
|
|
15218
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15298
15219
|
readonly multiple?: boolean | undefined;
|
|
15299
15220
|
readonly dependencies?: string[] | undefined;
|
|
15300
15221
|
readonly externalId?: boolean | undefined;
|
|
@@ -15357,7 +15278,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15357
15278
|
relationshipField?: string | undefined;
|
|
15358
15279
|
} | undefined;
|
|
15359
15280
|
readonly language?: string | undefined;
|
|
15360
|
-
readonly maxRating?: number | undefined;
|
|
15361
15281
|
readonly step?: number | undefined;
|
|
15362
15282
|
readonly currencyConfig?: {
|
|
15363
15283
|
precision: number;
|
|
@@ -15451,7 +15371,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15451
15371
|
} | undefined;
|
|
15452
15372
|
readonly sortable?: boolean | undefined;
|
|
15453
15373
|
readonly inlineHelpText?: string | undefined;
|
|
15454
|
-
readonly caseSensitive?: boolean | undefined;
|
|
15455
15374
|
readonly autonumberFormat?: string | undefined;
|
|
15456
15375
|
readonly index?: boolean | undefined;
|
|
15457
15376
|
readonly type: "text";
|
|
@@ -15470,6 +15389,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15470
15389
|
readonly name?: string | undefined;
|
|
15471
15390
|
readonly precision?: number | undefined;
|
|
15472
15391
|
readonly required?: boolean | undefined;
|
|
15392
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15473
15393
|
readonly multiple?: boolean | undefined;
|
|
15474
15394
|
readonly dependencies?: string[] | undefined;
|
|
15475
15395
|
readonly externalId?: boolean | undefined;
|
|
@@ -15532,7 +15452,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15532
15452
|
relationshipField?: string | undefined;
|
|
15533
15453
|
} | undefined;
|
|
15534
15454
|
readonly language?: string | undefined;
|
|
15535
|
-
readonly maxRating?: number | undefined;
|
|
15536
15455
|
readonly step?: number | undefined;
|
|
15537
15456
|
readonly currencyConfig?: {
|
|
15538
15457
|
precision: number;
|
|
@@ -15626,7 +15545,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15626
15545
|
} | undefined;
|
|
15627
15546
|
readonly sortable?: boolean | undefined;
|
|
15628
15547
|
readonly inlineHelpText?: string | undefined;
|
|
15629
|
-
readonly caseSensitive?: boolean | undefined;
|
|
15630
15548
|
readonly autonumberFormat?: string | undefined;
|
|
15631
15549
|
readonly index?: boolean | undefined;
|
|
15632
15550
|
readonly type: "text";
|
|
@@ -15645,6 +15563,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15645
15563
|
readonly name?: string | undefined;
|
|
15646
15564
|
readonly precision?: number | undefined;
|
|
15647
15565
|
readonly required?: boolean | undefined;
|
|
15566
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15648
15567
|
readonly multiple?: boolean | undefined;
|
|
15649
15568
|
readonly dependencies?: string[] | undefined;
|
|
15650
15569
|
readonly externalId?: boolean | undefined;
|
|
@@ -15707,7 +15626,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15707
15626
|
relationshipField?: string | undefined;
|
|
15708
15627
|
} | undefined;
|
|
15709
15628
|
readonly language?: string | undefined;
|
|
15710
|
-
readonly maxRating?: number | undefined;
|
|
15711
15629
|
readonly step?: number | undefined;
|
|
15712
15630
|
readonly currencyConfig?: {
|
|
15713
15631
|
precision: number;
|
|
@@ -15801,7 +15719,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15801
15719
|
} | undefined;
|
|
15802
15720
|
readonly sortable?: boolean | undefined;
|
|
15803
15721
|
readonly inlineHelpText?: string | undefined;
|
|
15804
|
-
readonly caseSensitive?: boolean | undefined;
|
|
15805
15722
|
readonly autonumberFormat?: string | undefined;
|
|
15806
15723
|
readonly index?: boolean | undefined;
|
|
15807
15724
|
readonly type: "number";
|
|
@@ -15820,6 +15737,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15820
15737
|
readonly name?: string | undefined;
|
|
15821
15738
|
readonly precision?: number | undefined;
|
|
15822
15739
|
readonly required?: boolean | undefined;
|
|
15740
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15823
15741
|
readonly multiple?: boolean | undefined;
|
|
15824
15742
|
readonly dependencies?: string[] | undefined;
|
|
15825
15743
|
readonly externalId?: boolean | undefined;
|
|
@@ -15882,7 +15800,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15882
15800
|
relationshipField?: string | undefined;
|
|
15883
15801
|
} | undefined;
|
|
15884
15802
|
readonly language?: string | undefined;
|
|
15885
|
-
readonly maxRating?: number | undefined;
|
|
15886
15803
|
readonly step?: number | undefined;
|
|
15887
15804
|
readonly currencyConfig?: {
|
|
15888
15805
|
precision: number;
|
|
@@ -15976,7 +15893,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
15976
15893
|
} | undefined;
|
|
15977
15894
|
readonly sortable?: boolean | undefined;
|
|
15978
15895
|
readonly inlineHelpText?: string | undefined;
|
|
15979
|
-
readonly caseSensitive?: boolean | undefined;
|
|
15980
15896
|
readonly autonumberFormat?: string | undefined;
|
|
15981
15897
|
readonly index?: boolean | undefined;
|
|
15982
15898
|
readonly type: "text";
|
|
@@ -15995,6 +15911,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15995
15911
|
readonly name?: string | undefined;
|
|
15996
15912
|
readonly precision?: number | undefined;
|
|
15997
15913
|
readonly required?: boolean | undefined;
|
|
15914
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15998
15915
|
readonly multiple?: boolean | undefined;
|
|
15999
15916
|
readonly dependencies?: string[] | undefined;
|
|
16000
15917
|
readonly externalId?: boolean | undefined;
|
|
@@ -16057,7 +15974,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
16057
15974
|
relationshipField?: string | undefined;
|
|
16058
15975
|
} | undefined;
|
|
16059
15976
|
readonly language?: string | undefined;
|
|
16060
|
-
readonly maxRating?: number | undefined;
|
|
16061
15977
|
readonly step?: number | undefined;
|
|
16062
15978
|
readonly currencyConfig?: {
|
|
16063
15979
|
precision: number;
|
|
@@ -16151,7 +16067,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
16151
16067
|
} | undefined;
|
|
16152
16068
|
readonly sortable?: boolean | undefined;
|
|
16153
16069
|
readonly inlineHelpText?: string | undefined;
|
|
16154
|
-
readonly caseSensitive?: boolean | undefined;
|
|
16155
16070
|
readonly autonumberFormat?: string | undefined;
|
|
16156
16071
|
readonly index?: boolean | undefined;
|
|
16157
16072
|
readonly type: "markdown";
|
|
@@ -16170,6 +16085,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
16170
16085
|
readonly name?: string | undefined;
|
|
16171
16086
|
readonly precision?: number | undefined;
|
|
16172
16087
|
readonly required?: boolean | undefined;
|
|
16088
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
16173
16089
|
readonly multiple?: boolean | undefined;
|
|
16174
16090
|
readonly dependencies?: string[] | undefined;
|
|
16175
16091
|
readonly externalId?: boolean | undefined;
|
|
@@ -16232,7 +16148,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
16232
16148
|
relationshipField?: string | undefined;
|
|
16233
16149
|
} | undefined;
|
|
16234
16150
|
readonly language?: string | undefined;
|
|
16235
|
-
readonly maxRating?: number | undefined;
|
|
16236
16151
|
readonly step?: number | undefined;
|
|
16237
16152
|
readonly currencyConfig?: {
|
|
16238
16153
|
precision: number;
|
|
@@ -16326,7 +16241,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
16326
16241
|
} | undefined;
|
|
16327
16242
|
readonly sortable?: boolean | undefined;
|
|
16328
16243
|
readonly inlineHelpText?: string | undefined;
|
|
16329
|
-
readonly caseSensitive?: boolean | undefined;
|
|
16330
16244
|
readonly autonumberFormat?: string | undefined;
|
|
16331
16245
|
readonly index?: boolean | undefined;
|
|
16332
16246
|
readonly type: "select";
|
|
@@ -16345,6 +16259,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
16345
16259
|
readonly name?: string | undefined;
|
|
16346
16260
|
readonly precision?: number | undefined;
|
|
16347
16261
|
readonly required?: boolean | undefined;
|
|
16262
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
16348
16263
|
readonly multiple?: boolean | undefined;
|
|
16349
16264
|
readonly dependencies?: string[] | undefined;
|
|
16350
16265
|
readonly externalId?: boolean | undefined;
|
|
@@ -16407,7 +16322,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
16407
16322
|
relationshipField?: string | undefined;
|
|
16408
16323
|
} | undefined;
|
|
16409
16324
|
readonly language?: string | undefined;
|
|
16410
|
-
readonly maxRating?: number | undefined;
|
|
16411
16325
|
readonly step?: number | undefined;
|
|
16412
16326
|
readonly currencyConfig?: {
|
|
16413
16327
|
precision: number;
|
|
@@ -16501,7 +16415,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
16501
16415
|
} | undefined;
|
|
16502
16416
|
readonly sortable?: boolean | undefined;
|
|
16503
16417
|
readonly inlineHelpText?: string | undefined;
|
|
16504
|
-
readonly caseSensitive?: boolean | undefined;
|
|
16505
16418
|
readonly autonumberFormat?: string | undefined;
|
|
16506
16419
|
readonly index?: boolean | undefined;
|
|
16507
16420
|
readonly type: "boolean";
|
|
@@ -16520,6 +16433,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
16520
16433
|
readonly name?: string | undefined;
|
|
16521
16434
|
readonly precision?: number | undefined;
|
|
16522
16435
|
readonly required?: boolean | undefined;
|
|
16436
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
16523
16437
|
readonly multiple?: boolean | undefined;
|
|
16524
16438
|
readonly dependencies?: string[] | undefined;
|
|
16525
16439
|
readonly externalId?: boolean | undefined;
|
|
@@ -16582,7 +16496,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
16582
16496
|
relationshipField?: string | undefined;
|
|
16583
16497
|
} | undefined;
|
|
16584
16498
|
readonly language?: string | undefined;
|
|
16585
|
-
readonly maxRating?: number | undefined;
|
|
16586
16499
|
readonly step?: number | undefined;
|
|
16587
16500
|
readonly currencyConfig?: {
|
|
16588
16501
|
precision: number;
|
|
@@ -16676,7 +16589,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
16676
16589
|
} | undefined;
|
|
16677
16590
|
readonly sortable?: boolean | undefined;
|
|
16678
16591
|
readonly inlineHelpText?: string | undefined;
|
|
16679
|
-
readonly caseSensitive?: boolean | undefined;
|
|
16680
16592
|
readonly autonumberFormat?: string | undefined;
|
|
16681
16593
|
readonly index?: boolean | undefined;
|
|
16682
16594
|
readonly type: "datetime";
|
|
@@ -16695,6 +16607,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
16695
16607
|
readonly name?: string | undefined;
|
|
16696
16608
|
readonly precision?: number | undefined;
|
|
16697
16609
|
readonly required?: boolean | undefined;
|
|
16610
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
16698
16611
|
readonly multiple?: boolean | undefined;
|
|
16699
16612
|
readonly dependencies?: string[] | undefined;
|
|
16700
16613
|
readonly externalId?: boolean | undefined;
|
|
@@ -16757,7 +16670,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
16757
16670
|
relationshipField?: string | undefined;
|
|
16758
16671
|
} | undefined;
|
|
16759
16672
|
readonly language?: string | undefined;
|
|
16760
|
-
readonly maxRating?: number | undefined;
|
|
16761
16673
|
readonly step?: number | undefined;
|
|
16762
16674
|
readonly currencyConfig?: {
|
|
16763
16675
|
precision: number;
|
|
@@ -16851,7 +16763,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
16851
16763
|
} | undefined;
|
|
16852
16764
|
readonly sortable?: boolean | undefined;
|
|
16853
16765
|
readonly inlineHelpText?: string | undefined;
|
|
16854
|
-
readonly caseSensitive?: boolean | undefined;
|
|
16855
16766
|
readonly autonumberFormat?: string | undefined;
|
|
16856
16767
|
readonly index?: boolean | undefined;
|
|
16857
16768
|
readonly type: "datetime";
|
|
@@ -16894,7 +16805,7 @@ declare const HttpDelivery: Omit<{
|
|
|
16894
16805
|
abstract: boolean;
|
|
16895
16806
|
datasource: string;
|
|
16896
16807
|
fields: Record<string, {
|
|
16897
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
16808
|
+
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
16898
16809
|
required: boolean;
|
|
16899
16810
|
searchable: boolean;
|
|
16900
16811
|
multiple: boolean;
|
|
@@ -16968,6 +16879,7 @@ declare const HttpDelivery: Omit<{
|
|
|
16968
16879
|
generatedBy?: string | undefined;
|
|
16969
16880
|
} | undefined;
|
|
16970
16881
|
} | undefined;
|
|
16882
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
16971
16883
|
summaryOperations?: {
|
|
16972
16884
|
object: string;
|
|
16973
16885
|
field: string;
|
|
@@ -16975,7 +16887,6 @@ declare const HttpDelivery: Omit<{
|
|
|
16975
16887
|
relationshipField?: string | undefined;
|
|
16976
16888
|
} | undefined;
|
|
16977
16889
|
language?: string | undefined;
|
|
16978
|
-
maxRating?: number | undefined;
|
|
16979
16890
|
step?: number | undefined;
|
|
16980
16891
|
currencyConfig?: {
|
|
16981
16892
|
precision: number;
|
|
@@ -17105,7 +17016,6 @@ declare const HttpDelivery: Omit<{
|
|
|
17105
17016
|
requiredPermissions?: string[] | undefined;
|
|
17106
17017
|
system?: boolean | undefined;
|
|
17107
17018
|
inlineHelpText?: string | undefined;
|
|
17108
|
-
caseSensitive?: boolean | undefined;
|
|
17109
17019
|
autonumberFormat?: string | undefined;
|
|
17110
17020
|
}>;
|
|
17111
17021
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -17193,12 +17103,6 @@ declare const HttpDelivery: Omit<{
|
|
|
17193
17103
|
versionField: string;
|
|
17194
17104
|
retentionDays?: number | undefined;
|
|
17195
17105
|
} | undefined;
|
|
17196
|
-
partitioning?: {
|
|
17197
|
-
enabled: boolean;
|
|
17198
|
-
strategy: "hash" | "list" | "range";
|
|
17199
|
-
key: string;
|
|
17200
|
-
interval?: string | undefined;
|
|
17201
|
-
} | undefined;
|
|
17202
17106
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
17203
17107
|
activityMilestones?: {
|
|
17204
17108
|
field: string;
|
|
@@ -17529,7 +17433,6 @@ declare const HttpDelivery: Omit<{
|
|
|
17529
17433
|
debounceMs?: number | undefined;
|
|
17530
17434
|
} | undefined;
|
|
17531
17435
|
}> | undefined;
|
|
17532
|
-
defaultDetailForm?: string | undefined;
|
|
17533
17436
|
searchableFields?: string[] | undefined;
|
|
17534
17437
|
search?: {
|
|
17535
17438
|
fields: string[];
|
|
@@ -17546,7 +17449,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17546
17449
|
trash: boolean;
|
|
17547
17450
|
mru: boolean;
|
|
17548
17451
|
clone: boolean;
|
|
17549
|
-
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "
|
|
17452
|
+
apiMethods?: ("search" | "upsert" | "create" | "import" | "delete" | "get" | "update" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
17550
17453
|
} | undefined;
|
|
17551
17454
|
sharingModel?: "read" | "full" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
17552
17455
|
publicSharing?: {
|
|
@@ -17574,6 +17477,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17574
17477
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
17575
17478
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
17576
17479
|
target?: string | undefined;
|
|
17480
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
17577
17481
|
body?: {
|
|
17578
17482
|
language: "expression";
|
|
17579
17483
|
source: string;
|
|
@@ -17591,7 +17495,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17591
17495
|
field?: string | undefined;
|
|
17592
17496
|
objectOverride?: string | undefined;
|
|
17593
17497
|
label?: string | undefined;
|
|
17594
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
17498
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
17595
17499
|
options?: {
|
|
17596
17500
|
label: string;
|
|
17597
17501
|
value: string;
|
|
@@ -17767,6 +17671,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17767
17671
|
readonly name?: string | undefined;
|
|
17768
17672
|
readonly precision?: number | undefined;
|
|
17769
17673
|
readonly required?: boolean | undefined;
|
|
17674
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17770
17675
|
readonly multiple?: boolean | undefined;
|
|
17771
17676
|
readonly dependencies?: string[] | undefined;
|
|
17772
17677
|
readonly externalId?: boolean | undefined;
|
|
@@ -17829,7 +17734,6 @@ declare const HttpDelivery: Omit<{
|
|
|
17829
17734
|
relationshipField?: string | undefined;
|
|
17830
17735
|
} | undefined;
|
|
17831
17736
|
readonly language?: string | undefined;
|
|
17832
|
-
readonly maxRating?: number | undefined;
|
|
17833
17737
|
readonly step?: number | undefined;
|
|
17834
17738
|
readonly currencyConfig?: {
|
|
17835
17739
|
precision: number;
|
|
@@ -17923,7 +17827,6 @@ declare const HttpDelivery: Omit<{
|
|
|
17923
17827
|
} | undefined;
|
|
17924
17828
|
readonly sortable?: boolean | undefined;
|
|
17925
17829
|
readonly inlineHelpText?: string | undefined;
|
|
17926
|
-
readonly caseSensitive?: boolean | undefined;
|
|
17927
17830
|
readonly autonumberFormat?: string | undefined;
|
|
17928
17831
|
readonly index?: boolean | undefined;
|
|
17929
17832
|
readonly type: "text";
|
|
@@ -17942,6 +17845,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17942
17845
|
readonly name?: string | undefined;
|
|
17943
17846
|
readonly precision?: number | undefined;
|
|
17944
17847
|
readonly required?: boolean | undefined;
|
|
17848
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17945
17849
|
readonly multiple?: boolean | undefined;
|
|
17946
17850
|
readonly dependencies?: string[] | undefined;
|
|
17947
17851
|
readonly externalId?: boolean | undefined;
|
|
@@ -18004,7 +17908,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18004
17908
|
relationshipField?: string | undefined;
|
|
18005
17909
|
} | undefined;
|
|
18006
17910
|
readonly language?: string | undefined;
|
|
18007
|
-
readonly maxRating?: number | undefined;
|
|
18008
17911
|
readonly step?: number | undefined;
|
|
18009
17912
|
readonly currencyConfig?: {
|
|
18010
17913
|
precision: number;
|
|
@@ -18098,7 +18001,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18098
18001
|
} | undefined;
|
|
18099
18002
|
readonly sortable?: boolean | undefined;
|
|
18100
18003
|
readonly inlineHelpText?: string | undefined;
|
|
18101
|
-
readonly caseSensitive?: boolean | undefined;
|
|
18102
18004
|
readonly autonumberFormat?: string | undefined;
|
|
18103
18005
|
readonly index?: boolean | undefined;
|
|
18104
18006
|
readonly type: "text";
|
|
@@ -18117,6 +18019,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18117
18019
|
readonly name?: string | undefined;
|
|
18118
18020
|
readonly precision?: number | undefined;
|
|
18119
18021
|
readonly required?: boolean | undefined;
|
|
18022
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18120
18023
|
readonly multiple?: boolean | undefined;
|
|
18121
18024
|
readonly dependencies?: string[] | undefined;
|
|
18122
18025
|
readonly externalId?: boolean | undefined;
|
|
@@ -18179,7 +18082,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18179
18082
|
relationshipField?: string | undefined;
|
|
18180
18083
|
} | undefined;
|
|
18181
18084
|
readonly language?: string | undefined;
|
|
18182
|
-
readonly maxRating?: number | undefined;
|
|
18183
18085
|
readonly step?: number | undefined;
|
|
18184
18086
|
readonly currencyConfig?: {
|
|
18185
18087
|
precision: number;
|
|
@@ -18273,7 +18175,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18273
18175
|
} | undefined;
|
|
18274
18176
|
readonly sortable?: boolean | undefined;
|
|
18275
18177
|
readonly inlineHelpText?: string | undefined;
|
|
18276
|
-
readonly caseSensitive?: boolean | undefined;
|
|
18277
18178
|
readonly autonumberFormat?: string | undefined;
|
|
18278
18179
|
readonly index?: boolean | undefined;
|
|
18279
18180
|
readonly type: "text";
|
|
@@ -18292,6 +18193,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18292
18193
|
readonly name?: string | undefined;
|
|
18293
18194
|
readonly precision?: number | undefined;
|
|
18294
18195
|
readonly required?: boolean | undefined;
|
|
18196
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18295
18197
|
readonly multiple?: boolean | undefined;
|
|
18296
18198
|
readonly dependencies?: string[] | undefined;
|
|
18297
18199
|
readonly externalId?: boolean | undefined;
|
|
@@ -18354,7 +18256,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18354
18256
|
relationshipField?: string | undefined;
|
|
18355
18257
|
} | undefined;
|
|
18356
18258
|
readonly language?: string | undefined;
|
|
18357
|
-
readonly maxRating?: number | undefined;
|
|
18358
18259
|
readonly step?: number | undefined;
|
|
18359
18260
|
readonly currencyConfig?: {
|
|
18360
18261
|
precision: number;
|
|
@@ -18448,7 +18349,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18448
18349
|
} | undefined;
|
|
18449
18350
|
readonly sortable?: boolean | undefined;
|
|
18450
18351
|
readonly inlineHelpText?: string | undefined;
|
|
18451
|
-
readonly caseSensitive?: boolean | undefined;
|
|
18452
18352
|
readonly autonumberFormat?: string | undefined;
|
|
18453
18353
|
readonly index?: boolean | undefined;
|
|
18454
18354
|
readonly type: "text";
|
|
@@ -18467,6 +18367,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18467
18367
|
readonly name?: string | undefined;
|
|
18468
18368
|
readonly precision?: number | undefined;
|
|
18469
18369
|
readonly required?: boolean | undefined;
|
|
18370
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18470
18371
|
readonly multiple?: boolean | undefined;
|
|
18471
18372
|
readonly dependencies?: string[] | undefined;
|
|
18472
18373
|
readonly externalId?: boolean | undefined;
|
|
@@ -18529,7 +18430,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18529
18430
|
relationshipField?: string | undefined;
|
|
18530
18431
|
} | undefined;
|
|
18531
18432
|
readonly language?: string | undefined;
|
|
18532
|
-
readonly maxRating?: number | undefined;
|
|
18533
18433
|
readonly step?: number | undefined;
|
|
18534
18434
|
readonly currencyConfig?: {
|
|
18535
18435
|
precision: number;
|
|
@@ -18623,7 +18523,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18623
18523
|
} | undefined;
|
|
18624
18524
|
readonly sortable?: boolean | undefined;
|
|
18625
18525
|
readonly inlineHelpText?: string | undefined;
|
|
18626
|
-
readonly caseSensitive?: boolean | undefined;
|
|
18627
18526
|
readonly autonumberFormat?: string | undefined;
|
|
18628
18527
|
readonly index?: boolean | undefined;
|
|
18629
18528
|
readonly type: "text";
|
|
@@ -18642,6 +18541,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18642
18541
|
readonly name?: string | undefined;
|
|
18643
18542
|
readonly precision?: number | undefined;
|
|
18644
18543
|
readonly required?: boolean | undefined;
|
|
18544
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18645
18545
|
readonly multiple?: boolean | undefined;
|
|
18646
18546
|
readonly dependencies?: string[] | undefined;
|
|
18647
18547
|
readonly externalId?: boolean | undefined;
|
|
@@ -18704,7 +18604,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18704
18604
|
relationshipField?: string | undefined;
|
|
18705
18605
|
} | undefined;
|
|
18706
18606
|
readonly language?: string | undefined;
|
|
18707
|
-
readonly maxRating?: number | undefined;
|
|
18708
18607
|
readonly step?: number | undefined;
|
|
18709
18608
|
readonly currencyConfig?: {
|
|
18710
18609
|
precision: number;
|
|
@@ -18798,7 +18697,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18798
18697
|
} | undefined;
|
|
18799
18698
|
readonly sortable?: boolean | undefined;
|
|
18800
18699
|
readonly inlineHelpText?: string | undefined;
|
|
18801
|
-
readonly caseSensitive?: boolean | undefined;
|
|
18802
18700
|
readonly autonumberFormat?: string | undefined;
|
|
18803
18701
|
readonly index?: boolean | undefined;
|
|
18804
18702
|
readonly type: "text";
|
|
@@ -18817,6 +18715,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18817
18715
|
readonly name?: string | undefined;
|
|
18818
18716
|
readonly precision?: number | undefined;
|
|
18819
18717
|
readonly required?: boolean | undefined;
|
|
18718
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18820
18719
|
readonly multiple?: boolean | undefined;
|
|
18821
18720
|
readonly dependencies?: string[] | undefined;
|
|
18822
18721
|
readonly externalId?: boolean | undefined;
|
|
@@ -18879,7 +18778,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18879
18778
|
relationshipField?: string | undefined;
|
|
18880
18779
|
} | undefined;
|
|
18881
18780
|
readonly language?: string | undefined;
|
|
18882
|
-
readonly maxRating?: number | undefined;
|
|
18883
18781
|
readonly step?: number | undefined;
|
|
18884
18782
|
readonly currencyConfig?: {
|
|
18885
18783
|
precision: number;
|
|
@@ -18973,7 +18871,6 @@ declare const HttpDelivery: Omit<{
|
|
|
18973
18871
|
} | undefined;
|
|
18974
18872
|
readonly sortable?: boolean | undefined;
|
|
18975
18873
|
readonly inlineHelpText?: string | undefined;
|
|
18976
|
-
readonly caseSensitive?: boolean | undefined;
|
|
18977
18874
|
readonly autonumberFormat?: string | undefined;
|
|
18978
18875
|
readonly index?: boolean | undefined;
|
|
18979
18876
|
readonly type: "text";
|
|
@@ -18992,6 +18889,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18992
18889
|
readonly name?: string | undefined;
|
|
18993
18890
|
readonly precision?: number | undefined;
|
|
18994
18891
|
readonly required?: boolean | undefined;
|
|
18892
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18995
18893
|
readonly multiple?: boolean | undefined;
|
|
18996
18894
|
readonly dependencies?: string[] | undefined;
|
|
18997
18895
|
readonly externalId?: boolean | undefined;
|
|
@@ -19054,7 +18952,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19054
18952
|
relationshipField?: string | undefined;
|
|
19055
18953
|
} | undefined;
|
|
19056
18954
|
readonly language?: string | undefined;
|
|
19057
|
-
readonly maxRating?: number | undefined;
|
|
19058
18955
|
readonly step?: number | undefined;
|
|
19059
18956
|
readonly currencyConfig?: {
|
|
19060
18957
|
precision: number;
|
|
@@ -19148,7 +19045,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19148
19045
|
} | undefined;
|
|
19149
19046
|
readonly sortable?: boolean | undefined;
|
|
19150
19047
|
readonly inlineHelpText?: string | undefined;
|
|
19151
|
-
readonly caseSensitive?: boolean | undefined;
|
|
19152
19048
|
readonly autonumberFormat?: string | undefined;
|
|
19153
19049
|
readonly index?: boolean | undefined;
|
|
19154
19050
|
readonly type: "textarea";
|
|
@@ -19167,6 +19063,7 @@ declare const HttpDelivery: Omit<{
|
|
|
19167
19063
|
readonly name?: string | undefined;
|
|
19168
19064
|
readonly precision?: number | undefined;
|
|
19169
19065
|
readonly required?: boolean | undefined;
|
|
19066
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19170
19067
|
readonly multiple?: boolean | undefined;
|
|
19171
19068
|
readonly dependencies?: string[] | undefined;
|
|
19172
19069
|
readonly externalId?: boolean | undefined;
|
|
@@ -19229,7 +19126,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19229
19126
|
relationshipField?: string | undefined;
|
|
19230
19127
|
} | undefined;
|
|
19231
19128
|
readonly language?: string | undefined;
|
|
19232
|
-
readonly maxRating?: number | undefined;
|
|
19233
19129
|
readonly step?: number | undefined;
|
|
19234
19130
|
readonly currencyConfig?: {
|
|
19235
19131
|
precision: number;
|
|
@@ -19323,7 +19219,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19323
19219
|
} | undefined;
|
|
19324
19220
|
readonly sortable?: boolean | undefined;
|
|
19325
19221
|
readonly inlineHelpText?: string | undefined;
|
|
19326
|
-
readonly caseSensitive?: boolean | undefined;
|
|
19327
19222
|
readonly autonumberFormat?: string | undefined;
|
|
19328
19223
|
readonly index?: boolean | undefined;
|
|
19329
19224
|
readonly type: "text";
|
|
@@ -19342,6 +19237,7 @@ declare const HttpDelivery: Omit<{
|
|
|
19342
19237
|
readonly name?: string | undefined;
|
|
19343
19238
|
readonly precision?: number | undefined;
|
|
19344
19239
|
readonly required?: boolean | undefined;
|
|
19240
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19345
19241
|
readonly multiple?: boolean | undefined;
|
|
19346
19242
|
readonly dependencies?: string[] | undefined;
|
|
19347
19243
|
readonly externalId?: boolean | undefined;
|
|
@@ -19404,7 +19300,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19404
19300
|
relationshipField?: string | undefined;
|
|
19405
19301
|
} | undefined;
|
|
19406
19302
|
readonly language?: string | undefined;
|
|
19407
|
-
readonly maxRating?: number | undefined;
|
|
19408
19303
|
readonly step?: number | undefined;
|
|
19409
19304
|
readonly currencyConfig?: {
|
|
19410
19305
|
precision: number;
|
|
@@ -19498,7 +19393,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19498
19393
|
} | undefined;
|
|
19499
19394
|
readonly sortable?: boolean | undefined;
|
|
19500
19395
|
readonly inlineHelpText?: string | undefined;
|
|
19501
|
-
readonly caseSensitive?: boolean | undefined;
|
|
19502
19396
|
readonly autonumberFormat?: string | undefined;
|
|
19503
19397
|
readonly index?: boolean | undefined;
|
|
19504
19398
|
readonly type: "number";
|
|
@@ -19517,6 +19411,7 @@ declare const HttpDelivery: Omit<{
|
|
|
19517
19411
|
readonly name?: string | undefined;
|
|
19518
19412
|
readonly precision?: number | undefined;
|
|
19519
19413
|
readonly required?: boolean | undefined;
|
|
19414
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19520
19415
|
readonly multiple?: boolean | undefined;
|
|
19521
19416
|
readonly dependencies?: string[] | undefined;
|
|
19522
19417
|
readonly externalId?: boolean | undefined;
|
|
@@ -19579,7 +19474,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19579
19474
|
relationshipField?: string | undefined;
|
|
19580
19475
|
} | undefined;
|
|
19581
19476
|
readonly language?: string | undefined;
|
|
19582
|
-
readonly maxRating?: number | undefined;
|
|
19583
19477
|
readonly step?: number | undefined;
|
|
19584
19478
|
readonly currencyConfig?: {
|
|
19585
19479
|
precision: number;
|
|
@@ -19673,7 +19567,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19673
19567
|
} | undefined;
|
|
19674
19568
|
readonly sortable?: boolean | undefined;
|
|
19675
19569
|
readonly inlineHelpText?: string | undefined;
|
|
19676
|
-
readonly caseSensitive?: boolean | undefined;
|
|
19677
19570
|
readonly autonumberFormat?: string | undefined;
|
|
19678
19571
|
readonly index?: boolean | undefined;
|
|
19679
19572
|
readonly type: "textarea";
|
|
@@ -19692,6 +19585,7 @@ declare const HttpDelivery: Omit<{
|
|
|
19692
19585
|
readonly name?: string | undefined;
|
|
19693
19586
|
readonly precision?: number | undefined;
|
|
19694
19587
|
readonly required?: boolean | undefined;
|
|
19588
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19695
19589
|
readonly multiple?: boolean | undefined;
|
|
19696
19590
|
readonly dependencies?: string[] | undefined;
|
|
19697
19591
|
readonly externalId?: boolean | undefined;
|
|
@@ -19754,7 +19648,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19754
19648
|
relationshipField?: string | undefined;
|
|
19755
19649
|
} | undefined;
|
|
19756
19650
|
readonly language?: string | undefined;
|
|
19757
|
-
readonly maxRating?: number | undefined;
|
|
19758
19651
|
readonly step?: number | undefined;
|
|
19759
19652
|
readonly currencyConfig?: {
|
|
19760
19653
|
precision: number;
|
|
@@ -19848,7 +19741,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19848
19741
|
} | undefined;
|
|
19849
19742
|
readonly sortable?: boolean | undefined;
|
|
19850
19743
|
readonly inlineHelpText?: string | undefined;
|
|
19851
|
-
readonly caseSensitive?: boolean | undefined;
|
|
19852
19744
|
readonly autonumberFormat?: string | undefined;
|
|
19853
19745
|
readonly index?: boolean | undefined;
|
|
19854
19746
|
readonly type: "number";
|
|
@@ -19867,6 +19759,7 @@ declare const HttpDelivery: Omit<{
|
|
|
19867
19759
|
readonly name?: string | undefined;
|
|
19868
19760
|
readonly precision?: number | undefined;
|
|
19869
19761
|
readonly required?: boolean | undefined;
|
|
19762
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19870
19763
|
readonly multiple?: boolean | undefined;
|
|
19871
19764
|
readonly dependencies?: string[] | undefined;
|
|
19872
19765
|
readonly externalId?: boolean | undefined;
|
|
@@ -19929,7 +19822,6 @@ declare const HttpDelivery: Omit<{
|
|
|
19929
19822
|
relationshipField?: string | undefined;
|
|
19930
19823
|
} | undefined;
|
|
19931
19824
|
readonly language?: string | undefined;
|
|
19932
|
-
readonly maxRating?: number | undefined;
|
|
19933
19825
|
readonly step?: number | undefined;
|
|
19934
19826
|
readonly currencyConfig?: {
|
|
19935
19827
|
precision: number;
|
|
@@ -20023,7 +19915,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20023
19915
|
} | undefined;
|
|
20024
19916
|
readonly sortable?: boolean | undefined;
|
|
20025
19917
|
readonly inlineHelpText?: string | undefined;
|
|
20026
|
-
readonly caseSensitive?: boolean | undefined;
|
|
20027
19918
|
readonly autonumberFormat?: string | undefined;
|
|
20028
19919
|
readonly index?: boolean | undefined;
|
|
20029
19920
|
readonly type: "text";
|
|
@@ -20042,6 +19933,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20042
19933
|
readonly name?: string | undefined;
|
|
20043
19934
|
readonly precision?: number | undefined;
|
|
20044
19935
|
readonly required?: boolean | undefined;
|
|
19936
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20045
19937
|
readonly multiple?: boolean | undefined;
|
|
20046
19938
|
readonly dependencies?: string[] | undefined;
|
|
20047
19939
|
readonly externalId?: boolean | undefined;
|
|
@@ -20104,7 +19996,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20104
19996
|
relationshipField?: string | undefined;
|
|
20105
19997
|
} | undefined;
|
|
20106
19998
|
readonly language?: string | undefined;
|
|
20107
|
-
readonly maxRating?: number | undefined;
|
|
20108
19999
|
readonly step?: number | undefined;
|
|
20109
20000
|
readonly currencyConfig?: {
|
|
20110
20001
|
precision: number;
|
|
@@ -20198,7 +20089,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20198
20089
|
} | undefined;
|
|
20199
20090
|
readonly sortable?: boolean | undefined;
|
|
20200
20091
|
readonly inlineHelpText?: string | undefined;
|
|
20201
|
-
readonly caseSensitive?: boolean | undefined;
|
|
20202
20092
|
readonly autonumberFormat?: string | undefined;
|
|
20203
20093
|
readonly index?: boolean | undefined;
|
|
20204
20094
|
readonly type: "number";
|
|
@@ -20217,6 +20107,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20217
20107
|
readonly name?: string | undefined;
|
|
20218
20108
|
readonly precision?: number | undefined;
|
|
20219
20109
|
readonly required?: boolean | undefined;
|
|
20110
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20220
20111
|
readonly multiple?: boolean | undefined;
|
|
20221
20112
|
readonly dependencies?: string[] | undefined;
|
|
20222
20113
|
readonly externalId?: boolean | undefined;
|
|
@@ -20279,7 +20170,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20279
20170
|
relationshipField?: string | undefined;
|
|
20280
20171
|
} | undefined;
|
|
20281
20172
|
readonly language?: string | undefined;
|
|
20282
|
-
readonly maxRating?: number | undefined;
|
|
20283
20173
|
readonly step?: number | undefined;
|
|
20284
20174
|
readonly currencyConfig?: {
|
|
20285
20175
|
precision: number;
|
|
@@ -20373,7 +20263,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20373
20263
|
} | undefined;
|
|
20374
20264
|
readonly sortable?: boolean | undefined;
|
|
20375
20265
|
readonly inlineHelpText?: string | undefined;
|
|
20376
|
-
readonly caseSensitive?: boolean | undefined;
|
|
20377
20266
|
readonly autonumberFormat?: string | undefined;
|
|
20378
20267
|
readonly index?: boolean | undefined;
|
|
20379
20268
|
readonly type: "text";
|
|
@@ -20392,6 +20281,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20392
20281
|
readonly name?: string | undefined;
|
|
20393
20282
|
readonly precision?: number | undefined;
|
|
20394
20283
|
readonly required?: boolean | undefined;
|
|
20284
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20395
20285
|
readonly multiple?: boolean | undefined;
|
|
20396
20286
|
readonly dependencies?: string[] | undefined;
|
|
20397
20287
|
readonly externalId?: boolean | undefined;
|
|
@@ -20454,7 +20344,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20454
20344
|
relationshipField?: string | undefined;
|
|
20455
20345
|
} | undefined;
|
|
20456
20346
|
readonly language?: string | undefined;
|
|
20457
|
-
readonly maxRating?: number | undefined;
|
|
20458
20347
|
readonly step?: number | undefined;
|
|
20459
20348
|
readonly currencyConfig?: {
|
|
20460
20349
|
precision: number;
|
|
@@ -20548,7 +20437,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20548
20437
|
} | undefined;
|
|
20549
20438
|
readonly sortable?: boolean | undefined;
|
|
20550
20439
|
readonly inlineHelpText?: string | undefined;
|
|
20551
|
-
readonly caseSensitive?: boolean | undefined;
|
|
20552
20440
|
readonly autonumberFormat?: string | undefined;
|
|
20553
20441
|
readonly index?: boolean | undefined;
|
|
20554
20442
|
readonly type: "number";
|
|
@@ -20567,6 +20455,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20567
20455
|
readonly name?: string | undefined;
|
|
20568
20456
|
readonly precision?: number | undefined;
|
|
20569
20457
|
readonly required?: boolean | undefined;
|
|
20458
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20570
20459
|
readonly multiple?: boolean | undefined;
|
|
20571
20460
|
readonly dependencies?: string[] | undefined;
|
|
20572
20461
|
readonly externalId?: boolean | undefined;
|
|
@@ -20629,7 +20518,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20629
20518
|
relationshipField?: string | undefined;
|
|
20630
20519
|
} | undefined;
|
|
20631
20520
|
readonly language?: string | undefined;
|
|
20632
|
-
readonly maxRating?: number | undefined;
|
|
20633
20521
|
readonly step?: number | undefined;
|
|
20634
20522
|
readonly currencyConfig?: {
|
|
20635
20523
|
precision: number;
|
|
@@ -20723,7 +20611,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20723
20611
|
} | undefined;
|
|
20724
20612
|
readonly sortable?: boolean | undefined;
|
|
20725
20613
|
readonly inlineHelpText?: string | undefined;
|
|
20726
|
-
readonly caseSensitive?: boolean | undefined;
|
|
20727
20614
|
readonly autonumberFormat?: string | undefined;
|
|
20728
20615
|
readonly index?: boolean | undefined;
|
|
20729
20616
|
readonly type: "number";
|
|
@@ -20742,6 +20629,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20742
20629
|
readonly name?: string | undefined;
|
|
20743
20630
|
readonly precision?: number | undefined;
|
|
20744
20631
|
readonly required?: boolean | undefined;
|
|
20632
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20745
20633
|
readonly multiple?: boolean | undefined;
|
|
20746
20634
|
readonly dependencies?: string[] | undefined;
|
|
20747
20635
|
readonly externalId?: boolean | undefined;
|
|
@@ -20804,7 +20692,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20804
20692
|
relationshipField?: string | undefined;
|
|
20805
20693
|
} | undefined;
|
|
20806
20694
|
readonly language?: string | undefined;
|
|
20807
|
-
readonly maxRating?: number | undefined;
|
|
20808
20695
|
readonly step?: number | undefined;
|
|
20809
20696
|
readonly currencyConfig?: {
|
|
20810
20697
|
precision: number;
|
|
@@ -20898,7 +20785,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20898
20785
|
} | undefined;
|
|
20899
20786
|
readonly sortable?: boolean | undefined;
|
|
20900
20787
|
readonly inlineHelpText?: string | undefined;
|
|
20901
|
-
readonly caseSensitive?: boolean | undefined;
|
|
20902
20788
|
readonly autonumberFormat?: string | undefined;
|
|
20903
20789
|
readonly index?: boolean | undefined;
|
|
20904
20790
|
readonly type: "number";
|
|
@@ -20917,6 +20803,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20917
20803
|
readonly name?: string | undefined;
|
|
20918
20804
|
readonly precision?: number | undefined;
|
|
20919
20805
|
readonly required?: boolean | undefined;
|
|
20806
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20920
20807
|
readonly multiple?: boolean | undefined;
|
|
20921
20808
|
readonly dependencies?: string[] | undefined;
|
|
20922
20809
|
readonly externalId?: boolean | undefined;
|
|
@@ -20979,7 +20866,6 @@ declare const HttpDelivery: Omit<{
|
|
|
20979
20866
|
relationshipField?: string | undefined;
|
|
20980
20867
|
} | undefined;
|
|
20981
20868
|
readonly language?: string | undefined;
|
|
20982
|
-
readonly maxRating?: number | undefined;
|
|
20983
20869
|
readonly step?: number | undefined;
|
|
20984
20870
|
readonly currencyConfig?: {
|
|
20985
20871
|
precision: number;
|
|
@@ -21073,7 +20959,6 @@ declare const HttpDelivery: Omit<{
|
|
|
21073
20959
|
} | undefined;
|
|
21074
20960
|
readonly sortable?: boolean | undefined;
|
|
21075
20961
|
readonly inlineHelpText?: string | undefined;
|
|
21076
|
-
readonly caseSensitive?: boolean | undefined;
|
|
21077
20962
|
readonly autonumberFormat?: string | undefined;
|
|
21078
20963
|
readonly index?: boolean | undefined;
|
|
21079
20964
|
readonly type: "number";
|
|
@@ -21092,6 +20977,7 @@ declare const HttpDelivery: Omit<{
|
|
|
21092
20977
|
readonly name?: string | undefined;
|
|
21093
20978
|
readonly precision?: number | undefined;
|
|
21094
20979
|
readonly required?: boolean | undefined;
|
|
20980
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21095
20981
|
readonly multiple?: boolean | undefined;
|
|
21096
20982
|
readonly dependencies?: string[] | undefined;
|
|
21097
20983
|
readonly externalId?: boolean | undefined;
|
|
@@ -21154,7 +21040,6 @@ declare const HttpDelivery: Omit<{
|
|
|
21154
21040
|
relationshipField?: string | undefined;
|
|
21155
21041
|
} | undefined;
|
|
21156
21042
|
readonly language?: string | undefined;
|
|
21157
|
-
readonly maxRating?: number | undefined;
|
|
21158
21043
|
readonly step?: number | undefined;
|
|
21159
21044
|
readonly currencyConfig?: {
|
|
21160
21045
|
precision: number;
|
|
@@ -21248,7 +21133,6 @@ declare const HttpDelivery: Omit<{
|
|
|
21248
21133
|
} | undefined;
|
|
21249
21134
|
readonly sortable?: boolean | undefined;
|
|
21250
21135
|
readonly inlineHelpText?: string | undefined;
|
|
21251
|
-
readonly caseSensitive?: boolean | undefined;
|
|
21252
21136
|
readonly autonumberFormat?: string | undefined;
|
|
21253
21137
|
readonly index?: boolean | undefined;
|
|
21254
21138
|
readonly type: "textarea";
|
|
@@ -21267,6 +21151,7 @@ declare const HttpDelivery: Omit<{
|
|
|
21267
21151
|
readonly name?: string | undefined;
|
|
21268
21152
|
readonly precision?: number | undefined;
|
|
21269
21153
|
readonly required?: boolean | undefined;
|
|
21154
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21270
21155
|
readonly multiple?: boolean | undefined;
|
|
21271
21156
|
readonly dependencies?: string[] | undefined;
|
|
21272
21157
|
readonly externalId?: boolean | undefined;
|
|
@@ -21329,7 +21214,6 @@ declare const HttpDelivery: Omit<{
|
|
|
21329
21214
|
relationshipField?: string | undefined;
|
|
21330
21215
|
} | undefined;
|
|
21331
21216
|
readonly language?: string | undefined;
|
|
21332
|
-
readonly maxRating?: number | undefined;
|
|
21333
21217
|
readonly step?: number | undefined;
|
|
21334
21218
|
readonly currencyConfig?: {
|
|
21335
21219
|
precision: number;
|
|
@@ -21423,7 +21307,6 @@ declare const HttpDelivery: Omit<{
|
|
|
21423
21307
|
} | undefined;
|
|
21424
21308
|
readonly sortable?: boolean | undefined;
|
|
21425
21309
|
readonly inlineHelpText?: string | undefined;
|
|
21426
|
-
readonly caseSensitive?: boolean | undefined;
|
|
21427
21310
|
readonly autonumberFormat?: string | undefined;
|
|
21428
21311
|
readonly index?: boolean | undefined;
|
|
21429
21312
|
readonly type: "textarea";
|
|
@@ -21442,6 +21325,7 @@ declare const HttpDelivery: Omit<{
|
|
|
21442
21325
|
readonly name?: string | undefined;
|
|
21443
21326
|
readonly precision?: number | undefined;
|
|
21444
21327
|
readonly required?: boolean | undefined;
|
|
21328
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21445
21329
|
readonly multiple?: boolean | undefined;
|
|
21446
21330
|
readonly dependencies?: string[] | undefined;
|
|
21447
21331
|
readonly externalId?: boolean | undefined;
|
|
@@ -21504,7 +21388,6 @@ declare const HttpDelivery: Omit<{
|
|
|
21504
21388
|
relationshipField?: string | undefined;
|
|
21505
21389
|
} | undefined;
|
|
21506
21390
|
readonly language?: string | undefined;
|
|
21507
|
-
readonly maxRating?: number | undefined;
|
|
21508
21391
|
readonly step?: number | undefined;
|
|
21509
21392
|
readonly currencyConfig?: {
|
|
21510
21393
|
precision: number;
|
|
@@ -21598,7 +21481,6 @@ declare const HttpDelivery: Omit<{
|
|
|
21598
21481
|
} | undefined;
|
|
21599
21482
|
readonly sortable?: boolean | undefined;
|
|
21600
21483
|
readonly inlineHelpText?: string | undefined;
|
|
21601
|
-
readonly caseSensitive?: boolean | undefined;
|
|
21602
21484
|
readonly autonumberFormat?: string | undefined;
|
|
21603
21485
|
readonly index?: boolean | undefined;
|
|
21604
21486
|
readonly type: "datetime";
|
|
@@ -21617,6 +21499,7 @@ declare const HttpDelivery: Omit<{
|
|
|
21617
21499
|
readonly name?: string | undefined;
|
|
21618
21500
|
readonly precision?: number | undefined;
|
|
21619
21501
|
readonly required?: boolean | undefined;
|
|
21502
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21620
21503
|
readonly multiple?: boolean | undefined;
|
|
21621
21504
|
readonly dependencies?: string[] | undefined;
|
|
21622
21505
|
readonly externalId?: boolean | undefined;
|
|
@@ -21679,7 +21562,6 @@ declare const HttpDelivery: Omit<{
|
|
|
21679
21562
|
relationshipField?: string | undefined;
|
|
21680
21563
|
} | undefined;
|
|
21681
21564
|
readonly language?: string | undefined;
|
|
21682
|
-
readonly maxRating?: number | undefined;
|
|
21683
21565
|
readonly step?: number | undefined;
|
|
21684
21566
|
readonly currencyConfig?: {
|
|
21685
21567
|
precision: number;
|
|
@@ -21773,7 +21655,6 @@ declare const HttpDelivery: Omit<{
|
|
|
21773
21655
|
} | undefined;
|
|
21774
21656
|
readonly sortable?: boolean | undefined;
|
|
21775
21657
|
readonly inlineHelpText?: string | undefined;
|
|
21776
|
-
readonly caseSensitive?: boolean | undefined;
|
|
21777
21658
|
readonly autonumberFormat?: string | undefined;
|
|
21778
21659
|
readonly index?: boolean | undefined;
|
|
21779
21660
|
readonly type: "datetime";
|