@objectstack/service-messaging 10.3.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 +38 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +117 -14
- package/dist/index.d.ts +117 -14
- package/dist/index.js +38 -0
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/LICENSE.apache +0 -202
package/dist/index.d.cts
CHANGED
|
@@ -74,6 +74,19 @@ declare class MessagingServicePlugin implements Plugin {
|
|
|
74
74
|
private retentionTimer?;
|
|
75
75
|
constructor(options?: MessagingServicePluginOptions);
|
|
76
76
|
init(ctx: PluginContext): Promise<void>;
|
|
77
|
+
/**
|
|
78
|
+
* Provision the physical tables for this service's system objects up-front.
|
|
79
|
+
*
|
|
80
|
+
* These objects are lazy-created on first WRITE (the SQL driver issues DDL
|
|
81
|
+
* when the first row is inserted), so an env that READS them first — the
|
|
82
|
+
* Console bell / inbox queries sys_inbox_message + sys_notification_receipt
|
|
83
|
+
* before any notification has been delivered — hits "no such table", which
|
|
84
|
+
* the engine logs as a `Find operation failed` ERROR on every page load.
|
|
85
|
+
* Creating the tables at kernel:ready makes a new env consistent from the
|
|
86
|
+
* start. Idempotent (the driver only creates a table when absent), so it is
|
|
87
|
+
* safe on every boot; per-object failures are isolated.
|
|
88
|
+
*/
|
|
89
|
+
private provisionSystemTables;
|
|
77
90
|
/** Stop the dispatcher loop + retention sweep on shutdown. */
|
|
78
91
|
stop(): Promise<void>;
|
|
79
92
|
}
|
|
@@ -1438,7 +1451,7 @@ declare const InboxMessage: Omit<{
|
|
|
1438
1451
|
abstract: boolean;
|
|
1439
1452
|
datasource: string;
|
|
1440
1453
|
fields: Record<string, {
|
|
1441
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
1454
|
+
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
1442
1455
|
required: boolean;
|
|
1443
1456
|
searchable: boolean;
|
|
1444
1457
|
multiple: boolean;
|
|
@@ -1512,6 +1525,7 @@ declare const InboxMessage: Omit<{
|
|
|
1512
1525
|
generatedBy?: string | undefined;
|
|
1513
1526
|
} | undefined;
|
|
1514
1527
|
} | undefined;
|
|
1528
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1515
1529
|
summaryOperations?: {
|
|
1516
1530
|
object: string;
|
|
1517
1531
|
field: string;
|
|
@@ -2135,7 +2149,7 @@ declare const InboxMessage: Omit<{
|
|
|
2135
2149
|
field?: string | undefined;
|
|
2136
2150
|
objectOverride?: string | undefined;
|
|
2137
2151
|
label?: string | undefined;
|
|
2138
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
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;
|
|
2139
2153
|
options?: {
|
|
2140
2154
|
label: string;
|
|
2141
2155
|
value: string;
|
|
@@ -2267,6 +2281,7 @@ declare const InboxMessage: Omit<{
|
|
|
2267
2281
|
readonly name?: string | undefined;
|
|
2268
2282
|
readonly precision?: number | undefined;
|
|
2269
2283
|
readonly required?: boolean | undefined;
|
|
2284
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2270
2285
|
readonly multiple?: boolean | undefined;
|
|
2271
2286
|
readonly dependencies?: string[] | undefined;
|
|
2272
2287
|
readonly externalId?: boolean | undefined;
|
|
@@ -2442,6 +2457,7 @@ declare const InboxMessage: Omit<{
|
|
|
2442
2457
|
readonly name?: string | undefined;
|
|
2443
2458
|
readonly precision?: number | undefined;
|
|
2444
2459
|
readonly required?: boolean | undefined;
|
|
2460
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2445
2461
|
readonly multiple?: boolean | undefined;
|
|
2446
2462
|
readonly dependencies?: string[] | undefined;
|
|
2447
2463
|
readonly externalId?: boolean | undefined;
|
|
@@ -2617,6 +2633,7 @@ declare const InboxMessage: Omit<{
|
|
|
2617
2633
|
readonly name?: string | undefined;
|
|
2618
2634
|
readonly precision?: number | undefined;
|
|
2619
2635
|
readonly required?: boolean | undefined;
|
|
2636
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2620
2637
|
readonly multiple?: boolean | undefined;
|
|
2621
2638
|
readonly dependencies?: string[] | undefined;
|
|
2622
2639
|
readonly externalId?: boolean | undefined;
|
|
@@ -2792,6 +2809,7 @@ declare const InboxMessage: Omit<{
|
|
|
2792
2809
|
readonly name?: string | undefined;
|
|
2793
2810
|
readonly precision?: number | undefined;
|
|
2794
2811
|
readonly required?: boolean | undefined;
|
|
2812
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2795
2813
|
readonly multiple?: boolean | undefined;
|
|
2796
2814
|
readonly dependencies?: string[] | undefined;
|
|
2797
2815
|
readonly externalId?: boolean | undefined;
|
|
@@ -2967,6 +2985,7 @@ declare const InboxMessage: Omit<{
|
|
|
2967
2985
|
readonly name?: string | undefined;
|
|
2968
2986
|
readonly precision?: number | undefined;
|
|
2969
2987
|
readonly required?: boolean | undefined;
|
|
2988
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2970
2989
|
readonly multiple?: boolean | undefined;
|
|
2971
2990
|
readonly dependencies?: string[] | undefined;
|
|
2972
2991
|
readonly externalId?: boolean | undefined;
|
|
@@ -3142,6 +3161,7 @@ declare const InboxMessage: Omit<{
|
|
|
3142
3161
|
readonly name?: string | undefined;
|
|
3143
3162
|
readonly precision?: number | undefined;
|
|
3144
3163
|
readonly required?: boolean | undefined;
|
|
3164
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3145
3165
|
readonly multiple?: boolean | undefined;
|
|
3146
3166
|
readonly dependencies?: string[] | undefined;
|
|
3147
3167
|
readonly externalId?: boolean | undefined;
|
|
@@ -3317,6 +3337,7 @@ declare const InboxMessage: Omit<{
|
|
|
3317
3337
|
readonly name?: string | undefined;
|
|
3318
3338
|
readonly precision?: number | undefined;
|
|
3319
3339
|
readonly required?: boolean | undefined;
|
|
3340
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3320
3341
|
readonly multiple?: boolean | undefined;
|
|
3321
3342
|
readonly dependencies?: string[] | undefined;
|
|
3322
3343
|
readonly externalId?: boolean | undefined;
|
|
@@ -3492,6 +3513,7 @@ declare const InboxMessage: Omit<{
|
|
|
3492
3513
|
readonly name?: string | undefined;
|
|
3493
3514
|
readonly precision?: number | undefined;
|
|
3494
3515
|
readonly required?: boolean | undefined;
|
|
3516
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3495
3517
|
readonly multiple?: boolean | undefined;
|
|
3496
3518
|
readonly dependencies?: string[] | undefined;
|
|
3497
3519
|
readonly externalId?: boolean | undefined;
|
|
@@ -3667,6 +3689,7 @@ declare const InboxMessage: Omit<{
|
|
|
3667
3689
|
readonly name?: string | undefined;
|
|
3668
3690
|
readonly precision?: number | undefined;
|
|
3669
3691
|
readonly required?: boolean | undefined;
|
|
3692
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3670
3693
|
readonly multiple?: boolean | undefined;
|
|
3671
3694
|
readonly dependencies?: string[] | undefined;
|
|
3672
3695
|
readonly externalId?: boolean | undefined;
|
|
@@ -3842,6 +3865,7 @@ declare const InboxMessage: Omit<{
|
|
|
3842
3865
|
readonly name?: string | undefined;
|
|
3843
3866
|
readonly precision?: number | undefined;
|
|
3844
3867
|
readonly required?: boolean | undefined;
|
|
3868
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3845
3869
|
readonly multiple?: boolean | undefined;
|
|
3846
3870
|
readonly dependencies?: string[] | undefined;
|
|
3847
3871
|
readonly externalId?: boolean | undefined;
|
|
@@ -4030,7 +4054,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4030
4054
|
abstract: boolean;
|
|
4031
4055
|
datasource: string;
|
|
4032
4056
|
fields: Record<string, {
|
|
4033
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
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";
|
|
4034
4058
|
required: boolean;
|
|
4035
4059
|
searchable: boolean;
|
|
4036
4060
|
multiple: boolean;
|
|
@@ -4104,6 +4128,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4104
4128
|
generatedBy?: string | undefined;
|
|
4105
4129
|
} | undefined;
|
|
4106
4130
|
} | undefined;
|
|
4131
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4107
4132
|
summaryOperations?: {
|
|
4108
4133
|
object: string;
|
|
4109
4134
|
field: string;
|
|
@@ -4727,7 +4752,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4727
4752
|
field?: string | undefined;
|
|
4728
4753
|
objectOverride?: string | undefined;
|
|
4729
4754
|
label?: string | undefined;
|
|
4730
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
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;
|
|
4731
4756
|
options?: {
|
|
4732
4757
|
label: string;
|
|
4733
4758
|
value: string;
|
|
@@ -4833,6 +4858,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4833
4858
|
readonly name?: string | undefined;
|
|
4834
4859
|
readonly precision?: number | undefined;
|
|
4835
4860
|
readonly required?: boolean | undefined;
|
|
4861
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4836
4862
|
readonly multiple?: boolean | undefined;
|
|
4837
4863
|
readonly dependencies?: string[] | undefined;
|
|
4838
4864
|
readonly externalId?: boolean | undefined;
|
|
@@ -5008,6 +5034,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5008
5034
|
readonly name?: string | undefined;
|
|
5009
5035
|
readonly precision?: number | undefined;
|
|
5010
5036
|
readonly required?: boolean | undefined;
|
|
5037
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5011
5038
|
readonly multiple?: boolean | undefined;
|
|
5012
5039
|
readonly dependencies?: string[] | undefined;
|
|
5013
5040
|
readonly externalId?: boolean | undefined;
|
|
@@ -5183,6 +5210,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5183
5210
|
readonly name?: string | undefined;
|
|
5184
5211
|
readonly precision?: number | undefined;
|
|
5185
5212
|
readonly required?: boolean | undefined;
|
|
5213
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5186
5214
|
readonly multiple?: boolean | undefined;
|
|
5187
5215
|
readonly dependencies?: string[] | undefined;
|
|
5188
5216
|
readonly externalId?: boolean | undefined;
|
|
@@ -5358,6 +5386,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5358
5386
|
readonly name?: string | undefined;
|
|
5359
5387
|
readonly precision?: number | undefined;
|
|
5360
5388
|
readonly required?: boolean | undefined;
|
|
5389
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5361
5390
|
readonly multiple?: boolean | undefined;
|
|
5362
5391
|
readonly dependencies?: string[] | undefined;
|
|
5363
5392
|
readonly externalId?: boolean | undefined;
|
|
@@ -5533,6 +5562,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5533
5562
|
readonly name?: string | undefined;
|
|
5534
5563
|
readonly precision?: number | undefined;
|
|
5535
5564
|
readonly required?: boolean | undefined;
|
|
5565
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5536
5566
|
readonly multiple?: boolean | undefined;
|
|
5537
5567
|
readonly dependencies?: string[] | undefined;
|
|
5538
5568
|
readonly externalId?: boolean | undefined;
|
|
@@ -5708,6 +5738,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5708
5738
|
readonly name?: string | undefined;
|
|
5709
5739
|
readonly precision?: number | undefined;
|
|
5710
5740
|
readonly required?: boolean | undefined;
|
|
5741
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5711
5742
|
readonly multiple?: boolean | undefined;
|
|
5712
5743
|
readonly dependencies?: string[] | undefined;
|
|
5713
5744
|
readonly externalId?: boolean | undefined;
|
|
@@ -5883,6 +5914,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5883
5914
|
readonly name?: string | undefined;
|
|
5884
5915
|
readonly precision?: number | undefined;
|
|
5885
5916
|
readonly required?: boolean | undefined;
|
|
5917
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5886
5918
|
readonly multiple?: boolean | undefined;
|
|
5887
5919
|
readonly dependencies?: string[] | undefined;
|
|
5888
5920
|
readonly externalId?: boolean | undefined;
|
|
@@ -6058,6 +6090,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
6058
6090
|
readonly name?: string | undefined;
|
|
6059
6091
|
readonly precision?: number | undefined;
|
|
6060
6092
|
readonly required?: boolean | undefined;
|
|
6093
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6061
6094
|
readonly multiple?: boolean | undefined;
|
|
6062
6095
|
readonly dependencies?: string[] | undefined;
|
|
6063
6096
|
readonly externalId?: boolean | undefined;
|
|
@@ -6250,7 +6283,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6250
6283
|
abstract: boolean;
|
|
6251
6284
|
datasource: string;
|
|
6252
6285
|
fields: Record<string, {
|
|
6253
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
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";
|
|
6254
6287
|
required: boolean;
|
|
6255
6288
|
searchable: boolean;
|
|
6256
6289
|
multiple: boolean;
|
|
@@ -6324,6 +6357,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6324
6357
|
generatedBy?: string | undefined;
|
|
6325
6358
|
} | undefined;
|
|
6326
6359
|
} | undefined;
|
|
6360
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6327
6361
|
summaryOperations?: {
|
|
6328
6362
|
object: string;
|
|
6329
6363
|
field: string;
|
|
@@ -6947,7 +6981,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6947
6981
|
field?: string | undefined;
|
|
6948
6982
|
objectOverride?: string | undefined;
|
|
6949
6983
|
label?: string | undefined;
|
|
6950
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
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;
|
|
6951
6985
|
options?: {
|
|
6952
6986
|
label: string;
|
|
6953
6987
|
value: string;
|
|
@@ -7053,6 +7087,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7053
7087
|
readonly name?: string | undefined;
|
|
7054
7088
|
readonly precision?: number | undefined;
|
|
7055
7089
|
readonly required?: boolean | undefined;
|
|
7090
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7056
7091
|
readonly multiple?: boolean | undefined;
|
|
7057
7092
|
readonly dependencies?: string[] | undefined;
|
|
7058
7093
|
readonly externalId?: boolean | undefined;
|
|
@@ -7228,6 +7263,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7228
7263
|
readonly name?: string | undefined;
|
|
7229
7264
|
readonly precision?: number | undefined;
|
|
7230
7265
|
readonly required?: boolean | undefined;
|
|
7266
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7231
7267
|
readonly multiple?: boolean | undefined;
|
|
7232
7268
|
readonly dependencies?: string[] | undefined;
|
|
7233
7269
|
readonly externalId?: boolean | undefined;
|
|
@@ -7403,6 +7439,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7403
7439
|
readonly name?: string | undefined;
|
|
7404
7440
|
readonly precision?: number | undefined;
|
|
7405
7441
|
readonly required?: boolean | undefined;
|
|
7442
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7406
7443
|
readonly multiple?: boolean | undefined;
|
|
7407
7444
|
readonly dependencies?: string[] | undefined;
|
|
7408
7445
|
readonly externalId?: boolean | undefined;
|
|
@@ -7578,6 +7615,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7578
7615
|
readonly name?: string | undefined;
|
|
7579
7616
|
readonly precision?: number | undefined;
|
|
7580
7617
|
readonly required?: boolean | undefined;
|
|
7618
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7581
7619
|
readonly multiple?: boolean | undefined;
|
|
7582
7620
|
readonly dependencies?: string[] | undefined;
|
|
7583
7621
|
readonly externalId?: boolean | undefined;
|
|
@@ -7753,6 +7791,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7753
7791
|
readonly name?: string | undefined;
|
|
7754
7792
|
readonly precision?: number | undefined;
|
|
7755
7793
|
readonly required?: boolean | undefined;
|
|
7794
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7756
7795
|
readonly multiple?: boolean | undefined;
|
|
7757
7796
|
readonly dependencies?: string[] | undefined;
|
|
7758
7797
|
readonly externalId?: boolean | undefined;
|
|
@@ -7928,6 +7967,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7928
7967
|
readonly name?: string | undefined;
|
|
7929
7968
|
readonly precision?: number | undefined;
|
|
7930
7969
|
readonly required?: boolean | undefined;
|
|
7970
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7931
7971
|
readonly multiple?: boolean | undefined;
|
|
7932
7972
|
readonly dependencies?: string[] | undefined;
|
|
7933
7973
|
readonly externalId?: boolean | undefined;
|
|
@@ -8103,6 +8143,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8103
8143
|
readonly name?: string | undefined;
|
|
8104
8144
|
readonly precision?: number | undefined;
|
|
8105
8145
|
readonly required?: boolean | undefined;
|
|
8146
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8106
8147
|
readonly multiple?: boolean | undefined;
|
|
8107
8148
|
readonly dependencies?: string[] | undefined;
|
|
8108
8149
|
readonly externalId?: boolean | undefined;
|
|
@@ -8278,6 +8319,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8278
8319
|
readonly name?: string | undefined;
|
|
8279
8320
|
readonly precision?: number | undefined;
|
|
8280
8321
|
readonly required?: boolean | undefined;
|
|
8322
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8281
8323
|
readonly multiple?: boolean | undefined;
|
|
8282
8324
|
readonly dependencies?: string[] | undefined;
|
|
8283
8325
|
readonly externalId?: boolean | undefined;
|
|
@@ -8453,6 +8495,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8453
8495
|
readonly name?: string | undefined;
|
|
8454
8496
|
readonly precision?: number | undefined;
|
|
8455
8497
|
readonly required?: boolean | undefined;
|
|
8498
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8456
8499
|
readonly multiple?: boolean | undefined;
|
|
8457
8500
|
readonly dependencies?: string[] | undefined;
|
|
8458
8501
|
readonly externalId?: boolean | undefined;
|
|
@@ -8628,6 +8671,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8628
8671
|
readonly name?: string | undefined;
|
|
8629
8672
|
readonly precision?: number | undefined;
|
|
8630
8673
|
readonly required?: boolean | undefined;
|
|
8674
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8631
8675
|
readonly multiple?: boolean | undefined;
|
|
8632
8676
|
readonly dependencies?: string[] | undefined;
|
|
8633
8677
|
readonly externalId?: boolean | undefined;
|
|
@@ -8803,6 +8847,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8803
8847
|
readonly name?: string | undefined;
|
|
8804
8848
|
readonly precision?: number | undefined;
|
|
8805
8849
|
readonly required?: boolean | undefined;
|
|
8850
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8806
8851
|
readonly multiple?: boolean | undefined;
|
|
8807
8852
|
readonly dependencies?: string[] | undefined;
|
|
8808
8853
|
readonly externalId?: boolean | undefined;
|
|
@@ -8978,6 +9023,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8978
9023
|
readonly name?: string | undefined;
|
|
8979
9024
|
readonly precision?: number | undefined;
|
|
8980
9025
|
readonly required?: boolean | undefined;
|
|
9026
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8981
9027
|
readonly multiple?: boolean | undefined;
|
|
8982
9028
|
readonly dependencies?: string[] | undefined;
|
|
8983
9029
|
readonly externalId?: boolean | undefined;
|
|
@@ -9153,6 +9199,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9153
9199
|
readonly name?: string | undefined;
|
|
9154
9200
|
readonly precision?: number | undefined;
|
|
9155
9201
|
readonly required?: boolean | undefined;
|
|
9202
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9156
9203
|
readonly multiple?: boolean | undefined;
|
|
9157
9204
|
readonly dependencies?: string[] | undefined;
|
|
9158
9205
|
readonly externalId?: boolean | undefined;
|
|
@@ -9328,6 +9375,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9328
9375
|
readonly name?: string | undefined;
|
|
9329
9376
|
readonly precision?: number | undefined;
|
|
9330
9377
|
readonly required?: boolean | undefined;
|
|
9378
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9331
9379
|
readonly multiple?: boolean | undefined;
|
|
9332
9380
|
readonly dependencies?: string[] | undefined;
|
|
9333
9381
|
readonly externalId?: boolean | undefined;
|
|
@@ -9503,6 +9551,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9503
9551
|
readonly name?: string | undefined;
|
|
9504
9552
|
readonly precision?: number | undefined;
|
|
9505
9553
|
readonly required?: boolean | undefined;
|
|
9554
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9506
9555
|
readonly multiple?: boolean | undefined;
|
|
9507
9556
|
readonly dependencies?: string[] | undefined;
|
|
9508
9557
|
readonly externalId?: boolean | undefined;
|
|
@@ -9678,6 +9727,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9678
9727
|
readonly name?: string | undefined;
|
|
9679
9728
|
readonly precision?: number | undefined;
|
|
9680
9729
|
readonly required?: boolean | undefined;
|
|
9730
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9681
9731
|
readonly multiple?: boolean | undefined;
|
|
9682
9732
|
readonly dependencies?: string[] | undefined;
|
|
9683
9733
|
readonly externalId?: boolean | undefined;
|
|
@@ -9853,6 +9903,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9853
9903
|
readonly name?: string | undefined;
|
|
9854
9904
|
readonly precision?: number | undefined;
|
|
9855
9905
|
readonly required?: boolean | undefined;
|
|
9906
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9856
9907
|
readonly multiple?: boolean | undefined;
|
|
9857
9908
|
readonly dependencies?: string[] | undefined;
|
|
9858
9909
|
readonly externalId?: boolean | undefined;
|
|
@@ -10053,7 +10104,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10053
10104
|
abstract: boolean;
|
|
10054
10105
|
datasource: string;
|
|
10055
10106
|
fields: Record<string, {
|
|
10056
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
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";
|
|
10057
10108
|
required: boolean;
|
|
10058
10109
|
searchable: boolean;
|
|
10059
10110
|
multiple: boolean;
|
|
@@ -10127,6 +10178,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10127
10178
|
generatedBy?: string | undefined;
|
|
10128
10179
|
} | undefined;
|
|
10129
10180
|
} | undefined;
|
|
10181
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
10130
10182
|
summaryOperations?: {
|
|
10131
10183
|
object: string;
|
|
10132
10184
|
field: string;
|
|
@@ -10750,7 +10802,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10750
10802
|
field?: string | undefined;
|
|
10751
10803
|
objectOverride?: string | undefined;
|
|
10752
10804
|
label?: string | undefined;
|
|
10753
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
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;
|
|
10754
10806
|
options?: {
|
|
10755
10807
|
label: string;
|
|
10756
10808
|
value: string;
|
|
@@ -10856,6 +10908,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10856
10908
|
readonly name?: string | undefined;
|
|
10857
10909
|
readonly precision?: number | undefined;
|
|
10858
10910
|
readonly required?: boolean | undefined;
|
|
10911
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
10859
10912
|
readonly multiple?: boolean | undefined;
|
|
10860
10913
|
readonly dependencies?: string[] | undefined;
|
|
10861
10914
|
readonly externalId?: boolean | undefined;
|
|
@@ -11031,6 +11084,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11031
11084
|
readonly name?: string | undefined;
|
|
11032
11085
|
readonly precision?: number | undefined;
|
|
11033
11086
|
readonly required?: boolean | undefined;
|
|
11087
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11034
11088
|
readonly multiple?: boolean | undefined;
|
|
11035
11089
|
readonly dependencies?: string[] | undefined;
|
|
11036
11090
|
readonly externalId?: boolean | undefined;
|
|
@@ -11206,6 +11260,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11206
11260
|
readonly name?: string | undefined;
|
|
11207
11261
|
readonly precision?: number | undefined;
|
|
11208
11262
|
readonly required?: boolean | undefined;
|
|
11263
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11209
11264
|
readonly multiple?: boolean | undefined;
|
|
11210
11265
|
readonly dependencies?: string[] | undefined;
|
|
11211
11266
|
readonly externalId?: boolean | undefined;
|
|
@@ -11381,6 +11436,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11381
11436
|
readonly name?: string | undefined;
|
|
11382
11437
|
readonly precision?: number | undefined;
|
|
11383
11438
|
readonly required?: boolean | undefined;
|
|
11439
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11384
11440
|
readonly multiple?: boolean | undefined;
|
|
11385
11441
|
readonly dependencies?: string[] | undefined;
|
|
11386
11442
|
readonly externalId?: boolean | undefined;
|
|
@@ -11556,6 +11612,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11556
11612
|
readonly name?: string | undefined;
|
|
11557
11613
|
readonly precision?: number | undefined;
|
|
11558
11614
|
readonly required?: boolean | undefined;
|
|
11615
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11559
11616
|
readonly multiple?: boolean | undefined;
|
|
11560
11617
|
readonly dependencies?: string[] | undefined;
|
|
11561
11618
|
readonly externalId?: boolean | undefined;
|
|
@@ -11731,6 +11788,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11731
11788
|
readonly name?: string | undefined;
|
|
11732
11789
|
readonly precision?: number | undefined;
|
|
11733
11790
|
readonly required?: boolean | undefined;
|
|
11791
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11734
11792
|
readonly multiple?: boolean | undefined;
|
|
11735
11793
|
readonly dependencies?: string[] | undefined;
|
|
11736
11794
|
readonly externalId?: boolean | undefined;
|
|
@@ -11906,6 +11964,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11906
11964
|
readonly name?: string | undefined;
|
|
11907
11965
|
readonly precision?: number | undefined;
|
|
11908
11966
|
readonly required?: boolean | undefined;
|
|
11967
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11909
11968
|
readonly multiple?: boolean | undefined;
|
|
11910
11969
|
readonly dependencies?: string[] | undefined;
|
|
11911
11970
|
readonly externalId?: boolean | undefined;
|
|
@@ -12081,6 +12140,7 @@ declare const NotificationPreference: Omit<{
|
|
|
12081
12140
|
readonly name?: string | undefined;
|
|
12082
12141
|
readonly precision?: number | undefined;
|
|
12083
12142
|
readonly required?: boolean | undefined;
|
|
12143
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12084
12144
|
readonly multiple?: boolean | undefined;
|
|
12085
12145
|
readonly dependencies?: string[] | undefined;
|
|
12086
12146
|
readonly externalId?: boolean | undefined;
|
|
@@ -12256,6 +12316,7 @@ declare const NotificationPreference: Omit<{
|
|
|
12256
12316
|
readonly name?: string | undefined;
|
|
12257
12317
|
readonly precision?: number | undefined;
|
|
12258
12318
|
readonly required?: boolean | undefined;
|
|
12319
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12259
12320
|
readonly multiple?: boolean | undefined;
|
|
12260
12321
|
readonly dependencies?: string[] | undefined;
|
|
12261
12322
|
readonly externalId?: boolean | undefined;
|
|
@@ -12448,7 +12509,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
12448
12509
|
abstract: boolean;
|
|
12449
12510
|
datasource: string;
|
|
12450
12511
|
fields: Record<string, {
|
|
12451
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
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";
|
|
12452
12513
|
required: boolean;
|
|
12453
12514
|
searchable: boolean;
|
|
12454
12515
|
multiple: boolean;
|
|
@@ -12522,6 +12583,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
12522
12583
|
generatedBy?: string | undefined;
|
|
12523
12584
|
} | undefined;
|
|
12524
12585
|
} | undefined;
|
|
12586
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12525
12587
|
summaryOperations?: {
|
|
12526
12588
|
object: string;
|
|
12527
12589
|
field: string;
|
|
@@ -13145,7 +13207,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13145
13207
|
field?: string | undefined;
|
|
13146
13208
|
objectOverride?: string | undefined;
|
|
13147
13209
|
label?: string | undefined;
|
|
13148
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
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;
|
|
13149
13211
|
options?: {
|
|
13150
13212
|
label: string;
|
|
13151
13213
|
value: string;
|
|
@@ -13251,6 +13313,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13251
13313
|
readonly name?: string | undefined;
|
|
13252
13314
|
readonly precision?: number | undefined;
|
|
13253
13315
|
readonly required?: boolean | undefined;
|
|
13316
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13254
13317
|
readonly multiple?: boolean | undefined;
|
|
13255
13318
|
readonly dependencies?: string[] | undefined;
|
|
13256
13319
|
readonly externalId?: boolean | undefined;
|
|
@@ -13426,6 +13489,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13426
13489
|
readonly name?: string | undefined;
|
|
13427
13490
|
readonly precision?: number | undefined;
|
|
13428
13491
|
readonly required?: boolean | undefined;
|
|
13492
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13429
13493
|
readonly multiple?: boolean | undefined;
|
|
13430
13494
|
readonly dependencies?: string[] | undefined;
|
|
13431
13495
|
readonly externalId?: boolean | undefined;
|
|
@@ -13601,6 +13665,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13601
13665
|
readonly name?: string | undefined;
|
|
13602
13666
|
readonly precision?: number | undefined;
|
|
13603
13667
|
readonly required?: boolean | undefined;
|
|
13668
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13604
13669
|
readonly multiple?: boolean | undefined;
|
|
13605
13670
|
readonly dependencies?: string[] | undefined;
|
|
13606
13671
|
readonly externalId?: boolean | undefined;
|
|
@@ -13776,6 +13841,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13776
13841
|
readonly name?: string | undefined;
|
|
13777
13842
|
readonly precision?: number | undefined;
|
|
13778
13843
|
readonly required?: boolean | undefined;
|
|
13844
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13779
13845
|
readonly multiple?: boolean | undefined;
|
|
13780
13846
|
readonly dependencies?: string[] | undefined;
|
|
13781
13847
|
readonly externalId?: boolean | undefined;
|
|
@@ -13951,6 +14017,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13951
14017
|
readonly name?: string | undefined;
|
|
13952
14018
|
readonly precision?: number | undefined;
|
|
13953
14019
|
readonly required?: boolean | undefined;
|
|
14020
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13954
14021
|
readonly multiple?: boolean | undefined;
|
|
13955
14022
|
readonly dependencies?: string[] | undefined;
|
|
13956
14023
|
readonly externalId?: boolean | undefined;
|
|
@@ -14142,7 +14209,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14142
14209
|
abstract: boolean;
|
|
14143
14210
|
datasource: string;
|
|
14144
14211
|
fields: Record<string, {
|
|
14145
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
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";
|
|
14146
14213
|
required: boolean;
|
|
14147
14214
|
searchable: boolean;
|
|
14148
14215
|
multiple: boolean;
|
|
@@ -14216,6 +14283,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14216
14283
|
generatedBy?: string | undefined;
|
|
14217
14284
|
} | undefined;
|
|
14218
14285
|
} | undefined;
|
|
14286
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
14219
14287
|
summaryOperations?: {
|
|
14220
14288
|
object: string;
|
|
14221
14289
|
field: string;
|
|
@@ -14839,7 +14907,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14839
14907
|
field?: string | undefined;
|
|
14840
14908
|
objectOverride?: string | undefined;
|
|
14841
14909
|
label?: string | undefined;
|
|
14842
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
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;
|
|
14843
14911
|
options?: {
|
|
14844
14912
|
label: string;
|
|
14845
14913
|
value: string;
|
|
@@ -14945,6 +15013,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14945
15013
|
readonly name?: string | undefined;
|
|
14946
15014
|
readonly precision?: number | undefined;
|
|
14947
15015
|
readonly required?: boolean | undefined;
|
|
15016
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
14948
15017
|
readonly multiple?: boolean | undefined;
|
|
14949
15018
|
readonly dependencies?: string[] | undefined;
|
|
14950
15019
|
readonly externalId?: boolean | undefined;
|
|
@@ -15120,6 +15189,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15120
15189
|
readonly name?: string | undefined;
|
|
15121
15190
|
readonly precision?: number | undefined;
|
|
15122
15191
|
readonly required?: boolean | undefined;
|
|
15192
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15123
15193
|
readonly multiple?: boolean | undefined;
|
|
15124
15194
|
readonly dependencies?: string[] | undefined;
|
|
15125
15195
|
readonly externalId?: boolean | undefined;
|
|
@@ -15295,6 +15365,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15295
15365
|
readonly name?: string | undefined;
|
|
15296
15366
|
readonly precision?: number | undefined;
|
|
15297
15367
|
readonly required?: boolean | undefined;
|
|
15368
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15298
15369
|
readonly multiple?: boolean | undefined;
|
|
15299
15370
|
readonly dependencies?: string[] | undefined;
|
|
15300
15371
|
readonly externalId?: boolean | undefined;
|
|
@@ -15470,6 +15541,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15470
15541
|
readonly name?: string | undefined;
|
|
15471
15542
|
readonly precision?: number | undefined;
|
|
15472
15543
|
readonly required?: boolean | undefined;
|
|
15544
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15473
15545
|
readonly multiple?: boolean | undefined;
|
|
15474
15546
|
readonly dependencies?: string[] | undefined;
|
|
15475
15547
|
readonly externalId?: boolean | undefined;
|
|
@@ -15645,6 +15717,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15645
15717
|
readonly name?: string | undefined;
|
|
15646
15718
|
readonly precision?: number | undefined;
|
|
15647
15719
|
readonly required?: boolean | undefined;
|
|
15720
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15648
15721
|
readonly multiple?: boolean | undefined;
|
|
15649
15722
|
readonly dependencies?: string[] | undefined;
|
|
15650
15723
|
readonly externalId?: boolean | undefined;
|
|
@@ -15820,6 +15893,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15820
15893
|
readonly name?: string | undefined;
|
|
15821
15894
|
readonly precision?: number | undefined;
|
|
15822
15895
|
readonly required?: boolean | undefined;
|
|
15896
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15823
15897
|
readonly multiple?: boolean | undefined;
|
|
15824
15898
|
readonly dependencies?: string[] | undefined;
|
|
15825
15899
|
readonly externalId?: boolean | undefined;
|
|
@@ -15995,6 +16069,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15995
16069
|
readonly name?: string | undefined;
|
|
15996
16070
|
readonly precision?: number | undefined;
|
|
15997
16071
|
readonly required?: boolean | undefined;
|
|
16072
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15998
16073
|
readonly multiple?: boolean | undefined;
|
|
15999
16074
|
readonly dependencies?: string[] | undefined;
|
|
16000
16075
|
readonly externalId?: boolean | undefined;
|
|
@@ -16170,6 +16245,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
16170
16245
|
readonly name?: string | undefined;
|
|
16171
16246
|
readonly precision?: number | undefined;
|
|
16172
16247
|
readonly required?: boolean | undefined;
|
|
16248
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
16173
16249
|
readonly multiple?: boolean | undefined;
|
|
16174
16250
|
readonly dependencies?: string[] | undefined;
|
|
16175
16251
|
readonly externalId?: boolean | undefined;
|
|
@@ -16345,6 +16421,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
16345
16421
|
readonly name?: string | undefined;
|
|
16346
16422
|
readonly precision?: number | undefined;
|
|
16347
16423
|
readonly required?: boolean | undefined;
|
|
16424
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
16348
16425
|
readonly multiple?: boolean | undefined;
|
|
16349
16426
|
readonly dependencies?: string[] | undefined;
|
|
16350
16427
|
readonly externalId?: boolean | undefined;
|
|
@@ -16520,6 +16597,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
16520
16597
|
readonly name?: string | undefined;
|
|
16521
16598
|
readonly precision?: number | undefined;
|
|
16522
16599
|
readonly required?: boolean | undefined;
|
|
16600
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
16523
16601
|
readonly multiple?: boolean | undefined;
|
|
16524
16602
|
readonly dependencies?: string[] | undefined;
|
|
16525
16603
|
readonly externalId?: boolean | undefined;
|
|
@@ -16695,6 +16773,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
16695
16773
|
readonly name?: string | undefined;
|
|
16696
16774
|
readonly precision?: number | undefined;
|
|
16697
16775
|
readonly required?: boolean | undefined;
|
|
16776
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
16698
16777
|
readonly multiple?: boolean | undefined;
|
|
16699
16778
|
readonly dependencies?: string[] | undefined;
|
|
16700
16779
|
readonly externalId?: boolean | undefined;
|
|
@@ -16894,7 +16973,7 @@ declare const HttpDelivery: Omit<{
|
|
|
16894
16973
|
abstract: boolean;
|
|
16895
16974
|
datasource: string;
|
|
16896
16975
|
fields: Record<string, {
|
|
16897
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "code" | "url" | "tags" | "datetime" | "signature" | "progress" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
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";
|
|
16898
16977
|
required: boolean;
|
|
16899
16978
|
searchable: boolean;
|
|
16900
16979
|
multiple: boolean;
|
|
@@ -16968,6 +17047,7 @@ declare const HttpDelivery: Omit<{
|
|
|
16968
17047
|
generatedBy?: string | undefined;
|
|
16969
17048
|
} | undefined;
|
|
16970
17049
|
} | undefined;
|
|
17050
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
16971
17051
|
summaryOperations?: {
|
|
16972
17052
|
object: string;
|
|
16973
17053
|
field: string;
|
|
@@ -17591,7 +17671,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17591
17671
|
field?: string | undefined;
|
|
17592
17672
|
objectOverride?: string | undefined;
|
|
17593
17673
|
label?: string | undefined;
|
|
17594
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
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;
|
|
17595
17675
|
options?: {
|
|
17596
17676
|
label: string;
|
|
17597
17677
|
value: string;
|
|
@@ -17767,6 +17847,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17767
17847
|
readonly name?: string | undefined;
|
|
17768
17848
|
readonly precision?: number | undefined;
|
|
17769
17849
|
readonly required?: boolean | undefined;
|
|
17850
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17770
17851
|
readonly multiple?: boolean | undefined;
|
|
17771
17852
|
readonly dependencies?: string[] | undefined;
|
|
17772
17853
|
readonly externalId?: boolean | undefined;
|
|
@@ -17942,6 +18023,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17942
18023
|
readonly name?: string | undefined;
|
|
17943
18024
|
readonly precision?: number | undefined;
|
|
17944
18025
|
readonly required?: boolean | undefined;
|
|
18026
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17945
18027
|
readonly multiple?: boolean | undefined;
|
|
17946
18028
|
readonly dependencies?: string[] | undefined;
|
|
17947
18029
|
readonly externalId?: boolean | undefined;
|
|
@@ -18117,6 +18199,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18117
18199
|
readonly name?: string | undefined;
|
|
18118
18200
|
readonly precision?: number | undefined;
|
|
18119
18201
|
readonly required?: boolean | undefined;
|
|
18202
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18120
18203
|
readonly multiple?: boolean | undefined;
|
|
18121
18204
|
readonly dependencies?: string[] | undefined;
|
|
18122
18205
|
readonly externalId?: boolean | undefined;
|
|
@@ -18292,6 +18375,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18292
18375
|
readonly name?: string | undefined;
|
|
18293
18376
|
readonly precision?: number | undefined;
|
|
18294
18377
|
readonly required?: boolean | undefined;
|
|
18378
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18295
18379
|
readonly multiple?: boolean | undefined;
|
|
18296
18380
|
readonly dependencies?: string[] | undefined;
|
|
18297
18381
|
readonly externalId?: boolean | undefined;
|
|
@@ -18467,6 +18551,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18467
18551
|
readonly name?: string | undefined;
|
|
18468
18552
|
readonly precision?: number | undefined;
|
|
18469
18553
|
readonly required?: boolean | undefined;
|
|
18554
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18470
18555
|
readonly multiple?: boolean | undefined;
|
|
18471
18556
|
readonly dependencies?: string[] | undefined;
|
|
18472
18557
|
readonly externalId?: boolean | undefined;
|
|
@@ -18642,6 +18727,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18642
18727
|
readonly name?: string | undefined;
|
|
18643
18728
|
readonly precision?: number | undefined;
|
|
18644
18729
|
readonly required?: boolean | undefined;
|
|
18730
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18645
18731
|
readonly multiple?: boolean | undefined;
|
|
18646
18732
|
readonly dependencies?: string[] | undefined;
|
|
18647
18733
|
readonly externalId?: boolean | undefined;
|
|
@@ -18817,6 +18903,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18817
18903
|
readonly name?: string | undefined;
|
|
18818
18904
|
readonly precision?: number | undefined;
|
|
18819
18905
|
readonly required?: boolean | undefined;
|
|
18906
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18820
18907
|
readonly multiple?: boolean | undefined;
|
|
18821
18908
|
readonly dependencies?: string[] | undefined;
|
|
18822
18909
|
readonly externalId?: boolean | undefined;
|
|
@@ -18992,6 +19079,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18992
19079
|
readonly name?: string | undefined;
|
|
18993
19080
|
readonly precision?: number | undefined;
|
|
18994
19081
|
readonly required?: boolean | undefined;
|
|
19082
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18995
19083
|
readonly multiple?: boolean | undefined;
|
|
18996
19084
|
readonly dependencies?: string[] | undefined;
|
|
18997
19085
|
readonly externalId?: boolean | undefined;
|
|
@@ -19167,6 +19255,7 @@ declare const HttpDelivery: Omit<{
|
|
|
19167
19255
|
readonly name?: string | undefined;
|
|
19168
19256
|
readonly precision?: number | undefined;
|
|
19169
19257
|
readonly required?: boolean | undefined;
|
|
19258
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19170
19259
|
readonly multiple?: boolean | undefined;
|
|
19171
19260
|
readonly dependencies?: string[] | undefined;
|
|
19172
19261
|
readonly externalId?: boolean | undefined;
|
|
@@ -19342,6 +19431,7 @@ declare const HttpDelivery: Omit<{
|
|
|
19342
19431
|
readonly name?: string | undefined;
|
|
19343
19432
|
readonly precision?: number | undefined;
|
|
19344
19433
|
readonly required?: boolean | undefined;
|
|
19434
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19345
19435
|
readonly multiple?: boolean | undefined;
|
|
19346
19436
|
readonly dependencies?: string[] | undefined;
|
|
19347
19437
|
readonly externalId?: boolean | undefined;
|
|
@@ -19517,6 +19607,7 @@ declare const HttpDelivery: Omit<{
|
|
|
19517
19607
|
readonly name?: string | undefined;
|
|
19518
19608
|
readonly precision?: number | undefined;
|
|
19519
19609
|
readonly required?: boolean | undefined;
|
|
19610
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19520
19611
|
readonly multiple?: boolean | undefined;
|
|
19521
19612
|
readonly dependencies?: string[] | undefined;
|
|
19522
19613
|
readonly externalId?: boolean | undefined;
|
|
@@ -19692,6 +19783,7 @@ declare const HttpDelivery: Omit<{
|
|
|
19692
19783
|
readonly name?: string | undefined;
|
|
19693
19784
|
readonly precision?: number | undefined;
|
|
19694
19785
|
readonly required?: boolean | undefined;
|
|
19786
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19695
19787
|
readonly multiple?: boolean | undefined;
|
|
19696
19788
|
readonly dependencies?: string[] | undefined;
|
|
19697
19789
|
readonly externalId?: boolean | undefined;
|
|
@@ -19867,6 +19959,7 @@ declare const HttpDelivery: Omit<{
|
|
|
19867
19959
|
readonly name?: string | undefined;
|
|
19868
19960
|
readonly precision?: number | undefined;
|
|
19869
19961
|
readonly required?: boolean | undefined;
|
|
19962
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19870
19963
|
readonly multiple?: boolean | undefined;
|
|
19871
19964
|
readonly dependencies?: string[] | undefined;
|
|
19872
19965
|
readonly externalId?: boolean | undefined;
|
|
@@ -20042,6 +20135,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20042
20135
|
readonly name?: string | undefined;
|
|
20043
20136
|
readonly precision?: number | undefined;
|
|
20044
20137
|
readonly required?: boolean | undefined;
|
|
20138
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20045
20139
|
readonly multiple?: boolean | undefined;
|
|
20046
20140
|
readonly dependencies?: string[] | undefined;
|
|
20047
20141
|
readonly externalId?: boolean | undefined;
|
|
@@ -20217,6 +20311,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20217
20311
|
readonly name?: string | undefined;
|
|
20218
20312
|
readonly precision?: number | undefined;
|
|
20219
20313
|
readonly required?: boolean | undefined;
|
|
20314
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20220
20315
|
readonly multiple?: boolean | undefined;
|
|
20221
20316
|
readonly dependencies?: string[] | undefined;
|
|
20222
20317
|
readonly externalId?: boolean | undefined;
|
|
@@ -20392,6 +20487,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20392
20487
|
readonly name?: string | undefined;
|
|
20393
20488
|
readonly precision?: number | undefined;
|
|
20394
20489
|
readonly required?: boolean | undefined;
|
|
20490
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20395
20491
|
readonly multiple?: boolean | undefined;
|
|
20396
20492
|
readonly dependencies?: string[] | undefined;
|
|
20397
20493
|
readonly externalId?: boolean | undefined;
|
|
@@ -20567,6 +20663,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20567
20663
|
readonly name?: string | undefined;
|
|
20568
20664
|
readonly precision?: number | undefined;
|
|
20569
20665
|
readonly required?: boolean | undefined;
|
|
20666
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20570
20667
|
readonly multiple?: boolean | undefined;
|
|
20571
20668
|
readonly dependencies?: string[] | undefined;
|
|
20572
20669
|
readonly externalId?: boolean | undefined;
|
|
@@ -20742,6 +20839,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20742
20839
|
readonly name?: string | undefined;
|
|
20743
20840
|
readonly precision?: number | undefined;
|
|
20744
20841
|
readonly required?: boolean | undefined;
|
|
20842
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20745
20843
|
readonly multiple?: boolean | undefined;
|
|
20746
20844
|
readonly dependencies?: string[] | undefined;
|
|
20747
20845
|
readonly externalId?: boolean | undefined;
|
|
@@ -20917,6 +21015,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20917
21015
|
readonly name?: string | undefined;
|
|
20918
21016
|
readonly precision?: number | undefined;
|
|
20919
21017
|
readonly required?: boolean | undefined;
|
|
21018
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20920
21019
|
readonly multiple?: boolean | undefined;
|
|
20921
21020
|
readonly dependencies?: string[] | undefined;
|
|
20922
21021
|
readonly externalId?: boolean | undefined;
|
|
@@ -21092,6 +21191,7 @@ declare const HttpDelivery: Omit<{
|
|
|
21092
21191
|
readonly name?: string | undefined;
|
|
21093
21192
|
readonly precision?: number | undefined;
|
|
21094
21193
|
readonly required?: boolean | undefined;
|
|
21194
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21095
21195
|
readonly multiple?: boolean | undefined;
|
|
21096
21196
|
readonly dependencies?: string[] | undefined;
|
|
21097
21197
|
readonly externalId?: boolean | undefined;
|
|
@@ -21267,6 +21367,7 @@ declare const HttpDelivery: Omit<{
|
|
|
21267
21367
|
readonly name?: string | undefined;
|
|
21268
21368
|
readonly precision?: number | undefined;
|
|
21269
21369
|
readonly required?: boolean | undefined;
|
|
21370
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21270
21371
|
readonly multiple?: boolean | undefined;
|
|
21271
21372
|
readonly dependencies?: string[] | undefined;
|
|
21272
21373
|
readonly externalId?: boolean | undefined;
|
|
@@ -21442,6 +21543,7 @@ declare const HttpDelivery: Omit<{
|
|
|
21442
21543
|
readonly name?: string | undefined;
|
|
21443
21544
|
readonly precision?: number | undefined;
|
|
21444
21545
|
readonly required?: boolean | undefined;
|
|
21546
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21445
21547
|
readonly multiple?: boolean | undefined;
|
|
21446
21548
|
readonly dependencies?: string[] | undefined;
|
|
21447
21549
|
readonly externalId?: boolean | undefined;
|
|
@@ -21617,6 +21719,7 @@ declare const HttpDelivery: Omit<{
|
|
|
21617
21719
|
readonly name?: string | undefined;
|
|
21618
21720
|
readonly precision?: number | undefined;
|
|
21619
21721
|
readonly required?: boolean | undefined;
|
|
21722
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21620
21723
|
readonly multiple?: boolean | undefined;
|
|
21621
21724
|
readonly dependencies?: string[] | undefined;
|
|
21622
21725
|
readonly externalId?: boolean | undefined;
|