@objectstack/service-messaging 10.2.0 → 11.0.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 +77 -18
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +256 -25
- package/dist/index.d.ts +256 -25
- package/dist/index.js +77 -18
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/LICENSE.apache +0 -202
package/dist/index.d.ts
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
|
}
|
|
@@ -1190,16 +1203,17 @@ interface RetentionLogger {
|
|
|
1190
1203
|
warn(msg: string): void;
|
|
1191
1204
|
}
|
|
1192
1205
|
/**
|
|
1193
|
-
* One object the sweeper prunes, plus
|
|
1194
|
-
*
|
|
1195
|
-
*
|
|
1196
|
-
*
|
|
1197
|
-
*
|
|
1206
|
+
* One object the sweeper prunes, plus the field that carries its age. Every
|
|
1207
|
+
* target's `created_at` is a builtin audit column — a native `TIMESTAMP` on
|
|
1208
|
+
* Postgres/MySQL — so the cutoff is always an ISO-8601 string. (An earlier
|
|
1209
|
+
* version passed an epoch-ms number for the delivery outbox; that compared a
|
|
1210
|
+
* bigint to a timestamp column and Postgres rejected it with "date/time field
|
|
1211
|
+
* value out of range". SQLite's lenient column affinity hid the bug.) The
|
|
1212
|
+
* driver coerces the ISO comparand to the column's storage form per dialect.
|
|
1198
1213
|
*/
|
|
1199
1214
|
interface RetentionTarget {
|
|
1200
1215
|
readonly object: string;
|
|
1201
1216
|
readonly tsField: string;
|
|
1202
|
-
readonly format: 'iso' | 'epoch';
|
|
1203
1217
|
}
|
|
1204
1218
|
/**
|
|
1205
1219
|
* Default sweep set, ordered leaf-first (materializations/receipts/deliveries
|
|
@@ -1437,7 +1451,7 @@ declare const InboxMessage: Omit<{
|
|
|
1437
1451
|
abstract: boolean;
|
|
1438
1452
|
datasource: string;
|
|
1439
1453
|
fields: Record<string, {
|
|
1440
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
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";
|
|
1441
1455
|
required: boolean;
|
|
1442
1456
|
searchable: boolean;
|
|
1443
1457
|
multiple: boolean;
|
|
@@ -1511,6 +1525,7 @@ declare const InboxMessage: Omit<{
|
|
|
1511
1525
|
generatedBy?: string | undefined;
|
|
1512
1526
|
} | undefined;
|
|
1513
1527
|
} | undefined;
|
|
1528
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1514
1529
|
summaryOperations?: {
|
|
1515
1530
|
object: string;
|
|
1516
1531
|
field: string;
|
|
@@ -1645,6 +1660,7 @@ declare const InboxMessage: Omit<{
|
|
|
1645
1660
|
generatedBy?: string | undefined;
|
|
1646
1661
|
} | undefined;
|
|
1647
1662
|
} | undefined;
|
|
1663
|
+
requiredPermissions?: string[] | undefined;
|
|
1648
1664
|
system?: boolean | undefined;
|
|
1649
1665
|
inlineHelpText?: string | undefined;
|
|
1650
1666
|
caseSensitive?: boolean | undefined;
|
|
@@ -1720,6 +1736,10 @@ declare const InboxMessage: Omit<{
|
|
|
1720
1736
|
tenantField: string;
|
|
1721
1737
|
crossTenantAccess: boolean;
|
|
1722
1738
|
} | undefined;
|
|
1739
|
+
access?: {
|
|
1740
|
+
default: "public" | "private";
|
|
1741
|
+
} | undefined;
|
|
1742
|
+
requiredPermissions?: string[] | undefined;
|
|
1723
1743
|
softDelete?: {
|
|
1724
1744
|
enabled: boolean;
|
|
1725
1745
|
field: string;
|
|
@@ -2129,7 +2149,7 @@ declare const InboxMessage: Omit<{
|
|
|
2129
2149
|
field?: string | undefined;
|
|
2130
2150
|
objectOverride?: string | undefined;
|
|
2131
2151
|
label?: string | undefined;
|
|
2132
|
-
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;
|
|
2152
|
+
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;
|
|
2133
2153
|
options?: {
|
|
2134
2154
|
label: string;
|
|
2135
2155
|
value: string;
|
|
@@ -2173,6 +2193,7 @@ declare const InboxMessage: Omit<{
|
|
|
2173
2193
|
generatedBy?: string | undefined;
|
|
2174
2194
|
} | undefined;
|
|
2175
2195
|
} | undefined;
|
|
2196
|
+
requiredPermissions?: string[] | undefined;
|
|
2176
2197
|
shortcut?: string | undefined;
|
|
2177
2198
|
bulkEnabled?: boolean | undefined;
|
|
2178
2199
|
ai?: {
|
|
@@ -2260,10 +2281,12 @@ declare const InboxMessage: Omit<{
|
|
|
2260
2281
|
readonly name?: string | undefined;
|
|
2261
2282
|
readonly precision?: number | undefined;
|
|
2262
2283
|
readonly required?: boolean | undefined;
|
|
2284
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2263
2285
|
readonly multiple?: boolean | undefined;
|
|
2264
2286
|
readonly dependencies?: string[] | undefined;
|
|
2265
2287
|
readonly externalId?: boolean | undefined;
|
|
2266
2288
|
readonly defaultValue?: unknown;
|
|
2289
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2267
2290
|
readonly group?: string | undefined;
|
|
2268
2291
|
readonly hidden?: boolean | undefined;
|
|
2269
2292
|
readonly system?: boolean | undefined;
|
|
@@ -2434,10 +2457,12 @@ declare const InboxMessage: Omit<{
|
|
|
2434
2457
|
readonly name?: string | undefined;
|
|
2435
2458
|
readonly precision?: number | undefined;
|
|
2436
2459
|
readonly required?: boolean | undefined;
|
|
2460
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2437
2461
|
readonly multiple?: boolean | undefined;
|
|
2438
2462
|
readonly dependencies?: string[] | undefined;
|
|
2439
2463
|
readonly externalId?: boolean | undefined;
|
|
2440
2464
|
readonly defaultValue?: unknown;
|
|
2465
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2441
2466
|
readonly group?: string | undefined;
|
|
2442
2467
|
readonly hidden?: boolean | undefined;
|
|
2443
2468
|
readonly system?: boolean | undefined;
|
|
@@ -2608,10 +2633,12 @@ declare const InboxMessage: Omit<{
|
|
|
2608
2633
|
readonly name?: string | undefined;
|
|
2609
2634
|
readonly precision?: number | undefined;
|
|
2610
2635
|
readonly required?: boolean | undefined;
|
|
2636
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2611
2637
|
readonly multiple?: boolean | undefined;
|
|
2612
2638
|
readonly dependencies?: string[] | undefined;
|
|
2613
2639
|
readonly externalId?: boolean | undefined;
|
|
2614
2640
|
readonly defaultValue?: unknown;
|
|
2641
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2615
2642
|
readonly group?: string | undefined;
|
|
2616
2643
|
readonly hidden?: boolean | undefined;
|
|
2617
2644
|
readonly system?: boolean | undefined;
|
|
@@ -2782,10 +2809,12 @@ declare const InboxMessage: Omit<{
|
|
|
2782
2809
|
readonly name?: string | undefined;
|
|
2783
2810
|
readonly precision?: number | undefined;
|
|
2784
2811
|
readonly required?: boolean | undefined;
|
|
2812
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2785
2813
|
readonly multiple?: boolean | undefined;
|
|
2786
2814
|
readonly dependencies?: string[] | undefined;
|
|
2787
2815
|
readonly externalId?: boolean | undefined;
|
|
2788
2816
|
readonly defaultValue?: unknown;
|
|
2817
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2789
2818
|
readonly group?: string | undefined;
|
|
2790
2819
|
readonly hidden?: boolean | undefined;
|
|
2791
2820
|
readonly system?: boolean | undefined;
|
|
@@ -2956,10 +2985,12 @@ declare const InboxMessage: Omit<{
|
|
|
2956
2985
|
readonly name?: string | undefined;
|
|
2957
2986
|
readonly precision?: number | undefined;
|
|
2958
2987
|
readonly required?: boolean | undefined;
|
|
2988
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2959
2989
|
readonly multiple?: boolean | undefined;
|
|
2960
2990
|
readonly dependencies?: string[] | undefined;
|
|
2961
2991
|
readonly externalId?: boolean | undefined;
|
|
2962
2992
|
readonly defaultValue?: unknown;
|
|
2993
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2963
2994
|
readonly group?: string | undefined;
|
|
2964
2995
|
readonly hidden?: boolean | undefined;
|
|
2965
2996
|
readonly system?: boolean | undefined;
|
|
@@ -3130,10 +3161,12 @@ declare const InboxMessage: Omit<{
|
|
|
3130
3161
|
readonly name?: string | undefined;
|
|
3131
3162
|
readonly precision?: number | undefined;
|
|
3132
3163
|
readonly required?: boolean | undefined;
|
|
3164
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3133
3165
|
readonly multiple?: boolean | undefined;
|
|
3134
3166
|
readonly dependencies?: string[] | undefined;
|
|
3135
3167
|
readonly externalId?: boolean | undefined;
|
|
3136
3168
|
readonly defaultValue?: unknown;
|
|
3169
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
3137
3170
|
readonly group?: string | undefined;
|
|
3138
3171
|
readonly hidden?: boolean | undefined;
|
|
3139
3172
|
readonly system?: boolean | undefined;
|
|
@@ -3304,10 +3337,12 @@ declare const InboxMessage: Omit<{
|
|
|
3304
3337
|
readonly name?: string | undefined;
|
|
3305
3338
|
readonly precision?: number | undefined;
|
|
3306
3339
|
readonly required?: boolean | undefined;
|
|
3340
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3307
3341
|
readonly multiple?: boolean | undefined;
|
|
3308
3342
|
readonly dependencies?: string[] | undefined;
|
|
3309
3343
|
readonly externalId?: boolean | undefined;
|
|
3310
3344
|
readonly defaultValue?: unknown;
|
|
3345
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
3311
3346
|
readonly group?: string | undefined;
|
|
3312
3347
|
readonly hidden?: boolean | undefined;
|
|
3313
3348
|
readonly system?: boolean | undefined;
|
|
@@ -3478,10 +3513,12 @@ declare const InboxMessage: Omit<{
|
|
|
3478
3513
|
readonly name?: string | undefined;
|
|
3479
3514
|
readonly precision?: number | undefined;
|
|
3480
3515
|
readonly required?: boolean | undefined;
|
|
3516
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3481
3517
|
readonly multiple?: boolean | undefined;
|
|
3482
3518
|
readonly dependencies?: string[] | undefined;
|
|
3483
3519
|
readonly externalId?: boolean | undefined;
|
|
3484
3520
|
readonly defaultValue?: unknown;
|
|
3521
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
3485
3522
|
readonly group?: string | undefined;
|
|
3486
3523
|
readonly hidden?: boolean | undefined;
|
|
3487
3524
|
readonly system?: boolean | undefined;
|
|
@@ -3652,10 +3689,12 @@ declare const InboxMessage: Omit<{
|
|
|
3652
3689
|
readonly name?: string | undefined;
|
|
3653
3690
|
readonly precision?: number | undefined;
|
|
3654
3691
|
readonly required?: boolean | undefined;
|
|
3692
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3655
3693
|
readonly multiple?: boolean | undefined;
|
|
3656
3694
|
readonly dependencies?: string[] | undefined;
|
|
3657
3695
|
readonly externalId?: boolean | undefined;
|
|
3658
3696
|
readonly defaultValue?: unknown;
|
|
3697
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
3659
3698
|
readonly group?: string | undefined;
|
|
3660
3699
|
readonly hidden?: boolean | undefined;
|
|
3661
3700
|
readonly system?: boolean | undefined;
|
|
@@ -3826,10 +3865,12 @@ declare const InboxMessage: Omit<{
|
|
|
3826
3865
|
readonly name?: string | undefined;
|
|
3827
3866
|
readonly precision?: number | undefined;
|
|
3828
3867
|
readonly required?: boolean | undefined;
|
|
3868
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3829
3869
|
readonly multiple?: boolean | undefined;
|
|
3830
3870
|
readonly dependencies?: string[] | undefined;
|
|
3831
3871
|
readonly externalId?: boolean | undefined;
|
|
3832
3872
|
readonly defaultValue?: unknown;
|
|
3873
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
3833
3874
|
readonly group?: string | undefined;
|
|
3834
3875
|
readonly hidden?: boolean | undefined;
|
|
3835
3876
|
readonly system?: boolean | undefined;
|
|
@@ -4013,7 +4054,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4013
4054
|
abstract: boolean;
|
|
4014
4055
|
datasource: string;
|
|
4015
4056
|
fields: Record<string, {
|
|
4016
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
4057
|
+
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";
|
|
4017
4058
|
required: boolean;
|
|
4018
4059
|
searchable: boolean;
|
|
4019
4060
|
multiple: boolean;
|
|
@@ -4087,6 +4128,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4087
4128
|
generatedBy?: string | undefined;
|
|
4088
4129
|
} | undefined;
|
|
4089
4130
|
} | undefined;
|
|
4131
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4090
4132
|
summaryOperations?: {
|
|
4091
4133
|
object: string;
|
|
4092
4134
|
field: string;
|
|
@@ -4221,6 +4263,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4221
4263
|
generatedBy?: string | undefined;
|
|
4222
4264
|
} | undefined;
|
|
4223
4265
|
} | undefined;
|
|
4266
|
+
requiredPermissions?: string[] | undefined;
|
|
4224
4267
|
system?: boolean | undefined;
|
|
4225
4268
|
inlineHelpText?: string | undefined;
|
|
4226
4269
|
caseSensitive?: boolean | undefined;
|
|
@@ -4296,6 +4339,10 @@ declare const NotificationReceipt: Omit<{
|
|
|
4296
4339
|
tenantField: string;
|
|
4297
4340
|
crossTenantAccess: boolean;
|
|
4298
4341
|
} | undefined;
|
|
4342
|
+
access?: {
|
|
4343
|
+
default: "public" | "private";
|
|
4344
|
+
} | undefined;
|
|
4345
|
+
requiredPermissions?: string[] | undefined;
|
|
4299
4346
|
softDelete?: {
|
|
4300
4347
|
enabled: boolean;
|
|
4301
4348
|
field: string;
|
|
@@ -4705,7 +4752,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4705
4752
|
field?: string | undefined;
|
|
4706
4753
|
objectOverride?: string | undefined;
|
|
4707
4754
|
label?: string | undefined;
|
|
4708
|
-
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;
|
|
4755
|
+
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;
|
|
4709
4756
|
options?: {
|
|
4710
4757
|
label: string;
|
|
4711
4758
|
value: string;
|
|
@@ -4749,6 +4796,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4749
4796
|
generatedBy?: string | undefined;
|
|
4750
4797
|
} | undefined;
|
|
4751
4798
|
} | undefined;
|
|
4799
|
+
requiredPermissions?: string[] | undefined;
|
|
4752
4800
|
shortcut?: string | undefined;
|
|
4753
4801
|
bulkEnabled?: boolean | undefined;
|
|
4754
4802
|
ai?: {
|
|
@@ -4810,10 +4858,12 @@ declare const NotificationReceipt: Omit<{
|
|
|
4810
4858
|
readonly name?: string | undefined;
|
|
4811
4859
|
readonly precision?: number | undefined;
|
|
4812
4860
|
readonly required?: boolean | undefined;
|
|
4861
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4813
4862
|
readonly multiple?: boolean | undefined;
|
|
4814
4863
|
readonly dependencies?: string[] | undefined;
|
|
4815
4864
|
readonly externalId?: boolean | undefined;
|
|
4816
4865
|
readonly defaultValue?: unknown;
|
|
4866
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
4817
4867
|
readonly group?: string | undefined;
|
|
4818
4868
|
readonly hidden?: boolean | undefined;
|
|
4819
4869
|
readonly system?: boolean | undefined;
|
|
@@ -4984,10 +5034,12 @@ declare const NotificationReceipt: Omit<{
|
|
|
4984
5034
|
readonly name?: string | undefined;
|
|
4985
5035
|
readonly precision?: number | undefined;
|
|
4986
5036
|
readonly required?: boolean | undefined;
|
|
5037
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4987
5038
|
readonly multiple?: boolean | undefined;
|
|
4988
5039
|
readonly dependencies?: string[] | undefined;
|
|
4989
5040
|
readonly externalId?: boolean | undefined;
|
|
4990
5041
|
readonly defaultValue?: unknown;
|
|
5042
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
4991
5043
|
readonly group?: string | undefined;
|
|
4992
5044
|
readonly hidden?: boolean | undefined;
|
|
4993
5045
|
readonly system?: boolean | undefined;
|
|
@@ -5158,10 +5210,12 @@ declare const NotificationReceipt: Omit<{
|
|
|
5158
5210
|
readonly name?: string | undefined;
|
|
5159
5211
|
readonly precision?: number | undefined;
|
|
5160
5212
|
readonly required?: boolean | undefined;
|
|
5213
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5161
5214
|
readonly multiple?: boolean | undefined;
|
|
5162
5215
|
readonly dependencies?: string[] | undefined;
|
|
5163
5216
|
readonly externalId?: boolean | undefined;
|
|
5164
5217
|
readonly defaultValue?: unknown;
|
|
5218
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5165
5219
|
readonly group?: string | undefined;
|
|
5166
5220
|
readonly hidden?: boolean | undefined;
|
|
5167
5221
|
readonly system?: boolean | undefined;
|
|
@@ -5332,10 +5386,12 @@ declare const NotificationReceipt: Omit<{
|
|
|
5332
5386
|
readonly name?: string | undefined;
|
|
5333
5387
|
readonly precision?: number | undefined;
|
|
5334
5388
|
readonly required?: boolean | undefined;
|
|
5389
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5335
5390
|
readonly multiple?: boolean | undefined;
|
|
5336
5391
|
readonly dependencies?: string[] | undefined;
|
|
5337
5392
|
readonly externalId?: boolean | undefined;
|
|
5338
5393
|
readonly defaultValue?: unknown;
|
|
5394
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5339
5395
|
readonly group?: string | undefined;
|
|
5340
5396
|
readonly hidden?: boolean | undefined;
|
|
5341
5397
|
readonly system?: boolean | undefined;
|
|
@@ -5506,10 +5562,12 @@ declare const NotificationReceipt: Omit<{
|
|
|
5506
5562
|
readonly name?: string | undefined;
|
|
5507
5563
|
readonly precision?: number | undefined;
|
|
5508
5564
|
readonly required?: boolean | undefined;
|
|
5565
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5509
5566
|
readonly multiple?: boolean | undefined;
|
|
5510
5567
|
readonly dependencies?: string[] | undefined;
|
|
5511
5568
|
readonly externalId?: boolean | undefined;
|
|
5512
5569
|
readonly defaultValue?: unknown;
|
|
5570
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5513
5571
|
readonly group?: string | undefined;
|
|
5514
5572
|
readonly hidden?: boolean | undefined;
|
|
5515
5573
|
readonly system?: boolean | undefined;
|
|
@@ -5680,10 +5738,12 @@ declare const NotificationReceipt: Omit<{
|
|
|
5680
5738
|
readonly name?: string | undefined;
|
|
5681
5739
|
readonly precision?: number | undefined;
|
|
5682
5740
|
readonly required?: boolean | undefined;
|
|
5741
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5683
5742
|
readonly multiple?: boolean | undefined;
|
|
5684
5743
|
readonly dependencies?: string[] | undefined;
|
|
5685
5744
|
readonly externalId?: boolean | undefined;
|
|
5686
5745
|
readonly defaultValue?: unknown;
|
|
5746
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5687
5747
|
readonly group?: string | undefined;
|
|
5688
5748
|
readonly hidden?: boolean | undefined;
|
|
5689
5749
|
readonly system?: boolean | undefined;
|
|
@@ -5854,10 +5914,12 @@ declare const NotificationReceipt: Omit<{
|
|
|
5854
5914
|
readonly name?: string | undefined;
|
|
5855
5915
|
readonly precision?: number | undefined;
|
|
5856
5916
|
readonly required?: boolean | undefined;
|
|
5917
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5857
5918
|
readonly multiple?: boolean | undefined;
|
|
5858
5919
|
readonly dependencies?: string[] | undefined;
|
|
5859
5920
|
readonly externalId?: boolean | undefined;
|
|
5860
5921
|
readonly defaultValue?: unknown;
|
|
5922
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5861
5923
|
readonly group?: string | undefined;
|
|
5862
5924
|
readonly hidden?: boolean | undefined;
|
|
5863
5925
|
readonly system?: boolean | undefined;
|
|
@@ -6028,10 +6090,12 @@ declare const NotificationReceipt: Omit<{
|
|
|
6028
6090
|
readonly name?: string | undefined;
|
|
6029
6091
|
readonly precision?: number | undefined;
|
|
6030
6092
|
readonly required?: boolean | undefined;
|
|
6093
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6031
6094
|
readonly multiple?: boolean | undefined;
|
|
6032
6095
|
readonly dependencies?: string[] | undefined;
|
|
6033
6096
|
readonly externalId?: boolean | undefined;
|
|
6034
6097
|
readonly defaultValue?: unknown;
|
|
6098
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
6035
6099
|
readonly group?: string | undefined;
|
|
6036
6100
|
readonly hidden?: boolean | undefined;
|
|
6037
6101
|
readonly system?: boolean | undefined;
|
|
@@ -6208,7 +6272,9 @@ declare const NotificationReceipt: Omit<{
|
|
|
6208
6272
|
*
|
|
6209
6273
|
* `payload` snapshots the rendered notification content at enqueue time so a
|
|
6210
6274
|
* later edit of the L2 event can't rewrite an in-flight delivery (and so the
|
|
6211
|
-
* dispatcher needs no second read to send).
|
|
6275
|
+
* dispatcher needs no second read to send). Scheduling fields (`claimed_at`,
|
|
6276
|
+
* `next_attempt_at`, `last_attempted_at`) are epoch ms; the builtin
|
|
6277
|
+
* `created_at` / `updated_at` audit columns are native timestamps.
|
|
6212
6278
|
*/
|
|
6213
6279
|
declare const NotificationDelivery: Omit<{
|
|
6214
6280
|
name: string;
|
|
@@ -6217,7 +6283,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6217
6283
|
abstract: boolean;
|
|
6218
6284
|
datasource: string;
|
|
6219
6285
|
fields: Record<string, {
|
|
6220
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
6286
|
+
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";
|
|
6221
6287
|
required: boolean;
|
|
6222
6288
|
searchable: boolean;
|
|
6223
6289
|
multiple: boolean;
|
|
@@ -6291,6 +6357,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6291
6357
|
generatedBy?: string | undefined;
|
|
6292
6358
|
} | undefined;
|
|
6293
6359
|
} | undefined;
|
|
6360
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6294
6361
|
summaryOperations?: {
|
|
6295
6362
|
object: string;
|
|
6296
6363
|
field: string;
|
|
@@ -6425,6 +6492,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6425
6492
|
generatedBy?: string | undefined;
|
|
6426
6493
|
} | undefined;
|
|
6427
6494
|
} | undefined;
|
|
6495
|
+
requiredPermissions?: string[] | undefined;
|
|
6428
6496
|
system?: boolean | undefined;
|
|
6429
6497
|
inlineHelpText?: string | undefined;
|
|
6430
6498
|
caseSensitive?: boolean | undefined;
|
|
@@ -6500,6 +6568,10 @@ declare const NotificationDelivery: Omit<{
|
|
|
6500
6568
|
tenantField: string;
|
|
6501
6569
|
crossTenantAccess: boolean;
|
|
6502
6570
|
} | undefined;
|
|
6571
|
+
access?: {
|
|
6572
|
+
default: "public" | "private";
|
|
6573
|
+
} | undefined;
|
|
6574
|
+
requiredPermissions?: string[] | undefined;
|
|
6503
6575
|
softDelete?: {
|
|
6504
6576
|
enabled: boolean;
|
|
6505
6577
|
field: string;
|
|
@@ -6909,7 +6981,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6909
6981
|
field?: string | undefined;
|
|
6910
6982
|
objectOverride?: string | undefined;
|
|
6911
6983
|
label?: string | undefined;
|
|
6912
|
-
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;
|
|
6984
|
+
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;
|
|
6913
6985
|
options?: {
|
|
6914
6986
|
label: string;
|
|
6915
6987
|
value: string;
|
|
@@ -6953,6 +7025,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6953
7025
|
generatedBy?: string | undefined;
|
|
6954
7026
|
} | undefined;
|
|
6955
7027
|
} | undefined;
|
|
7028
|
+
requiredPermissions?: string[] | undefined;
|
|
6956
7029
|
shortcut?: string | undefined;
|
|
6957
7030
|
bulkEnabled?: boolean | undefined;
|
|
6958
7031
|
ai?: {
|
|
@@ -7014,10 +7087,12 @@ declare const NotificationDelivery: Omit<{
|
|
|
7014
7087
|
readonly name?: string | undefined;
|
|
7015
7088
|
readonly precision?: number | undefined;
|
|
7016
7089
|
readonly required?: boolean | undefined;
|
|
7090
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7017
7091
|
readonly multiple?: boolean | undefined;
|
|
7018
7092
|
readonly dependencies?: string[] | undefined;
|
|
7019
7093
|
readonly externalId?: boolean | undefined;
|
|
7020
7094
|
readonly defaultValue?: unknown;
|
|
7095
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
7021
7096
|
readonly group?: string | undefined;
|
|
7022
7097
|
readonly hidden?: boolean | undefined;
|
|
7023
7098
|
readonly system?: boolean | undefined;
|
|
@@ -7188,10 +7263,12 @@ declare const NotificationDelivery: Omit<{
|
|
|
7188
7263
|
readonly name?: string | undefined;
|
|
7189
7264
|
readonly precision?: number | undefined;
|
|
7190
7265
|
readonly required?: boolean | undefined;
|
|
7266
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7191
7267
|
readonly multiple?: boolean | undefined;
|
|
7192
7268
|
readonly dependencies?: string[] | undefined;
|
|
7193
7269
|
readonly externalId?: boolean | undefined;
|
|
7194
7270
|
readonly defaultValue?: unknown;
|
|
7271
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
7195
7272
|
readonly group?: string | undefined;
|
|
7196
7273
|
readonly hidden?: boolean | undefined;
|
|
7197
7274
|
readonly system?: boolean | undefined;
|
|
@@ -7362,10 +7439,12 @@ declare const NotificationDelivery: Omit<{
|
|
|
7362
7439
|
readonly name?: string | undefined;
|
|
7363
7440
|
readonly precision?: number | undefined;
|
|
7364
7441
|
readonly required?: boolean | undefined;
|
|
7442
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7365
7443
|
readonly multiple?: boolean | undefined;
|
|
7366
7444
|
readonly dependencies?: string[] | undefined;
|
|
7367
7445
|
readonly externalId?: boolean | undefined;
|
|
7368
7446
|
readonly defaultValue?: unknown;
|
|
7447
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
7369
7448
|
readonly group?: string | undefined;
|
|
7370
7449
|
readonly hidden?: boolean | undefined;
|
|
7371
7450
|
readonly system?: boolean | undefined;
|
|
@@ -7536,10 +7615,12 @@ declare const NotificationDelivery: Omit<{
|
|
|
7536
7615
|
readonly name?: string | undefined;
|
|
7537
7616
|
readonly precision?: number | undefined;
|
|
7538
7617
|
readonly required?: boolean | undefined;
|
|
7618
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7539
7619
|
readonly multiple?: boolean | undefined;
|
|
7540
7620
|
readonly dependencies?: string[] | undefined;
|
|
7541
7621
|
readonly externalId?: boolean | undefined;
|
|
7542
7622
|
readonly defaultValue?: unknown;
|
|
7623
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
7543
7624
|
readonly group?: string | undefined;
|
|
7544
7625
|
readonly hidden?: boolean | undefined;
|
|
7545
7626
|
readonly system?: boolean | undefined;
|
|
@@ -7710,10 +7791,12 @@ declare const NotificationDelivery: Omit<{
|
|
|
7710
7791
|
readonly name?: string | undefined;
|
|
7711
7792
|
readonly precision?: number | undefined;
|
|
7712
7793
|
readonly required?: boolean | undefined;
|
|
7794
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7713
7795
|
readonly multiple?: boolean | undefined;
|
|
7714
7796
|
readonly dependencies?: string[] | undefined;
|
|
7715
7797
|
readonly externalId?: boolean | undefined;
|
|
7716
7798
|
readonly defaultValue?: unknown;
|
|
7799
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
7717
7800
|
readonly group?: string | undefined;
|
|
7718
7801
|
readonly hidden?: boolean | undefined;
|
|
7719
7802
|
readonly system?: boolean | undefined;
|
|
@@ -7884,10 +7967,12 @@ declare const NotificationDelivery: Omit<{
|
|
|
7884
7967
|
readonly name?: string | undefined;
|
|
7885
7968
|
readonly precision?: number | undefined;
|
|
7886
7969
|
readonly required?: boolean | undefined;
|
|
7970
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7887
7971
|
readonly multiple?: boolean | undefined;
|
|
7888
7972
|
readonly dependencies?: string[] | undefined;
|
|
7889
7973
|
readonly externalId?: boolean | undefined;
|
|
7890
7974
|
readonly defaultValue?: unknown;
|
|
7975
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
7891
7976
|
readonly group?: string | undefined;
|
|
7892
7977
|
readonly hidden?: boolean | undefined;
|
|
7893
7978
|
readonly system?: boolean | undefined;
|
|
@@ -8058,10 +8143,12 @@ declare const NotificationDelivery: Omit<{
|
|
|
8058
8143
|
readonly name?: string | undefined;
|
|
8059
8144
|
readonly precision?: number | undefined;
|
|
8060
8145
|
readonly required?: boolean | undefined;
|
|
8146
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8061
8147
|
readonly multiple?: boolean | undefined;
|
|
8062
8148
|
readonly dependencies?: string[] | undefined;
|
|
8063
8149
|
readonly externalId?: boolean | undefined;
|
|
8064
8150
|
readonly defaultValue?: unknown;
|
|
8151
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
8065
8152
|
readonly group?: string | undefined;
|
|
8066
8153
|
readonly hidden?: boolean | undefined;
|
|
8067
8154
|
readonly system?: boolean | undefined;
|
|
@@ -8232,10 +8319,12 @@ declare const NotificationDelivery: Omit<{
|
|
|
8232
8319
|
readonly name?: string | undefined;
|
|
8233
8320
|
readonly precision?: number | undefined;
|
|
8234
8321
|
readonly required?: boolean | undefined;
|
|
8322
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8235
8323
|
readonly multiple?: boolean | undefined;
|
|
8236
8324
|
readonly dependencies?: string[] | undefined;
|
|
8237
8325
|
readonly externalId?: boolean | undefined;
|
|
8238
8326
|
readonly defaultValue?: unknown;
|
|
8327
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
8239
8328
|
readonly group?: string | undefined;
|
|
8240
8329
|
readonly hidden?: boolean | undefined;
|
|
8241
8330
|
readonly system?: boolean | undefined;
|
|
@@ -8406,10 +8495,12 @@ declare const NotificationDelivery: Omit<{
|
|
|
8406
8495
|
readonly name?: string | undefined;
|
|
8407
8496
|
readonly precision?: number | undefined;
|
|
8408
8497
|
readonly required?: boolean | undefined;
|
|
8498
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8409
8499
|
readonly multiple?: boolean | undefined;
|
|
8410
8500
|
readonly dependencies?: string[] | undefined;
|
|
8411
8501
|
readonly externalId?: boolean | undefined;
|
|
8412
8502
|
readonly defaultValue?: unknown;
|
|
8503
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
8413
8504
|
readonly group?: string | undefined;
|
|
8414
8505
|
readonly hidden?: boolean | undefined;
|
|
8415
8506
|
readonly system?: boolean | undefined;
|
|
@@ -8580,10 +8671,12 @@ declare const NotificationDelivery: Omit<{
|
|
|
8580
8671
|
readonly name?: string | undefined;
|
|
8581
8672
|
readonly precision?: number | undefined;
|
|
8582
8673
|
readonly required?: boolean | undefined;
|
|
8674
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8583
8675
|
readonly multiple?: boolean | undefined;
|
|
8584
8676
|
readonly dependencies?: string[] | undefined;
|
|
8585
8677
|
readonly externalId?: boolean | undefined;
|
|
8586
8678
|
readonly defaultValue?: unknown;
|
|
8679
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
8587
8680
|
readonly group?: string | undefined;
|
|
8588
8681
|
readonly hidden?: boolean | undefined;
|
|
8589
8682
|
readonly system?: boolean | undefined;
|
|
@@ -8754,10 +8847,12 @@ declare const NotificationDelivery: Omit<{
|
|
|
8754
8847
|
readonly name?: string | undefined;
|
|
8755
8848
|
readonly precision?: number | undefined;
|
|
8756
8849
|
readonly required?: boolean | undefined;
|
|
8850
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8757
8851
|
readonly multiple?: boolean | undefined;
|
|
8758
8852
|
readonly dependencies?: string[] | undefined;
|
|
8759
8853
|
readonly externalId?: boolean | undefined;
|
|
8760
8854
|
readonly defaultValue?: unknown;
|
|
8855
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
8761
8856
|
readonly group?: string | undefined;
|
|
8762
8857
|
readonly hidden?: boolean | undefined;
|
|
8763
8858
|
readonly system?: boolean | undefined;
|
|
@@ -8928,10 +9023,12 @@ declare const NotificationDelivery: Omit<{
|
|
|
8928
9023
|
readonly name?: string | undefined;
|
|
8929
9024
|
readonly precision?: number | undefined;
|
|
8930
9025
|
readonly required?: boolean | undefined;
|
|
9026
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8931
9027
|
readonly multiple?: boolean | undefined;
|
|
8932
9028
|
readonly dependencies?: string[] | undefined;
|
|
8933
9029
|
readonly externalId?: boolean | undefined;
|
|
8934
9030
|
readonly defaultValue?: unknown;
|
|
9031
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
8935
9032
|
readonly group?: string | undefined;
|
|
8936
9033
|
readonly hidden?: boolean | undefined;
|
|
8937
9034
|
readonly system?: boolean | undefined;
|
|
@@ -9102,10 +9199,12 @@ declare const NotificationDelivery: Omit<{
|
|
|
9102
9199
|
readonly name?: string | undefined;
|
|
9103
9200
|
readonly precision?: number | undefined;
|
|
9104
9201
|
readonly required?: boolean | undefined;
|
|
9202
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9105
9203
|
readonly multiple?: boolean | undefined;
|
|
9106
9204
|
readonly dependencies?: string[] | undefined;
|
|
9107
9205
|
readonly externalId?: boolean | undefined;
|
|
9108
9206
|
readonly defaultValue?: unknown;
|
|
9207
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
9109
9208
|
readonly group?: string | undefined;
|
|
9110
9209
|
readonly hidden?: boolean | undefined;
|
|
9111
9210
|
readonly system?: boolean | undefined;
|
|
@@ -9276,10 +9375,12 @@ declare const NotificationDelivery: Omit<{
|
|
|
9276
9375
|
readonly name?: string | undefined;
|
|
9277
9376
|
readonly precision?: number | undefined;
|
|
9278
9377
|
readonly required?: boolean | undefined;
|
|
9378
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9279
9379
|
readonly multiple?: boolean | undefined;
|
|
9280
9380
|
readonly dependencies?: string[] | undefined;
|
|
9281
9381
|
readonly externalId?: boolean | undefined;
|
|
9282
9382
|
readonly defaultValue?: unknown;
|
|
9383
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
9283
9384
|
readonly group?: string | undefined;
|
|
9284
9385
|
readonly hidden?: boolean | undefined;
|
|
9285
9386
|
readonly system?: boolean | undefined;
|
|
@@ -9450,10 +9551,12 @@ declare const NotificationDelivery: Omit<{
|
|
|
9450
9551
|
readonly name?: string | undefined;
|
|
9451
9552
|
readonly precision?: number | undefined;
|
|
9452
9553
|
readonly required?: boolean | undefined;
|
|
9554
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9453
9555
|
readonly multiple?: boolean | undefined;
|
|
9454
9556
|
readonly dependencies?: string[] | undefined;
|
|
9455
9557
|
readonly externalId?: boolean | undefined;
|
|
9456
9558
|
readonly defaultValue?: unknown;
|
|
9559
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
9457
9560
|
readonly group?: string | undefined;
|
|
9458
9561
|
readonly hidden?: boolean | undefined;
|
|
9459
9562
|
readonly system?: boolean | undefined;
|
|
@@ -9624,10 +9727,12 @@ declare const NotificationDelivery: Omit<{
|
|
|
9624
9727
|
readonly name?: string | undefined;
|
|
9625
9728
|
readonly precision?: number | undefined;
|
|
9626
9729
|
readonly required?: boolean | undefined;
|
|
9730
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9627
9731
|
readonly multiple?: boolean | undefined;
|
|
9628
9732
|
readonly dependencies?: string[] | undefined;
|
|
9629
9733
|
readonly externalId?: boolean | undefined;
|
|
9630
9734
|
readonly defaultValue?: unknown;
|
|
9735
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
9631
9736
|
readonly group?: string | undefined;
|
|
9632
9737
|
readonly hidden?: boolean | undefined;
|
|
9633
9738
|
readonly system?: boolean | undefined;
|
|
@@ -9782,7 +9887,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9782
9887
|
readonly caseSensitive?: boolean | undefined;
|
|
9783
9888
|
readonly autonumberFormat?: string | undefined;
|
|
9784
9889
|
readonly index?: boolean | undefined;
|
|
9785
|
-
readonly type: "
|
|
9890
|
+
readonly type: "datetime";
|
|
9786
9891
|
};
|
|
9787
9892
|
readonly updated_at: {
|
|
9788
9893
|
readonly readonly?: boolean | undefined;
|
|
@@ -9798,10 +9903,12 @@ declare const NotificationDelivery: Omit<{
|
|
|
9798
9903
|
readonly name?: string | undefined;
|
|
9799
9904
|
readonly precision?: number | undefined;
|
|
9800
9905
|
readonly required?: boolean | undefined;
|
|
9906
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9801
9907
|
readonly multiple?: boolean | undefined;
|
|
9802
9908
|
readonly dependencies?: string[] | undefined;
|
|
9803
9909
|
readonly externalId?: boolean | undefined;
|
|
9804
9910
|
readonly defaultValue?: unknown;
|
|
9911
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
9805
9912
|
readonly group?: string | undefined;
|
|
9806
9913
|
readonly hidden?: boolean | undefined;
|
|
9807
9914
|
readonly system?: boolean | undefined;
|
|
@@ -9956,7 +10063,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9956
10063
|
readonly caseSensitive?: boolean | undefined;
|
|
9957
10064
|
readonly autonumberFormat?: string | undefined;
|
|
9958
10065
|
readonly index?: boolean | undefined;
|
|
9959
|
-
readonly type: "
|
|
10066
|
+
readonly type: "datetime";
|
|
9960
10067
|
};
|
|
9961
10068
|
};
|
|
9962
10069
|
readonly indexes: [{
|
|
@@ -9997,7 +10104,7 @@ declare const NotificationPreference: Omit<{
|
|
|
9997
10104
|
abstract: boolean;
|
|
9998
10105
|
datasource: string;
|
|
9999
10106
|
fields: Record<string, {
|
|
10000
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
10107
|
+
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";
|
|
10001
10108
|
required: boolean;
|
|
10002
10109
|
searchable: boolean;
|
|
10003
10110
|
multiple: boolean;
|
|
@@ -10071,6 +10178,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10071
10178
|
generatedBy?: string | undefined;
|
|
10072
10179
|
} | undefined;
|
|
10073
10180
|
} | undefined;
|
|
10181
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
10074
10182
|
summaryOperations?: {
|
|
10075
10183
|
object: string;
|
|
10076
10184
|
field: string;
|
|
@@ -10205,6 +10313,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10205
10313
|
generatedBy?: string | undefined;
|
|
10206
10314
|
} | undefined;
|
|
10207
10315
|
} | undefined;
|
|
10316
|
+
requiredPermissions?: string[] | undefined;
|
|
10208
10317
|
system?: boolean | undefined;
|
|
10209
10318
|
inlineHelpText?: string | undefined;
|
|
10210
10319
|
caseSensitive?: boolean | undefined;
|
|
@@ -10280,6 +10389,10 @@ declare const NotificationPreference: Omit<{
|
|
|
10280
10389
|
tenantField: string;
|
|
10281
10390
|
crossTenantAccess: boolean;
|
|
10282
10391
|
} | undefined;
|
|
10392
|
+
access?: {
|
|
10393
|
+
default: "public" | "private";
|
|
10394
|
+
} | undefined;
|
|
10395
|
+
requiredPermissions?: string[] | undefined;
|
|
10283
10396
|
softDelete?: {
|
|
10284
10397
|
enabled: boolean;
|
|
10285
10398
|
field: string;
|
|
@@ -10689,7 +10802,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10689
10802
|
field?: string | undefined;
|
|
10690
10803
|
objectOverride?: string | undefined;
|
|
10691
10804
|
label?: string | undefined;
|
|
10692
|
-
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;
|
|
10805
|
+
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;
|
|
10693
10806
|
options?: {
|
|
10694
10807
|
label: string;
|
|
10695
10808
|
value: string;
|
|
@@ -10733,6 +10846,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10733
10846
|
generatedBy?: string | undefined;
|
|
10734
10847
|
} | undefined;
|
|
10735
10848
|
} | undefined;
|
|
10849
|
+
requiredPermissions?: string[] | undefined;
|
|
10736
10850
|
shortcut?: string | undefined;
|
|
10737
10851
|
bulkEnabled?: boolean | undefined;
|
|
10738
10852
|
ai?: {
|
|
@@ -10794,10 +10908,12 @@ declare const NotificationPreference: Omit<{
|
|
|
10794
10908
|
readonly name?: string | undefined;
|
|
10795
10909
|
readonly precision?: number | undefined;
|
|
10796
10910
|
readonly required?: boolean | undefined;
|
|
10911
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
10797
10912
|
readonly multiple?: boolean | undefined;
|
|
10798
10913
|
readonly dependencies?: string[] | undefined;
|
|
10799
10914
|
readonly externalId?: boolean | undefined;
|
|
10800
10915
|
readonly defaultValue?: unknown;
|
|
10916
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
10801
10917
|
readonly group?: string | undefined;
|
|
10802
10918
|
readonly hidden?: boolean | undefined;
|
|
10803
10919
|
readonly system?: boolean | undefined;
|
|
@@ -10968,10 +11084,12 @@ declare const NotificationPreference: Omit<{
|
|
|
10968
11084
|
readonly name?: string | undefined;
|
|
10969
11085
|
readonly precision?: number | undefined;
|
|
10970
11086
|
readonly required?: boolean | undefined;
|
|
11087
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
10971
11088
|
readonly multiple?: boolean | undefined;
|
|
10972
11089
|
readonly dependencies?: string[] | undefined;
|
|
10973
11090
|
readonly externalId?: boolean | undefined;
|
|
10974
11091
|
readonly defaultValue?: unknown;
|
|
11092
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
10975
11093
|
readonly group?: string | undefined;
|
|
10976
11094
|
readonly hidden?: boolean | undefined;
|
|
10977
11095
|
readonly system?: boolean | undefined;
|
|
@@ -11142,10 +11260,12 @@ declare const NotificationPreference: Omit<{
|
|
|
11142
11260
|
readonly name?: string | undefined;
|
|
11143
11261
|
readonly precision?: number | undefined;
|
|
11144
11262
|
readonly required?: boolean | undefined;
|
|
11263
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11145
11264
|
readonly multiple?: boolean | undefined;
|
|
11146
11265
|
readonly dependencies?: string[] | undefined;
|
|
11147
11266
|
readonly externalId?: boolean | undefined;
|
|
11148
11267
|
readonly defaultValue?: unknown;
|
|
11268
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
11149
11269
|
readonly group?: string | undefined;
|
|
11150
11270
|
readonly hidden?: boolean | undefined;
|
|
11151
11271
|
readonly system?: boolean | undefined;
|
|
@@ -11316,10 +11436,12 @@ declare const NotificationPreference: Omit<{
|
|
|
11316
11436
|
readonly name?: string | undefined;
|
|
11317
11437
|
readonly precision?: number | undefined;
|
|
11318
11438
|
readonly required?: boolean | undefined;
|
|
11439
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11319
11440
|
readonly multiple?: boolean | undefined;
|
|
11320
11441
|
readonly dependencies?: string[] | undefined;
|
|
11321
11442
|
readonly externalId?: boolean | undefined;
|
|
11322
11443
|
readonly defaultValue?: unknown;
|
|
11444
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
11323
11445
|
readonly group?: string | undefined;
|
|
11324
11446
|
readonly hidden?: boolean | undefined;
|
|
11325
11447
|
readonly system?: boolean | undefined;
|
|
@@ -11490,10 +11612,12 @@ declare const NotificationPreference: Omit<{
|
|
|
11490
11612
|
readonly name?: string | undefined;
|
|
11491
11613
|
readonly precision?: number | undefined;
|
|
11492
11614
|
readonly required?: boolean | undefined;
|
|
11615
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11493
11616
|
readonly multiple?: boolean | undefined;
|
|
11494
11617
|
readonly dependencies?: string[] | undefined;
|
|
11495
11618
|
readonly externalId?: boolean | undefined;
|
|
11496
11619
|
readonly defaultValue?: unknown;
|
|
11620
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
11497
11621
|
readonly group?: string | undefined;
|
|
11498
11622
|
readonly hidden?: boolean | undefined;
|
|
11499
11623
|
readonly system?: boolean | undefined;
|
|
@@ -11664,10 +11788,12 @@ declare const NotificationPreference: Omit<{
|
|
|
11664
11788
|
readonly name?: string | undefined;
|
|
11665
11789
|
readonly precision?: number | undefined;
|
|
11666
11790
|
readonly required?: boolean | undefined;
|
|
11791
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11667
11792
|
readonly multiple?: boolean | undefined;
|
|
11668
11793
|
readonly dependencies?: string[] | undefined;
|
|
11669
11794
|
readonly externalId?: boolean | undefined;
|
|
11670
11795
|
readonly defaultValue?: unknown;
|
|
11796
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
11671
11797
|
readonly group?: string | undefined;
|
|
11672
11798
|
readonly hidden?: boolean | undefined;
|
|
11673
11799
|
readonly system?: boolean | undefined;
|
|
@@ -11838,10 +11964,12 @@ declare const NotificationPreference: Omit<{
|
|
|
11838
11964
|
readonly name?: string | undefined;
|
|
11839
11965
|
readonly precision?: number | undefined;
|
|
11840
11966
|
readonly required?: boolean | undefined;
|
|
11967
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11841
11968
|
readonly multiple?: boolean | undefined;
|
|
11842
11969
|
readonly dependencies?: string[] | undefined;
|
|
11843
11970
|
readonly externalId?: boolean | undefined;
|
|
11844
11971
|
readonly defaultValue?: unknown;
|
|
11972
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
11845
11973
|
readonly group?: string | undefined;
|
|
11846
11974
|
readonly hidden?: boolean | undefined;
|
|
11847
11975
|
readonly system?: boolean | undefined;
|
|
@@ -12012,10 +12140,12 @@ declare const NotificationPreference: Omit<{
|
|
|
12012
12140
|
readonly name?: string | undefined;
|
|
12013
12141
|
readonly precision?: number | undefined;
|
|
12014
12142
|
readonly required?: boolean | undefined;
|
|
12143
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12015
12144
|
readonly multiple?: boolean | undefined;
|
|
12016
12145
|
readonly dependencies?: string[] | undefined;
|
|
12017
12146
|
readonly externalId?: boolean | undefined;
|
|
12018
12147
|
readonly defaultValue?: unknown;
|
|
12148
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
12019
12149
|
readonly group?: string | undefined;
|
|
12020
12150
|
readonly hidden?: boolean | undefined;
|
|
12021
12151
|
readonly system?: boolean | undefined;
|
|
@@ -12186,10 +12316,12 @@ declare const NotificationPreference: Omit<{
|
|
|
12186
12316
|
readonly name?: string | undefined;
|
|
12187
12317
|
readonly precision?: number | undefined;
|
|
12188
12318
|
readonly required?: boolean | undefined;
|
|
12319
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12189
12320
|
readonly multiple?: boolean | undefined;
|
|
12190
12321
|
readonly dependencies?: string[] | undefined;
|
|
12191
12322
|
readonly externalId?: boolean | undefined;
|
|
12192
12323
|
readonly defaultValue?: unknown;
|
|
12324
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
12193
12325
|
readonly group?: string | undefined;
|
|
12194
12326
|
readonly hidden?: boolean | undefined;
|
|
12195
12327
|
readonly system?: boolean | undefined;
|
|
@@ -12377,7 +12509,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
12377
12509
|
abstract: boolean;
|
|
12378
12510
|
datasource: string;
|
|
12379
12511
|
fields: Record<string, {
|
|
12380
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
12512
|
+
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";
|
|
12381
12513
|
required: boolean;
|
|
12382
12514
|
searchable: boolean;
|
|
12383
12515
|
multiple: boolean;
|
|
@@ -12451,6 +12583,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
12451
12583
|
generatedBy?: string | undefined;
|
|
12452
12584
|
} | undefined;
|
|
12453
12585
|
} | undefined;
|
|
12586
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12454
12587
|
summaryOperations?: {
|
|
12455
12588
|
object: string;
|
|
12456
12589
|
field: string;
|
|
@@ -12585,6 +12718,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
12585
12718
|
generatedBy?: string | undefined;
|
|
12586
12719
|
} | undefined;
|
|
12587
12720
|
} | undefined;
|
|
12721
|
+
requiredPermissions?: string[] | undefined;
|
|
12588
12722
|
system?: boolean | undefined;
|
|
12589
12723
|
inlineHelpText?: string | undefined;
|
|
12590
12724
|
caseSensitive?: boolean | undefined;
|
|
@@ -12660,6 +12794,10 @@ declare const NotificationSubscription: Omit<{
|
|
|
12660
12794
|
tenantField: string;
|
|
12661
12795
|
crossTenantAccess: boolean;
|
|
12662
12796
|
} | undefined;
|
|
12797
|
+
access?: {
|
|
12798
|
+
default: "public" | "private";
|
|
12799
|
+
} | undefined;
|
|
12800
|
+
requiredPermissions?: string[] | undefined;
|
|
12663
12801
|
softDelete?: {
|
|
12664
12802
|
enabled: boolean;
|
|
12665
12803
|
field: string;
|
|
@@ -13069,7 +13207,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13069
13207
|
field?: string | undefined;
|
|
13070
13208
|
objectOverride?: string | undefined;
|
|
13071
13209
|
label?: string | undefined;
|
|
13072
|
-
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;
|
|
13210
|
+
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;
|
|
13073
13211
|
options?: {
|
|
13074
13212
|
label: string;
|
|
13075
13213
|
value: string;
|
|
@@ -13113,6 +13251,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13113
13251
|
generatedBy?: string | undefined;
|
|
13114
13252
|
} | undefined;
|
|
13115
13253
|
} | undefined;
|
|
13254
|
+
requiredPermissions?: string[] | undefined;
|
|
13116
13255
|
shortcut?: string | undefined;
|
|
13117
13256
|
bulkEnabled?: boolean | undefined;
|
|
13118
13257
|
ai?: {
|
|
@@ -13174,10 +13313,12 @@ declare const NotificationSubscription: Omit<{
|
|
|
13174
13313
|
readonly name?: string | undefined;
|
|
13175
13314
|
readonly precision?: number | undefined;
|
|
13176
13315
|
readonly required?: boolean | undefined;
|
|
13316
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13177
13317
|
readonly multiple?: boolean | undefined;
|
|
13178
13318
|
readonly dependencies?: string[] | undefined;
|
|
13179
13319
|
readonly externalId?: boolean | undefined;
|
|
13180
13320
|
readonly defaultValue?: unknown;
|
|
13321
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
13181
13322
|
readonly group?: string | undefined;
|
|
13182
13323
|
readonly hidden?: boolean | undefined;
|
|
13183
13324
|
readonly system?: boolean | undefined;
|
|
@@ -13348,10 +13489,12 @@ declare const NotificationSubscription: Omit<{
|
|
|
13348
13489
|
readonly name?: string | undefined;
|
|
13349
13490
|
readonly precision?: number | undefined;
|
|
13350
13491
|
readonly required?: boolean | undefined;
|
|
13492
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13351
13493
|
readonly multiple?: boolean | undefined;
|
|
13352
13494
|
readonly dependencies?: string[] | undefined;
|
|
13353
13495
|
readonly externalId?: boolean | undefined;
|
|
13354
13496
|
readonly defaultValue?: unknown;
|
|
13497
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
13355
13498
|
readonly group?: string | undefined;
|
|
13356
13499
|
readonly hidden?: boolean | undefined;
|
|
13357
13500
|
readonly system?: boolean | undefined;
|
|
@@ -13522,10 +13665,12 @@ declare const NotificationSubscription: Omit<{
|
|
|
13522
13665
|
readonly name?: string | undefined;
|
|
13523
13666
|
readonly precision?: number | undefined;
|
|
13524
13667
|
readonly required?: boolean | undefined;
|
|
13668
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13525
13669
|
readonly multiple?: boolean | undefined;
|
|
13526
13670
|
readonly dependencies?: string[] | undefined;
|
|
13527
13671
|
readonly externalId?: boolean | undefined;
|
|
13528
13672
|
readonly defaultValue?: unknown;
|
|
13673
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
13529
13674
|
readonly group?: string | undefined;
|
|
13530
13675
|
readonly hidden?: boolean | undefined;
|
|
13531
13676
|
readonly system?: boolean | undefined;
|
|
@@ -13696,10 +13841,12 @@ declare const NotificationSubscription: Omit<{
|
|
|
13696
13841
|
readonly name?: string | undefined;
|
|
13697
13842
|
readonly precision?: number | undefined;
|
|
13698
13843
|
readonly required?: boolean | undefined;
|
|
13844
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13699
13845
|
readonly multiple?: boolean | undefined;
|
|
13700
13846
|
readonly dependencies?: string[] | undefined;
|
|
13701
13847
|
readonly externalId?: boolean | undefined;
|
|
13702
13848
|
readonly defaultValue?: unknown;
|
|
13849
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
13703
13850
|
readonly group?: string | undefined;
|
|
13704
13851
|
readonly hidden?: boolean | undefined;
|
|
13705
13852
|
readonly system?: boolean | undefined;
|
|
@@ -13870,10 +14017,12 @@ declare const NotificationSubscription: Omit<{
|
|
|
13870
14017
|
readonly name?: string | undefined;
|
|
13871
14018
|
readonly precision?: number | undefined;
|
|
13872
14019
|
readonly required?: boolean | undefined;
|
|
14020
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13873
14021
|
readonly multiple?: boolean | undefined;
|
|
13874
14022
|
readonly dependencies?: string[] | undefined;
|
|
13875
14023
|
readonly externalId?: boolean | undefined;
|
|
13876
14024
|
readonly defaultValue?: unknown;
|
|
14025
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
13877
14026
|
readonly group?: string | undefined;
|
|
13878
14027
|
readonly hidden?: boolean | undefined;
|
|
13879
14028
|
readonly system?: boolean | undefined;
|
|
@@ -14060,7 +14209,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14060
14209
|
abstract: boolean;
|
|
14061
14210
|
datasource: string;
|
|
14062
14211
|
fields: Record<string, {
|
|
14063
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
14212
|
+
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";
|
|
14064
14213
|
required: boolean;
|
|
14065
14214
|
searchable: boolean;
|
|
14066
14215
|
multiple: boolean;
|
|
@@ -14134,6 +14283,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14134
14283
|
generatedBy?: string | undefined;
|
|
14135
14284
|
} | undefined;
|
|
14136
14285
|
} | undefined;
|
|
14286
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
14137
14287
|
summaryOperations?: {
|
|
14138
14288
|
object: string;
|
|
14139
14289
|
field: string;
|
|
@@ -14268,6 +14418,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14268
14418
|
generatedBy?: string | undefined;
|
|
14269
14419
|
} | undefined;
|
|
14270
14420
|
} | undefined;
|
|
14421
|
+
requiredPermissions?: string[] | undefined;
|
|
14271
14422
|
system?: boolean | undefined;
|
|
14272
14423
|
inlineHelpText?: string | undefined;
|
|
14273
14424
|
caseSensitive?: boolean | undefined;
|
|
@@ -14343,6 +14494,10 @@ declare const NotificationTemplate: Omit<{
|
|
|
14343
14494
|
tenantField: string;
|
|
14344
14495
|
crossTenantAccess: boolean;
|
|
14345
14496
|
} | undefined;
|
|
14497
|
+
access?: {
|
|
14498
|
+
default: "public" | "private";
|
|
14499
|
+
} | undefined;
|
|
14500
|
+
requiredPermissions?: string[] | undefined;
|
|
14346
14501
|
softDelete?: {
|
|
14347
14502
|
enabled: boolean;
|
|
14348
14503
|
field: string;
|
|
@@ -14752,7 +14907,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14752
14907
|
field?: string | undefined;
|
|
14753
14908
|
objectOverride?: string | undefined;
|
|
14754
14909
|
label?: string | undefined;
|
|
14755
|
-
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;
|
|
14910
|
+
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;
|
|
14756
14911
|
options?: {
|
|
14757
14912
|
label: string;
|
|
14758
14913
|
value: string;
|
|
@@ -14796,6 +14951,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14796
14951
|
generatedBy?: string | undefined;
|
|
14797
14952
|
} | undefined;
|
|
14798
14953
|
} | undefined;
|
|
14954
|
+
requiredPermissions?: string[] | undefined;
|
|
14799
14955
|
shortcut?: string | undefined;
|
|
14800
14956
|
bulkEnabled?: boolean | undefined;
|
|
14801
14957
|
ai?: {
|
|
@@ -14857,10 +15013,12 @@ declare const NotificationTemplate: Omit<{
|
|
|
14857
15013
|
readonly name?: string | undefined;
|
|
14858
15014
|
readonly precision?: number | undefined;
|
|
14859
15015
|
readonly required?: boolean | undefined;
|
|
15016
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
14860
15017
|
readonly multiple?: boolean | undefined;
|
|
14861
15018
|
readonly dependencies?: string[] | undefined;
|
|
14862
15019
|
readonly externalId?: boolean | undefined;
|
|
14863
15020
|
readonly defaultValue?: unknown;
|
|
15021
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
14864
15022
|
readonly group?: string | undefined;
|
|
14865
15023
|
readonly hidden?: boolean | undefined;
|
|
14866
15024
|
readonly system?: boolean | undefined;
|
|
@@ -15031,10 +15189,12 @@ declare const NotificationTemplate: Omit<{
|
|
|
15031
15189
|
readonly name?: string | undefined;
|
|
15032
15190
|
readonly precision?: number | undefined;
|
|
15033
15191
|
readonly required?: boolean | undefined;
|
|
15192
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15034
15193
|
readonly multiple?: boolean | undefined;
|
|
15035
15194
|
readonly dependencies?: string[] | undefined;
|
|
15036
15195
|
readonly externalId?: boolean | undefined;
|
|
15037
15196
|
readonly defaultValue?: unknown;
|
|
15197
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
15038
15198
|
readonly group?: string | undefined;
|
|
15039
15199
|
readonly hidden?: boolean | undefined;
|
|
15040
15200
|
readonly system?: boolean | undefined;
|
|
@@ -15205,10 +15365,12 @@ declare const NotificationTemplate: Omit<{
|
|
|
15205
15365
|
readonly name?: string | undefined;
|
|
15206
15366
|
readonly precision?: number | undefined;
|
|
15207
15367
|
readonly required?: boolean | undefined;
|
|
15368
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15208
15369
|
readonly multiple?: boolean | undefined;
|
|
15209
15370
|
readonly dependencies?: string[] | undefined;
|
|
15210
15371
|
readonly externalId?: boolean | undefined;
|
|
15211
15372
|
readonly defaultValue?: unknown;
|
|
15373
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
15212
15374
|
readonly group?: string | undefined;
|
|
15213
15375
|
readonly hidden?: boolean | undefined;
|
|
15214
15376
|
readonly system?: boolean | undefined;
|
|
@@ -15379,10 +15541,12 @@ declare const NotificationTemplate: Omit<{
|
|
|
15379
15541
|
readonly name?: string | undefined;
|
|
15380
15542
|
readonly precision?: number | undefined;
|
|
15381
15543
|
readonly required?: boolean | undefined;
|
|
15544
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15382
15545
|
readonly multiple?: boolean | undefined;
|
|
15383
15546
|
readonly dependencies?: string[] | undefined;
|
|
15384
15547
|
readonly externalId?: boolean | undefined;
|
|
15385
15548
|
readonly defaultValue?: unknown;
|
|
15549
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
15386
15550
|
readonly group?: string | undefined;
|
|
15387
15551
|
readonly hidden?: boolean | undefined;
|
|
15388
15552
|
readonly system?: boolean | undefined;
|
|
@@ -15553,10 +15717,12 @@ declare const NotificationTemplate: Omit<{
|
|
|
15553
15717
|
readonly name?: string | undefined;
|
|
15554
15718
|
readonly precision?: number | undefined;
|
|
15555
15719
|
readonly required?: boolean | undefined;
|
|
15720
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15556
15721
|
readonly multiple?: boolean | undefined;
|
|
15557
15722
|
readonly dependencies?: string[] | undefined;
|
|
15558
15723
|
readonly externalId?: boolean | undefined;
|
|
15559
15724
|
readonly defaultValue?: unknown;
|
|
15725
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
15560
15726
|
readonly group?: string | undefined;
|
|
15561
15727
|
readonly hidden?: boolean | undefined;
|
|
15562
15728
|
readonly system?: boolean | undefined;
|
|
@@ -15727,10 +15893,12 @@ declare const NotificationTemplate: Omit<{
|
|
|
15727
15893
|
readonly name?: string | undefined;
|
|
15728
15894
|
readonly precision?: number | undefined;
|
|
15729
15895
|
readonly required?: boolean | undefined;
|
|
15896
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15730
15897
|
readonly multiple?: boolean | undefined;
|
|
15731
15898
|
readonly dependencies?: string[] | undefined;
|
|
15732
15899
|
readonly externalId?: boolean | undefined;
|
|
15733
15900
|
readonly defaultValue?: unknown;
|
|
15901
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
15734
15902
|
readonly group?: string | undefined;
|
|
15735
15903
|
readonly hidden?: boolean | undefined;
|
|
15736
15904
|
readonly system?: boolean | undefined;
|
|
@@ -15901,10 +16069,12 @@ declare const NotificationTemplate: Omit<{
|
|
|
15901
16069
|
readonly name?: string | undefined;
|
|
15902
16070
|
readonly precision?: number | undefined;
|
|
15903
16071
|
readonly required?: boolean | undefined;
|
|
16072
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15904
16073
|
readonly multiple?: boolean | undefined;
|
|
15905
16074
|
readonly dependencies?: string[] | undefined;
|
|
15906
16075
|
readonly externalId?: boolean | undefined;
|
|
15907
16076
|
readonly defaultValue?: unknown;
|
|
16077
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
15908
16078
|
readonly group?: string | undefined;
|
|
15909
16079
|
readonly hidden?: boolean | undefined;
|
|
15910
16080
|
readonly system?: boolean | undefined;
|
|
@@ -16075,10 +16245,12 @@ declare const NotificationTemplate: Omit<{
|
|
|
16075
16245
|
readonly name?: string | undefined;
|
|
16076
16246
|
readonly precision?: number | undefined;
|
|
16077
16247
|
readonly required?: boolean | undefined;
|
|
16248
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
16078
16249
|
readonly multiple?: boolean | undefined;
|
|
16079
16250
|
readonly dependencies?: string[] | undefined;
|
|
16080
16251
|
readonly externalId?: boolean | undefined;
|
|
16081
16252
|
readonly defaultValue?: unknown;
|
|
16253
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
16082
16254
|
readonly group?: string | undefined;
|
|
16083
16255
|
readonly hidden?: boolean | undefined;
|
|
16084
16256
|
readonly system?: boolean | undefined;
|
|
@@ -16249,10 +16421,12 @@ declare const NotificationTemplate: Omit<{
|
|
|
16249
16421
|
readonly name?: string | undefined;
|
|
16250
16422
|
readonly precision?: number | undefined;
|
|
16251
16423
|
readonly required?: boolean | undefined;
|
|
16424
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
16252
16425
|
readonly multiple?: boolean | undefined;
|
|
16253
16426
|
readonly dependencies?: string[] | undefined;
|
|
16254
16427
|
readonly externalId?: boolean | undefined;
|
|
16255
16428
|
readonly defaultValue?: unknown;
|
|
16429
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
16256
16430
|
readonly group?: string | undefined;
|
|
16257
16431
|
readonly hidden?: boolean | undefined;
|
|
16258
16432
|
readonly system?: boolean | undefined;
|
|
@@ -16423,10 +16597,12 @@ declare const NotificationTemplate: Omit<{
|
|
|
16423
16597
|
readonly name?: string | undefined;
|
|
16424
16598
|
readonly precision?: number | undefined;
|
|
16425
16599
|
readonly required?: boolean | undefined;
|
|
16600
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
16426
16601
|
readonly multiple?: boolean | undefined;
|
|
16427
16602
|
readonly dependencies?: string[] | undefined;
|
|
16428
16603
|
readonly externalId?: boolean | undefined;
|
|
16429
16604
|
readonly defaultValue?: unknown;
|
|
16605
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
16430
16606
|
readonly group?: string | undefined;
|
|
16431
16607
|
readonly hidden?: boolean | undefined;
|
|
16432
16608
|
readonly system?: boolean | undefined;
|
|
@@ -16597,10 +16773,12 @@ declare const NotificationTemplate: Omit<{
|
|
|
16597
16773
|
readonly name?: string | undefined;
|
|
16598
16774
|
readonly precision?: number | undefined;
|
|
16599
16775
|
readonly required?: boolean | undefined;
|
|
16776
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
16600
16777
|
readonly multiple?: boolean | undefined;
|
|
16601
16778
|
readonly dependencies?: string[] | undefined;
|
|
16602
16779
|
readonly externalId?: boolean | undefined;
|
|
16603
16780
|
readonly defaultValue?: unknown;
|
|
16781
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
16604
16782
|
readonly group?: string | undefined;
|
|
16605
16783
|
readonly hidden?: boolean | undefined;
|
|
16606
16784
|
readonly system?: boolean | undefined;
|
|
@@ -16795,7 +16973,7 @@ declare const HttpDelivery: Omit<{
|
|
|
16795
16973
|
abstract: boolean;
|
|
16796
16974
|
datasource: string;
|
|
16797
16975
|
fields: Record<string, {
|
|
16798
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
16976
|
+
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";
|
|
16799
16977
|
required: boolean;
|
|
16800
16978
|
searchable: boolean;
|
|
16801
16979
|
multiple: boolean;
|
|
@@ -16869,6 +17047,7 @@ declare const HttpDelivery: Omit<{
|
|
|
16869
17047
|
generatedBy?: string | undefined;
|
|
16870
17048
|
} | undefined;
|
|
16871
17049
|
} | undefined;
|
|
17050
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
16872
17051
|
summaryOperations?: {
|
|
16873
17052
|
object: string;
|
|
16874
17053
|
field: string;
|
|
@@ -17003,6 +17182,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17003
17182
|
generatedBy?: string | undefined;
|
|
17004
17183
|
} | undefined;
|
|
17005
17184
|
} | undefined;
|
|
17185
|
+
requiredPermissions?: string[] | undefined;
|
|
17006
17186
|
system?: boolean | undefined;
|
|
17007
17187
|
inlineHelpText?: string | undefined;
|
|
17008
17188
|
caseSensitive?: boolean | undefined;
|
|
@@ -17078,6 +17258,10 @@ declare const HttpDelivery: Omit<{
|
|
|
17078
17258
|
tenantField: string;
|
|
17079
17259
|
crossTenantAccess: boolean;
|
|
17080
17260
|
} | undefined;
|
|
17261
|
+
access?: {
|
|
17262
|
+
default: "public" | "private";
|
|
17263
|
+
} | undefined;
|
|
17264
|
+
requiredPermissions?: string[] | undefined;
|
|
17081
17265
|
softDelete?: {
|
|
17082
17266
|
enabled: boolean;
|
|
17083
17267
|
field: string;
|
|
@@ -17487,7 +17671,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17487
17671
|
field?: string | undefined;
|
|
17488
17672
|
objectOverride?: string | undefined;
|
|
17489
17673
|
label?: string | undefined;
|
|
17490
|
-
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;
|
|
17674
|
+
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;
|
|
17491
17675
|
options?: {
|
|
17492
17676
|
label: string;
|
|
17493
17677
|
value: string;
|
|
@@ -17531,6 +17715,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17531
17715
|
generatedBy?: string | undefined;
|
|
17532
17716
|
} | undefined;
|
|
17533
17717
|
} | undefined;
|
|
17718
|
+
requiredPermissions?: string[] | undefined;
|
|
17534
17719
|
shortcut?: string | undefined;
|
|
17535
17720
|
bulkEnabled?: boolean | undefined;
|
|
17536
17721
|
ai?: {
|
|
@@ -17662,10 +17847,12 @@ declare const HttpDelivery: Omit<{
|
|
|
17662
17847
|
readonly name?: string | undefined;
|
|
17663
17848
|
readonly precision?: number | undefined;
|
|
17664
17849
|
readonly required?: boolean | undefined;
|
|
17850
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17665
17851
|
readonly multiple?: boolean | undefined;
|
|
17666
17852
|
readonly dependencies?: string[] | undefined;
|
|
17667
17853
|
readonly externalId?: boolean | undefined;
|
|
17668
17854
|
readonly defaultValue?: unknown;
|
|
17855
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
17669
17856
|
readonly group?: string | undefined;
|
|
17670
17857
|
readonly hidden?: boolean | undefined;
|
|
17671
17858
|
readonly system?: boolean | undefined;
|
|
@@ -17836,10 +18023,12 @@ declare const HttpDelivery: Omit<{
|
|
|
17836
18023
|
readonly name?: string | undefined;
|
|
17837
18024
|
readonly precision?: number | undefined;
|
|
17838
18025
|
readonly required?: boolean | undefined;
|
|
18026
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17839
18027
|
readonly multiple?: boolean | undefined;
|
|
17840
18028
|
readonly dependencies?: string[] | undefined;
|
|
17841
18029
|
readonly externalId?: boolean | undefined;
|
|
17842
18030
|
readonly defaultValue?: unknown;
|
|
18031
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
17843
18032
|
readonly group?: string | undefined;
|
|
17844
18033
|
readonly hidden?: boolean | undefined;
|
|
17845
18034
|
readonly system?: boolean | undefined;
|
|
@@ -18010,10 +18199,12 @@ declare const HttpDelivery: Omit<{
|
|
|
18010
18199
|
readonly name?: string | undefined;
|
|
18011
18200
|
readonly precision?: number | undefined;
|
|
18012
18201
|
readonly required?: boolean | undefined;
|
|
18202
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18013
18203
|
readonly multiple?: boolean | undefined;
|
|
18014
18204
|
readonly dependencies?: string[] | undefined;
|
|
18015
18205
|
readonly externalId?: boolean | undefined;
|
|
18016
18206
|
readonly defaultValue?: unknown;
|
|
18207
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
18017
18208
|
readonly group?: string | undefined;
|
|
18018
18209
|
readonly hidden?: boolean | undefined;
|
|
18019
18210
|
readonly system?: boolean | undefined;
|
|
@@ -18184,10 +18375,12 @@ declare const HttpDelivery: Omit<{
|
|
|
18184
18375
|
readonly name?: string | undefined;
|
|
18185
18376
|
readonly precision?: number | undefined;
|
|
18186
18377
|
readonly required?: boolean | undefined;
|
|
18378
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18187
18379
|
readonly multiple?: boolean | undefined;
|
|
18188
18380
|
readonly dependencies?: string[] | undefined;
|
|
18189
18381
|
readonly externalId?: boolean | undefined;
|
|
18190
18382
|
readonly defaultValue?: unknown;
|
|
18383
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
18191
18384
|
readonly group?: string | undefined;
|
|
18192
18385
|
readonly hidden?: boolean | undefined;
|
|
18193
18386
|
readonly system?: boolean | undefined;
|
|
@@ -18358,10 +18551,12 @@ declare const HttpDelivery: Omit<{
|
|
|
18358
18551
|
readonly name?: string | undefined;
|
|
18359
18552
|
readonly precision?: number | undefined;
|
|
18360
18553
|
readonly required?: boolean | undefined;
|
|
18554
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18361
18555
|
readonly multiple?: boolean | undefined;
|
|
18362
18556
|
readonly dependencies?: string[] | undefined;
|
|
18363
18557
|
readonly externalId?: boolean | undefined;
|
|
18364
18558
|
readonly defaultValue?: unknown;
|
|
18559
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
18365
18560
|
readonly group?: string | undefined;
|
|
18366
18561
|
readonly hidden?: boolean | undefined;
|
|
18367
18562
|
readonly system?: boolean | undefined;
|
|
@@ -18532,10 +18727,12 @@ declare const HttpDelivery: Omit<{
|
|
|
18532
18727
|
readonly name?: string | undefined;
|
|
18533
18728
|
readonly precision?: number | undefined;
|
|
18534
18729
|
readonly required?: boolean | undefined;
|
|
18730
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18535
18731
|
readonly multiple?: boolean | undefined;
|
|
18536
18732
|
readonly dependencies?: string[] | undefined;
|
|
18537
18733
|
readonly externalId?: boolean | undefined;
|
|
18538
18734
|
readonly defaultValue?: unknown;
|
|
18735
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
18539
18736
|
readonly group?: string | undefined;
|
|
18540
18737
|
readonly hidden?: boolean | undefined;
|
|
18541
18738
|
readonly system?: boolean | undefined;
|
|
@@ -18706,10 +18903,12 @@ declare const HttpDelivery: Omit<{
|
|
|
18706
18903
|
readonly name?: string | undefined;
|
|
18707
18904
|
readonly precision?: number | undefined;
|
|
18708
18905
|
readonly required?: boolean | undefined;
|
|
18906
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18709
18907
|
readonly multiple?: boolean | undefined;
|
|
18710
18908
|
readonly dependencies?: string[] | undefined;
|
|
18711
18909
|
readonly externalId?: boolean | undefined;
|
|
18712
18910
|
readonly defaultValue?: unknown;
|
|
18911
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
18713
18912
|
readonly group?: string | undefined;
|
|
18714
18913
|
readonly hidden?: boolean | undefined;
|
|
18715
18914
|
readonly system?: boolean | undefined;
|
|
@@ -18880,10 +19079,12 @@ declare const HttpDelivery: Omit<{
|
|
|
18880
19079
|
readonly name?: string | undefined;
|
|
18881
19080
|
readonly precision?: number | undefined;
|
|
18882
19081
|
readonly required?: boolean | undefined;
|
|
19082
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18883
19083
|
readonly multiple?: boolean | undefined;
|
|
18884
19084
|
readonly dependencies?: string[] | undefined;
|
|
18885
19085
|
readonly externalId?: boolean | undefined;
|
|
18886
19086
|
readonly defaultValue?: unknown;
|
|
19087
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
18887
19088
|
readonly group?: string | undefined;
|
|
18888
19089
|
readonly hidden?: boolean | undefined;
|
|
18889
19090
|
readonly system?: boolean | undefined;
|
|
@@ -19054,10 +19255,12 @@ declare const HttpDelivery: Omit<{
|
|
|
19054
19255
|
readonly name?: string | undefined;
|
|
19055
19256
|
readonly precision?: number | undefined;
|
|
19056
19257
|
readonly required?: boolean | undefined;
|
|
19258
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19057
19259
|
readonly multiple?: boolean | undefined;
|
|
19058
19260
|
readonly dependencies?: string[] | undefined;
|
|
19059
19261
|
readonly externalId?: boolean | undefined;
|
|
19060
19262
|
readonly defaultValue?: unknown;
|
|
19263
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
19061
19264
|
readonly group?: string | undefined;
|
|
19062
19265
|
readonly hidden?: boolean | undefined;
|
|
19063
19266
|
readonly system?: boolean | undefined;
|
|
@@ -19228,10 +19431,12 @@ declare const HttpDelivery: Omit<{
|
|
|
19228
19431
|
readonly name?: string | undefined;
|
|
19229
19432
|
readonly precision?: number | undefined;
|
|
19230
19433
|
readonly required?: boolean | undefined;
|
|
19434
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19231
19435
|
readonly multiple?: boolean | undefined;
|
|
19232
19436
|
readonly dependencies?: string[] | undefined;
|
|
19233
19437
|
readonly externalId?: boolean | undefined;
|
|
19234
19438
|
readonly defaultValue?: unknown;
|
|
19439
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
19235
19440
|
readonly group?: string | undefined;
|
|
19236
19441
|
readonly hidden?: boolean | undefined;
|
|
19237
19442
|
readonly system?: boolean | undefined;
|
|
@@ -19402,10 +19607,12 @@ declare const HttpDelivery: Omit<{
|
|
|
19402
19607
|
readonly name?: string | undefined;
|
|
19403
19608
|
readonly precision?: number | undefined;
|
|
19404
19609
|
readonly required?: boolean | undefined;
|
|
19610
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19405
19611
|
readonly multiple?: boolean | undefined;
|
|
19406
19612
|
readonly dependencies?: string[] | undefined;
|
|
19407
19613
|
readonly externalId?: boolean | undefined;
|
|
19408
19614
|
readonly defaultValue?: unknown;
|
|
19615
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
19409
19616
|
readonly group?: string | undefined;
|
|
19410
19617
|
readonly hidden?: boolean | undefined;
|
|
19411
19618
|
readonly system?: boolean | undefined;
|
|
@@ -19576,10 +19783,12 @@ declare const HttpDelivery: Omit<{
|
|
|
19576
19783
|
readonly name?: string | undefined;
|
|
19577
19784
|
readonly precision?: number | undefined;
|
|
19578
19785
|
readonly required?: boolean | undefined;
|
|
19786
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19579
19787
|
readonly multiple?: boolean | undefined;
|
|
19580
19788
|
readonly dependencies?: string[] | undefined;
|
|
19581
19789
|
readonly externalId?: boolean | undefined;
|
|
19582
19790
|
readonly defaultValue?: unknown;
|
|
19791
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
19583
19792
|
readonly group?: string | undefined;
|
|
19584
19793
|
readonly hidden?: boolean | undefined;
|
|
19585
19794
|
readonly system?: boolean | undefined;
|
|
@@ -19750,10 +19959,12 @@ declare const HttpDelivery: Omit<{
|
|
|
19750
19959
|
readonly name?: string | undefined;
|
|
19751
19960
|
readonly precision?: number | undefined;
|
|
19752
19961
|
readonly required?: boolean | undefined;
|
|
19962
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19753
19963
|
readonly multiple?: boolean | undefined;
|
|
19754
19964
|
readonly dependencies?: string[] | undefined;
|
|
19755
19965
|
readonly externalId?: boolean | undefined;
|
|
19756
19966
|
readonly defaultValue?: unknown;
|
|
19967
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
19757
19968
|
readonly group?: string | undefined;
|
|
19758
19969
|
readonly hidden?: boolean | undefined;
|
|
19759
19970
|
readonly system?: boolean | undefined;
|
|
@@ -19924,10 +20135,12 @@ declare const HttpDelivery: Omit<{
|
|
|
19924
20135
|
readonly name?: string | undefined;
|
|
19925
20136
|
readonly precision?: number | undefined;
|
|
19926
20137
|
readonly required?: boolean | undefined;
|
|
20138
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19927
20139
|
readonly multiple?: boolean | undefined;
|
|
19928
20140
|
readonly dependencies?: string[] | undefined;
|
|
19929
20141
|
readonly externalId?: boolean | undefined;
|
|
19930
20142
|
readonly defaultValue?: unknown;
|
|
20143
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
19931
20144
|
readonly group?: string | undefined;
|
|
19932
20145
|
readonly hidden?: boolean | undefined;
|
|
19933
20146
|
readonly system?: boolean | undefined;
|
|
@@ -20098,10 +20311,12 @@ declare const HttpDelivery: Omit<{
|
|
|
20098
20311
|
readonly name?: string | undefined;
|
|
20099
20312
|
readonly precision?: number | undefined;
|
|
20100
20313
|
readonly required?: boolean | undefined;
|
|
20314
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20101
20315
|
readonly multiple?: boolean | undefined;
|
|
20102
20316
|
readonly dependencies?: string[] | undefined;
|
|
20103
20317
|
readonly externalId?: boolean | undefined;
|
|
20104
20318
|
readonly defaultValue?: unknown;
|
|
20319
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
20105
20320
|
readonly group?: string | undefined;
|
|
20106
20321
|
readonly hidden?: boolean | undefined;
|
|
20107
20322
|
readonly system?: boolean | undefined;
|
|
@@ -20272,10 +20487,12 @@ declare const HttpDelivery: Omit<{
|
|
|
20272
20487
|
readonly name?: string | undefined;
|
|
20273
20488
|
readonly precision?: number | undefined;
|
|
20274
20489
|
readonly required?: boolean | undefined;
|
|
20490
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20275
20491
|
readonly multiple?: boolean | undefined;
|
|
20276
20492
|
readonly dependencies?: string[] | undefined;
|
|
20277
20493
|
readonly externalId?: boolean | undefined;
|
|
20278
20494
|
readonly defaultValue?: unknown;
|
|
20495
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
20279
20496
|
readonly group?: string | undefined;
|
|
20280
20497
|
readonly hidden?: boolean | undefined;
|
|
20281
20498
|
readonly system?: boolean | undefined;
|
|
@@ -20446,10 +20663,12 @@ declare const HttpDelivery: Omit<{
|
|
|
20446
20663
|
readonly name?: string | undefined;
|
|
20447
20664
|
readonly precision?: number | undefined;
|
|
20448
20665
|
readonly required?: boolean | undefined;
|
|
20666
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20449
20667
|
readonly multiple?: boolean | undefined;
|
|
20450
20668
|
readonly dependencies?: string[] | undefined;
|
|
20451
20669
|
readonly externalId?: boolean | undefined;
|
|
20452
20670
|
readonly defaultValue?: unknown;
|
|
20671
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
20453
20672
|
readonly group?: string | undefined;
|
|
20454
20673
|
readonly hidden?: boolean | undefined;
|
|
20455
20674
|
readonly system?: boolean | undefined;
|
|
@@ -20620,10 +20839,12 @@ declare const HttpDelivery: Omit<{
|
|
|
20620
20839
|
readonly name?: string | undefined;
|
|
20621
20840
|
readonly precision?: number | undefined;
|
|
20622
20841
|
readonly required?: boolean | undefined;
|
|
20842
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20623
20843
|
readonly multiple?: boolean | undefined;
|
|
20624
20844
|
readonly dependencies?: string[] | undefined;
|
|
20625
20845
|
readonly externalId?: boolean | undefined;
|
|
20626
20846
|
readonly defaultValue?: unknown;
|
|
20847
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
20627
20848
|
readonly group?: string | undefined;
|
|
20628
20849
|
readonly hidden?: boolean | undefined;
|
|
20629
20850
|
readonly system?: boolean | undefined;
|
|
@@ -20794,10 +21015,12 @@ declare const HttpDelivery: Omit<{
|
|
|
20794
21015
|
readonly name?: string | undefined;
|
|
20795
21016
|
readonly precision?: number | undefined;
|
|
20796
21017
|
readonly required?: boolean | undefined;
|
|
21018
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20797
21019
|
readonly multiple?: boolean | undefined;
|
|
20798
21020
|
readonly dependencies?: string[] | undefined;
|
|
20799
21021
|
readonly externalId?: boolean | undefined;
|
|
20800
21022
|
readonly defaultValue?: unknown;
|
|
21023
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
20801
21024
|
readonly group?: string | undefined;
|
|
20802
21025
|
readonly hidden?: boolean | undefined;
|
|
20803
21026
|
readonly system?: boolean | undefined;
|
|
@@ -20968,10 +21191,12 @@ declare const HttpDelivery: Omit<{
|
|
|
20968
21191
|
readonly name?: string | undefined;
|
|
20969
21192
|
readonly precision?: number | undefined;
|
|
20970
21193
|
readonly required?: boolean | undefined;
|
|
21194
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20971
21195
|
readonly multiple?: boolean | undefined;
|
|
20972
21196
|
readonly dependencies?: string[] | undefined;
|
|
20973
21197
|
readonly externalId?: boolean | undefined;
|
|
20974
21198
|
readonly defaultValue?: unknown;
|
|
21199
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
20975
21200
|
readonly group?: string | undefined;
|
|
20976
21201
|
readonly hidden?: boolean | undefined;
|
|
20977
21202
|
readonly system?: boolean | undefined;
|
|
@@ -21142,10 +21367,12 @@ declare const HttpDelivery: Omit<{
|
|
|
21142
21367
|
readonly name?: string | undefined;
|
|
21143
21368
|
readonly precision?: number | undefined;
|
|
21144
21369
|
readonly required?: boolean | undefined;
|
|
21370
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21145
21371
|
readonly multiple?: boolean | undefined;
|
|
21146
21372
|
readonly dependencies?: string[] | undefined;
|
|
21147
21373
|
readonly externalId?: boolean | undefined;
|
|
21148
21374
|
readonly defaultValue?: unknown;
|
|
21375
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
21149
21376
|
readonly group?: string | undefined;
|
|
21150
21377
|
readonly hidden?: boolean | undefined;
|
|
21151
21378
|
readonly system?: boolean | undefined;
|
|
@@ -21316,10 +21543,12 @@ declare const HttpDelivery: Omit<{
|
|
|
21316
21543
|
readonly name?: string | undefined;
|
|
21317
21544
|
readonly precision?: number | undefined;
|
|
21318
21545
|
readonly required?: boolean | undefined;
|
|
21546
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21319
21547
|
readonly multiple?: boolean | undefined;
|
|
21320
21548
|
readonly dependencies?: string[] | undefined;
|
|
21321
21549
|
readonly externalId?: boolean | undefined;
|
|
21322
21550
|
readonly defaultValue?: unknown;
|
|
21551
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
21323
21552
|
readonly group?: string | undefined;
|
|
21324
21553
|
readonly hidden?: boolean | undefined;
|
|
21325
21554
|
readonly system?: boolean | undefined;
|
|
@@ -21474,7 +21703,7 @@ declare const HttpDelivery: Omit<{
|
|
|
21474
21703
|
readonly caseSensitive?: boolean | undefined;
|
|
21475
21704
|
readonly autonumberFormat?: string | undefined;
|
|
21476
21705
|
readonly index?: boolean | undefined;
|
|
21477
|
-
readonly type: "
|
|
21706
|
+
readonly type: "datetime";
|
|
21478
21707
|
};
|
|
21479
21708
|
readonly updated_at: {
|
|
21480
21709
|
readonly readonly?: boolean | undefined;
|
|
@@ -21490,10 +21719,12 @@ declare const HttpDelivery: Omit<{
|
|
|
21490
21719
|
readonly name?: string | undefined;
|
|
21491
21720
|
readonly precision?: number | undefined;
|
|
21492
21721
|
readonly required?: boolean | undefined;
|
|
21722
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21493
21723
|
readonly multiple?: boolean | undefined;
|
|
21494
21724
|
readonly dependencies?: string[] | undefined;
|
|
21495
21725
|
readonly externalId?: boolean | undefined;
|
|
21496
21726
|
readonly defaultValue?: unknown;
|
|
21727
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
21497
21728
|
readonly group?: string | undefined;
|
|
21498
21729
|
readonly hidden?: boolean | undefined;
|
|
21499
21730
|
readonly system?: boolean | undefined;
|
|
@@ -21648,7 +21879,7 @@ declare const HttpDelivery: Omit<{
|
|
|
21648
21879
|
readonly caseSensitive?: boolean | undefined;
|
|
21649
21880
|
readonly autonumberFormat?: string | undefined;
|
|
21650
21881
|
readonly index?: boolean | undefined;
|
|
21651
|
-
readonly type: "
|
|
21882
|
+
readonly type: "datetime";
|
|
21652
21883
|
};
|
|
21653
21884
|
};
|
|
21654
21885
|
readonly indexes: [{
|