@objectstack/plugin-webhooks 17.0.0-rc.6 → 17.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/CHANGELOG.md +1805 -0
- package/dist/{chunk-3QGZLM3T.js → chunk-GDCWDVDT.js} +78 -4
- package/dist/chunk-GDCWDVDT.js.map +1 -0
- package/dist/{chunk-JQUVS5KK.cjs → chunk-Q4FEMGD6.cjs} +78 -4
- package/dist/chunk-Q4FEMGD6.cjs.map +1 -0
- package/dist/index.cjs +700 -90
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +392 -1
- package/dist/index.d.ts +392 -1
- package/dist/index.js +639 -29
- package/dist/index.js.map +1 -1
- package/dist/schema.cjs +2 -2
- package/dist/schema.cjs.map +1 -1
- package/dist/schema.d.cts +663 -254
- package/dist/schema.d.ts +663 -254
- package/dist/schema.js +1 -1
- package/dist/{translations-BWS57U2V.cjs → translations-H5ZYI6YP.cjs} +41 -9
- package/dist/translations-H5ZYI6YP.cjs.map +1 -0
- package/dist/{translations-2VGD4XRF.js → translations-U32QIEPB.js} +41 -9
- package/dist/translations-U32QIEPB.js.map +1 -0
- package/package.json +7 -5
- package/dist/chunk-3QGZLM3T.js.map +0 -1
- package/dist/chunk-JQUVS5KK.cjs.map +0 -1
- package/dist/translations-2VGD4XRF.js.map +0 -1
- package/dist/translations-BWS57U2V.cjs.map +0 -1
package/dist/schema.d.ts
CHANGED
|
@@ -37,7 +37,7 @@ import * as _objectstack_spec_data from '@objectstack/spec/data';
|
|
|
37
37
|
declare const SysWebhook: Omit<{
|
|
38
38
|
name: string;
|
|
39
39
|
fields: Record<string, {
|
|
40
|
-
type: "number" | "boolean" | "email" | "currency" | "code" | "date" | "record" | "file" | "
|
|
40
|
+
type: "number" | "boolean" | "secret" | "email" | "currency" | "code" | "date" | "record" | "file" | "user" | "datetime" | "signature" | "url" | "time" | "formula" | "text" | "textarea" | "phone" | "password" | "markdown" | "html" | "richtext" | "percent" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "progress" | "tags" | "vector";
|
|
41
41
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
42
42
|
_lockReason?: string | undefined;
|
|
43
43
|
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -63,6 +63,7 @@ declare const SysWebhook: Omit<{
|
|
|
63
63
|
scale?: number | undefined;
|
|
64
64
|
min?: number | undefined;
|
|
65
65
|
max?: number | undefined;
|
|
66
|
+
useGrouping?: boolean | undefined;
|
|
66
67
|
accept?: string[] | undefined;
|
|
67
68
|
maxSize?: number | undefined;
|
|
68
69
|
options?: {
|
|
@@ -165,6 +166,7 @@ declare const SysWebhook: Omit<{
|
|
|
165
166
|
conditionalRequired?: undefined;
|
|
166
167
|
widget?: string | undefined;
|
|
167
168
|
hidden?: boolean | undefined;
|
|
169
|
+
internal?: boolean | undefined;
|
|
168
170
|
readonly?: boolean | undefined;
|
|
169
171
|
requiredPermissions?: string[] | undefined;
|
|
170
172
|
ackPlaintextMasking?: boolean | undefined;
|
|
@@ -189,8 +191,48 @@ declare const SysWebhook: Omit<{
|
|
|
189
191
|
managedBy?: "platform" | "config" | "system-data" | "engine-owned" | "append-only" | "better-auth" | undefined;
|
|
190
192
|
ownership?: "none" | "org" | "user" | "business_unit" | undefined;
|
|
191
193
|
userActions?: {
|
|
192
|
-
create?: boolean |
|
|
193
|
-
|
|
194
|
+
create?: boolean | {
|
|
195
|
+
enabled?: boolean | undefined;
|
|
196
|
+
visibleWhen?: string | {
|
|
197
|
+
dialect: "cel" | "cron" | "template";
|
|
198
|
+
source?: string | undefined;
|
|
199
|
+
ast?: unknown;
|
|
200
|
+
meta?: {
|
|
201
|
+
rationale?: string | undefined;
|
|
202
|
+
generatedBy?: string | undefined;
|
|
203
|
+
} | undefined;
|
|
204
|
+
} | undefined;
|
|
205
|
+
disabledWhen?: string | {
|
|
206
|
+
dialect: "cel" | "cron" | "template";
|
|
207
|
+
source?: string | undefined;
|
|
208
|
+
ast?: unknown;
|
|
209
|
+
meta?: {
|
|
210
|
+
rationale?: string | undefined;
|
|
211
|
+
generatedBy?: string | undefined;
|
|
212
|
+
} | undefined;
|
|
213
|
+
} | undefined;
|
|
214
|
+
} | undefined;
|
|
215
|
+
import?: boolean | {
|
|
216
|
+
enabled?: boolean | undefined;
|
|
217
|
+
visibleWhen?: string | {
|
|
218
|
+
dialect: "cel" | "cron" | "template";
|
|
219
|
+
source?: string | undefined;
|
|
220
|
+
ast?: unknown;
|
|
221
|
+
meta?: {
|
|
222
|
+
rationale?: string | undefined;
|
|
223
|
+
generatedBy?: string | undefined;
|
|
224
|
+
} | undefined;
|
|
225
|
+
} | undefined;
|
|
226
|
+
disabledWhen?: string | {
|
|
227
|
+
dialect: "cel" | "cron" | "template";
|
|
228
|
+
source?: string | undefined;
|
|
229
|
+
ast?: unknown;
|
|
230
|
+
meta?: {
|
|
231
|
+
rationale?: string | undefined;
|
|
232
|
+
generatedBy?: string | undefined;
|
|
233
|
+
} | undefined;
|
|
234
|
+
} | undefined;
|
|
235
|
+
} | undefined;
|
|
194
236
|
edit?: boolean | {
|
|
195
237
|
enabled?: boolean | undefined;
|
|
196
238
|
visibleWhen?: string | {
|
|
@@ -450,6 +492,16 @@ declare const SysWebhook: Omit<{
|
|
|
450
492
|
} | undefined;
|
|
451
493
|
responsive?: undefined;
|
|
452
494
|
performance?: undefined;
|
|
495
|
+
striped?: undefined;
|
|
496
|
+
bordered?: undefined;
|
|
497
|
+
virtualScroll?: undefined;
|
|
498
|
+
exportOptions?: ("json" | "xlsx" | "csv")[] | {
|
|
499
|
+
formats?: ("json" | "xlsx" | "csv")[] | undefined;
|
|
500
|
+
maxRecords?: number | undefined;
|
|
501
|
+
includeHeaders?: boolean | undefined;
|
|
502
|
+
fileNamePrefix?: string | undefined;
|
|
503
|
+
streaming?: boolean | undefined;
|
|
504
|
+
} | undefined;
|
|
453
505
|
appearance?: {
|
|
454
506
|
showDescription?: boolean | undefined;
|
|
455
507
|
allowedVisualizations?: ("map" | "tree" | "grid" | "gallery" | "kanban" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
@@ -514,8 +566,6 @@ declare const SysWebhook: Omit<{
|
|
|
514
566
|
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
515
567
|
searchableFields?: string[] | undefined;
|
|
516
568
|
filterableFields?: string[] | undefined;
|
|
517
|
-
striped?: boolean | undefined;
|
|
518
|
-
bordered?: boolean | undefined;
|
|
519
569
|
compactToolbar?: boolean | undefined;
|
|
520
570
|
selection?: {
|
|
521
571
|
type?: "none" | "multiple" | "single" | undefined;
|
|
@@ -550,7 +600,7 @@ declare const SysWebhook: Omit<{
|
|
|
550
600
|
params?: {
|
|
551
601
|
[x: string]: unknown;
|
|
552
602
|
name: string;
|
|
553
|
-
type: "number" | "boolean" | "email" | "currency" | "code" | "date" | "record" | "file" | "
|
|
603
|
+
type: "number" | "boolean" | "secret" | "email" | "currency" | "code" | "date" | "record" | "file" | "user" | "datetime" | "signature" | "url" | "time" | "formula" | "text" | "textarea" | "phone" | "password" | "markdown" | "html" | "richtext" | "percent" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "progress" | "tags" | "vector";
|
|
554
604
|
label?: string | undefined;
|
|
555
605
|
help?: string | undefined;
|
|
556
606
|
required?: boolean | undefined;
|
|
@@ -580,7 +630,6 @@ declare const SysWebhook: Omit<{
|
|
|
580
630
|
maxRecords?: number | undefined;
|
|
581
631
|
batchSize?: number | undefined;
|
|
582
632
|
}[] | undefined;
|
|
583
|
-
virtualScroll?: boolean | undefined;
|
|
584
633
|
conditionalFormatting?: {
|
|
585
634
|
condition: string | {
|
|
586
635
|
dialect: "cel" | "cron" | "template";
|
|
@@ -593,7 +642,6 @@ declare const SysWebhook: Omit<{
|
|
|
593
642
|
};
|
|
594
643
|
style: Record<string, string>;
|
|
595
644
|
}[] | undefined;
|
|
596
|
-
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
597
645
|
addRecord?: {
|
|
598
646
|
enabled?: boolean | undefined;
|
|
599
647
|
position?: "top" | "bottom" | "both" | undefined;
|
|
@@ -654,7 +702,7 @@ declare const SysWebhook: Omit<{
|
|
|
654
702
|
icon?: string | undefined;
|
|
655
703
|
locations?: ("record_header" | "list_toolbar" | "list_item" | "record_more" | "record_related" | "record_section")[] | undefined;
|
|
656
704
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
657
|
-
type?: "url" | "form" | "api" | "modal" | "
|
|
705
|
+
type?: "url" | "form" | "api" | "modal" | "flow" | "script" | undefined;
|
|
658
706
|
target?: string | undefined;
|
|
659
707
|
openIn?: "self" | "new-tab" | undefined;
|
|
660
708
|
body?: {
|
|
@@ -673,7 +721,7 @@ declare const SysWebhook: Omit<{
|
|
|
673
721
|
field?: string | undefined;
|
|
674
722
|
objectOverride?: string | undefined;
|
|
675
723
|
label?: string | Record<string, string> | undefined;
|
|
676
|
-
type?: "number" | "boolean" | "email" | "currency" | "code" | "date" | "record" | "file" | "
|
|
724
|
+
type?: "number" | "boolean" | "secret" | "email" | "currency" | "code" | "date" | "record" | "file" | "user" | "datetime" | "signature" | "url" | "time" | "formula" | "text" | "textarea" | "phone" | "password" | "markdown" | "html" | "richtext" | "percent" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "progress" | "tags" | "vector" | undefined;
|
|
677
725
|
required?: boolean | undefined;
|
|
678
726
|
options?: {
|
|
679
727
|
label: string | Record<string, string>;
|
|
@@ -705,7 +753,7 @@ declare const SysWebhook: Omit<{
|
|
|
705
753
|
generatedBy?: string | undefined;
|
|
706
754
|
} | undefined;
|
|
707
755
|
} | undefined;
|
|
708
|
-
requiresFeature?: "organization" | "twoFactor" | "
|
|
756
|
+
requiresFeature?: "organization" | "twoFactor" | "multiOrgEnabled" | "degradedTenancy" | "oidcProvider" | "sso" | "ssoEnforced" | "deviceAuthorization" | "admin" | "phoneNumber" | "phoneNumberOtp" | undefined;
|
|
709
757
|
}[] | undefined;
|
|
710
758
|
variant?: "primary" | "secondary" | "danger" | "ghost" | "link" | undefined;
|
|
711
759
|
order?: number | undefined;
|
|
@@ -734,7 +782,7 @@ declare const SysWebhook: Omit<{
|
|
|
734
782
|
generatedBy?: string | undefined;
|
|
735
783
|
} | undefined;
|
|
736
784
|
} | undefined;
|
|
737
|
-
requiresFeature?: "organization" | "twoFactor" | "
|
|
785
|
+
requiresFeature?: "organization" | "twoFactor" | "multiOrgEnabled" | "degradedTenancy" | "oidcProvider" | "sso" | "ssoEnforced" | "deviceAuthorization" | "admin" | "phoneNumber" | "phoneNumberOtp" | undefined;
|
|
738
786
|
disabled?: string | boolean | {
|
|
739
787
|
dialect: "cel" | "cron" | "template";
|
|
740
788
|
source?: string | undefined;
|
|
@@ -918,6 +966,24 @@ declare const SysWebhook: Omit<{
|
|
|
918
966
|
readonly storage?: {
|
|
919
967
|
notNull?: boolean | undefined;
|
|
920
968
|
} | undefined;
|
|
969
|
+
readonly visibleWhen?: string | {
|
|
970
|
+
dialect: "cel" | "cron" | "template";
|
|
971
|
+
source?: string | undefined;
|
|
972
|
+
ast?: unknown;
|
|
973
|
+
meta?: {
|
|
974
|
+
rationale?: string | undefined;
|
|
975
|
+
generatedBy?: string | undefined;
|
|
976
|
+
} | undefined;
|
|
977
|
+
} | undefined;
|
|
978
|
+
readonly readonlyWhen?: string | {
|
|
979
|
+
dialect: "cel" | "cron" | "template";
|
|
980
|
+
source?: string | undefined;
|
|
981
|
+
ast?: unknown;
|
|
982
|
+
meta?: {
|
|
983
|
+
rationale?: string | undefined;
|
|
984
|
+
generatedBy?: string | undefined;
|
|
985
|
+
} | undefined;
|
|
986
|
+
} | undefined;
|
|
921
987
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
922
988
|
readonly _lockReason?: string | undefined;
|
|
923
989
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -949,15 +1015,6 @@ declare const SysWebhook: Omit<{
|
|
|
949
1015
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
950
1016
|
} | undefined;
|
|
951
1017
|
readonly reference?: string | undefined;
|
|
952
|
-
readonly visibleWhen?: string | {
|
|
953
|
-
dialect: "cel" | "cron" | "template";
|
|
954
|
-
source?: string | undefined;
|
|
955
|
-
ast?: unknown;
|
|
956
|
-
meta?: {
|
|
957
|
-
rationale?: string | undefined;
|
|
958
|
-
generatedBy?: string | undefined;
|
|
959
|
-
} | undefined;
|
|
960
|
-
} | undefined;
|
|
961
1018
|
readonly scale?: number | undefined;
|
|
962
1019
|
readonly searchable?: boolean | undefined;
|
|
963
1020
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -966,6 +1023,7 @@ declare const SysWebhook: Omit<{
|
|
|
966
1023
|
readonly minLength?: number | undefined;
|
|
967
1024
|
readonly min?: number | undefined;
|
|
968
1025
|
readonly max?: number | undefined;
|
|
1026
|
+
readonly useGrouping?: boolean | undefined;
|
|
969
1027
|
readonly accept?: string[] | undefined;
|
|
970
1028
|
readonly maxSize?: number | undefined;
|
|
971
1029
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -999,15 +1057,6 @@ declare const SysWebhook: Omit<{
|
|
|
999
1057
|
readonly dimensions?: number | undefined;
|
|
1000
1058
|
readonly trackHistory?: boolean | undefined;
|
|
1001
1059
|
readonly group?: string | undefined;
|
|
1002
|
-
readonly readonlyWhen?: string | {
|
|
1003
|
-
dialect: "cel" | "cron" | "template";
|
|
1004
|
-
source?: string | undefined;
|
|
1005
|
-
ast?: unknown;
|
|
1006
|
-
meta?: {
|
|
1007
|
-
rationale?: string | undefined;
|
|
1008
|
-
generatedBy?: string | undefined;
|
|
1009
|
-
} | undefined;
|
|
1010
|
-
} | undefined;
|
|
1011
1060
|
readonly requiredWhen?: string | {
|
|
1012
1061
|
dialect: "cel" | "cron" | "template";
|
|
1013
1062
|
source?: string | undefined;
|
|
@@ -1019,6 +1068,7 @@ declare const SysWebhook: Omit<{
|
|
|
1019
1068
|
} | undefined;
|
|
1020
1069
|
readonly conditionalRequired?: undefined;
|
|
1021
1070
|
readonly hidden?: boolean | undefined;
|
|
1071
|
+
readonly internal?: boolean | undefined;
|
|
1022
1072
|
readonly requiredPermissions?: string[] | undefined;
|
|
1023
1073
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1024
1074
|
readonly system?: boolean | undefined;
|
|
@@ -1056,6 +1106,24 @@ declare const SysWebhook: Omit<{
|
|
|
1056
1106
|
readonly storage?: {
|
|
1057
1107
|
notNull?: boolean | undefined;
|
|
1058
1108
|
} | undefined;
|
|
1109
|
+
readonly visibleWhen?: string | {
|
|
1110
|
+
dialect: "cel" | "cron" | "template";
|
|
1111
|
+
source?: string | undefined;
|
|
1112
|
+
ast?: unknown;
|
|
1113
|
+
meta?: {
|
|
1114
|
+
rationale?: string | undefined;
|
|
1115
|
+
generatedBy?: string | undefined;
|
|
1116
|
+
} | undefined;
|
|
1117
|
+
} | undefined;
|
|
1118
|
+
readonly readonlyWhen?: string | {
|
|
1119
|
+
dialect: "cel" | "cron" | "template";
|
|
1120
|
+
source?: string | undefined;
|
|
1121
|
+
ast?: unknown;
|
|
1122
|
+
meta?: {
|
|
1123
|
+
rationale?: string | undefined;
|
|
1124
|
+
generatedBy?: string | undefined;
|
|
1125
|
+
} | undefined;
|
|
1126
|
+
} | undefined;
|
|
1059
1127
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1060
1128
|
readonly _lockReason?: string | undefined;
|
|
1061
1129
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1087,15 +1155,6 @@ declare const SysWebhook: Omit<{
|
|
|
1087
1155
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1088
1156
|
} | undefined;
|
|
1089
1157
|
readonly reference?: string | undefined;
|
|
1090
|
-
readonly visibleWhen?: string | {
|
|
1091
|
-
dialect: "cel" | "cron" | "template";
|
|
1092
|
-
source?: string | undefined;
|
|
1093
|
-
ast?: unknown;
|
|
1094
|
-
meta?: {
|
|
1095
|
-
rationale?: string | undefined;
|
|
1096
|
-
generatedBy?: string | undefined;
|
|
1097
|
-
} | undefined;
|
|
1098
|
-
} | undefined;
|
|
1099
1158
|
readonly scale?: number | undefined;
|
|
1100
1159
|
readonly searchable?: boolean | undefined;
|
|
1101
1160
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -1104,6 +1163,7 @@ declare const SysWebhook: Omit<{
|
|
|
1104
1163
|
readonly minLength?: number | undefined;
|
|
1105
1164
|
readonly min?: number | undefined;
|
|
1106
1165
|
readonly max?: number | undefined;
|
|
1166
|
+
readonly useGrouping?: boolean | undefined;
|
|
1107
1167
|
readonly accept?: string[] | undefined;
|
|
1108
1168
|
readonly maxSize?: number | undefined;
|
|
1109
1169
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1137,15 +1197,6 @@ declare const SysWebhook: Omit<{
|
|
|
1137
1197
|
readonly dimensions?: number | undefined;
|
|
1138
1198
|
readonly trackHistory?: boolean | undefined;
|
|
1139
1199
|
readonly group?: string | undefined;
|
|
1140
|
-
readonly readonlyWhen?: string | {
|
|
1141
|
-
dialect: "cel" | "cron" | "template";
|
|
1142
|
-
source?: string | undefined;
|
|
1143
|
-
ast?: unknown;
|
|
1144
|
-
meta?: {
|
|
1145
|
-
rationale?: string | undefined;
|
|
1146
|
-
generatedBy?: string | undefined;
|
|
1147
|
-
} | undefined;
|
|
1148
|
-
} | undefined;
|
|
1149
1200
|
readonly requiredWhen?: string | {
|
|
1150
1201
|
dialect: "cel" | "cron" | "template";
|
|
1151
1202
|
source?: string | undefined;
|
|
@@ -1157,6 +1208,7 @@ declare const SysWebhook: Omit<{
|
|
|
1157
1208
|
} | undefined;
|
|
1158
1209
|
readonly conditionalRequired?: undefined;
|
|
1159
1210
|
readonly hidden?: boolean | undefined;
|
|
1211
|
+
readonly internal?: boolean | undefined;
|
|
1160
1212
|
readonly requiredPermissions?: string[] | undefined;
|
|
1161
1213
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1162
1214
|
readonly system?: boolean | undefined;
|
|
@@ -1194,6 +1246,24 @@ declare const SysWebhook: Omit<{
|
|
|
1194
1246
|
readonly storage?: {
|
|
1195
1247
|
notNull?: boolean | undefined;
|
|
1196
1248
|
} | undefined;
|
|
1249
|
+
readonly visibleWhen?: string | {
|
|
1250
|
+
dialect: "cel" | "cron" | "template";
|
|
1251
|
+
source?: string | undefined;
|
|
1252
|
+
ast?: unknown;
|
|
1253
|
+
meta?: {
|
|
1254
|
+
rationale?: string | undefined;
|
|
1255
|
+
generatedBy?: string | undefined;
|
|
1256
|
+
} | undefined;
|
|
1257
|
+
} | undefined;
|
|
1258
|
+
readonly readonlyWhen?: string | {
|
|
1259
|
+
dialect: "cel" | "cron" | "template";
|
|
1260
|
+
source?: string | undefined;
|
|
1261
|
+
ast?: unknown;
|
|
1262
|
+
meta?: {
|
|
1263
|
+
rationale?: string | undefined;
|
|
1264
|
+
generatedBy?: string | undefined;
|
|
1265
|
+
} | undefined;
|
|
1266
|
+
} | undefined;
|
|
1197
1267
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1198
1268
|
readonly _lockReason?: string | undefined;
|
|
1199
1269
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1225,15 +1295,6 @@ declare const SysWebhook: Omit<{
|
|
|
1225
1295
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1226
1296
|
} | undefined;
|
|
1227
1297
|
readonly reference?: string | undefined;
|
|
1228
|
-
readonly visibleWhen?: string | {
|
|
1229
|
-
dialect: "cel" | "cron" | "template";
|
|
1230
|
-
source?: string | undefined;
|
|
1231
|
-
ast?: unknown;
|
|
1232
|
-
meta?: {
|
|
1233
|
-
rationale?: string | undefined;
|
|
1234
|
-
generatedBy?: string | undefined;
|
|
1235
|
-
} | undefined;
|
|
1236
|
-
} | undefined;
|
|
1237
1298
|
readonly scale?: number | undefined;
|
|
1238
1299
|
readonly searchable?: boolean | undefined;
|
|
1239
1300
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -1242,6 +1303,7 @@ declare const SysWebhook: Omit<{
|
|
|
1242
1303
|
readonly minLength?: number | undefined;
|
|
1243
1304
|
readonly min?: number | undefined;
|
|
1244
1305
|
readonly max?: number | undefined;
|
|
1306
|
+
readonly useGrouping?: boolean | undefined;
|
|
1245
1307
|
readonly accept?: string[] | undefined;
|
|
1246
1308
|
readonly maxSize?: number | undefined;
|
|
1247
1309
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1275,15 +1337,6 @@ declare const SysWebhook: Omit<{
|
|
|
1275
1337
|
readonly dimensions?: number | undefined;
|
|
1276
1338
|
readonly trackHistory?: boolean | undefined;
|
|
1277
1339
|
readonly group?: string | undefined;
|
|
1278
|
-
readonly readonlyWhen?: string | {
|
|
1279
|
-
dialect: "cel" | "cron" | "template";
|
|
1280
|
-
source?: string | undefined;
|
|
1281
|
-
ast?: unknown;
|
|
1282
|
-
meta?: {
|
|
1283
|
-
rationale?: string | undefined;
|
|
1284
|
-
generatedBy?: string | undefined;
|
|
1285
|
-
} | undefined;
|
|
1286
|
-
} | undefined;
|
|
1287
1340
|
readonly requiredWhen?: string | {
|
|
1288
1341
|
dialect: "cel" | "cron" | "template";
|
|
1289
1342
|
source?: string | undefined;
|
|
@@ -1295,6 +1348,7 @@ declare const SysWebhook: Omit<{
|
|
|
1295
1348
|
} | undefined;
|
|
1296
1349
|
readonly conditionalRequired?: undefined;
|
|
1297
1350
|
readonly hidden?: boolean | undefined;
|
|
1351
|
+
readonly internal?: boolean | undefined;
|
|
1298
1352
|
readonly requiredPermissions?: string[] | undefined;
|
|
1299
1353
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1300
1354
|
readonly system?: boolean | undefined;
|
|
@@ -1332,6 +1386,24 @@ declare const SysWebhook: Omit<{
|
|
|
1332
1386
|
readonly storage?: {
|
|
1333
1387
|
notNull?: boolean | undefined;
|
|
1334
1388
|
} | undefined;
|
|
1389
|
+
readonly visibleWhen?: string | {
|
|
1390
|
+
dialect: "cel" | "cron" | "template";
|
|
1391
|
+
source?: string | undefined;
|
|
1392
|
+
ast?: unknown;
|
|
1393
|
+
meta?: {
|
|
1394
|
+
rationale?: string | undefined;
|
|
1395
|
+
generatedBy?: string | undefined;
|
|
1396
|
+
} | undefined;
|
|
1397
|
+
} | undefined;
|
|
1398
|
+
readonly readonlyWhen?: string | {
|
|
1399
|
+
dialect: "cel" | "cron" | "template";
|
|
1400
|
+
source?: string | undefined;
|
|
1401
|
+
ast?: unknown;
|
|
1402
|
+
meta?: {
|
|
1403
|
+
rationale?: string | undefined;
|
|
1404
|
+
generatedBy?: string | undefined;
|
|
1405
|
+
} | undefined;
|
|
1406
|
+
} | undefined;
|
|
1335
1407
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1336
1408
|
readonly _lockReason?: string | undefined;
|
|
1337
1409
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1363,15 +1435,6 @@ declare const SysWebhook: Omit<{
|
|
|
1363
1435
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1364
1436
|
} | undefined;
|
|
1365
1437
|
readonly reference?: string | undefined;
|
|
1366
|
-
readonly visibleWhen?: string | {
|
|
1367
|
-
dialect: "cel" | "cron" | "template";
|
|
1368
|
-
source?: string | undefined;
|
|
1369
|
-
ast?: unknown;
|
|
1370
|
-
meta?: {
|
|
1371
|
-
rationale?: string | undefined;
|
|
1372
|
-
generatedBy?: string | undefined;
|
|
1373
|
-
} | undefined;
|
|
1374
|
-
} | undefined;
|
|
1375
1438
|
readonly scale?: number | undefined;
|
|
1376
1439
|
readonly searchable?: boolean | undefined;
|
|
1377
1440
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -1380,6 +1443,7 @@ declare const SysWebhook: Omit<{
|
|
|
1380
1443
|
readonly minLength?: number | undefined;
|
|
1381
1444
|
readonly min?: number | undefined;
|
|
1382
1445
|
readonly max?: number | undefined;
|
|
1446
|
+
readonly useGrouping?: boolean | undefined;
|
|
1383
1447
|
readonly accept?: string[] | undefined;
|
|
1384
1448
|
readonly maxSize?: number | undefined;
|
|
1385
1449
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1413,15 +1477,6 @@ declare const SysWebhook: Omit<{
|
|
|
1413
1477
|
readonly dimensions?: number | undefined;
|
|
1414
1478
|
readonly trackHistory?: boolean | undefined;
|
|
1415
1479
|
readonly group?: string | undefined;
|
|
1416
|
-
readonly readonlyWhen?: string | {
|
|
1417
|
-
dialect: "cel" | "cron" | "template";
|
|
1418
|
-
source?: string | undefined;
|
|
1419
|
-
ast?: unknown;
|
|
1420
|
-
meta?: {
|
|
1421
|
-
rationale?: string | undefined;
|
|
1422
|
-
generatedBy?: string | undefined;
|
|
1423
|
-
} | undefined;
|
|
1424
|
-
} | undefined;
|
|
1425
1480
|
readonly requiredWhen?: string | {
|
|
1426
1481
|
dialect: "cel" | "cron" | "template";
|
|
1427
1482
|
source?: string | undefined;
|
|
@@ -1433,6 +1488,7 @@ declare const SysWebhook: Omit<{
|
|
|
1433
1488
|
} | undefined;
|
|
1434
1489
|
readonly conditionalRequired?: undefined;
|
|
1435
1490
|
readonly hidden?: boolean | undefined;
|
|
1491
|
+
readonly internal?: boolean | undefined;
|
|
1436
1492
|
readonly requiredPermissions?: string[] | undefined;
|
|
1437
1493
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1438
1494
|
readonly system?: boolean | undefined;
|
|
@@ -1470,6 +1526,24 @@ declare const SysWebhook: Omit<{
|
|
|
1470
1526
|
readonly storage?: {
|
|
1471
1527
|
notNull?: boolean | undefined;
|
|
1472
1528
|
} | undefined;
|
|
1529
|
+
readonly visibleWhen?: string | {
|
|
1530
|
+
dialect: "cel" | "cron" | "template";
|
|
1531
|
+
source?: string | undefined;
|
|
1532
|
+
ast?: unknown;
|
|
1533
|
+
meta?: {
|
|
1534
|
+
rationale?: string | undefined;
|
|
1535
|
+
generatedBy?: string | undefined;
|
|
1536
|
+
} | undefined;
|
|
1537
|
+
} | undefined;
|
|
1538
|
+
readonly readonlyWhen?: string | {
|
|
1539
|
+
dialect: "cel" | "cron" | "template";
|
|
1540
|
+
source?: string | undefined;
|
|
1541
|
+
ast?: unknown;
|
|
1542
|
+
meta?: {
|
|
1543
|
+
rationale?: string | undefined;
|
|
1544
|
+
generatedBy?: string | undefined;
|
|
1545
|
+
} | undefined;
|
|
1546
|
+
} | undefined;
|
|
1473
1547
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1474
1548
|
readonly _lockReason?: string | undefined;
|
|
1475
1549
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1501,15 +1575,6 @@ declare const SysWebhook: Omit<{
|
|
|
1501
1575
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1502
1576
|
} | undefined;
|
|
1503
1577
|
readonly reference?: string | undefined;
|
|
1504
|
-
readonly visibleWhen?: string | {
|
|
1505
|
-
dialect: "cel" | "cron" | "template";
|
|
1506
|
-
source?: string | undefined;
|
|
1507
|
-
ast?: unknown;
|
|
1508
|
-
meta?: {
|
|
1509
|
-
rationale?: string | undefined;
|
|
1510
|
-
generatedBy?: string | undefined;
|
|
1511
|
-
} | undefined;
|
|
1512
|
-
} | undefined;
|
|
1513
1578
|
readonly scale?: number | undefined;
|
|
1514
1579
|
readonly searchable?: boolean | undefined;
|
|
1515
1580
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -1518,6 +1583,7 @@ declare const SysWebhook: Omit<{
|
|
|
1518
1583
|
readonly minLength?: number | undefined;
|
|
1519
1584
|
readonly min?: number | undefined;
|
|
1520
1585
|
readonly max?: number | undefined;
|
|
1586
|
+
readonly useGrouping?: boolean | undefined;
|
|
1521
1587
|
readonly accept?: string[] | undefined;
|
|
1522
1588
|
readonly maxSize?: number | undefined;
|
|
1523
1589
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1551,15 +1617,6 @@ declare const SysWebhook: Omit<{
|
|
|
1551
1617
|
readonly dimensions?: number | undefined;
|
|
1552
1618
|
readonly trackHistory?: boolean | undefined;
|
|
1553
1619
|
readonly group?: string | undefined;
|
|
1554
|
-
readonly readonlyWhen?: string | {
|
|
1555
|
-
dialect: "cel" | "cron" | "template";
|
|
1556
|
-
source?: string | undefined;
|
|
1557
|
-
ast?: unknown;
|
|
1558
|
-
meta?: {
|
|
1559
|
-
rationale?: string | undefined;
|
|
1560
|
-
generatedBy?: string | undefined;
|
|
1561
|
-
} | undefined;
|
|
1562
|
-
} | undefined;
|
|
1563
1620
|
readonly requiredWhen?: string | {
|
|
1564
1621
|
dialect: "cel" | "cron" | "template";
|
|
1565
1622
|
source?: string | undefined;
|
|
@@ -1571,6 +1628,7 @@ declare const SysWebhook: Omit<{
|
|
|
1571
1628
|
} | undefined;
|
|
1572
1629
|
readonly conditionalRequired?: undefined;
|
|
1573
1630
|
readonly hidden?: boolean | undefined;
|
|
1631
|
+
readonly internal?: boolean | undefined;
|
|
1574
1632
|
readonly requiredPermissions?: string[] | undefined;
|
|
1575
1633
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1576
1634
|
readonly system?: boolean | undefined;
|
|
@@ -1608,6 +1666,24 @@ declare const SysWebhook: Omit<{
|
|
|
1608
1666
|
readonly storage?: {
|
|
1609
1667
|
notNull?: boolean | undefined;
|
|
1610
1668
|
} | undefined;
|
|
1669
|
+
readonly visibleWhen?: string | {
|
|
1670
|
+
dialect: "cel" | "cron" | "template";
|
|
1671
|
+
source?: string | undefined;
|
|
1672
|
+
ast?: unknown;
|
|
1673
|
+
meta?: {
|
|
1674
|
+
rationale?: string | undefined;
|
|
1675
|
+
generatedBy?: string | undefined;
|
|
1676
|
+
} | undefined;
|
|
1677
|
+
} | undefined;
|
|
1678
|
+
readonly readonlyWhen?: string | {
|
|
1679
|
+
dialect: "cel" | "cron" | "template";
|
|
1680
|
+
source?: string | undefined;
|
|
1681
|
+
ast?: unknown;
|
|
1682
|
+
meta?: {
|
|
1683
|
+
rationale?: string | undefined;
|
|
1684
|
+
generatedBy?: string | undefined;
|
|
1685
|
+
} | undefined;
|
|
1686
|
+
} | undefined;
|
|
1611
1687
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1612
1688
|
readonly _lockReason?: string | undefined;
|
|
1613
1689
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1639,15 +1715,6 @@ declare const SysWebhook: Omit<{
|
|
|
1639
1715
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1640
1716
|
} | undefined;
|
|
1641
1717
|
readonly reference?: string | undefined;
|
|
1642
|
-
readonly visibleWhen?: string | {
|
|
1643
|
-
dialect: "cel" | "cron" | "template";
|
|
1644
|
-
source?: string | undefined;
|
|
1645
|
-
ast?: unknown;
|
|
1646
|
-
meta?: {
|
|
1647
|
-
rationale?: string | undefined;
|
|
1648
|
-
generatedBy?: string | undefined;
|
|
1649
|
-
} | undefined;
|
|
1650
|
-
} | undefined;
|
|
1651
1718
|
readonly scale?: number | undefined;
|
|
1652
1719
|
readonly searchable?: boolean | undefined;
|
|
1653
1720
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -1656,6 +1723,7 @@ declare const SysWebhook: Omit<{
|
|
|
1656
1723
|
readonly minLength?: number | undefined;
|
|
1657
1724
|
readonly min?: number | undefined;
|
|
1658
1725
|
readonly max?: number | undefined;
|
|
1726
|
+
readonly useGrouping?: boolean | undefined;
|
|
1659
1727
|
readonly accept?: string[] | undefined;
|
|
1660
1728
|
readonly maxSize?: number | undefined;
|
|
1661
1729
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1689,16 +1757,7 @@ declare const SysWebhook: Omit<{
|
|
|
1689
1757
|
readonly dimensions?: number | undefined;
|
|
1690
1758
|
readonly trackHistory?: boolean | undefined;
|
|
1691
1759
|
readonly group?: string | undefined;
|
|
1692
|
-
readonly
|
|
1693
|
-
dialect: "cel" | "cron" | "template";
|
|
1694
|
-
source?: string | undefined;
|
|
1695
|
-
ast?: unknown;
|
|
1696
|
-
meta?: {
|
|
1697
|
-
rationale?: string | undefined;
|
|
1698
|
-
generatedBy?: string | undefined;
|
|
1699
|
-
} | undefined;
|
|
1700
|
-
} | undefined;
|
|
1701
|
-
readonly requiredWhen?: string | {
|
|
1760
|
+
readonly requiredWhen?: string | {
|
|
1702
1761
|
dialect: "cel" | "cron" | "template";
|
|
1703
1762
|
source?: string | undefined;
|
|
1704
1763
|
ast?: unknown;
|
|
@@ -1709,6 +1768,7 @@ declare const SysWebhook: Omit<{
|
|
|
1709
1768
|
} | undefined;
|
|
1710
1769
|
readonly conditionalRequired?: undefined;
|
|
1711
1770
|
readonly hidden?: boolean | undefined;
|
|
1771
|
+
readonly internal?: boolean | undefined;
|
|
1712
1772
|
readonly requiredPermissions?: string[] | undefined;
|
|
1713
1773
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1714
1774
|
readonly system?: boolean | undefined;
|
|
@@ -1746,6 +1806,24 @@ declare const SysWebhook: Omit<{
|
|
|
1746
1806
|
readonly storage?: {
|
|
1747
1807
|
notNull?: boolean | undefined;
|
|
1748
1808
|
} | undefined;
|
|
1809
|
+
readonly visibleWhen?: string | {
|
|
1810
|
+
dialect: "cel" | "cron" | "template";
|
|
1811
|
+
source?: string | undefined;
|
|
1812
|
+
ast?: unknown;
|
|
1813
|
+
meta?: {
|
|
1814
|
+
rationale?: string | undefined;
|
|
1815
|
+
generatedBy?: string | undefined;
|
|
1816
|
+
} | undefined;
|
|
1817
|
+
} | undefined;
|
|
1818
|
+
readonly readonlyWhen?: string | {
|
|
1819
|
+
dialect: "cel" | "cron" | "template";
|
|
1820
|
+
source?: string | undefined;
|
|
1821
|
+
ast?: unknown;
|
|
1822
|
+
meta?: {
|
|
1823
|
+
rationale?: string | undefined;
|
|
1824
|
+
generatedBy?: string | undefined;
|
|
1825
|
+
} | undefined;
|
|
1826
|
+
} | undefined;
|
|
1749
1827
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1750
1828
|
readonly _lockReason?: string | undefined;
|
|
1751
1829
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1777,6 +1855,97 @@ declare const SysWebhook: Omit<{
|
|
|
1777
1855
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1778
1856
|
} | undefined;
|
|
1779
1857
|
readonly reference?: string | undefined;
|
|
1858
|
+
readonly scale?: number | undefined;
|
|
1859
|
+
readonly searchable?: boolean | undefined;
|
|
1860
|
+
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
1861
|
+
readonly defaultValue?: unknown;
|
|
1862
|
+
readonly maxLength?: number | undefined;
|
|
1863
|
+
readonly minLength?: number | undefined;
|
|
1864
|
+
readonly min?: number | undefined;
|
|
1865
|
+
readonly max?: number | undefined;
|
|
1866
|
+
readonly useGrouping?: boolean | undefined;
|
|
1867
|
+
readonly accept?: string[] | undefined;
|
|
1868
|
+
readonly maxSize?: number | undefined;
|
|
1869
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1870
|
+
readonly inlineTitle?: string | undefined;
|
|
1871
|
+
readonly inlineColumns?: any[] | undefined;
|
|
1872
|
+
readonly inlineAmountField?: string | undefined;
|
|
1873
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1874
|
+
readonly relatedListTitle?: string | undefined;
|
|
1875
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
1876
|
+
readonly displayField?: string | undefined;
|
|
1877
|
+
readonly descriptionField?: string | undefined;
|
|
1878
|
+
readonly lookupColumns?: (string | {
|
|
1879
|
+
field: string;
|
|
1880
|
+
label?: string | undefined;
|
|
1881
|
+
width?: string | undefined;
|
|
1882
|
+
type?: string | undefined;
|
|
1883
|
+
})[] | undefined;
|
|
1884
|
+
readonly lookupPageSize?: number | undefined;
|
|
1885
|
+
readonly dependsOn?: (string | {
|
|
1886
|
+
field: string;
|
|
1887
|
+
param?: string | undefined;
|
|
1888
|
+
})[] | undefined;
|
|
1889
|
+
readonly allowCreate?: boolean | undefined;
|
|
1890
|
+
readonly language?: string | undefined;
|
|
1891
|
+
readonly step?: number | undefined;
|
|
1892
|
+
readonly currencyConfig?: {
|
|
1893
|
+
precision?: number | undefined;
|
|
1894
|
+
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
1895
|
+
defaultCurrency?: string | undefined;
|
|
1896
|
+
} | undefined;
|
|
1897
|
+
readonly dimensions?: number | undefined;
|
|
1898
|
+
readonly trackHistory?: boolean | undefined;
|
|
1899
|
+
readonly group?: string | undefined;
|
|
1900
|
+
readonly requiredWhen?: string | {
|
|
1901
|
+
dialect: "cel" | "cron" | "template";
|
|
1902
|
+
source?: string | undefined;
|
|
1903
|
+
ast?: unknown;
|
|
1904
|
+
meta?: {
|
|
1905
|
+
rationale?: string | undefined;
|
|
1906
|
+
generatedBy?: string | undefined;
|
|
1907
|
+
} | undefined;
|
|
1908
|
+
} | undefined;
|
|
1909
|
+
readonly conditionalRequired?: undefined;
|
|
1910
|
+
readonly hidden?: boolean | undefined;
|
|
1911
|
+
readonly internal?: boolean | undefined;
|
|
1912
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1913
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1914
|
+
readonly system?: boolean | undefined;
|
|
1915
|
+
readonly sortable?: boolean | undefined;
|
|
1916
|
+
readonly inlineHelpText?: string | undefined;
|
|
1917
|
+
readonly externalId?: boolean | undefined;
|
|
1918
|
+
readonly type: "select";
|
|
1919
|
+
};
|
|
1920
|
+
readonly description: {
|
|
1921
|
+
readonly readonly?: boolean | undefined;
|
|
1922
|
+
readonly format?: string | undefined;
|
|
1923
|
+
readonly options?: {
|
|
1924
|
+
label: string;
|
|
1925
|
+
value: string;
|
|
1926
|
+
color?: string | undefined;
|
|
1927
|
+
default?: boolean | undefined;
|
|
1928
|
+
visibleWhen?: string | {
|
|
1929
|
+
dialect: "cel" | "cron" | "template";
|
|
1930
|
+
source?: string | undefined;
|
|
1931
|
+
ast?: unknown;
|
|
1932
|
+
meta?: {
|
|
1933
|
+
rationale?: string | undefined;
|
|
1934
|
+
generatedBy?: string | undefined;
|
|
1935
|
+
} | undefined;
|
|
1936
|
+
} | undefined;
|
|
1937
|
+
}[] | undefined;
|
|
1938
|
+
readonly description?: string | undefined;
|
|
1939
|
+
readonly label?: string | undefined;
|
|
1940
|
+
readonly name?: string | undefined;
|
|
1941
|
+
readonly precision?: number | undefined;
|
|
1942
|
+
readonly required?: boolean | undefined;
|
|
1943
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1944
|
+
readonly widget?: string | undefined;
|
|
1945
|
+
readonly multiple?: boolean | undefined;
|
|
1946
|
+
readonly storage?: {
|
|
1947
|
+
notNull?: boolean | undefined;
|
|
1948
|
+
} | undefined;
|
|
1780
1949
|
readonly visibleWhen?: string | {
|
|
1781
1950
|
dialect: "cel" | "cron" | "template";
|
|
1782
1951
|
source?: string | undefined;
|
|
@@ -1786,6 +1955,46 @@ declare const SysWebhook: Omit<{
|
|
|
1786
1955
|
generatedBy?: string | undefined;
|
|
1787
1956
|
} | undefined;
|
|
1788
1957
|
} | undefined;
|
|
1958
|
+
readonly readonlyWhen?: string | {
|
|
1959
|
+
dialect: "cel" | "cron" | "template";
|
|
1960
|
+
source?: string | undefined;
|
|
1961
|
+
ast?: unknown;
|
|
1962
|
+
meta?: {
|
|
1963
|
+
rationale?: string | undefined;
|
|
1964
|
+
generatedBy?: string | undefined;
|
|
1965
|
+
} | undefined;
|
|
1966
|
+
} | undefined;
|
|
1967
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1968
|
+
readonly _lockReason?: string | undefined;
|
|
1969
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1970
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1971
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1972
|
+
readonly _packageId?: string | undefined;
|
|
1973
|
+
readonly _packageVersion?: string | undefined;
|
|
1974
|
+
readonly lookupFilters?: {
|
|
1975
|
+
field: string;
|
|
1976
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1977
|
+
value: any;
|
|
1978
|
+
}[] | undefined;
|
|
1979
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1980
|
+
readonly expression?: string | {
|
|
1981
|
+
dialect: "cel" | "cron" | "template";
|
|
1982
|
+
source?: string | undefined;
|
|
1983
|
+
ast?: unknown;
|
|
1984
|
+
meta?: {
|
|
1985
|
+
rationale?: string | undefined;
|
|
1986
|
+
generatedBy?: string | undefined;
|
|
1987
|
+
} | undefined;
|
|
1988
|
+
} | undefined;
|
|
1989
|
+
readonly autonumberFormat?: string | undefined;
|
|
1990
|
+
readonly summaryOperations?: {
|
|
1991
|
+
object: string;
|
|
1992
|
+
field: string;
|
|
1993
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1994
|
+
relationshipField?: string | undefined;
|
|
1995
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1996
|
+
} | undefined;
|
|
1997
|
+
readonly reference?: string | undefined;
|
|
1789
1998
|
readonly scale?: number | undefined;
|
|
1790
1999
|
readonly searchable?: boolean | undefined;
|
|
1791
2000
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -1794,6 +2003,7 @@ declare const SysWebhook: Omit<{
|
|
|
1794
2003
|
readonly minLength?: number | undefined;
|
|
1795
2004
|
readonly min?: number | undefined;
|
|
1796
2005
|
readonly max?: number | undefined;
|
|
2006
|
+
readonly useGrouping?: boolean | undefined;
|
|
1797
2007
|
readonly accept?: string[] | undefined;
|
|
1798
2008
|
readonly maxSize?: number | undefined;
|
|
1799
2009
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1827,6 +2037,64 @@ declare const SysWebhook: Omit<{
|
|
|
1827
2037
|
readonly dimensions?: number | undefined;
|
|
1828
2038
|
readonly trackHistory?: boolean | undefined;
|
|
1829
2039
|
readonly group?: string | undefined;
|
|
2040
|
+
readonly requiredWhen?: string | {
|
|
2041
|
+
dialect: "cel" | "cron" | "template";
|
|
2042
|
+
source?: string | undefined;
|
|
2043
|
+
ast?: unknown;
|
|
2044
|
+
meta?: {
|
|
2045
|
+
rationale?: string | undefined;
|
|
2046
|
+
generatedBy?: string | undefined;
|
|
2047
|
+
} | undefined;
|
|
2048
|
+
} | undefined;
|
|
2049
|
+
readonly conditionalRequired?: undefined;
|
|
2050
|
+
readonly hidden?: boolean | undefined;
|
|
2051
|
+
readonly internal?: boolean | undefined;
|
|
2052
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2053
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2054
|
+
readonly system?: boolean | undefined;
|
|
2055
|
+
readonly sortable?: boolean | undefined;
|
|
2056
|
+
readonly inlineHelpText?: string | undefined;
|
|
2057
|
+
readonly externalId?: boolean | undefined;
|
|
2058
|
+
readonly type: "textarea";
|
|
2059
|
+
};
|
|
2060
|
+
readonly active: {
|
|
2061
|
+
readonly readonly?: boolean | undefined;
|
|
2062
|
+
readonly format?: string | undefined;
|
|
2063
|
+
readonly options?: {
|
|
2064
|
+
label: string;
|
|
2065
|
+
value: string;
|
|
2066
|
+
color?: string | undefined;
|
|
2067
|
+
default?: boolean | undefined;
|
|
2068
|
+
visibleWhen?: string | {
|
|
2069
|
+
dialect: "cel" | "cron" | "template";
|
|
2070
|
+
source?: string | undefined;
|
|
2071
|
+
ast?: unknown;
|
|
2072
|
+
meta?: {
|
|
2073
|
+
rationale?: string | undefined;
|
|
2074
|
+
generatedBy?: string | undefined;
|
|
2075
|
+
} | undefined;
|
|
2076
|
+
} | undefined;
|
|
2077
|
+
}[] | undefined;
|
|
2078
|
+
readonly description?: string | undefined;
|
|
2079
|
+
readonly label?: string | undefined;
|
|
2080
|
+
readonly name?: string | undefined;
|
|
2081
|
+
readonly precision?: number | undefined;
|
|
2082
|
+
readonly required?: boolean | undefined;
|
|
2083
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2084
|
+
readonly widget?: string | undefined;
|
|
2085
|
+
readonly multiple?: boolean | undefined;
|
|
2086
|
+
readonly storage?: {
|
|
2087
|
+
notNull?: boolean | undefined;
|
|
2088
|
+
} | undefined;
|
|
2089
|
+
readonly visibleWhen?: string | {
|
|
2090
|
+
dialect: "cel" | "cron" | "template";
|
|
2091
|
+
source?: string | undefined;
|
|
2092
|
+
ast?: unknown;
|
|
2093
|
+
meta?: {
|
|
2094
|
+
rationale?: string | undefined;
|
|
2095
|
+
generatedBy?: string | undefined;
|
|
2096
|
+
} | undefined;
|
|
2097
|
+
} | undefined;
|
|
1830
2098
|
readonly readonlyWhen?: string | {
|
|
1831
2099
|
dialect: "cel" | "cron" | "template";
|
|
1832
2100
|
source?: string | undefined;
|
|
@@ -1836,6 +2104,79 @@ declare const SysWebhook: Omit<{
|
|
|
1836
2104
|
generatedBy?: string | undefined;
|
|
1837
2105
|
} | undefined;
|
|
1838
2106
|
} | undefined;
|
|
2107
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2108
|
+
readonly _lockReason?: string | undefined;
|
|
2109
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2110
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2111
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2112
|
+
readonly _packageId?: string | undefined;
|
|
2113
|
+
readonly _packageVersion?: string | undefined;
|
|
2114
|
+
readonly lookupFilters?: {
|
|
2115
|
+
field: string;
|
|
2116
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2117
|
+
value: any;
|
|
2118
|
+
}[] | undefined;
|
|
2119
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2120
|
+
readonly expression?: string | {
|
|
2121
|
+
dialect: "cel" | "cron" | "template";
|
|
2122
|
+
source?: string | undefined;
|
|
2123
|
+
ast?: unknown;
|
|
2124
|
+
meta?: {
|
|
2125
|
+
rationale?: string | undefined;
|
|
2126
|
+
generatedBy?: string | undefined;
|
|
2127
|
+
} | undefined;
|
|
2128
|
+
} | undefined;
|
|
2129
|
+
readonly autonumberFormat?: string | undefined;
|
|
2130
|
+
readonly summaryOperations?: {
|
|
2131
|
+
object: string;
|
|
2132
|
+
field: string;
|
|
2133
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2134
|
+
relationshipField?: string | undefined;
|
|
2135
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2136
|
+
} | undefined;
|
|
2137
|
+
readonly reference?: string | undefined;
|
|
2138
|
+
readonly scale?: number | undefined;
|
|
2139
|
+
readonly searchable?: boolean | undefined;
|
|
2140
|
+
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
2141
|
+
readonly defaultValue?: unknown;
|
|
2142
|
+
readonly maxLength?: number | undefined;
|
|
2143
|
+
readonly minLength?: number | undefined;
|
|
2144
|
+
readonly min?: number | undefined;
|
|
2145
|
+
readonly max?: number | undefined;
|
|
2146
|
+
readonly useGrouping?: boolean | undefined;
|
|
2147
|
+
readonly accept?: string[] | undefined;
|
|
2148
|
+
readonly maxSize?: number | undefined;
|
|
2149
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2150
|
+
readonly inlineTitle?: string | undefined;
|
|
2151
|
+
readonly inlineColumns?: any[] | undefined;
|
|
2152
|
+
readonly inlineAmountField?: string | undefined;
|
|
2153
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2154
|
+
readonly relatedListTitle?: string | undefined;
|
|
2155
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
2156
|
+
readonly displayField?: string | undefined;
|
|
2157
|
+
readonly descriptionField?: string | undefined;
|
|
2158
|
+
readonly lookupColumns?: (string | {
|
|
2159
|
+
field: string;
|
|
2160
|
+
label?: string | undefined;
|
|
2161
|
+
width?: string | undefined;
|
|
2162
|
+
type?: string | undefined;
|
|
2163
|
+
})[] | undefined;
|
|
2164
|
+
readonly lookupPageSize?: number | undefined;
|
|
2165
|
+
readonly dependsOn?: (string | {
|
|
2166
|
+
field: string;
|
|
2167
|
+
param?: string | undefined;
|
|
2168
|
+
})[] | undefined;
|
|
2169
|
+
readonly allowCreate?: boolean | undefined;
|
|
2170
|
+
readonly language?: string | undefined;
|
|
2171
|
+
readonly step?: number | undefined;
|
|
2172
|
+
readonly currencyConfig?: {
|
|
2173
|
+
precision?: number | undefined;
|
|
2174
|
+
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
2175
|
+
defaultCurrency?: string | undefined;
|
|
2176
|
+
} | undefined;
|
|
2177
|
+
readonly dimensions?: number | undefined;
|
|
2178
|
+
readonly trackHistory?: boolean | undefined;
|
|
2179
|
+
readonly group?: string | undefined;
|
|
1839
2180
|
readonly requiredWhen?: string | {
|
|
1840
2181
|
dialect: "cel" | "cron" | "template";
|
|
1841
2182
|
source?: string | undefined;
|
|
@@ -1847,15 +2188,16 @@ declare const SysWebhook: Omit<{
|
|
|
1847
2188
|
} | undefined;
|
|
1848
2189
|
readonly conditionalRequired?: undefined;
|
|
1849
2190
|
readonly hidden?: boolean | undefined;
|
|
2191
|
+
readonly internal?: boolean | undefined;
|
|
1850
2192
|
readonly requiredPermissions?: string[] | undefined;
|
|
1851
2193
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1852
2194
|
readonly system?: boolean | undefined;
|
|
1853
2195
|
readonly sortable?: boolean | undefined;
|
|
1854
2196
|
readonly inlineHelpText?: string | undefined;
|
|
1855
2197
|
readonly externalId?: boolean | undefined;
|
|
1856
|
-
readonly type: "
|
|
2198
|
+
readonly type: "boolean";
|
|
1857
2199
|
};
|
|
1858
|
-
readonly
|
|
2200
|
+
readonly definition_json: {
|
|
1859
2201
|
readonly readonly?: boolean | undefined;
|
|
1860
2202
|
readonly format?: string | undefined;
|
|
1861
2203
|
readonly options?: {
|
|
@@ -1884,6 +2226,24 @@ declare const SysWebhook: Omit<{
|
|
|
1884
2226
|
readonly storage?: {
|
|
1885
2227
|
notNull?: boolean | undefined;
|
|
1886
2228
|
} | undefined;
|
|
2229
|
+
readonly visibleWhen?: string | {
|
|
2230
|
+
dialect: "cel" | "cron" | "template";
|
|
2231
|
+
source?: string | undefined;
|
|
2232
|
+
ast?: unknown;
|
|
2233
|
+
meta?: {
|
|
2234
|
+
rationale?: string | undefined;
|
|
2235
|
+
generatedBy?: string | undefined;
|
|
2236
|
+
} | undefined;
|
|
2237
|
+
} | undefined;
|
|
2238
|
+
readonly readonlyWhen?: string | {
|
|
2239
|
+
dialect: "cel" | "cron" | "template";
|
|
2240
|
+
source?: string | undefined;
|
|
2241
|
+
ast?: unknown;
|
|
2242
|
+
meta?: {
|
|
2243
|
+
rationale?: string | undefined;
|
|
2244
|
+
generatedBy?: string | undefined;
|
|
2245
|
+
} | undefined;
|
|
2246
|
+
} | undefined;
|
|
1887
2247
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1888
2248
|
readonly _lockReason?: string | undefined;
|
|
1889
2249
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1915,15 +2275,6 @@ declare const SysWebhook: Omit<{
|
|
|
1915
2275
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1916
2276
|
} | undefined;
|
|
1917
2277
|
readonly reference?: string | undefined;
|
|
1918
|
-
readonly visibleWhen?: string | {
|
|
1919
|
-
dialect: "cel" | "cron" | "template";
|
|
1920
|
-
source?: string | undefined;
|
|
1921
|
-
ast?: unknown;
|
|
1922
|
-
meta?: {
|
|
1923
|
-
rationale?: string | undefined;
|
|
1924
|
-
generatedBy?: string | undefined;
|
|
1925
|
-
} | undefined;
|
|
1926
|
-
} | undefined;
|
|
1927
2278
|
readonly scale?: number | undefined;
|
|
1928
2279
|
readonly searchable?: boolean | undefined;
|
|
1929
2280
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -1932,6 +2283,7 @@ declare const SysWebhook: Omit<{
|
|
|
1932
2283
|
readonly minLength?: number | undefined;
|
|
1933
2284
|
readonly min?: number | undefined;
|
|
1934
2285
|
readonly max?: number | undefined;
|
|
2286
|
+
readonly useGrouping?: boolean | undefined;
|
|
1935
2287
|
readonly accept?: string[] | undefined;
|
|
1936
2288
|
readonly maxSize?: number | undefined;
|
|
1937
2289
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1965,15 +2317,6 @@ declare const SysWebhook: Omit<{
|
|
|
1965
2317
|
readonly dimensions?: number | undefined;
|
|
1966
2318
|
readonly trackHistory?: boolean | undefined;
|
|
1967
2319
|
readonly group?: string | undefined;
|
|
1968
|
-
readonly readonlyWhen?: string | {
|
|
1969
|
-
dialect: "cel" | "cron" | "template";
|
|
1970
|
-
source?: string | undefined;
|
|
1971
|
-
ast?: unknown;
|
|
1972
|
-
meta?: {
|
|
1973
|
-
rationale?: string | undefined;
|
|
1974
|
-
generatedBy?: string | undefined;
|
|
1975
|
-
} | undefined;
|
|
1976
|
-
} | undefined;
|
|
1977
2320
|
readonly requiredWhen?: string | {
|
|
1978
2321
|
dialect: "cel" | "cron" | "template";
|
|
1979
2322
|
source?: string | undefined;
|
|
@@ -1985,6 +2328,7 @@ declare const SysWebhook: Omit<{
|
|
|
1985
2328
|
} | undefined;
|
|
1986
2329
|
readonly conditionalRequired?: undefined;
|
|
1987
2330
|
readonly hidden?: boolean | undefined;
|
|
2331
|
+
readonly internal?: boolean | undefined;
|
|
1988
2332
|
readonly requiredPermissions?: string[] | undefined;
|
|
1989
2333
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1990
2334
|
readonly system?: boolean | undefined;
|
|
@@ -1993,7 +2337,37 @@ declare const SysWebhook: Omit<{
|
|
|
1993
2337
|
readonly externalId?: boolean | undefined;
|
|
1994
2338
|
readonly type: "textarea";
|
|
1995
2339
|
};
|
|
1996
|
-
|
|
2340
|
+
/**
|
|
2341
|
+
* [#7986] Custom HTTP headers, in the engine's ENCRYPTED credential channel.
|
|
2342
|
+
*
|
|
2343
|
+
* The sibling passenger #7799 left on the blob it emptied. That card was
|
|
2344
|
+
* framed as "the signing secret is in cleartext" and was fixed exactly as
|
|
2345
|
+
* framed — but the COLUMN was the problem, and `headers` is the ordinary
|
|
2346
|
+
* place an `Authorization: Bearer …` goes. `definition_json` is an ordinary
|
|
2347
|
+
* textarea on an admin-authorable object with no restrictive
|
|
2348
|
+
* `enable.apiMethods` at all, so `GET /api/v1/data/sys_webhook` returned the
|
|
2349
|
+
* header map to every persona that can read the object, with none of the
|
|
2350
|
+
* retention bound that eventually ages out `sys_http_delivery`'s copies.
|
|
2351
|
+
*
|
|
2352
|
+
* The WHOLE map moves rather than the credential-looking entries, because
|
|
2353
|
+
* only some entries are credentials and the platform cannot tell which:
|
|
2354
|
+
* guessing from the header name is fail-OPEN on exactly the custom spellings
|
|
2355
|
+
* (`X-Acme-Token`) most likely to be one, and letting the author declare
|
|
2356
|
+
* which are sensitive is a change to the authoring envelope
|
|
2357
|
+
* (`webhook.zod.ts`) that belongs to the spec seat. See
|
|
2358
|
+
* `webhook-headers.ts` for the full comparison.
|
|
2359
|
+
*
|
|
2360
|
+
* Stored as the SERIALIZED map (the encrypted channel carries a string);
|
|
2361
|
+
* the enqueuer recovers and re-parses it server-side through
|
|
2362
|
+
* `engine.resolveSecretField()` when it refreshes its subscription cache,
|
|
2363
|
+
* on the same refresh that recovers the signing secret.
|
|
2364
|
+
*
|
|
2365
|
+
* Fail-closed by construction, the same way `signing_secret` is: with no
|
|
2366
|
+
* CryptoProvider the engine REFUSES the write rather than falling back to
|
|
2367
|
+
* cleartext, and a stored map that cannot be decrypted DROPS the
|
|
2368
|
+
* subscription rather than delivering it with its headers silently missing.
|
|
2369
|
+
*/
|
|
2370
|
+
readonly headers_secret: {
|
|
1997
2371
|
readonly readonly?: boolean | undefined;
|
|
1998
2372
|
readonly format?: string | undefined;
|
|
1999
2373
|
readonly options?: {
|
|
@@ -2022,6 +2396,24 @@ declare const SysWebhook: Omit<{
|
|
|
2022
2396
|
readonly storage?: {
|
|
2023
2397
|
notNull?: boolean | undefined;
|
|
2024
2398
|
} | undefined;
|
|
2399
|
+
readonly visibleWhen?: string | {
|
|
2400
|
+
dialect: "cel" | "cron" | "template";
|
|
2401
|
+
source?: string | undefined;
|
|
2402
|
+
ast?: unknown;
|
|
2403
|
+
meta?: {
|
|
2404
|
+
rationale?: string | undefined;
|
|
2405
|
+
generatedBy?: string | undefined;
|
|
2406
|
+
} | undefined;
|
|
2407
|
+
} | undefined;
|
|
2408
|
+
readonly readonlyWhen?: string | {
|
|
2409
|
+
dialect: "cel" | "cron" | "template";
|
|
2410
|
+
source?: string | undefined;
|
|
2411
|
+
ast?: unknown;
|
|
2412
|
+
meta?: {
|
|
2413
|
+
rationale?: string | undefined;
|
|
2414
|
+
generatedBy?: string | undefined;
|
|
2415
|
+
} | undefined;
|
|
2416
|
+
} | undefined;
|
|
2025
2417
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2026
2418
|
readonly _lockReason?: string | undefined;
|
|
2027
2419
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2053,15 +2445,6 @@ declare const SysWebhook: Omit<{
|
|
|
2053
2445
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2054
2446
|
} | undefined;
|
|
2055
2447
|
readonly reference?: string | undefined;
|
|
2056
|
-
readonly visibleWhen?: string | {
|
|
2057
|
-
dialect: "cel" | "cron" | "template";
|
|
2058
|
-
source?: string | undefined;
|
|
2059
|
-
ast?: unknown;
|
|
2060
|
-
meta?: {
|
|
2061
|
-
rationale?: string | undefined;
|
|
2062
|
-
generatedBy?: string | undefined;
|
|
2063
|
-
} | undefined;
|
|
2064
|
-
} | undefined;
|
|
2065
2448
|
readonly scale?: number | undefined;
|
|
2066
2449
|
readonly searchable?: boolean | undefined;
|
|
2067
2450
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -2070,6 +2453,7 @@ declare const SysWebhook: Omit<{
|
|
|
2070
2453
|
readonly minLength?: number | undefined;
|
|
2071
2454
|
readonly min?: number | undefined;
|
|
2072
2455
|
readonly max?: number | undefined;
|
|
2456
|
+
readonly useGrouping?: boolean | undefined;
|
|
2073
2457
|
readonly accept?: string[] | undefined;
|
|
2074
2458
|
readonly maxSize?: number | undefined;
|
|
2075
2459
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -2103,15 +2487,6 @@ declare const SysWebhook: Omit<{
|
|
|
2103
2487
|
readonly dimensions?: number | undefined;
|
|
2104
2488
|
readonly trackHistory?: boolean | undefined;
|
|
2105
2489
|
readonly group?: string | undefined;
|
|
2106
|
-
readonly readonlyWhen?: string | {
|
|
2107
|
-
dialect: "cel" | "cron" | "template";
|
|
2108
|
-
source?: string | undefined;
|
|
2109
|
-
ast?: unknown;
|
|
2110
|
-
meta?: {
|
|
2111
|
-
rationale?: string | undefined;
|
|
2112
|
-
generatedBy?: string | undefined;
|
|
2113
|
-
} | undefined;
|
|
2114
|
-
} | undefined;
|
|
2115
2490
|
readonly requiredWhen?: string | {
|
|
2116
2491
|
dialect: "cel" | "cron" | "template";
|
|
2117
2492
|
source?: string | undefined;
|
|
@@ -2123,15 +2498,39 @@ declare const SysWebhook: Omit<{
|
|
|
2123
2498
|
} | undefined;
|
|
2124
2499
|
readonly conditionalRequired?: undefined;
|
|
2125
2500
|
readonly hidden?: boolean | undefined;
|
|
2501
|
+
readonly internal?: boolean | undefined;
|
|
2126
2502
|
readonly requiredPermissions?: string[] | undefined;
|
|
2127
2503
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2128
2504
|
readonly system?: boolean | undefined;
|
|
2129
2505
|
readonly sortable?: boolean | undefined;
|
|
2130
2506
|
readonly inlineHelpText?: string | undefined;
|
|
2131
2507
|
readonly externalId?: boolean | undefined;
|
|
2132
|
-
readonly type: "
|
|
2508
|
+
readonly type: "secret";
|
|
2133
2509
|
};
|
|
2134
|
-
|
|
2510
|
+
/**
|
|
2511
|
+
* [#7799] HMAC signing key, in the engine's ENCRYPTED credential channel.
|
|
2512
|
+
*
|
|
2513
|
+
* It used to ride inside `definition_json` as cleartext, because that column
|
|
2514
|
+
* is where the seeder parked the whole authored envelope. `definition_json`
|
|
2515
|
+
* is an ordinary textarea on an admin-authorable object with no restrictive
|
|
2516
|
+
* `enable.apiMethods`, so `GET /api/v1/data/sys_webhook` handed the key back
|
|
2517
|
+
* to every persona that can read the object — and that key is the receiver's
|
|
2518
|
+
* ONLY proof a delivery came from us. Same exposure class as #7722's
|
|
2519
|
+
* per-attempt copies, minus the retention window that eventually aged those
|
|
2520
|
+
* out.
|
|
2521
|
+
*
|
|
2522
|
+
* `type: 'secret'` moves it onto the channel built for this: the engine
|
|
2523
|
+
* encrypts on write via the registered `ICryptoProvider`, stores the
|
|
2524
|
+
* ciphertext as a `sys_secret` row, keeps only an opaque `secret:<id>` ref
|
|
2525
|
+
* on this column, and returns the mask on every read path. The enqueuer
|
|
2526
|
+
* recovers the plaintext server-side through `engine.resolveSecretField()`
|
|
2527
|
+
* when it refreshes its subscription cache.
|
|
2528
|
+
*
|
|
2529
|
+
* Fail-closed by construction: with no CryptoProvider wired the engine
|
|
2530
|
+
* REFUSES the write rather than falling back to cleartext, so the seeder
|
|
2531
|
+
* skips that webhook loudly instead of re-opening the hole in a new column.
|
|
2532
|
+
*/
|
|
2533
|
+
readonly signing_secret: {
|
|
2135
2534
|
readonly readonly?: boolean | undefined;
|
|
2136
2535
|
readonly format?: string | undefined;
|
|
2137
2536
|
readonly options?: {
|
|
@@ -2160,6 +2559,24 @@ declare const SysWebhook: Omit<{
|
|
|
2160
2559
|
readonly storage?: {
|
|
2161
2560
|
notNull?: boolean | undefined;
|
|
2162
2561
|
} | undefined;
|
|
2562
|
+
readonly visibleWhen?: string | {
|
|
2563
|
+
dialect: "cel" | "cron" | "template";
|
|
2564
|
+
source?: string | undefined;
|
|
2565
|
+
ast?: unknown;
|
|
2566
|
+
meta?: {
|
|
2567
|
+
rationale?: string | undefined;
|
|
2568
|
+
generatedBy?: string | undefined;
|
|
2569
|
+
} | undefined;
|
|
2570
|
+
} | undefined;
|
|
2571
|
+
readonly readonlyWhen?: string | {
|
|
2572
|
+
dialect: "cel" | "cron" | "template";
|
|
2573
|
+
source?: string | undefined;
|
|
2574
|
+
ast?: unknown;
|
|
2575
|
+
meta?: {
|
|
2576
|
+
rationale?: string | undefined;
|
|
2577
|
+
generatedBy?: string | undefined;
|
|
2578
|
+
} | undefined;
|
|
2579
|
+
} | undefined;
|
|
2163
2580
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2164
2581
|
readonly _lockReason?: string | undefined;
|
|
2165
2582
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2191,15 +2608,6 @@ declare const SysWebhook: Omit<{
|
|
|
2191
2608
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2192
2609
|
} | undefined;
|
|
2193
2610
|
readonly reference?: string | undefined;
|
|
2194
|
-
readonly visibleWhen?: string | {
|
|
2195
|
-
dialect: "cel" | "cron" | "template";
|
|
2196
|
-
source?: string | undefined;
|
|
2197
|
-
ast?: unknown;
|
|
2198
|
-
meta?: {
|
|
2199
|
-
rationale?: string | undefined;
|
|
2200
|
-
generatedBy?: string | undefined;
|
|
2201
|
-
} | undefined;
|
|
2202
|
-
} | undefined;
|
|
2203
2611
|
readonly scale?: number | undefined;
|
|
2204
2612
|
readonly searchable?: boolean | undefined;
|
|
2205
2613
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -2208,6 +2616,7 @@ declare const SysWebhook: Omit<{
|
|
|
2208
2616
|
readonly minLength?: number | undefined;
|
|
2209
2617
|
readonly min?: number | undefined;
|
|
2210
2618
|
readonly max?: number | undefined;
|
|
2619
|
+
readonly useGrouping?: boolean | undefined;
|
|
2211
2620
|
readonly accept?: string[] | undefined;
|
|
2212
2621
|
readonly maxSize?: number | undefined;
|
|
2213
2622
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -2241,15 +2650,6 @@ declare const SysWebhook: Omit<{
|
|
|
2241
2650
|
readonly dimensions?: number | undefined;
|
|
2242
2651
|
readonly trackHistory?: boolean | undefined;
|
|
2243
2652
|
readonly group?: string | undefined;
|
|
2244
|
-
readonly readonlyWhen?: string | {
|
|
2245
|
-
dialect: "cel" | "cron" | "template";
|
|
2246
|
-
source?: string | undefined;
|
|
2247
|
-
ast?: unknown;
|
|
2248
|
-
meta?: {
|
|
2249
|
-
rationale?: string | undefined;
|
|
2250
|
-
generatedBy?: string | undefined;
|
|
2251
|
-
} | undefined;
|
|
2252
|
-
} | undefined;
|
|
2253
2653
|
readonly requiredWhen?: string | {
|
|
2254
2654
|
dialect: "cel" | "cron" | "template";
|
|
2255
2655
|
source?: string | undefined;
|
|
@@ -2261,13 +2661,14 @@ declare const SysWebhook: Omit<{
|
|
|
2261
2661
|
} | undefined;
|
|
2262
2662
|
readonly conditionalRequired?: undefined;
|
|
2263
2663
|
readonly hidden?: boolean | undefined;
|
|
2664
|
+
readonly internal?: boolean | undefined;
|
|
2264
2665
|
readonly requiredPermissions?: string[] | undefined;
|
|
2265
2666
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2266
2667
|
readonly system?: boolean | undefined;
|
|
2267
2668
|
readonly sortable?: boolean | undefined;
|
|
2268
2669
|
readonly inlineHelpText?: string | undefined;
|
|
2269
2670
|
readonly externalId?: boolean | undefined;
|
|
2270
|
-
readonly type: "
|
|
2671
|
+
readonly type: "secret";
|
|
2271
2672
|
};
|
|
2272
2673
|
readonly managed_by: {
|
|
2273
2674
|
readonly readonly?: boolean | undefined;
|
|
@@ -2298,6 +2699,24 @@ declare const SysWebhook: Omit<{
|
|
|
2298
2699
|
readonly storage?: {
|
|
2299
2700
|
notNull?: boolean | undefined;
|
|
2300
2701
|
} | undefined;
|
|
2702
|
+
readonly visibleWhen?: string | {
|
|
2703
|
+
dialect: "cel" | "cron" | "template";
|
|
2704
|
+
source?: string | undefined;
|
|
2705
|
+
ast?: unknown;
|
|
2706
|
+
meta?: {
|
|
2707
|
+
rationale?: string | undefined;
|
|
2708
|
+
generatedBy?: string | undefined;
|
|
2709
|
+
} | undefined;
|
|
2710
|
+
} | undefined;
|
|
2711
|
+
readonly readonlyWhen?: string | {
|
|
2712
|
+
dialect: "cel" | "cron" | "template";
|
|
2713
|
+
source?: string | undefined;
|
|
2714
|
+
ast?: unknown;
|
|
2715
|
+
meta?: {
|
|
2716
|
+
rationale?: string | undefined;
|
|
2717
|
+
generatedBy?: string | undefined;
|
|
2718
|
+
} | undefined;
|
|
2719
|
+
} | undefined;
|
|
2301
2720
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2302
2721
|
readonly _lockReason?: string | undefined;
|
|
2303
2722
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2329,15 +2748,6 @@ declare const SysWebhook: Omit<{
|
|
|
2329
2748
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2330
2749
|
} | undefined;
|
|
2331
2750
|
readonly reference?: string | undefined;
|
|
2332
|
-
readonly visibleWhen?: string | {
|
|
2333
|
-
dialect: "cel" | "cron" | "template";
|
|
2334
|
-
source?: string | undefined;
|
|
2335
|
-
ast?: unknown;
|
|
2336
|
-
meta?: {
|
|
2337
|
-
rationale?: string | undefined;
|
|
2338
|
-
generatedBy?: string | undefined;
|
|
2339
|
-
} | undefined;
|
|
2340
|
-
} | undefined;
|
|
2341
2751
|
readonly scale?: number | undefined;
|
|
2342
2752
|
readonly searchable?: boolean | undefined;
|
|
2343
2753
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -2346,6 +2756,7 @@ declare const SysWebhook: Omit<{
|
|
|
2346
2756
|
readonly minLength?: number | undefined;
|
|
2347
2757
|
readonly min?: number | undefined;
|
|
2348
2758
|
readonly max?: number | undefined;
|
|
2759
|
+
readonly useGrouping?: boolean | undefined;
|
|
2349
2760
|
readonly accept?: string[] | undefined;
|
|
2350
2761
|
readonly maxSize?: number | undefined;
|
|
2351
2762
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -2379,15 +2790,6 @@ declare const SysWebhook: Omit<{
|
|
|
2379
2790
|
readonly dimensions?: number | undefined;
|
|
2380
2791
|
readonly trackHistory?: boolean | undefined;
|
|
2381
2792
|
readonly group?: string | undefined;
|
|
2382
|
-
readonly readonlyWhen?: string | {
|
|
2383
|
-
dialect: "cel" | "cron" | "template";
|
|
2384
|
-
source?: string | undefined;
|
|
2385
|
-
ast?: unknown;
|
|
2386
|
-
meta?: {
|
|
2387
|
-
rationale?: string | undefined;
|
|
2388
|
-
generatedBy?: string | undefined;
|
|
2389
|
-
} | undefined;
|
|
2390
|
-
} | undefined;
|
|
2391
2793
|
readonly requiredWhen?: string | {
|
|
2392
2794
|
dialect: "cel" | "cron" | "template";
|
|
2393
2795
|
source?: string | undefined;
|
|
@@ -2399,6 +2801,7 @@ declare const SysWebhook: Omit<{
|
|
|
2399
2801
|
} | undefined;
|
|
2400
2802
|
readonly conditionalRequired?: undefined;
|
|
2401
2803
|
readonly hidden?: boolean | undefined;
|
|
2804
|
+
readonly internal?: boolean | undefined;
|
|
2402
2805
|
readonly requiredPermissions?: string[] | undefined;
|
|
2403
2806
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2404
2807
|
readonly system?: boolean | undefined;
|
|
@@ -2436,6 +2839,24 @@ declare const SysWebhook: Omit<{
|
|
|
2436
2839
|
readonly storage?: {
|
|
2437
2840
|
notNull?: boolean | undefined;
|
|
2438
2841
|
} | undefined;
|
|
2842
|
+
readonly visibleWhen?: string | {
|
|
2843
|
+
dialect: "cel" | "cron" | "template";
|
|
2844
|
+
source?: string | undefined;
|
|
2845
|
+
ast?: unknown;
|
|
2846
|
+
meta?: {
|
|
2847
|
+
rationale?: string | undefined;
|
|
2848
|
+
generatedBy?: string | undefined;
|
|
2849
|
+
} | undefined;
|
|
2850
|
+
} | undefined;
|
|
2851
|
+
readonly readonlyWhen?: string | {
|
|
2852
|
+
dialect: "cel" | "cron" | "template";
|
|
2853
|
+
source?: string | undefined;
|
|
2854
|
+
ast?: unknown;
|
|
2855
|
+
meta?: {
|
|
2856
|
+
rationale?: string | undefined;
|
|
2857
|
+
generatedBy?: string | undefined;
|
|
2858
|
+
} | undefined;
|
|
2859
|
+
} | undefined;
|
|
2439
2860
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2440
2861
|
readonly _lockReason?: string | undefined;
|
|
2441
2862
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2467,15 +2888,6 @@ declare const SysWebhook: Omit<{
|
|
|
2467
2888
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2468
2889
|
} | undefined;
|
|
2469
2890
|
readonly reference?: string | undefined;
|
|
2470
|
-
readonly visibleWhen?: string | {
|
|
2471
|
-
dialect: "cel" | "cron" | "template";
|
|
2472
|
-
source?: string | undefined;
|
|
2473
|
-
ast?: unknown;
|
|
2474
|
-
meta?: {
|
|
2475
|
-
rationale?: string | undefined;
|
|
2476
|
-
generatedBy?: string | undefined;
|
|
2477
|
-
} | undefined;
|
|
2478
|
-
} | undefined;
|
|
2479
2891
|
readonly scale?: number | undefined;
|
|
2480
2892
|
readonly searchable?: boolean | undefined;
|
|
2481
2893
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -2484,6 +2896,7 @@ declare const SysWebhook: Omit<{
|
|
|
2484
2896
|
readonly minLength?: number | undefined;
|
|
2485
2897
|
readonly min?: number | undefined;
|
|
2486
2898
|
readonly max?: number | undefined;
|
|
2899
|
+
readonly useGrouping?: boolean | undefined;
|
|
2487
2900
|
readonly accept?: string[] | undefined;
|
|
2488
2901
|
readonly maxSize?: number | undefined;
|
|
2489
2902
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -2517,15 +2930,6 @@ declare const SysWebhook: Omit<{
|
|
|
2517
2930
|
readonly dimensions?: number | undefined;
|
|
2518
2931
|
readonly trackHistory?: boolean | undefined;
|
|
2519
2932
|
readonly group?: string | undefined;
|
|
2520
|
-
readonly readonlyWhen?: string | {
|
|
2521
|
-
dialect: "cel" | "cron" | "template";
|
|
2522
|
-
source?: string | undefined;
|
|
2523
|
-
ast?: unknown;
|
|
2524
|
-
meta?: {
|
|
2525
|
-
rationale?: string | undefined;
|
|
2526
|
-
generatedBy?: string | undefined;
|
|
2527
|
-
} | undefined;
|
|
2528
|
-
} | undefined;
|
|
2529
2933
|
readonly requiredWhen?: string | {
|
|
2530
2934
|
dialect: "cel" | "cron" | "template";
|
|
2531
2935
|
source?: string | undefined;
|
|
@@ -2537,6 +2941,7 @@ declare const SysWebhook: Omit<{
|
|
|
2537
2941
|
} | undefined;
|
|
2538
2942
|
readonly conditionalRequired?: undefined;
|
|
2539
2943
|
readonly hidden?: boolean | undefined;
|
|
2944
|
+
readonly internal?: boolean | undefined;
|
|
2540
2945
|
readonly requiredPermissions?: string[] | undefined;
|
|
2541
2946
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2542
2947
|
readonly system?: boolean | undefined;
|
|
@@ -2574,6 +2979,24 @@ declare const SysWebhook: Omit<{
|
|
|
2574
2979
|
readonly storage?: {
|
|
2575
2980
|
notNull?: boolean | undefined;
|
|
2576
2981
|
} | undefined;
|
|
2982
|
+
readonly visibleWhen?: string | {
|
|
2983
|
+
dialect: "cel" | "cron" | "template";
|
|
2984
|
+
source?: string | undefined;
|
|
2985
|
+
ast?: unknown;
|
|
2986
|
+
meta?: {
|
|
2987
|
+
rationale?: string | undefined;
|
|
2988
|
+
generatedBy?: string | undefined;
|
|
2989
|
+
} | undefined;
|
|
2990
|
+
} | undefined;
|
|
2991
|
+
readonly readonlyWhen?: string | {
|
|
2992
|
+
dialect: "cel" | "cron" | "template";
|
|
2993
|
+
source?: string | undefined;
|
|
2994
|
+
ast?: unknown;
|
|
2995
|
+
meta?: {
|
|
2996
|
+
rationale?: string | undefined;
|
|
2997
|
+
generatedBy?: string | undefined;
|
|
2998
|
+
} | undefined;
|
|
2999
|
+
} | undefined;
|
|
2577
3000
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2578
3001
|
readonly _lockReason?: string | undefined;
|
|
2579
3002
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2605,15 +3028,6 @@ declare const SysWebhook: Omit<{
|
|
|
2605
3028
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2606
3029
|
} | undefined;
|
|
2607
3030
|
readonly reference?: string | undefined;
|
|
2608
|
-
readonly visibleWhen?: string | {
|
|
2609
|
-
dialect: "cel" | "cron" | "template";
|
|
2610
|
-
source?: string | undefined;
|
|
2611
|
-
ast?: unknown;
|
|
2612
|
-
meta?: {
|
|
2613
|
-
rationale?: string | undefined;
|
|
2614
|
-
generatedBy?: string | undefined;
|
|
2615
|
-
} | undefined;
|
|
2616
|
-
} | undefined;
|
|
2617
3031
|
readonly scale?: number | undefined;
|
|
2618
3032
|
readonly searchable?: boolean | undefined;
|
|
2619
3033
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -2622,6 +3036,7 @@ declare const SysWebhook: Omit<{
|
|
|
2622
3036
|
readonly minLength?: number | undefined;
|
|
2623
3037
|
readonly min?: number | undefined;
|
|
2624
3038
|
readonly max?: number | undefined;
|
|
3039
|
+
readonly useGrouping?: boolean | undefined;
|
|
2625
3040
|
readonly accept?: string[] | undefined;
|
|
2626
3041
|
readonly maxSize?: number | undefined;
|
|
2627
3042
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -2655,15 +3070,6 @@ declare const SysWebhook: Omit<{
|
|
|
2655
3070
|
readonly dimensions?: number | undefined;
|
|
2656
3071
|
readonly trackHistory?: boolean | undefined;
|
|
2657
3072
|
readonly group?: string | undefined;
|
|
2658
|
-
readonly readonlyWhen?: string | {
|
|
2659
|
-
dialect: "cel" | "cron" | "template";
|
|
2660
|
-
source?: string | undefined;
|
|
2661
|
-
ast?: unknown;
|
|
2662
|
-
meta?: {
|
|
2663
|
-
rationale?: string | undefined;
|
|
2664
|
-
generatedBy?: string | undefined;
|
|
2665
|
-
} | undefined;
|
|
2666
|
-
} | undefined;
|
|
2667
3073
|
readonly requiredWhen?: string | {
|
|
2668
3074
|
dialect: "cel" | "cron" | "template";
|
|
2669
3075
|
source?: string | undefined;
|
|
@@ -2675,6 +3081,7 @@ declare const SysWebhook: Omit<{
|
|
|
2675
3081
|
} | undefined;
|
|
2676
3082
|
readonly conditionalRequired?: undefined;
|
|
2677
3083
|
readonly hidden?: boolean | undefined;
|
|
3084
|
+
readonly internal?: boolean | undefined;
|
|
2678
3085
|
readonly requiredPermissions?: string[] | undefined;
|
|
2679
3086
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2680
3087
|
readonly system?: boolean | undefined;
|
|
@@ -2712,6 +3119,24 @@ declare const SysWebhook: Omit<{
|
|
|
2712
3119
|
readonly storage?: {
|
|
2713
3120
|
notNull?: boolean | undefined;
|
|
2714
3121
|
} | undefined;
|
|
3122
|
+
readonly visibleWhen?: string | {
|
|
3123
|
+
dialect: "cel" | "cron" | "template";
|
|
3124
|
+
source?: string | undefined;
|
|
3125
|
+
ast?: unknown;
|
|
3126
|
+
meta?: {
|
|
3127
|
+
rationale?: string | undefined;
|
|
3128
|
+
generatedBy?: string | undefined;
|
|
3129
|
+
} | undefined;
|
|
3130
|
+
} | undefined;
|
|
3131
|
+
readonly readonlyWhen?: string | {
|
|
3132
|
+
dialect: "cel" | "cron" | "template";
|
|
3133
|
+
source?: string | undefined;
|
|
3134
|
+
ast?: unknown;
|
|
3135
|
+
meta?: {
|
|
3136
|
+
rationale?: string | undefined;
|
|
3137
|
+
generatedBy?: string | undefined;
|
|
3138
|
+
} | undefined;
|
|
3139
|
+
} | undefined;
|
|
2715
3140
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2716
3141
|
readonly _lockReason?: string | undefined;
|
|
2717
3142
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2743,15 +3168,6 @@ declare const SysWebhook: Omit<{
|
|
|
2743
3168
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2744
3169
|
} | undefined;
|
|
2745
3170
|
readonly reference?: string | undefined;
|
|
2746
|
-
readonly visibleWhen?: string | {
|
|
2747
|
-
dialect: "cel" | "cron" | "template";
|
|
2748
|
-
source?: string | undefined;
|
|
2749
|
-
ast?: unknown;
|
|
2750
|
-
meta?: {
|
|
2751
|
-
rationale?: string | undefined;
|
|
2752
|
-
generatedBy?: string | undefined;
|
|
2753
|
-
} | undefined;
|
|
2754
|
-
} | undefined;
|
|
2755
3171
|
readonly scale?: number | undefined;
|
|
2756
3172
|
readonly searchable?: boolean | undefined;
|
|
2757
3173
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -2760,6 +3176,7 @@ declare const SysWebhook: Omit<{
|
|
|
2760
3176
|
readonly minLength?: number | undefined;
|
|
2761
3177
|
readonly min?: number | undefined;
|
|
2762
3178
|
readonly max?: number | undefined;
|
|
3179
|
+
readonly useGrouping?: boolean | undefined;
|
|
2763
3180
|
readonly accept?: string[] | undefined;
|
|
2764
3181
|
readonly maxSize?: number | undefined;
|
|
2765
3182
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -2793,15 +3210,6 @@ declare const SysWebhook: Omit<{
|
|
|
2793
3210
|
readonly dimensions?: number | undefined;
|
|
2794
3211
|
readonly trackHistory?: boolean | undefined;
|
|
2795
3212
|
readonly group?: string | undefined;
|
|
2796
|
-
readonly readonlyWhen?: string | {
|
|
2797
|
-
dialect: "cel" | "cron" | "template";
|
|
2798
|
-
source?: string | undefined;
|
|
2799
|
-
ast?: unknown;
|
|
2800
|
-
meta?: {
|
|
2801
|
-
rationale?: string | undefined;
|
|
2802
|
-
generatedBy?: string | undefined;
|
|
2803
|
-
} | undefined;
|
|
2804
|
-
} | undefined;
|
|
2805
3213
|
readonly requiredWhen?: string | {
|
|
2806
3214
|
dialect: "cel" | "cron" | "template";
|
|
2807
3215
|
source?: string | undefined;
|
|
@@ -2813,6 +3221,7 @@ declare const SysWebhook: Omit<{
|
|
|
2813
3221
|
} | undefined;
|
|
2814
3222
|
readonly conditionalRequired?: undefined;
|
|
2815
3223
|
readonly hidden?: boolean | undefined;
|
|
3224
|
+
readonly internal?: boolean | undefined;
|
|
2816
3225
|
readonly requiredPermissions?: string[] | undefined;
|
|
2817
3226
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2818
3227
|
readonly system?: boolean | undefined;
|
|
@@ -2824,7 +3233,7 @@ declare const SysWebhook: Omit<{
|
|
|
2824
3233
|
};
|
|
2825
3234
|
readonly indexes: [{
|
|
2826
3235
|
readonly fields: ["name"];
|
|
2827
|
-
readonly unique:
|
|
3236
|
+
readonly unique: "organization";
|
|
2828
3237
|
}, {
|
|
2829
3238
|
readonly fields: ["object_name"];
|
|
2830
3239
|
}, {
|