@objectstack/plugin-webhooks 17.0.0-rc.5 → 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 +2026 -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.d.cts +881 -557
- package/dist/schema.d.ts +881 -557
- 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.cts
CHANGED
|
@@ -36,19 +36,8 @@ import * as _objectstack_spec_data from '@objectstack/spec/data';
|
|
|
36
36
|
*/
|
|
37
37
|
declare const SysWebhook: Omit<{
|
|
38
38
|
name: string;
|
|
39
|
-
isSystem: boolean;
|
|
40
|
-
datasource: string;
|
|
41
39
|
fields: Record<string, {
|
|
42
|
-
type: "number" | "boolean" | "
|
|
43
|
-
required: boolean;
|
|
44
|
-
searchable: boolean;
|
|
45
|
-
multiple: boolean;
|
|
46
|
-
unique: boolean | "global" | "organization";
|
|
47
|
-
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
48
|
-
hidden: boolean;
|
|
49
|
-
readonly: boolean;
|
|
50
|
-
sortable: boolean;
|
|
51
|
-
externalId: boolean;
|
|
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";
|
|
52
41
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
53
42
|
_lockReason?: string | undefined;
|
|
54
43
|
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -60,9 +49,13 @@ declare const SysWebhook: Omit<{
|
|
|
60
49
|
label?: string | undefined;
|
|
61
50
|
description?: string | undefined;
|
|
62
51
|
format?: string | undefined;
|
|
52
|
+
required?: boolean | undefined;
|
|
63
53
|
storage?: {
|
|
64
54
|
notNull?: boolean | undefined;
|
|
65
55
|
} | undefined;
|
|
56
|
+
searchable?: boolean | undefined;
|
|
57
|
+
multiple?: boolean | undefined;
|
|
58
|
+
unique?: boolean | "global" | "organization" | undefined;
|
|
66
59
|
defaultValue?: unknown;
|
|
67
60
|
maxLength?: number | undefined;
|
|
68
61
|
minLength?: number | undefined;
|
|
@@ -70,6 +63,7 @@ declare const SysWebhook: Omit<{
|
|
|
70
63
|
scale?: number | undefined;
|
|
71
64
|
min?: number | undefined;
|
|
72
65
|
max?: number | undefined;
|
|
66
|
+
useGrouping?: boolean | undefined;
|
|
73
67
|
accept?: string[] | undefined;
|
|
74
68
|
maxSize?: number | undefined;
|
|
75
69
|
options?: {
|
|
@@ -77,15 +71,7 @@ declare const SysWebhook: Omit<{
|
|
|
77
71
|
value: string;
|
|
78
72
|
color?: string | undefined;
|
|
79
73
|
default?: boolean | undefined;
|
|
80
|
-
visibleWhen?: {
|
|
81
|
-
dialect: "cel" | "cron" | "template";
|
|
82
|
-
source?: string | undefined;
|
|
83
|
-
ast?: unknown;
|
|
84
|
-
meta?: {
|
|
85
|
-
rationale?: string | undefined;
|
|
86
|
-
generatedBy?: string | undefined;
|
|
87
|
-
} | undefined;
|
|
88
|
-
} | {
|
|
74
|
+
visibleWhen?: string | {
|
|
89
75
|
dialect: "cel" | "cron" | "template";
|
|
90
76
|
source?: string | undefined;
|
|
91
77
|
ast?: unknown;
|
|
@@ -96,6 +82,7 @@ declare const SysWebhook: Omit<{
|
|
|
96
82
|
} | undefined;
|
|
97
83
|
}[] | undefined;
|
|
98
84
|
reference?: string | undefined;
|
|
85
|
+
deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
99
86
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
100
87
|
inlineTitle?: string | undefined;
|
|
101
88
|
inlineColumns?: any[] | undefined;
|
|
@@ -122,15 +109,7 @@ declare const SysWebhook: Omit<{
|
|
|
122
109
|
param?: string | undefined;
|
|
123
110
|
})[] | undefined;
|
|
124
111
|
allowCreate?: boolean | undefined;
|
|
125
|
-
expression?: {
|
|
126
|
-
dialect: "cel" | "cron" | "template";
|
|
127
|
-
source?: string | undefined;
|
|
128
|
-
ast?: unknown;
|
|
129
|
-
meta?: {
|
|
130
|
-
rationale?: string | undefined;
|
|
131
|
-
generatedBy?: string | undefined;
|
|
132
|
-
} | undefined;
|
|
133
|
-
} | {
|
|
112
|
+
expression?: string | {
|
|
134
113
|
dialect: "cel" | "cron" | "template";
|
|
135
114
|
source?: string | undefined;
|
|
136
115
|
ast?: unknown;
|
|
@@ -150,22 +129,14 @@ declare const SysWebhook: Omit<{
|
|
|
150
129
|
language?: string | undefined;
|
|
151
130
|
step?: number | undefined;
|
|
152
131
|
currencyConfig?: {
|
|
153
|
-
precision
|
|
154
|
-
currencyMode
|
|
155
|
-
defaultCurrency
|
|
132
|
+
precision?: number | undefined;
|
|
133
|
+
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
134
|
+
defaultCurrency?: string | undefined;
|
|
156
135
|
} | undefined;
|
|
157
136
|
dimensions?: number | undefined;
|
|
158
137
|
trackHistory?: boolean | undefined;
|
|
159
138
|
group?: string | undefined;
|
|
160
|
-
visibleWhen?: {
|
|
161
|
-
dialect: "cel" | "cron" | "template";
|
|
162
|
-
source?: string | undefined;
|
|
163
|
-
ast?: unknown;
|
|
164
|
-
meta?: {
|
|
165
|
-
rationale?: string | undefined;
|
|
166
|
-
generatedBy?: string | undefined;
|
|
167
|
-
} | undefined;
|
|
168
|
-
} | {
|
|
139
|
+
visibleWhen?: string | {
|
|
169
140
|
dialect: "cel" | "cron" | "template";
|
|
170
141
|
source?: string | undefined;
|
|
171
142
|
ast?: unknown;
|
|
@@ -174,15 +145,7 @@ declare const SysWebhook: Omit<{
|
|
|
174
145
|
generatedBy?: string | undefined;
|
|
175
146
|
} | undefined;
|
|
176
147
|
} | undefined;
|
|
177
|
-
readonlyWhen?: {
|
|
178
|
-
dialect: "cel" | "cron" | "template";
|
|
179
|
-
source?: string | undefined;
|
|
180
|
-
ast?: unknown;
|
|
181
|
-
meta?: {
|
|
182
|
-
rationale?: string | undefined;
|
|
183
|
-
generatedBy?: string | undefined;
|
|
184
|
-
} | undefined;
|
|
185
|
-
} | {
|
|
148
|
+
readonlyWhen?: string | {
|
|
186
149
|
dialect: "cel" | "cron" | "template";
|
|
187
150
|
source?: string | undefined;
|
|
188
151
|
ast?: unknown;
|
|
@@ -191,15 +154,7 @@ declare const SysWebhook: Omit<{
|
|
|
191
154
|
generatedBy?: string | undefined;
|
|
192
155
|
} | undefined;
|
|
193
156
|
} | undefined;
|
|
194
|
-
requiredWhen?: {
|
|
195
|
-
dialect: "cel" | "cron" | "template";
|
|
196
|
-
source?: string | undefined;
|
|
197
|
-
ast?: unknown;
|
|
198
|
-
meta?: {
|
|
199
|
-
rationale?: string | undefined;
|
|
200
|
-
generatedBy?: string | undefined;
|
|
201
|
-
} | undefined;
|
|
202
|
-
} | {
|
|
157
|
+
requiredWhen?: string | {
|
|
203
158
|
dialect: "cel" | "cron" | "template";
|
|
204
159
|
source?: string | undefined;
|
|
205
160
|
ast?: unknown;
|
|
@@ -210,11 +165,16 @@ declare const SysWebhook: Omit<{
|
|
|
210
165
|
} | undefined;
|
|
211
166
|
conditionalRequired?: undefined;
|
|
212
167
|
widget?: string | undefined;
|
|
168
|
+
hidden?: boolean | undefined;
|
|
169
|
+
internal?: boolean | undefined;
|
|
170
|
+
readonly?: boolean | undefined;
|
|
213
171
|
requiredPermissions?: string[] | undefined;
|
|
214
172
|
ackPlaintextMasking?: boolean | undefined;
|
|
215
173
|
system?: boolean | undefined;
|
|
174
|
+
sortable?: boolean | undefined;
|
|
216
175
|
inlineHelpText?: string | undefined;
|
|
217
176
|
autonumberFormat?: string | undefined;
|
|
177
|
+
externalId?: boolean | undefined;
|
|
218
178
|
}>;
|
|
219
179
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
220
180
|
_lockReason?: string | undefined;
|
|
@@ -227,14 +187,13 @@ declare const SysWebhook: Omit<{
|
|
|
227
187
|
pluralLabel?: string | undefined;
|
|
228
188
|
description?: string | undefined;
|
|
229
189
|
icon?: string | undefined;
|
|
190
|
+
isSystem?: boolean | undefined;
|
|
230
191
|
managedBy?: "platform" | "config" | "system-data" | "engine-owned" | "append-only" | "better-auth" | undefined;
|
|
231
|
-
ownership?: "none" | "org" | "user" | undefined;
|
|
192
|
+
ownership?: "none" | "org" | "user" | "business_unit" | undefined;
|
|
232
193
|
userActions?: {
|
|
233
|
-
create?: boolean |
|
|
234
|
-
import?: boolean | undefined;
|
|
235
|
-
edit?: boolean | {
|
|
194
|
+
create?: boolean | {
|
|
236
195
|
enabled?: boolean | undefined;
|
|
237
|
-
visibleWhen?: {
|
|
196
|
+
visibleWhen?: string | {
|
|
238
197
|
dialect: "cel" | "cron" | "template";
|
|
239
198
|
source?: string | undefined;
|
|
240
199
|
ast?: unknown;
|
|
@@ -242,7 +201,8 @@ declare const SysWebhook: Omit<{
|
|
|
242
201
|
rationale?: string | undefined;
|
|
243
202
|
generatedBy?: string | undefined;
|
|
244
203
|
} | undefined;
|
|
245
|
-
} |
|
|
204
|
+
} | undefined;
|
|
205
|
+
disabledWhen?: string | {
|
|
246
206
|
dialect: "cel" | "cron" | "template";
|
|
247
207
|
source?: string | undefined;
|
|
248
208
|
ast?: unknown;
|
|
@@ -251,7 +211,10 @@ declare const SysWebhook: Omit<{
|
|
|
251
211
|
generatedBy?: string | undefined;
|
|
252
212
|
} | undefined;
|
|
253
213
|
} | undefined;
|
|
254
|
-
|
|
214
|
+
} | undefined;
|
|
215
|
+
import?: boolean | {
|
|
216
|
+
enabled?: boolean | undefined;
|
|
217
|
+
visibleWhen?: string | {
|
|
255
218
|
dialect: "cel" | "cron" | "template";
|
|
256
219
|
source?: string | undefined;
|
|
257
220
|
ast?: unknown;
|
|
@@ -259,7 +222,8 @@ declare const SysWebhook: Omit<{
|
|
|
259
222
|
rationale?: string | undefined;
|
|
260
223
|
generatedBy?: string | undefined;
|
|
261
224
|
} | undefined;
|
|
262
|
-
} |
|
|
225
|
+
} | undefined;
|
|
226
|
+
disabledWhen?: string | {
|
|
263
227
|
dialect: "cel" | "cron" | "template";
|
|
264
228
|
source?: string | undefined;
|
|
265
229
|
ast?: unknown;
|
|
@@ -269,9 +233,9 @@ declare const SysWebhook: Omit<{
|
|
|
269
233
|
} | undefined;
|
|
270
234
|
} | undefined;
|
|
271
235
|
} | undefined;
|
|
272
|
-
|
|
236
|
+
edit?: boolean | {
|
|
273
237
|
enabled?: boolean | undefined;
|
|
274
|
-
visibleWhen?: {
|
|
238
|
+
visibleWhen?: string | {
|
|
275
239
|
dialect: "cel" | "cron" | "template";
|
|
276
240
|
source?: string | undefined;
|
|
277
241
|
ast?: unknown;
|
|
@@ -279,7 +243,8 @@ declare const SysWebhook: Omit<{
|
|
|
279
243
|
rationale?: string | undefined;
|
|
280
244
|
generatedBy?: string | undefined;
|
|
281
245
|
} | undefined;
|
|
282
|
-
} |
|
|
246
|
+
} | undefined;
|
|
247
|
+
disabledWhen?: string | {
|
|
283
248
|
dialect: "cel" | "cron" | "template";
|
|
284
249
|
source?: string | undefined;
|
|
285
250
|
ast?: unknown;
|
|
@@ -288,7 +253,10 @@ declare const SysWebhook: Omit<{
|
|
|
288
253
|
generatedBy?: string | undefined;
|
|
289
254
|
} | undefined;
|
|
290
255
|
} | undefined;
|
|
291
|
-
|
|
256
|
+
} | undefined;
|
|
257
|
+
delete?: boolean | {
|
|
258
|
+
enabled?: boolean | undefined;
|
|
259
|
+
visibleWhen?: string | {
|
|
292
260
|
dialect: "cel" | "cron" | "template";
|
|
293
261
|
source?: string | undefined;
|
|
294
262
|
ast?: unknown;
|
|
@@ -296,7 +264,8 @@ declare const SysWebhook: Omit<{
|
|
|
296
264
|
rationale?: string | undefined;
|
|
297
265
|
generatedBy?: string | undefined;
|
|
298
266
|
} | undefined;
|
|
299
|
-
} |
|
|
267
|
+
} | undefined;
|
|
268
|
+
disabledWhen?: string | {
|
|
300
269
|
dialect: "cel" | "cron" | "template";
|
|
301
270
|
source?: string | undefined;
|
|
302
271
|
ast?: unknown;
|
|
@@ -312,27 +281,28 @@ declare const SysWebhook: Omit<{
|
|
|
312
281
|
tenant?: boolean | undefined;
|
|
313
282
|
audit?: boolean | undefined;
|
|
314
283
|
} | undefined;
|
|
284
|
+
datasource?: string | undefined;
|
|
315
285
|
external?: {
|
|
316
|
-
writable: boolean;
|
|
317
286
|
remoteName?: string | undefined;
|
|
318
287
|
remoteSchema?: string | undefined;
|
|
288
|
+
writable?: boolean | undefined;
|
|
319
289
|
columnMap?: Record<string, string> | undefined;
|
|
320
290
|
introspectedAt?: string | undefined;
|
|
321
291
|
ignoreColumns?: string[] | undefined;
|
|
322
292
|
} | undefined;
|
|
323
293
|
indexes?: {
|
|
324
294
|
fields: string[];
|
|
325
|
-
unique: boolean | "global" | "organization";
|
|
326
295
|
name?: string | undefined;
|
|
296
|
+
unique?: boolean | "global" | "organization" | undefined;
|
|
327
297
|
type?: undefined;
|
|
328
298
|
partial?: undefined;
|
|
329
299
|
}[] | undefined;
|
|
330
300
|
fieldGroups?: {
|
|
331
301
|
key: string;
|
|
332
302
|
label: string;
|
|
333
|
-
collapse: "none" | "collapsed" | "expanded";
|
|
334
303
|
icon?: string | undefined;
|
|
335
304
|
description?: string | undefined;
|
|
305
|
+
collapse?: "none" | "collapsed" | "expanded" | undefined;
|
|
336
306
|
defaultExpanded?: boolean | undefined;
|
|
337
307
|
collapsible?: boolean | undefined;
|
|
338
308
|
collapsed?: boolean | undefined;
|
|
@@ -342,7 +312,7 @@ declare const SysWebhook: Omit<{
|
|
|
342
312
|
tenantField?: string | undefined;
|
|
343
313
|
} | undefined;
|
|
344
314
|
access?: {
|
|
345
|
-
default
|
|
315
|
+
default?: "public" | "private" | undefined;
|
|
346
316
|
} | undefined;
|
|
347
317
|
requiredPermissions?: string[] | {
|
|
348
318
|
read?: string[] | undefined;
|
|
@@ -365,7 +335,7 @@ declare const SysWebhook: Omit<{
|
|
|
365
335
|
storage?: {
|
|
366
336
|
strategy: "rotation";
|
|
367
337
|
shards: number;
|
|
368
|
-
unit: "
|
|
338
|
+
unit: "month" | "day" | "week";
|
|
369
339
|
} | undefined;
|
|
370
340
|
archive?: {
|
|
371
341
|
after: string;
|
|
@@ -384,15 +354,7 @@ declare const SysWebhook: Omit<{
|
|
|
384
354
|
}[] | undefined;
|
|
385
355
|
nameField?: string | undefined;
|
|
386
356
|
displayNameField?: string | undefined;
|
|
387
|
-
titleFormat?: {
|
|
388
|
-
dialect: "cel" | "cron" | "template";
|
|
389
|
-
source?: string | undefined;
|
|
390
|
-
ast?: unknown;
|
|
391
|
-
meta?: {
|
|
392
|
-
rationale?: string | undefined;
|
|
393
|
-
generatedBy?: string | undefined;
|
|
394
|
-
} | undefined;
|
|
395
|
-
} | {
|
|
357
|
+
titleFormat?: string | {
|
|
396
358
|
dialect: "cel" | "cron" | "template";
|
|
397
359
|
source?: string | undefined;
|
|
398
360
|
ast?: unknown;
|
|
@@ -404,10 +366,9 @@ declare const SysWebhook: Omit<{
|
|
|
404
366
|
highlightFields?: string[] | undefined;
|
|
405
367
|
stageField?: string | false | undefined;
|
|
406
368
|
listViews?: Record<string, {
|
|
407
|
-
type: "map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart";
|
|
408
369
|
columns: string[] | {
|
|
409
370
|
field: string;
|
|
410
|
-
label?: string | undefined;
|
|
371
|
+
label?: string | Record<string, string> | undefined;
|
|
411
372
|
width?: number | undefined;
|
|
412
373
|
align?: "left" | "right" | "center" | undefined;
|
|
413
374
|
hidden?: boolean | undefined;
|
|
@@ -422,22 +383,23 @@ declare const SysWebhook: Omit<{
|
|
|
422
383
|
} | undefined;
|
|
423
384
|
prefix?: {
|
|
424
385
|
field: string;
|
|
425
|
-
type
|
|
386
|
+
type?: "text" | "badge" | undefined;
|
|
426
387
|
} | undefined;
|
|
427
388
|
link?: boolean | undefined;
|
|
428
389
|
action?: string | undefined;
|
|
429
390
|
}[];
|
|
391
|
+
type?: "map" | "tree" | "grid" | "gallery" | "kanban" | "calendar" | "timeline" | "gantt" | "chart" | undefined;
|
|
430
392
|
sort?: string | {
|
|
431
393
|
field: string;
|
|
432
|
-
order: "
|
|
394
|
+
order: "desc" | "asc";
|
|
433
395
|
}[] | undefined;
|
|
434
396
|
filter?: {
|
|
435
397
|
field: string;
|
|
436
|
-
operator:
|
|
398
|
+
operator: unknown;
|
|
437
399
|
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
438
400
|
}[] | undefined;
|
|
439
|
-
description?: string | undefined;
|
|
440
|
-
label?: string | undefined;
|
|
401
|
+
description?: string | Record<string, string> | undefined;
|
|
402
|
+
label?: string | Record<string, string> | undefined;
|
|
441
403
|
name?: string | undefined;
|
|
442
404
|
tree?: {
|
|
443
405
|
[x: string]: unknown;
|
|
@@ -454,14 +416,14 @@ declare const SysWebhook: Omit<{
|
|
|
454
416
|
provider: "api";
|
|
455
417
|
read?: {
|
|
456
418
|
url: string;
|
|
457
|
-
method
|
|
419
|
+
method?: "POST" | "GET" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
458
420
|
headers?: Record<string, string> | undefined;
|
|
459
421
|
params?: Record<string, unknown> | undefined;
|
|
460
422
|
body?: unknown;
|
|
461
423
|
} | undefined;
|
|
462
424
|
write?: {
|
|
463
425
|
url: string;
|
|
464
|
-
method
|
|
426
|
+
method?: "POST" | "GET" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
465
427
|
headers?: Record<string, string> | undefined;
|
|
466
428
|
params?: Record<string, unknown> | undefined;
|
|
467
429
|
body?: unknown;
|
|
@@ -475,57 +437,74 @@ declare const SysWebhook: Omit<{
|
|
|
475
437
|
schema?: Record<string, unknown> | undefined;
|
|
476
438
|
} | undefined;
|
|
477
439
|
navigation?: {
|
|
478
|
-
mode
|
|
479
|
-
preventNavigation: boolean;
|
|
480
|
-
openNewTab: boolean;
|
|
481
|
-
size: "full" | "md" | "auto" | "sm" | "lg" | "xl";
|
|
440
|
+
mode?: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window" | undefined;
|
|
482
441
|
view?: string | undefined;
|
|
442
|
+
preventNavigation?: boolean | undefined;
|
|
443
|
+
openNewTab?: boolean | undefined;
|
|
444
|
+
size?: "full" | "md" | "auto" | "sm" | "lg" | "xl" | undefined;
|
|
483
445
|
width?: string | number | undefined;
|
|
484
446
|
} | undefined;
|
|
447
|
+
sharing?: {
|
|
448
|
+
type?: "personal" | "collaborative" | undefined;
|
|
449
|
+
lockedBy?: string | undefined;
|
|
450
|
+
} | undefined;
|
|
485
451
|
aria?: {
|
|
486
|
-
ariaLabel?: string | undefined;
|
|
452
|
+
ariaLabel?: string | Record<string, string> | undefined;
|
|
487
453
|
ariaDescribedBy?: string | undefined;
|
|
488
454
|
role?: string | undefined;
|
|
489
455
|
} | undefined;
|
|
490
|
-
sharing?: {
|
|
491
|
-
type: "personal" | "collaborative";
|
|
492
|
-
lockedBy?: string | undefined;
|
|
493
|
-
} | undefined;
|
|
494
456
|
tabs?: {
|
|
495
457
|
name: string;
|
|
496
|
-
|
|
497
|
-
isDefault: boolean;
|
|
498
|
-
visible: boolean;
|
|
499
|
-
label?: string | undefined;
|
|
458
|
+
label?: string | Record<string, string> | undefined;
|
|
500
459
|
icon?: string | undefined;
|
|
501
460
|
view?: string | undefined;
|
|
502
461
|
filter?: {
|
|
503
462
|
field: string;
|
|
504
|
-
operator:
|
|
463
|
+
operator: unknown;
|
|
505
464
|
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
506
465
|
}[] | undefined;
|
|
507
466
|
order?: number | undefined;
|
|
467
|
+
pinned?: boolean | undefined;
|
|
468
|
+
isDefault?: boolean | undefined;
|
|
469
|
+
visible?: boolean | undefined;
|
|
508
470
|
}[] | undefined;
|
|
509
471
|
emptyState?: {
|
|
510
|
-
title?: string | undefined;
|
|
511
|
-
message?: string | undefined;
|
|
472
|
+
title?: string | Record<string, string> | undefined;
|
|
473
|
+
message?: string | Record<string, string> | undefined;
|
|
512
474
|
icon?: string | undefined;
|
|
513
475
|
} | undefined;
|
|
514
476
|
userActions?: {
|
|
515
|
-
sort
|
|
516
|
-
search
|
|
517
|
-
filter
|
|
518
|
-
refresh
|
|
519
|
-
rowHeight
|
|
520
|
-
addRecordForm
|
|
521
|
-
editInline
|
|
477
|
+
sort?: boolean | undefined;
|
|
478
|
+
search?: boolean | undefined;
|
|
479
|
+
filter?: boolean | undefined;
|
|
480
|
+
refresh?: boolean | undefined;
|
|
481
|
+
rowHeight?: boolean | undefined;
|
|
482
|
+
addRecordForm?: boolean | undefined;
|
|
483
|
+
editInline?: boolean | undefined;
|
|
522
484
|
buttons?: string[] | undefined;
|
|
523
485
|
} | undefined;
|
|
486
|
+
gallery?: {
|
|
487
|
+
coverField?: string | undefined;
|
|
488
|
+
coverFit?: "cover" | "contain" | undefined;
|
|
489
|
+
cardSize?: "small" | "medium" | "large" | undefined;
|
|
490
|
+
titleField?: string | undefined;
|
|
491
|
+
visibleFields?: string[] | undefined;
|
|
492
|
+
} | undefined;
|
|
524
493
|
responsive?: undefined;
|
|
525
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;
|
|
526
505
|
appearance?: {
|
|
527
|
-
showDescription
|
|
528
|
-
allowedVisualizations?: ("map" | "tree" | "grid" | "
|
|
506
|
+
showDescription?: boolean | undefined;
|
|
507
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "gallery" | "kanban" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
529
508
|
} | undefined;
|
|
530
509
|
resizable?: boolean | undefined;
|
|
531
510
|
kanban?: {
|
|
@@ -533,13 +512,6 @@ declare const SysWebhook: Omit<{
|
|
|
533
512
|
columns: string[];
|
|
534
513
|
summarizeField?: string | undefined;
|
|
535
514
|
} | undefined;
|
|
536
|
-
gallery?: {
|
|
537
|
-
coverFit: "cover" | "contain";
|
|
538
|
-
cardSize: "small" | "medium" | "large";
|
|
539
|
-
coverField?: string | undefined;
|
|
540
|
-
titleField?: string | undefined;
|
|
541
|
-
visibleFields?: string[] | undefined;
|
|
542
|
-
} | undefined;
|
|
543
515
|
calendar?: {
|
|
544
516
|
startDateField: string;
|
|
545
517
|
titleField: string;
|
|
@@ -549,10 +521,10 @@ declare const SysWebhook: Omit<{
|
|
|
549
521
|
timeline?: {
|
|
550
522
|
startDateField: string;
|
|
551
523
|
titleField: string;
|
|
552
|
-
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
553
524
|
endDateField?: string | undefined;
|
|
554
525
|
groupByField?: string | undefined;
|
|
555
526
|
colorField?: string | undefined;
|
|
527
|
+
scale?: "year" | "month" | "day" | "week" | "quarter" | "hour" | undefined;
|
|
556
528
|
} | undefined;
|
|
557
529
|
gantt?: {
|
|
558
530
|
[x: string]: unknown;
|
|
@@ -586,29 +558,27 @@ declare const SysWebhook: Omit<{
|
|
|
586
558
|
autoZoomToFilter?: boolean | undefined;
|
|
587
559
|
} | undefined;
|
|
588
560
|
chart?: {
|
|
589
|
-
chartType: "bar" | "line" | "area" | "pie" | "scatter";
|
|
590
561
|
dataset: string;
|
|
591
562
|
values: string[];
|
|
563
|
+
chartType?: "line" | "bar" | "area" | "pie" | "scatter" | undefined;
|
|
592
564
|
dimensions?: string[] | undefined;
|
|
593
565
|
} | undefined;
|
|
594
566
|
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
595
567
|
searchableFields?: string[] | undefined;
|
|
596
568
|
filterableFields?: string[] | undefined;
|
|
597
|
-
striped?: boolean | undefined;
|
|
598
|
-
bordered?: boolean | undefined;
|
|
599
569
|
compactToolbar?: boolean | undefined;
|
|
600
570
|
selection?: {
|
|
601
|
-
type
|
|
571
|
+
type?: "none" | "multiple" | "single" | undefined;
|
|
602
572
|
} | undefined;
|
|
603
573
|
pagination?: {
|
|
604
|
-
pageSize
|
|
574
|
+
pageSize?: number | undefined;
|
|
605
575
|
pageSizeOptions?: number[] | undefined;
|
|
606
576
|
} | undefined;
|
|
607
577
|
grouping?: {
|
|
608
578
|
fields: {
|
|
609
579
|
field: string;
|
|
610
|
-
order
|
|
611
|
-
collapsed
|
|
580
|
+
order?: "desc" | "asc" | undefined;
|
|
581
|
+
collapsed?: boolean | undefined;
|
|
612
582
|
}[];
|
|
613
583
|
} | undefined;
|
|
614
584
|
rowColor?: {
|
|
@@ -630,7 +600,7 @@ declare const SysWebhook: Omit<{
|
|
|
630
600
|
params?: {
|
|
631
601
|
[x: string]: unknown;
|
|
632
602
|
name: string;
|
|
633
|
-
type: "number" | "boolean" | "
|
|
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";
|
|
634
604
|
label?: string | undefined;
|
|
635
605
|
help?: string | undefined;
|
|
636
606
|
required?: boolean | undefined;
|
|
@@ -647,15 +617,7 @@ declare const SysWebhook: Omit<{
|
|
|
647
617
|
}[] | undefined;
|
|
648
618
|
confirmText?: string | undefined;
|
|
649
619
|
confirmLabel?: string | undefined;
|
|
650
|
-
visible?: {
|
|
651
|
-
dialect: "cel" | "cron" | "template";
|
|
652
|
-
source?: string | undefined;
|
|
653
|
-
ast?: unknown;
|
|
654
|
-
meta?: {
|
|
655
|
-
rationale?: string | undefined;
|
|
656
|
-
generatedBy?: string | undefined;
|
|
657
|
-
} | undefined;
|
|
658
|
-
} | {
|
|
620
|
+
visible?: string | {
|
|
659
621
|
dialect: "cel" | "cron" | "template";
|
|
660
622
|
source?: string | undefined;
|
|
661
623
|
ast?: unknown;
|
|
@@ -664,20 +626,12 @@ declare const SysWebhook: Omit<{
|
|
|
664
626
|
generatedBy?: string | undefined;
|
|
665
627
|
} | undefined;
|
|
666
628
|
} | undefined;
|
|
629
|
+
requiredPermissions?: string[] | undefined;
|
|
667
630
|
maxRecords?: number | undefined;
|
|
668
631
|
batchSize?: number | undefined;
|
|
669
632
|
}[] | undefined;
|
|
670
|
-
virtualScroll?: boolean | undefined;
|
|
671
633
|
conditionalFormatting?: {
|
|
672
|
-
condition: {
|
|
673
|
-
dialect: "cel" | "cron" | "template";
|
|
674
|
-
source?: string | undefined;
|
|
675
|
-
ast?: unknown;
|
|
676
|
-
meta?: {
|
|
677
|
-
rationale?: string | undefined;
|
|
678
|
-
generatedBy?: string | undefined;
|
|
679
|
-
} | undefined;
|
|
680
|
-
} | {
|
|
634
|
+
condition: string | {
|
|
681
635
|
dialect: "cel" | "cron" | "template";
|
|
682
636
|
source?: string | undefined;
|
|
683
637
|
ast?: unknown;
|
|
@@ -688,24 +642,23 @@ declare const SysWebhook: Omit<{
|
|
|
688
642
|
};
|
|
689
643
|
style: Record<string, string>;
|
|
690
644
|
}[] | undefined;
|
|
691
|
-
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
692
645
|
addRecord?: {
|
|
693
|
-
enabled
|
|
694
|
-
position
|
|
695
|
-
mode
|
|
646
|
+
enabled?: boolean | undefined;
|
|
647
|
+
position?: "top" | "bottom" | "both" | undefined;
|
|
648
|
+
mode?: "form" | "modal" | "inline" | undefined;
|
|
696
649
|
formView?: string | undefined;
|
|
697
650
|
} | undefined;
|
|
698
651
|
showRecordCount?: boolean | undefined;
|
|
699
652
|
allowPrinting?: boolean | undefined;
|
|
700
653
|
userFilters?: {
|
|
701
|
-
element
|
|
654
|
+
element?: "toggle" | "dropdown" | undefined;
|
|
702
655
|
fields?: {
|
|
703
656
|
field: string;
|
|
704
|
-
label?: string | undefined;
|
|
657
|
+
label?: string | Record<string, string> | undefined;
|
|
705
658
|
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
706
659
|
options?: {
|
|
707
660
|
value: string | number | boolean;
|
|
708
|
-
label: string
|
|
661
|
+
label: string | Record<string, string>;
|
|
709
662
|
color?: string | undefined;
|
|
710
663
|
}[] | undefined;
|
|
711
664
|
showCount?: boolean | undefined;
|
|
@@ -715,30 +668,28 @@ declare const SysWebhook: Omit<{
|
|
|
715
668
|
}> | undefined;
|
|
716
669
|
searchableFields?: string[] | undefined;
|
|
717
670
|
enable?: {
|
|
718
|
-
trackHistory
|
|
719
|
-
searchable
|
|
720
|
-
apiEnabled
|
|
721
|
-
files: boolean;
|
|
722
|
-
feeds: boolean;
|
|
723
|
-
activities: boolean;
|
|
724
|
-
clone: boolean;
|
|
671
|
+
trackHistory?: boolean | undefined;
|
|
672
|
+
searchable?: boolean | undefined;
|
|
673
|
+
apiEnabled?: boolean | undefined;
|
|
725
674
|
apiMethods?: ("delete" | "update" | "create" | "get" | "list" | "bulk")[] | undefined;
|
|
675
|
+
files?: boolean | undefined;
|
|
676
|
+
feeds?: boolean | undefined;
|
|
677
|
+
activities?: boolean | undefined;
|
|
678
|
+
clone?: boolean | undefined;
|
|
726
679
|
} | undefined;
|
|
727
680
|
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
728
681
|
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
729
682
|
publicSharing?: {
|
|
730
|
-
enabled
|
|
683
|
+
enabled?: boolean | undefined;
|
|
731
684
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
732
685
|
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
733
686
|
maxExpiryDays?: number | undefined;
|
|
734
687
|
redactFields?: string[] | undefined;
|
|
735
688
|
eligibility?: string | undefined;
|
|
736
689
|
} | undefined;
|
|
737
|
-
actions?:
|
|
690
|
+
actions?: {
|
|
738
691
|
name: string;
|
|
739
|
-
label: string
|
|
740
|
-
type: "url" | "form" | "script" | "flow" | "api" | "modal";
|
|
741
|
-
refreshAfter: boolean;
|
|
692
|
+
label: string | Record<string, string>;
|
|
742
693
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
743
694
|
_lockReason?: string | undefined;
|
|
744
695
|
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -746,10 +697,12 @@ declare const SysWebhook: Omit<{
|
|
|
746
697
|
_packageId?: string | undefined;
|
|
747
698
|
_packageVersion?: string | undefined;
|
|
748
699
|
_lockDocsUrl?: string | undefined;
|
|
700
|
+
description?: string | Record<string, string> | undefined;
|
|
749
701
|
objectName?: string | undefined;
|
|
750
702
|
icon?: string | undefined;
|
|
751
|
-
locations?: ("
|
|
703
|
+
locations?: ("record_header" | "list_toolbar" | "list_item" | "record_more" | "record_related" | "record_section")[] | undefined;
|
|
752
704
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
705
|
+
type?: "url" | "form" | "api" | "modal" | "flow" | "script" | undefined;
|
|
753
706
|
target?: string | undefined;
|
|
754
707
|
openIn?: "self" | "new-tab" | undefined;
|
|
755
708
|
body?: {
|
|
@@ -758,21 +711,30 @@ declare const SysWebhook: Omit<{
|
|
|
758
711
|
} | {
|
|
759
712
|
language: "js";
|
|
760
713
|
source: string;
|
|
761
|
-
capabilities
|
|
714
|
+
capabilities?: ("crypto.uuid" | "api.read" | "api.write" | "api.transaction" | "log")[] | undefined;
|
|
762
715
|
timeoutMs?: number | undefined;
|
|
763
716
|
memoryMb?: number | undefined;
|
|
764
717
|
} | undefined;
|
|
765
718
|
execute?: undefined;
|
|
766
|
-
params?:
|
|
767
|
-
required: boolean;
|
|
719
|
+
params?: {
|
|
768
720
|
name?: string | undefined;
|
|
769
721
|
field?: string | undefined;
|
|
770
722
|
objectOverride?: string | undefined;
|
|
771
|
-
label?: string | undefined;
|
|
772
|
-
type?: "number" | "boolean" | "
|
|
723
|
+
label?: string | Record<string, string> | undefined;
|
|
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;
|
|
725
|
+
required?: boolean | undefined;
|
|
773
726
|
options?: {
|
|
774
|
-
label: string
|
|
727
|
+
label: string | Record<string, string>;
|
|
775
728
|
value: string;
|
|
729
|
+
visibleWhen?: string | {
|
|
730
|
+
dialect: "cel" | "cron" | "template";
|
|
731
|
+
source?: string | undefined;
|
|
732
|
+
ast?: unknown;
|
|
733
|
+
meta?: {
|
|
734
|
+
rationale?: string | undefined;
|
|
735
|
+
generatedBy?: string | undefined;
|
|
736
|
+
} | undefined;
|
|
737
|
+
} | undefined;
|
|
776
738
|
}[] | undefined;
|
|
777
739
|
placeholder?: string | undefined;
|
|
778
740
|
helpText?: string | undefined;
|
|
@@ -782,7 +744,7 @@ declare const SysWebhook: Omit<{
|
|
|
782
744
|
maxSize?: number | undefined;
|
|
783
745
|
reference?: string | undefined;
|
|
784
746
|
defaultFromRow?: boolean | undefined;
|
|
785
|
-
visible?: {
|
|
747
|
+
visible?: string | {
|
|
786
748
|
dialect: "cel" | "cron" | "template";
|
|
787
749
|
source?: string | undefined;
|
|
788
750
|
ast?: unknown;
|
|
@@ -791,26 +753,27 @@ declare const SysWebhook: Omit<{
|
|
|
791
753
|
generatedBy?: string | undefined;
|
|
792
754
|
} | undefined;
|
|
793
755
|
} | undefined;
|
|
794
|
-
requiresFeature?: "organization" | "twoFactor" | "
|
|
795
|
-
}
|
|
796
|
-
variant?: "
|
|
756
|
+
requiresFeature?: "organization" | "twoFactor" | "multiOrgEnabled" | "degradedTenancy" | "oidcProvider" | "sso" | "ssoEnforced" | "deviceAuthorization" | "admin" | "phoneNumber" | "phoneNumberOtp" | undefined;
|
|
757
|
+
}[] | undefined;
|
|
758
|
+
variant?: "primary" | "secondary" | "danger" | "ghost" | "link" | undefined;
|
|
797
759
|
order?: number | undefined;
|
|
798
|
-
confirmText?: string | undefined;
|
|
799
|
-
successMessage?: string | undefined;
|
|
800
|
-
errorMessage?: string | undefined;
|
|
760
|
+
confirmText?: string | Record<string, string> | undefined;
|
|
761
|
+
successMessage?: string | Record<string, string> | undefined;
|
|
762
|
+
errorMessage?: string | Record<string, string> | undefined;
|
|
763
|
+
refreshAfter?: boolean | undefined;
|
|
801
764
|
undoable?: boolean | undefined;
|
|
802
765
|
resultDialog?: {
|
|
803
|
-
title?: string | undefined;
|
|
804
|
-
description?: string | undefined;
|
|
805
|
-
acknowledge?: string | undefined;
|
|
806
|
-
format?: "
|
|
766
|
+
title?: string | Record<string, string> | undefined;
|
|
767
|
+
description?: string | Record<string, string> | undefined;
|
|
768
|
+
acknowledge?: string | Record<string, string> | undefined;
|
|
769
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
807
770
|
fields?: {
|
|
808
771
|
path: string;
|
|
809
|
-
label?: string | undefined;
|
|
810
|
-
format?: "
|
|
772
|
+
label?: string | Record<string, string> | undefined;
|
|
773
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
811
774
|
}[] | undefined;
|
|
812
775
|
} | undefined;
|
|
813
|
-
visible?: {
|
|
776
|
+
visible?: string | boolean | {
|
|
814
777
|
dialect: "cel" | "cron" | "template";
|
|
815
778
|
source?: string | undefined;
|
|
816
779
|
ast?: unknown;
|
|
@@ -819,8 +782,8 @@ declare const SysWebhook: Omit<{
|
|
|
819
782
|
generatedBy?: string | undefined;
|
|
820
783
|
} | undefined;
|
|
821
784
|
} | undefined;
|
|
822
|
-
requiresFeature?: "organization" | "twoFactor" | "
|
|
823
|
-
disabled?: boolean | {
|
|
785
|
+
requiresFeature?: "organization" | "twoFactor" | "multiOrgEnabled" | "degradedTenancy" | "oidcProvider" | "sso" | "ssoEnforced" | "deviceAuthorization" | "admin" | "phoneNumber" | "phoneNumberOtp" | undefined;
|
|
786
|
+
disabled?: string | boolean | {
|
|
824
787
|
dialect: "cel" | "cron" | "template";
|
|
825
788
|
source?: string | undefined;
|
|
826
789
|
ast?: unknown;
|
|
@@ -833,9 +796,9 @@ declare const SysWebhook: Omit<{
|
|
|
833
796
|
shortcut?: undefined;
|
|
834
797
|
bulkEnabled?: undefined;
|
|
835
798
|
ai?: {
|
|
836
|
-
exposed
|
|
799
|
+
exposed?: boolean | undefined;
|
|
837
800
|
description?: string | undefined;
|
|
838
|
-
category?: "
|
|
801
|
+
category?: "data" | "flow" | "action" | "analytics" | "integration" | "vector_search" | "utility" | undefined;
|
|
839
802
|
paramHints?: Record<string, {
|
|
840
803
|
description?: string | undefined;
|
|
841
804
|
enum?: (string | number)[] | undefined;
|
|
@@ -851,15 +814,15 @@ declare const SysWebhook: Omit<{
|
|
|
851
814
|
} | undefined;
|
|
852
815
|
method?: "POST" | "PUT" | "DELETE" | "PATCH" | undefined;
|
|
853
816
|
bodyExtra?: Record<string, unknown> | undefined;
|
|
854
|
-
mode?: "
|
|
817
|
+
mode?: "delete" | "create" | "custom" | "edit" | undefined;
|
|
855
818
|
opensInNewTab?: boolean | undefined;
|
|
856
819
|
newTabUrl?: string | undefined;
|
|
857
820
|
aria?: {
|
|
858
|
-
ariaLabel?: string | undefined;
|
|
821
|
+
ariaLabel?: string | Record<string, string> | undefined;
|
|
859
822
|
ariaDescribedBy?: string | undefined;
|
|
860
823
|
role?: string | undefined;
|
|
861
824
|
} | undefined;
|
|
862
|
-
}
|
|
825
|
+
}[] | undefined;
|
|
863
826
|
protection?: {
|
|
864
827
|
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
865
828
|
reason: string;
|
|
@@ -982,7 +945,7 @@ declare const SysWebhook: Omit<{
|
|
|
982
945
|
value: string;
|
|
983
946
|
color?: string | undefined;
|
|
984
947
|
default?: boolean | undefined;
|
|
985
|
-
visibleWhen?: {
|
|
948
|
+
visibleWhen?: string | {
|
|
986
949
|
dialect: "cel" | "cron" | "template";
|
|
987
950
|
source?: string | undefined;
|
|
988
951
|
ast?: unknown;
|
|
@@ -1003,7 +966,24 @@ declare const SysWebhook: Omit<{
|
|
|
1003
966
|
readonly storage?: {
|
|
1004
967
|
notNull?: boolean | undefined;
|
|
1005
968
|
} | undefined;
|
|
1006
|
-
readonly
|
|
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;
|
|
1007
987
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1008
988
|
readonly _lockReason?: string | undefined;
|
|
1009
989
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1017,7 +997,7 @@ declare const SysWebhook: Omit<{
|
|
|
1017
997
|
value: any;
|
|
1018
998
|
}[] | undefined;
|
|
1019
999
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1020
|
-
readonly expression?: {
|
|
1000
|
+
readonly expression?: string | {
|
|
1021
1001
|
dialect: "cel" | "cron" | "template";
|
|
1022
1002
|
source?: string | undefined;
|
|
1023
1003
|
ast?: unknown;
|
|
@@ -1034,15 +1014,7 @@ declare const SysWebhook: Omit<{
|
|
|
1034
1014
|
relationshipField?: string | undefined;
|
|
1035
1015
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1036
1016
|
} | undefined;
|
|
1037
|
-
readonly
|
|
1038
|
-
dialect: "cel" | "cron" | "template";
|
|
1039
|
-
source?: string | undefined;
|
|
1040
|
-
ast?: unknown;
|
|
1041
|
-
meta?: {
|
|
1042
|
-
rationale?: string | undefined;
|
|
1043
|
-
generatedBy?: string | undefined;
|
|
1044
|
-
} | undefined;
|
|
1045
|
-
} | undefined;
|
|
1017
|
+
readonly reference?: string | undefined;
|
|
1046
1018
|
readonly scale?: number | undefined;
|
|
1047
1019
|
readonly searchable?: boolean | undefined;
|
|
1048
1020
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -1051,8 +1023,9 @@ declare const SysWebhook: Omit<{
|
|
|
1051
1023
|
readonly minLength?: number | undefined;
|
|
1052
1024
|
readonly min?: number | undefined;
|
|
1053
1025
|
readonly max?: number | undefined;
|
|
1026
|
+
readonly useGrouping?: boolean | undefined;
|
|
1054
1027
|
readonly accept?: string[] | undefined;
|
|
1055
|
-
readonly
|
|
1028
|
+
readonly maxSize?: number | undefined;
|
|
1056
1029
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1057
1030
|
readonly inlineTitle?: string | undefined;
|
|
1058
1031
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1077,23 +1050,14 @@ declare const SysWebhook: Omit<{
|
|
|
1077
1050
|
readonly language?: string | undefined;
|
|
1078
1051
|
readonly step?: number | undefined;
|
|
1079
1052
|
readonly currencyConfig?: {
|
|
1080
|
-
precision
|
|
1081
|
-
currencyMode
|
|
1082
|
-
defaultCurrency
|
|
1053
|
+
precision?: number | undefined;
|
|
1054
|
+
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
1055
|
+
defaultCurrency?: string | undefined;
|
|
1083
1056
|
} | undefined;
|
|
1084
1057
|
readonly dimensions?: number | undefined;
|
|
1085
1058
|
readonly trackHistory?: boolean | undefined;
|
|
1086
1059
|
readonly group?: string | undefined;
|
|
1087
|
-
readonly
|
|
1088
|
-
dialect: "cel" | "cron" | "template";
|
|
1089
|
-
source?: string | undefined;
|
|
1090
|
-
ast?: unknown;
|
|
1091
|
-
meta?: {
|
|
1092
|
-
rationale?: string | undefined;
|
|
1093
|
-
generatedBy?: string | undefined;
|
|
1094
|
-
} | undefined;
|
|
1095
|
-
} | undefined;
|
|
1096
|
-
readonly requiredWhen?: {
|
|
1060
|
+
readonly requiredWhen?: string | {
|
|
1097
1061
|
dialect: "cel" | "cron" | "template";
|
|
1098
1062
|
source?: string | undefined;
|
|
1099
1063
|
ast?: unknown;
|
|
@@ -1104,6 +1068,7 @@ declare const SysWebhook: Omit<{
|
|
|
1104
1068
|
} | undefined;
|
|
1105
1069
|
readonly conditionalRequired?: undefined;
|
|
1106
1070
|
readonly hidden?: boolean | undefined;
|
|
1071
|
+
readonly internal?: boolean | undefined;
|
|
1107
1072
|
readonly requiredPermissions?: string[] | undefined;
|
|
1108
1073
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1109
1074
|
readonly system?: boolean | undefined;
|
|
@@ -1120,7 +1085,7 @@ declare const SysWebhook: Omit<{
|
|
|
1120
1085
|
value: string;
|
|
1121
1086
|
color?: string | undefined;
|
|
1122
1087
|
default?: boolean | undefined;
|
|
1123
|
-
visibleWhen?: {
|
|
1088
|
+
visibleWhen?: string | {
|
|
1124
1089
|
dialect: "cel" | "cron" | "template";
|
|
1125
1090
|
source?: string | undefined;
|
|
1126
1091
|
ast?: unknown;
|
|
@@ -1141,7 +1106,24 @@ declare const SysWebhook: Omit<{
|
|
|
1141
1106
|
readonly storage?: {
|
|
1142
1107
|
notNull?: boolean | undefined;
|
|
1143
1108
|
} | undefined;
|
|
1144
|
-
readonly
|
|
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;
|
|
1145
1127
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1146
1128
|
readonly _lockReason?: string | undefined;
|
|
1147
1129
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1155,7 +1137,7 @@ declare const SysWebhook: Omit<{
|
|
|
1155
1137
|
value: any;
|
|
1156
1138
|
}[] | undefined;
|
|
1157
1139
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1158
|
-
readonly expression?: {
|
|
1140
|
+
readonly expression?: string | {
|
|
1159
1141
|
dialect: "cel" | "cron" | "template";
|
|
1160
1142
|
source?: string | undefined;
|
|
1161
1143
|
ast?: unknown;
|
|
@@ -1172,15 +1154,7 @@ declare const SysWebhook: Omit<{
|
|
|
1172
1154
|
relationshipField?: string | undefined;
|
|
1173
1155
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1174
1156
|
} | undefined;
|
|
1175
|
-
readonly
|
|
1176
|
-
dialect: "cel" | "cron" | "template";
|
|
1177
|
-
source?: string | undefined;
|
|
1178
|
-
ast?: unknown;
|
|
1179
|
-
meta?: {
|
|
1180
|
-
rationale?: string | undefined;
|
|
1181
|
-
generatedBy?: string | undefined;
|
|
1182
|
-
} | undefined;
|
|
1183
|
-
} | undefined;
|
|
1157
|
+
readonly reference?: string | undefined;
|
|
1184
1158
|
readonly scale?: number | undefined;
|
|
1185
1159
|
readonly searchable?: boolean | undefined;
|
|
1186
1160
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -1189,8 +1163,9 @@ declare const SysWebhook: Omit<{
|
|
|
1189
1163
|
readonly minLength?: number | undefined;
|
|
1190
1164
|
readonly min?: number | undefined;
|
|
1191
1165
|
readonly max?: number | undefined;
|
|
1166
|
+
readonly useGrouping?: boolean | undefined;
|
|
1192
1167
|
readonly accept?: string[] | undefined;
|
|
1193
|
-
readonly
|
|
1168
|
+
readonly maxSize?: number | undefined;
|
|
1194
1169
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1195
1170
|
readonly inlineTitle?: string | undefined;
|
|
1196
1171
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1215,23 +1190,14 @@ declare const SysWebhook: Omit<{
|
|
|
1215
1190
|
readonly language?: string | undefined;
|
|
1216
1191
|
readonly step?: number | undefined;
|
|
1217
1192
|
readonly currencyConfig?: {
|
|
1218
|
-
precision
|
|
1219
|
-
currencyMode
|
|
1220
|
-
defaultCurrency
|
|
1193
|
+
precision?: number | undefined;
|
|
1194
|
+
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
1195
|
+
defaultCurrency?: string | undefined;
|
|
1221
1196
|
} | undefined;
|
|
1222
1197
|
readonly dimensions?: number | undefined;
|
|
1223
1198
|
readonly trackHistory?: boolean | undefined;
|
|
1224
1199
|
readonly group?: string | undefined;
|
|
1225
|
-
readonly
|
|
1226
|
-
dialect: "cel" | "cron" | "template";
|
|
1227
|
-
source?: string | undefined;
|
|
1228
|
-
ast?: unknown;
|
|
1229
|
-
meta?: {
|
|
1230
|
-
rationale?: string | undefined;
|
|
1231
|
-
generatedBy?: string | undefined;
|
|
1232
|
-
} | undefined;
|
|
1233
|
-
} | undefined;
|
|
1234
|
-
readonly requiredWhen?: {
|
|
1200
|
+
readonly requiredWhen?: string | {
|
|
1235
1201
|
dialect: "cel" | "cron" | "template";
|
|
1236
1202
|
source?: string | undefined;
|
|
1237
1203
|
ast?: unknown;
|
|
@@ -1242,6 +1208,7 @@ declare const SysWebhook: Omit<{
|
|
|
1242
1208
|
} | undefined;
|
|
1243
1209
|
readonly conditionalRequired?: undefined;
|
|
1244
1210
|
readonly hidden?: boolean | undefined;
|
|
1211
|
+
readonly internal?: boolean | undefined;
|
|
1245
1212
|
readonly requiredPermissions?: string[] | undefined;
|
|
1246
1213
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1247
1214
|
readonly system?: boolean | undefined;
|
|
@@ -1258,7 +1225,7 @@ declare const SysWebhook: Omit<{
|
|
|
1258
1225
|
value: string;
|
|
1259
1226
|
color?: string | undefined;
|
|
1260
1227
|
default?: boolean | undefined;
|
|
1261
|
-
visibleWhen?: {
|
|
1228
|
+
visibleWhen?: string | {
|
|
1262
1229
|
dialect: "cel" | "cron" | "template";
|
|
1263
1230
|
source?: string | undefined;
|
|
1264
1231
|
ast?: unknown;
|
|
@@ -1279,7 +1246,24 @@ declare const SysWebhook: Omit<{
|
|
|
1279
1246
|
readonly storage?: {
|
|
1280
1247
|
notNull?: boolean | undefined;
|
|
1281
1248
|
} | undefined;
|
|
1282
|
-
readonly
|
|
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;
|
|
1283
1267
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1284
1268
|
readonly _lockReason?: string | undefined;
|
|
1285
1269
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1293,7 +1277,7 @@ declare const SysWebhook: Omit<{
|
|
|
1293
1277
|
value: any;
|
|
1294
1278
|
}[] | undefined;
|
|
1295
1279
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1296
|
-
readonly expression?: {
|
|
1280
|
+
readonly expression?: string | {
|
|
1297
1281
|
dialect: "cel" | "cron" | "template";
|
|
1298
1282
|
source?: string | undefined;
|
|
1299
1283
|
ast?: unknown;
|
|
@@ -1310,15 +1294,7 @@ declare const SysWebhook: Omit<{
|
|
|
1310
1294
|
relationshipField?: string | undefined;
|
|
1311
1295
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1312
1296
|
} | undefined;
|
|
1313
|
-
readonly
|
|
1314
|
-
dialect: "cel" | "cron" | "template";
|
|
1315
|
-
source?: string | undefined;
|
|
1316
|
-
ast?: unknown;
|
|
1317
|
-
meta?: {
|
|
1318
|
-
rationale?: string | undefined;
|
|
1319
|
-
generatedBy?: string | undefined;
|
|
1320
|
-
} | undefined;
|
|
1321
|
-
} | undefined;
|
|
1297
|
+
readonly reference?: string | undefined;
|
|
1322
1298
|
readonly scale?: number | undefined;
|
|
1323
1299
|
readonly searchable?: boolean | undefined;
|
|
1324
1300
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -1327,8 +1303,9 @@ declare const SysWebhook: Omit<{
|
|
|
1327
1303
|
readonly minLength?: number | undefined;
|
|
1328
1304
|
readonly min?: number | undefined;
|
|
1329
1305
|
readonly max?: number | undefined;
|
|
1306
|
+
readonly useGrouping?: boolean | undefined;
|
|
1330
1307
|
readonly accept?: string[] | undefined;
|
|
1331
|
-
readonly
|
|
1308
|
+
readonly maxSize?: number | undefined;
|
|
1332
1309
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1333
1310
|
readonly inlineTitle?: string | undefined;
|
|
1334
1311
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1353,23 +1330,14 @@ declare const SysWebhook: Omit<{
|
|
|
1353
1330
|
readonly language?: string | undefined;
|
|
1354
1331
|
readonly step?: number | undefined;
|
|
1355
1332
|
readonly currencyConfig?: {
|
|
1356
|
-
precision
|
|
1357
|
-
currencyMode
|
|
1358
|
-
defaultCurrency
|
|
1333
|
+
precision?: number | undefined;
|
|
1334
|
+
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
1335
|
+
defaultCurrency?: string | undefined;
|
|
1359
1336
|
} | undefined;
|
|
1360
1337
|
readonly dimensions?: number | undefined;
|
|
1361
1338
|
readonly trackHistory?: boolean | undefined;
|
|
1362
1339
|
readonly group?: string | undefined;
|
|
1363
|
-
readonly
|
|
1364
|
-
dialect: "cel" | "cron" | "template";
|
|
1365
|
-
source?: string | undefined;
|
|
1366
|
-
ast?: unknown;
|
|
1367
|
-
meta?: {
|
|
1368
|
-
rationale?: string | undefined;
|
|
1369
|
-
generatedBy?: string | undefined;
|
|
1370
|
-
} | undefined;
|
|
1371
|
-
} | undefined;
|
|
1372
|
-
readonly requiredWhen?: {
|
|
1340
|
+
readonly requiredWhen?: string | {
|
|
1373
1341
|
dialect: "cel" | "cron" | "template";
|
|
1374
1342
|
source?: string | undefined;
|
|
1375
1343
|
ast?: unknown;
|
|
@@ -1380,6 +1348,7 @@ declare const SysWebhook: Omit<{
|
|
|
1380
1348
|
} | undefined;
|
|
1381
1349
|
readonly conditionalRequired?: undefined;
|
|
1382
1350
|
readonly hidden?: boolean | undefined;
|
|
1351
|
+
readonly internal?: boolean | undefined;
|
|
1383
1352
|
readonly requiredPermissions?: string[] | undefined;
|
|
1384
1353
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1385
1354
|
readonly system?: boolean | undefined;
|
|
@@ -1396,7 +1365,7 @@ declare const SysWebhook: Omit<{
|
|
|
1396
1365
|
value: string;
|
|
1397
1366
|
color?: string | undefined;
|
|
1398
1367
|
default?: boolean | undefined;
|
|
1399
|
-
visibleWhen?: {
|
|
1368
|
+
visibleWhen?: string | {
|
|
1400
1369
|
dialect: "cel" | "cron" | "template";
|
|
1401
1370
|
source?: string | undefined;
|
|
1402
1371
|
ast?: unknown;
|
|
@@ -1417,7 +1386,24 @@ declare const SysWebhook: Omit<{
|
|
|
1417
1386
|
readonly storage?: {
|
|
1418
1387
|
notNull?: boolean | undefined;
|
|
1419
1388
|
} | undefined;
|
|
1420
|
-
readonly
|
|
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;
|
|
1421
1407
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1422
1408
|
readonly _lockReason?: string | undefined;
|
|
1423
1409
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1431,7 +1417,7 @@ declare const SysWebhook: Omit<{
|
|
|
1431
1417
|
value: any;
|
|
1432
1418
|
}[] | undefined;
|
|
1433
1419
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1434
|
-
readonly expression?: {
|
|
1420
|
+
readonly expression?: string | {
|
|
1435
1421
|
dialect: "cel" | "cron" | "template";
|
|
1436
1422
|
source?: string | undefined;
|
|
1437
1423
|
ast?: unknown;
|
|
@@ -1448,15 +1434,7 @@ declare const SysWebhook: Omit<{
|
|
|
1448
1434
|
relationshipField?: string | undefined;
|
|
1449
1435
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1450
1436
|
} | undefined;
|
|
1451
|
-
readonly
|
|
1452
|
-
dialect: "cel" | "cron" | "template";
|
|
1453
|
-
source?: string | undefined;
|
|
1454
|
-
ast?: unknown;
|
|
1455
|
-
meta?: {
|
|
1456
|
-
rationale?: string | undefined;
|
|
1457
|
-
generatedBy?: string | undefined;
|
|
1458
|
-
} | undefined;
|
|
1459
|
-
} | undefined;
|
|
1437
|
+
readonly reference?: string | undefined;
|
|
1460
1438
|
readonly scale?: number | undefined;
|
|
1461
1439
|
readonly searchable?: boolean | undefined;
|
|
1462
1440
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -1465,8 +1443,9 @@ declare const SysWebhook: Omit<{
|
|
|
1465
1443
|
readonly minLength?: number | undefined;
|
|
1466
1444
|
readonly min?: number | undefined;
|
|
1467
1445
|
readonly max?: number | undefined;
|
|
1446
|
+
readonly useGrouping?: boolean | undefined;
|
|
1468
1447
|
readonly accept?: string[] | undefined;
|
|
1469
|
-
readonly
|
|
1448
|
+
readonly maxSize?: number | undefined;
|
|
1470
1449
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1471
1450
|
readonly inlineTitle?: string | undefined;
|
|
1472
1451
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1491,23 +1470,14 @@ declare const SysWebhook: Omit<{
|
|
|
1491
1470
|
readonly language?: string | undefined;
|
|
1492
1471
|
readonly step?: number | undefined;
|
|
1493
1472
|
readonly currencyConfig?: {
|
|
1494
|
-
precision
|
|
1495
|
-
currencyMode
|
|
1496
|
-
defaultCurrency
|
|
1473
|
+
precision?: number | undefined;
|
|
1474
|
+
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
1475
|
+
defaultCurrency?: string | undefined;
|
|
1497
1476
|
} | undefined;
|
|
1498
1477
|
readonly dimensions?: number | undefined;
|
|
1499
1478
|
readonly trackHistory?: boolean | undefined;
|
|
1500
1479
|
readonly group?: string | undefined;
|
|
1501
|
-
readonly
|
|
1502
|
-
dialect: "cel" | "cron" | "template";
|
|
1503
|
-
source?: string | undefined;
|
|
1504
|
-
ast?: unknown;
|
|
1505
|
-
meta?: {
|
|
1506
|
-
rationale?: string | undefined;
|
|
1507
|
-
generatedBy?: string | undefined;
|
|
1508
|
-
} | undefined;
|
|
1509
|
-
} | undefined;
|
|
1510
|
-
readonly requiredWhen?: {
|
|
1480
|
+
readonly requiredWhen?: string | {
|
|
1511
1481
|
dialect: "cel" | "cron" | "template";
|
|
1512
1482
|
source?: string | undefined;
|
|
1513
1483
|
ast?: unknown;
|
|
@@ -1518,6 +1488,7 @@ declare const SysWebhook: Omit<{
|
|
|
1518
1488
|
} | undefined;
|
|
1519
1489
|
readonly conditionalRequired?: undefined;
|
|
1520
1490
|
readonly hidden?: boolean | undefined;
|
|
1491
|
+
readonly internal?: boolean | undefined;
|
|
1521
1492
|
readonly requiredPermissions?: string[] | undefined;
|
|
1522
1493
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1523
1494
|
readonly system?: boolean | undefined;
|
|
@@ -1534,7 +1505,7 @@ declare const SysWebhook: Omit<{
|
|
|
1534
1505
|
value: string;
|
|
1535
1506
|
color?: string | undefined;
|
|
1536
1507
|
default?: boolean | undefined;
|
|
1537
|
-
visibleWhen?: {
|
|
1508
|
+
visibleWhen?: string | {
|
|
1538
1509
|
dialect: "cel" | "cron" | "template";
|
|
1539
1510
|
source?: string | undefined;
|
|
1540
1511
|
ast?: unknown;
|
|
@@ -1555,7 +1526,24 @@ declare const SysWebhook: Omit<{
|
|
|
1555
1526
|
readonly storage?: {
|
|
1556
1527
|
notNull?: boolean | undefined;
|
|
1557
1528
|
} | undefined;
|
|
1558
|
-
readonly
|
|
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;
|
|
1559
1547
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1560
1548
|
readonly _lockReason?: string | undefined;
|
|
1561
1549
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1569,7 +1557,7 @@ declare const SysWebhook: Omit<{
|
|
|
1569
1557
|
value: any;
|
|
1570
1558
|
}[] | undefined;
|
|
1571
1559
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1572
|
-
readonly expression?: {
|
|
1560
|
+
readonly expression?: string | {
|
|
1573
1561
|
dialect: "cel" | "cron" | "template";
|
|
1574
1562
|
source?: string | undefined;
|
|
1575
1563
|
ast?: unknown;
|
|
@@ -1586,15 +1574,7 @@ declare const SysWebhook: Omit<{
|
|
|
1586
1574
|
relationshipField?: string | undefined;
|
|
1587
1575
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1588
1576
|
} | undefined;
|
|
1589
|
-
readonly
|
|
1590
|
-
dialect: "cel" | "cron" | "template";
|
|
1591
|
-
source?: string | undefined;
|
|
1592
|
-
ast?: unknown;
|
|
1593
|
-
meta?: {
|
|
1594
|
-
rationale?: string | undefined;
|
|
1595
|
-
generatedBy?: string | undefined;
|
|
1596
|
-
} | undefined;
|
|
1597
|
-
} | undefined;
|
|
1577
|
+
readonly reference?: string | undefined;
|
|
1598
1578
|
readonly scale?: number | undefined;
|
|
1599
1579
|
readonly searchable?: boolean | undefined;
|
|
1600
1580
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -1603,8 +1583,9 @@ declare const SysWebhook: Omit<{
|
|
|
1603
1583
|
readonly minLength?: number | undefined;
|
|
1604
1584
|
readonly min?: number | undefined;
|
|
1605
1585
|
readonly max?: number | undefined;
|
|
1586
|
+
readonly useGrouping?: boolean | undefined;
|
|
1606
1587
|
readonly accept?: string[] | undefined;
|
|
1607
|
-
readonly
|
|
1588
|
+
readonly maxSize?: number | undefined;
|
|
1608
1589
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1609
1590
|
readonly inlineTitle?: string | undefined;
|
|
1610
1591
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1629,23 +1610,14 @@ declare const SysWebhook: Omit<{
|
|
|
1629
1610
|
readonly language?: string | undefined;
|
|
1630
1611
|
readonly step?: number | undefined;
|
|
1631
1612
|
readonly currencyConfig?: {
|
|
1632
|
-
precision
|
|
1633
|
-
currencyMode
|
|
1634
|
-
defaultCurrency
|
|
1613
|
+
precision?: number | undefined;
|
|
1614
|
+
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
1615
|
+
defaultCurrency?: string | undefined;
|
|
1635
1616
|
} | undefined;
|
|
1636
1617
|
readonly dimensions?: number | undefined;
|
|
1637
1618
|
readonly trackHistory?: boolean | undefined;
|
|
1638
1619
|
readonly group?: string | undefined;
|
|
1639
|
-
readonly
|
|
1640
|
-
dialect: "cel" | "cron" | "template";
|
|
1641
|
-
source?: string | undefined;
|
|
1642
|
-
ast?: unknown;
|
|
1643
|
-
meta?: {
|
|
1644
|
-
rationale?: string | undefined;
|
|
1645
|
-
generatedBy?: string | undefined;
|
|
1646
|
-
} | undefined;
|
|
1647
|
-
} | undefined;
|
|
1648
|
-
readonly requiredWhen?: {
|
|
1620
|
+
readonly requiredWhen?: string | {
|
|
1649
1621
|
dialect: "cel" | "cron" | "template";
|
|
1650
1622
|
source?: string | undefined;
|
|
1651
1623
|
ast?: unknown;
|
|
@@ -1656,6 +1628,7 @@ declare const SysWebhook: Omit<{
|
|
|
1656
1628
|
} | undefined;
|
|
1657
1629
|
readonly conditionalRequired?: undefined;
|
|
1658
1630
|
readonly hidden?: boolean | undefined;
|
|
1631
|
+
readonly internal?: boolean | undefined;
|
|
1659
1632
|
readonly requiredPermissions?: string[] | undefined;
|
|
1660
1633
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1661
1634
|
readonly system?: boolean | undefined;
|
|
@@ -1672,7 +1645,7 @@ declare const SysWebhook: Omit<{
|
|
|
1672
1645
|
value: string;
|
|
1673
1646
|
color?: string | undefined;
|
|
1674
1647
|
default?: boolean | undefined;
|
|
1675
|
-
visibleWhen?: {
|
|
1648
|
+
visibleWhen?: string | {
|
|
1676
1649
|
dialect: "cel" | "cron" | "template";
|
|
1677
1650
|
source?: string | undefined;
|
|
1678
1651
|
ast?: unknown;
|
|
@@ -1693,7 +1666,24 @@ declare const SysWebhook: Omit<{
|
|
|
1693
1666
|
readonly storage?: {
|
|
1694
1667
|
notNull?: boolean | undefined;
|
|
1695
1668
|
} | undefined;
|
|
1696
|
-
readonly
|
|
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;
|
|
1697
1687
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1698
1688
|
readonly _lockReason?: string | undefined;
|
|
1699
1689
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1707,7 +1697,7 @@ declare const SysWebhook: Omit<{
|
|
|
1707
1697
|
value: any;
|
|
1708
1698
|
}[] | undefined;
|
|
1709
1699
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1710
|
-
readonly expression?: {
|
|
1700
|
+
readonly expression?: string | {
|
|
1711
1701
|
dialect: "cel" | "cron" | "template";
|
|
1712
1702
|
source?: string | undefined;
|
|
1713
1703
|
ast?: unknown;
|
|
@@ -1724,15 +1714,7 @@ declare const SysWebhook: Omit<{
|
|
|
1724
1714
|
relationshipField?: string | undefined;
|
|
1725
1715
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1726
1716
|
} | undefined;
|
|
1727
|
-
readonly
|
|
1728
|
-
dialect: "cel" | "cron" | "template";
|
|
1729
|
-
source?: string | undefined;
|
|
1730
|
-
ast?: unknown;
|
|
1731
|
-
meta?: {
|
|
1732
|
-
rationale?: string | undefined;
|
|
1733
|
-
generatedBy?: string | undefined;
|
|
1734
|
-
} | undefined;
|
|
1735
|
-
} | undefined;
|
|
1717
|
+
readonly reference?: string | undefined;
|
|
1736
1718
|
readonly scale?: number | undefined;
|
|
1737
1719
|
readonly searchable?: boolean | undefined;
|
|
1738
1720
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -1741,8 +1723,9 @@ declare const SysWebhook: Omit<{
|
|
|
1741
1723
|
readonly minLength?: number | undefined;
|
|
1742
1724
|
readonly min?: number | undefined;
|
|
1743
1725
|
readonly max?: number | undefined;
|
|
1726
|
+
readonly useGrouping?: boolean | undefined;
|
|
1744
1727
|
readonly accept?: string[] | undefined;
|
|
1745
|
-
readonly
|
|
1728
|
+
readonly maxSize?: number | undefined;
|
|
1746
1729
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1747
1730
|
readonly inlineTitle?: string | undefined;
|
|
1748
1731
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1767,23 +1750,14 @@ declare const SysWebhook: Omit<{
|
|
|
1767
1750
|
readonly language?: string | undefined;
|
|
1768
1751
|
readonly step?: number | undefined;
|
|
1769
1752
|
readonly currencyConfig?: {
|
|
1770
|
-
precision
|
|
1771
|
-
currencyMode
|
|
1772
|
-
defaultCurrency
|
|
1753
|
+
precision?: number | undefined;
|
|
1754
|
+
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
1755
|
+
defaultCurrency?: string | undefined;
|
|
1773
1756
|
} | undefined;
|
|
1774
1757
|
readonly dimensions?: number | undefined;
|
|
1775
1758
|
readonly trackHistory?: boolean | undefined;
|
|
1776
1759
|
readonly group?: string | undefined;
|
|
1777
|
-
readonly
|
|
1778
|
-
dialect: "cel" | "cron" | "template";
|
|
1779
|
-
source?: string | undefined;
|
|
1780
|
-
ast?: unknown;
|
|
1781
|
-
meta?: {
|
|
1782
|
-
rationale?: string | undefined;
|
|
1783
|
-
generatedBy?: string | undefined;
|
|
1784
|
-
} | undefined;
|
|
1785
|
-
} | undefined;
|
|
1786
|
-
readonly requiredWhen?: {
|
|
1760
|
+
readonly requiredWhen?: string | {
|
|
1787
1761
|
dialect: "cel" | "cron" | "template";
|
|
1788
1762
|
source?: string | undefined;
|
|
1789
1763
|
ast?: unknown;
|
|
@@ -1794,6 +1768,7 @@ declare const SysWebhook: Omit<{
|
|
|
1794
1768
|
} | undefined;
|
|
1795
1769
|
readonly conditionalRequired?: undefined;
|
|
1796
1770
|
readonly hidden?: boolean | undefined;
|
|
1771
|
+
readonly internal?: boolean | undefined;
|
|
1797
1772
|
readonly requiredPermissions?: string[] | undefined;
|
|
1798
1773
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1799
1774
|
readonly system?: boolean | undefined;
|
|
@@ -1810,7 +1785,7 @@ declare const SysWebhook: Omit<{
|
|
|
1810
1785
|
value: string;
|
|
1811
1786
|
color?: string | undefined;
|
|
1812
1787
|
default?: boolean | undefined;
|
|
1813
|
-
visibleWhen?: {
|
|
1788
|
+
visibleWhen?: string | {
|
|
1814
1789
|
dialect: "cel" | "cron" | "template";
|
|
1815
1790
|
source?: string | undefined;
|
|
1816
1791
|
ast?: unknown;
|
|
@@ -1831,7 +1806,24 @@ declare const SysWebhook: Omit<{
|
|
|
1831
1806
|
readonly storage?: {
|
|
1832
1807
|
notNull?: boolean | undefined;
|
|
1833
1808
|
} | undefined;
|
|
1834
|
-
readonly
|
|
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;
|
|
1835
1827
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1836
1828
|
readonly _lockReason?: string | undefined;
|
|
1837
1829
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1845,7 +1837,7 @@ declare const SysWebhook: Omit<{
|
|
|
1845
1837
|
value: any;
|
|
1846
1838
|
}[] | undefined;
|
|
1847
1839
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1848
|
-
readonly expression?: {
|
|
1840
|
+
readonly expression?: string | {
|
|
1849
1841
|
dialect: "cel" | "cron" | "template";
|
|
1850
1842
|
source?: string | undefined;
|
|
1851
1843
|
ast?: unknown;
|
|
@@ -1862,15 +1854,7 @@ declare const SysWebhook: Omit<{
|
|
|
1862
1854
|
relationshipField?: string | undefined;
|
|
1863
1855
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1864
1856
|
} | undefined;
|
|
1865
|
-
readonly
|
|
1866
|
-
dialect: "cel" | "cron" | "template";
|
|
1867
|
-
source?: string | undefined;
|
|
1868
|
-
ast?: unknown;
|
|
1869
|
-
meta?: {
|
|
1870
|
-
rationale?: string | undefined;
|
|
1871
|
-
generatedBy?: string | undefined;
|
|
1872
|
-
} | undefined;
|
|
1873
|
-
} | undefined;
|
|
1857
|
+
readonly reference?: string | undefined;
|
|
1874
1858
|
readonly scale?: number | undefined;
|
|
1875
1859
|
readonly searchable?: boolean | undefined;
|
|
1876
1860
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -1879,8 +1863,9 @@ declare const SysWebhook: Omit<{
|
|
|
1879
1863
|
readonly minLength?: number | undefined;
|
|
1880
1864
|
readonly min?: number | undefined;
|
|
1881
1865
|
readonly max?: number | undefined;
|
|
1866
|
+
readonly useGrouping?: boolean | undefined;
|
|
1882
1867
|
readonly accept?: string[] | undefined;
|
|
1883
|
-
readonly
|
|
1868
|
+
readonly maxSize?: number | undefined;
|
|
1884
1869
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1885
1870
|
readonly inlineTitle?: string | undefined;
|
|
1886
1871
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1905,23 +1890,14 @@ declare const SysWebhook: Omit<{
|
|
|
1905
1890
|
readonly language?: string | undefined;
|
|
1906
1891
|
readonly step?: number | undefined;
|
|
1907
1892
|
readonly currencyConfig?: {
|
|
1908
|
-
precision
|
|
1909
|
-
currencyMode
|
|
1910
|
-
defaultCurrency
|
|
1893
|
+
precision?: number | undefined;
|
|
1894
|
+
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
1895
|
+
defaultCurrency?: string | undefined;
|
|
1911
1896
|
} | undefined;
|
|
1912
1897
|
readonly dimensions?: number | undefined;
|
|
1913
1898
|
readonly trackHistory?: boolean | undefined;
|
|
1914
1899
|
readonly group?: string | undefined;
|
|
1915
|
-
readonly
|
|
1916
|
-
dialect: "cel" | "cron" | "template";
|
|
1917
|
-
source?: string | undefined;
|
|
1918
|
-
ast?: unknown;
|
|
1919
|
-
meta?: {
|
|
1920
|
-
rationale?: string | undefined;
|
|
1921
|
-
generatedBy?: string | undefined;
|
|
1922
|
-
} | undefined;
|
|
1923
|
-
} | undefined;
|
|
1924
|
-
readonly requiredWhen?: {
|
|
1900
|
+
readonly requiredWhen?: string | {
|
|
1925
1901
|
dialect: "cel" | "cron" | "template";
|
|
1926
1902
|
source?: string | undefined;
|
|
1927
1903
|
ast?: unknown;
|
|
@@ -1932,6 +1908,7 @@ declare const SysWebhook: Omit<{
|
|
|
1932
1908
|
} | undefined;
|
|
1933
1909
|
readonly conditionalRequired?: undefined;
|
|
1934
1910
|
readonly hidden?: boolean | undefined;
|
|
1911
|
+
readonly internal?: boolean | undefined;
|
|
1935
1912
|
readonly requiredPermissions?: string[] | undefined;
|
|
1936
1913
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1937
1914
|
readonly system?: boolean | undefined;
|
|
@@ -1948,7 +1925,7 @@ declare const SysWebhook: Omit<{
|
|
|
1948
1925
|
value: string;
|
|
1949
1926
|
color?: string | undefined;
|
|
1950
1927
|
default?: boolean | undefined;
|
|
1951
|
-
visibleWhen?: {
|
|
1928
|
+
visibleWhen?: string | {
|
|
1952
1929
|
dialect: "cel" | "cron" | "template";
|
|
1953
1930
|
source?: string | undefined;
|
|
1954
1931
|
ast?: unknown;
|
|
@@ -1969,7 +1946,24 @@ declare const SysWebhook: Omit<{
|
|
|
1969
1946
|
readonly storage?: {
|
|
1970
1947
|
notNull?: boolean | undefined;
|
|
1971
1948
|
} | undefined;
|
|
1972
|
-
readonly
|
|
1949
|
+
readonly visibleWhen?: string | {
|
|
1950
|
+
dialect: "cel" | "cron" | "template";
|
|
1951
|
+
source?: string | undefined;
|
|
1952
|
+
ast?: unknown;
|
|
1953
|
+
meta?: {
|
|
1954
|
+
rationale?: string | undefined;
|
|
1955
|
+
generatedBy?: string | undefined;
|
|
1956
|
+
} | undefined;
|
|
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;
|
|
1973
1967
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1974
1968
|
readonly _lockReason?: string | undefined;
|
|
1975
1969
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1983,7 +1977,7 @@ declare const SysWebhook: Omit<{
|
|
|
1983
1977
|
value: any;
|
|
1984
1978
|
}[] | undefined;
|
|
1985
1979
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1986
|
-
readonly expression?: {
|
|
1980
|
+
readonly expression?: string | {
|
|
1987
1981
|
dialect: "cel" | "cron" | "template";
|
|
1988
1982
|
source?: string | undefined;
|
|
1989
1983
|
ast?: unknown;
|
|
@@ -2000,15 +1994,7 @@ declare const SysWebhook: Omit<{
|
|
|
2000
1994
|
relationshipField?: string | undefined;
|
|
2001
1995
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2002
1996
|
} | undefined;
|
|
2003
|
-
readonly
|
|
2004
|
-
dialect: "cel" | "cron" | "template";
|
|
2005
|
-
source?: string | undefined;
|
|
2006
|
-
ast?: unknown;
|
|
2007
|
-
meta?: {
|
|
2008
|
-
rationale?: string | undefined;
|
|
2009
|
-
generatedBy?: string | undefined;
|
|
2010
|
-
} | undefined;
|
|
2011
|
-
} | undefined;
|
|
1997
|
+
readonly reference?: string | undefined;
|
|
2012
1998
|
readonly scale?: number | undefined;
|
|
2013
1999
|
readonly searchable?: boolean | undefined;
|
|
2014
2000
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -2017,8 +2003,9 @@ declare const SysWebhook: Omit<{
|
|
|
2017
2003
|
readonly minLength?: number | undefined;
|
|
2018
2004
|
readonly min?: number | undefined;
|
|
2019
2005
|
readonly max?: number | undefined;
|
|
2006
|
+
readonly useGrouping?: boolean | undefined;
|
|
2020
2007
|
readonly accept?: string[] | undefined;
|
|
2021
|
-
readonly
|
|
2008
|
+
readonly maxSize?: number | undefined;
|
|
2022
2009
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2023
2010
|
readonly inlineTitle?: string | undefined;
|
|
2024
2011
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2043,23 +2030,14 @@ declare const SysWebhook: Omit<{
|
|
|
2043
2030
|
readonly language?: string | undefined;
|
|
2044
2031
|
readonly step?: number | undefined;
|
|
2045
2032
|
readonly currencyConfig?: {
|
|
2046
|
-
precision
|
|
2047
|
-
currencyMode
|
|
2048
|
-
defaultCurrency
|
|
2033
|
+
precision?: number | undefined;
|
|
2034
|
+
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
2035
|
+
defaultCurrency?: string | undefined;
|
|
2049
2036
|
} | undefined;
|
|
2050
2037
|
readonly dimensions?: number | undefined;
|
|
2051
2038
|
readonly trackHistory?: boolean | undefined;
|
|
2052
2039
|
readonly group?: string | undefined;
|
|
2053
|
-
readonly
|
|
2054
|
-
dialect: "cel" | "cron" | "template";
|
|
2055
|
-
source?: string | undefined;
|
|
2056
|
-
ast?: unknown;
|
|
2057
|
-
meta?: {
|
|
2058
|
-
rationale?: string | undefined;
|
|
2059
|
-
generatedBy?: string | undefined;
|
|
2060
|
-
} | undefined;
|
|
2061
|
-
} | undefined;
|
|
2062
|
-
readonly requiredWhen?: {
|
|
2040
|
+
readonly requiredWhen?: string | {
|
|
2063
2041
|
dialect: "cel" | "cron" | "template";
|
|
2064
2042
|
source?: string | undefined;
|
|
2065
2043
|
ast?: unknown;
|
|
@@ -2070,6 +2048,7 @@ declare const SysWebhook: Omit<{
|
|
|
2070
2048
|
} | undefined;
|
|
2071
2049
|
readonly conditionalRequired?: undefined;
|
|
2072
2050
|
readonly hidden?: boolean | undefined;
|
|
2051
|
+
readonly internal?: boolean | undefined;
|
|
2073
2052
|
readonly requiredPermissions?: string[] | undefined;
|
|
2074
2053
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2075
2054
|
readonly system?: boolean | undefined;
|
|
@@ -2086,7 +2065,7 @@ declare const SysWebhook: Omit<{
|
|
|
2086
2065
|
value: string;
|
|
2087
2066
|
color?: string | undefined;
|
|
2088
2067
|
default?: boolean | undefined;
|
|
2089
|
-
visibleWhen?: {
|
|
2068
|
+
visibleWhen?: string | {
|
|
2090
2069
|
dialect: "cel" | "cron" | "template";
|
|
2091
2070
|
source?: string | undefined;
|
|
2092
2071
|
ast?: unknown;
|
|
@@ -2107,7 +2086,24 @@ declare const SysWebhook: Omit<{
|
|
|
2107
2086
|
readonly storage?: {
|
|
2108
2087
|
notNull?: boolean | undefined;
|
|
2109
2088
|
} | undefined;
|
|
2110
|
-
readonly
|
|
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;
|
|
2098
|
+
readonly readonlyWhen?: string | {
|
|
2099
|
+
dialect: "cel" | "cron" | "template";
|
|
2100
|
+
source?: string | undefined;
|
|
2101
|
+
ast?: unknown;
|
|
2102
|
+
meta?: {
|
|
2103
|
+
rationale?: string | undefined;
|
|
2104
|
+
generatedBy?: string | undefined;
|
|
2105
|
+
} | undefined;
|
|
2106
|
+
} | undefined;
|
|
2111
2107
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2112
2108
|
readonly _lockReason?: string | undefined;
|
|
2113
2109
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2121,7 +2117,7 @@ declare const SysWebhook: Omit<{
|
|
|
2121
2117
|
value: any;
|
|
2122
2118
|
}[] | undefined;
|
|
2123
2119
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2124
|
-
readonly expression?: {
|
|
2120
|
+
readonly expression?: string | {
|
|
2125
2121
|
dialect: "cel" | "cron" | "template";
|
|
2126
2122
|
source?: string | undefined;
|
|
2127
2123
|
ast?: unknown;
|
|
@@ -2138,15 +2134,7 @@ declare const SysWebhook: Omit<{
|
|
|
2138
2134
|
relationshipField?: string | undefined;
|
|
2139
2135
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2140
2136
|
} | undefined;
|
|
2141
|
-
readonly
|
|
2142
|
-
dialect: "cel" | "cron" | "template";
|
|
2143
|
-
source?: string | undefined;
|
|
2144
|
-
ast?: unknown;
|
|
2145
|
-
meta?: {
|
|
2146
|
-
rationale?: string | undefined;
|
|
2147
|
-
generatedBy?: string | undefined;
|
|
2148
|
-
} | undefined;
|
|
2149
|
-
} | undefined;
|
|
2137
|
+
readonly reference?: string | undefined;
|
|
2150
2138
|
readonly scale?: number | undefined;
|
|
2151
2139
|
readonly searchable?: boolean | undefined;
|
|
2152
2140
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -2155,8 +2143,9 @@ declare const SysWebhook: Omit<{
|
|
|
2155
2143
|
readonly minLength?: number | undefined;
|
|
2156
2144
|
readonly min?: number | undefined;
|
|
2157
2145
|
readonly max?: number | undefined;
|
|
2146
|
+
readonly useGrouping?: boolean | undefined;
|
|
2158
2147
|
readonly accept?: string[] | undefined;
|
|
2159
|
-
readonly
|
|
2148
|
+
readonly maxSize?: number | undefined;
|
|
2160
2149
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2161
2150
|
readonly inlineTitle?: string | undefined;
|
|
2162
2151
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2181,23 +2170,14 @@ declare const SysWebhook: Omit<{
|
|
|
2181
2170
|
readonly language?: string | undefined;
|
|
2182
2171
|
readonly step?: number | undefined;
|
|
2183
2172
|
readonly currencyConfig?: {
|
|
2184
|
-
precision
|
|
2185
|
-
currencyMode
|
|
2186
|
-
defaultCurrency
|
|
2173
|
+
precision?: number | undefined;
|
|
2174
|
+
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
2175
|
+
defaultCurrency?: string | undefined;
|
|
2187
2176
|
} | undefined;
|
|
2188
2177
|
readonly dimensions?: number | undefined;
|
|
2189
2178
|
readonly trackHistory?: boolean | undefined;
|
|
2190
2179
|
readonly group?: string | undefined;
|
|
2191
|
-
readonly
|
|
2192
|
-
dialect: "cel" | "cron" | "template";
|
|
2193
|
-
source?: string | undefined;
|
|
2194
|
-
ast?: unknown;
|
|
2195
|
-
meta?: {
|
|
2196
|
-
rationale?: string | undefined;
|
|
2197
|
-
generatedBy?: string | undefined;
|
|
2198
|
-
} | undefined;
|
|
2199
|
-
} | undefined;
|
|
2200
|
-
readonly requiredWhen?: {
|
|
2180
|
+
readonly requiredWhen?: string | {
|
|
2201
2181
|
dialect: "cel" | "cron" | "template";
|
|
2202
2182
|
source?: string | undefined;
|
|
2203
2183
|
ast?: unknown;
|
|
@@ -2208,6 +2188,7 @@ declare const SysWebhook: Omit<{
|
|
|
2208
2188
|
} | undefined;
|
|
2209
2189
|
readonly conditionalRequired?: undefined;
|
|
2210
2190
|
readonly hidden?: boolean | undefined;
|
|
2191
|
+
readonly internal?: boolean | undefined;
|
|
2211
2192
|
readonly requiredPermissions?: string[] | undefined;
|
|
2212
2193
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2213
2194
|
readonly system?: boolean | undefined;
|
|
@@ -2224,7 +2205,7 @@ declare const SysWebhook: Omit<{
|
|
|
2224
2205
|
value: string;
|
|
2225
2206
|
color?: string | undefined;
|
|
2226
2207
|
default?: boolean | undefined;
|
|
2227
|
-
visibleWhen?: {
|
|
2208
|
+
visibleWhen?: string | {
|
|
2228
2209
|
dialect: "cel" | "cron" | "template";
|
|
2229
2210
|
source?: string | undefined;
|
|
2230
2211
|
ast?: unknown;
|
|
@@ -2245,7 +2226,24 @@ declare const SysWebhook: Omit<{
|
|
|
2245
2226
|
readonly storage?: {
|
|
2246
2227
|
notNull?: boolean | undefined;
|
|
2247
2228
|
} | undefined;
|
|
2248
|
-
readonly
|
|
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;
|
|
2249
2247
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2250
2248
|
readonly _lockReason?: string | undefined;
|
|
2251
2249
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2259,7 +2257,7 @@ declare const SysWebhook: Omit<{
|
|
|
2259
2257
|
value: any;
|
|
2260
2258
|
}[] | undefined;
|
|
2261
2259
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2262
|
-
readonly expression?: {
|
|
2260
|
+
readonly expression?: string | {
|
|
2263
2261
|
dialect: "cel" | "cron" | "template";
|
|
2264
2262
|
source?: string | undefined;
|
|
2265
2263
|
ast?: unknown;
|
|
@@ -2276,15 +2274,7 @@ declare const SysWebhook: Omit<{
|
|
|
2276
2274
|
relationshipField?: string | undefined;
|
|
2277
2275
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2278
2276
|
} | undefined;
|
|
2279
|
-
readonly
|
|
2280
|
-
dialect: "cel" | "cron" | "template";
|
|
2281
|
-
source?: string | undefined;
|
|
2282
|
-
ast?: unknown;
|
|
2283
|
-
meta?: {
|
|
2284
|
-
rationale?: string | undefined;
|
|
2285
|
-
generatedBy?: string | undefined;
|
|
2286
|
-
} | undefined;
|
|
2287
|
-
} | undefined;
|
|
2277
|
+
readonly reference?: string | undefined;
|
|
2288
2278
|
readonly scale?: number | undefined;
|
|
2289
2279
|
readonly searchable?: boolean | undefined;
|
|
2290
2280
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -2293,8 +2283,9 @@ declare const SysWebhook: Omit<{
|
|
|
2293
2283
|
readonly minLength?: number | undefined;
|
|
2294
2284
|
readonly min?: number | undefined;
|
|
2295
2285
|
readonly max?: number | undefined;
|
|
2286
|
+
readonly useGrouping?: boolean | undefined;
|
|
2296
2287
|
readonly accept?: string[] | undefined;
|
|
2297
|
-
readonly
|
|
2288
|
+
readonly maxSize?: number | undefined;
|
|
2298
2289
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2299
2290
|
readonly inlineTitle?: string | undefined;
|
|
2300
2291
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2319,23 +2310,14 @@ declare const SysWebhook: Omit<{
|
|
|
2319
2310
|
readonly language?: string | undefined;
|
|
2320
2311
|
readonly step?: number | undefined;
|
|
2321
2312
|
readonly currencyConfig?: {
|
|
2322
|
-
precision
|
|
2323
|
-
currencyMode
|
|
2324
|
-
defaultCurrency
|
|
2313
|
+
precision?: number | undefined;
|
|
2314
|
+
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
2315
|
+
defaultCurrency?: string | undefined;
|
|
2325
2316
|
} | undefined;
|
|
2326
2317
|
readonly dimensions?: number | undefined;
|
|
2327
2318
|
readonly trackHistory?: boolean | undefined;
|
|
2328
2319
|
readonly group?: string | undefined;
|
|
2329
|
-
readonly
|
|
2330
|
-
dialect: "cel" | "cron" | "template";
|
|
2331
|
-
source?: string | undefined;
|
|
2332
|
-
ast?: unknown;
|
|
2333
|
-
meta?: {
|
|
2334
|
-
rationale?: string | undefined;
|
|
2335
|
-
generatedBy?: string | undefined;
|
|
2336
|
-
} | undefined;
|
|
2337
|
-
} | undefined;
|
|
2338
|
-
readonly requiredWhen?: {
|
|
2320
|
+
readonly requiredWhen?: string | {
|
|
2339
2321
|
dialect: "cel" | "cron" | "template";
|
|
2340
2322
|
source?: string | undefined;
|
|
2341
2323
|
ast?: unknown;
|
|
@@ -2346,6 +2328,7 @@ declare const SysWebhook: Omit<{
|
|
|
2346
2328
|
} | undefined;
|
|
2347
2329
|
readonly conditionalRequired?: undefined;
|
|
2348
2330
|
readonly hidden?: boolean | undefined;
|
|
2331
|
+
readonly internal?: boolean | undefined;
|
|
2349
2332
|
readonly requiredPermissions?: string[] | undefined;
|
|
2350
2333
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2351
2334
|
readonly system?: boolean | undefined;
|
|
@@ -2354,15 +2337,45 @@ declare const SysWebhook: Omit<{
|
|
|
2354
2337
|
readonly externalId?: boolean | undefined;
|
|
2355
2338
|
readonly type: "textarea";
|
|
2356
2339
|
};
|
|
2357
|
-
|
|
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: {
|
|
2358
2371
|
readonly readonly?: boolean | undefined;
|
|
2359
2372
|
readonly format?: string | undefined;
|
|
2360
|
-
options
|
|
2373
|
+
readonly options?: {
|
|
2361
2374
|
label: string;
|
|
2362
2375
|
value: string;
|
|
2363
2376
|
color?: string | undefined;
|
|
2364
2377
|
default?: boolean | undefined;
|
|
2365
|
-
visibleWhen?: {
|
|
2378
|
+
visibleWhen?: string | {
|
|
2366
2379
|
dialect: "cel" | "cron" | "template";
|
|
2367
2380
|
source?: string | undefined;
|
|
2368
2381
|
ast?: unknown;
|
|
@@ -2371,7 +2384,7 @@ declare const SysWebhook: Omit<{
|
|
|
2371
2384
|
generatedBy?: string | undefined;
|
|
2372
2385
|
} | undefined;
|
|
2373
2386
|
} | undefined;
|
|
2374
|
-
}[];
|
|
2387
|
+
}[] | undefined;
|
|
2375
2388
|
readonly description?: string | undefined;
|
|
2376
2389
|
readonly label?: string | undefined;
|
|
2377
2390
|
readonly name?: string | undefined;
|
|
@@ -2383,7 +2396,24 @@ declare const SysWebhook: Omit<{
|
|
|
2383
2396
|
readonly storage?: {
|
|
2384
2397
|
notNull?: boolean | undefined;
|
|
2385
2398
|
} | undefined;
|
|
2386
|
-
readonly
|
|
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;
|
|
2387
2417
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2388
2418
|
readonly _lockReason?: string | undefined;
|
|
2389
2419
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2397,7 +2427,7 @@ declare const SysWebhook: Omit<{
|
|
|
2397
2427
|
value: any;
|
|
2398
2428
|
}[] | undefined;
|
|
2399
2429
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2400
|
-
readonly expression?: {
|
|
2430
|
+
readonly expression?: string | {
|
|
2401
2431
|
dialect: "cel" | "cron" | "template";
|
|
2402
2432
|
source?: string | undefined;
|
|
2403
2433
|
ast?: unknown;
|
|
@@ -2414,15 +2444,7 @@ declare const SysWebhook: Omit<{
|
|
|
2414
2444
|
relationshipField?: string | undefined;
|
|
2415
2445
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2416
2446
|
} | undefined;
|
|
2417
|
-
readonly
|
|
2418
|
-
dialect: "cel" | "cron" | "template";
|
|
2419
|
-
source?: string | undefined;
|
|
2420
|
-
ast?: unknown;
|
|
2421
|
-
meta?: {
|
|
2422
|
-
rationale?: string | undefined;
|
|
2423
|
-
generatedBy?: string | undefined;
|
|
2424
|
-
} | undefined;
|
|
2425
|
-
} | undefined;
|
|
2447
|
+
readonly reference?: string | undefined;
|
|
2426
2448
|
readonly scale?: number | undefined;
|
|
2427
2449
|
readonly searchable?: boolean | undefined;
|
|
2428
2450
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -2431,8 +2453,9 @@ declare const SysWebhook: Omit<{
|
|
|
2431
2453
|
readonly minLength?: number | undefined;
|
|
2432
2454
|
readonly min?: number | undefined;
|
|
2433
2455
|
readonly max?: number | undefined;
|
|
2456
|
+
readonly useGrouping?: boolean | undefined;
|
|
2434
2457
|
readonly accept?: string[] | undefined;
|
|
2435
|
-
readonly
|
|
2458
|
+
readonly maxSize?: number | undefined;
|
|
2436
2459
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2437
2460
|
readonly inlineTitle?: string | undefined;
|
|
2438
2461
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2457,23 +2480,14 @@ declare const SysWebhook: Omit<{
|
|
|
2457
2480
|
readonly language?: string | undefined;
|
|
2458
2481
|
readonly step?: number | undefined;
|
|
2459
2482
|
readonly currencyConfig?: {
|
|
2460
|
-
precision
|
|
2461
|
-
currencyMode
|
|
2462
|
-
defaultCurrency
|
|
2483
|
+
precision?: number | undefined;
|
|
2484
|
+
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
2485
|
+
defaultCurrency?: string | undefined;
|
|
2463
2486
|
} | undefined;
|
|
2464
2487
|
readonly dimensions?: number | undefined;
|
|
2465
2488
|
readonly trackHistory?: boolean | undefined;
|
|
2466
2489
|
readonly group?: string | undefined;
|
|
2467
|
-
readonly
|
|
2468
|
-
dialect: "cel" | "cron" | "template";
|
|
2469
|
-
source?: string | undefined;
|
|
2470
|
-
ast?: unknown;
|
|
2471
|
-
meta?: {
|
|
2472
|
-
rationale?: string | undefined;
|
|
2473
|
-
generatedBy?: string | undefined;
|
|
2474
|
-
} | undefined;
|
|
2475
|
-
} | undefined;
|
|
2476
|
-
readonly requiredWhen?: {
|
|
2490
|
+
readonly requiredWhen?: string | {
|
|
2477
2491
|
dialect: "cel" | "cron" | "template";
|
|
2478
2492
|
source?: string | undefined;
|
|
2479
2493
|
ast?: unknown;
|
|
@@ -2484,15 +2498,39 @@ declare const SysWebhook: Omit<{
|
|
|
2484
2498
|
} | undefined;
|
|
2485
2499
|
readonly conditionalRequired?: undefined;
|
|
2486
2500
|
readonly hidden?: boolean | undefined;
|
|
2501
|
+
readonly internal?: boolean | undefined;
|
|
2487
2502
|
readonly requiredPermissions?: string[] | undefined;
|
|
2488
2503
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2489
2504
|
readonly system?: boolean | undefined;
|
|
2490
2505
|
readonly sortable?: boolean | undefined;
|
|
2491
2506
|
readonly inlineHelpText?: string | undefined;
|
|
2492
2507
|
readonly externalId?: boolean | undefined;
|
|
2493
|
-
readonly type: "
|
|
2508
|
+
readonly type: "secret";
|
|
2494
2509
|
};
|
|
2495
|
-
|
|
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: {
|
|
2496
2534
|
readonly readonly?: boolean | undefined;
|
|
2497
2535
|
readonly format?: string | undefined;
|
|
2498
2536
|
readonly options?: {
|
|
@@ -2500,7 +2538,7 @@ declare const SysWebhook: Omit<{
|
|
|
2500
2538
|
value: string;
|
|
2501
2539
|
color?: string | undefined;
|
|
2502
2540
|
default?: boolean | undefined;
|
|
2503
|
-
visibleWhen?: {
|
|
2541
|
+
visibleWhen?: string | {
|
|
2504
2542
|
dialect: "cel" | "cron" | "template";
|
|
2505
2543
|
source?: string | undefined;
|
|
2506
2544
|
ast?: unknown;
|
|
@@ -2521,7 +2559,24 @@ declare const SysWebhook: Omit<{
|
|
|
2521
2559
|
readonly storage?: {
|
|
2522
2560
|
notNull?: boolean | undefined;
|
|
2523
2561
|
} | undefined;
|
|
2524
|
-
readonly
|
|
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;
|
|
2525
2580
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2526
2581
|
readonly _lockReason?: string | undefined;
|
|
2527
2582
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2535,7 +2590,7 @@ declare const SysWebhook: Omit<{
|
|
|
2535
2590
|
value: any;
|
|
2536
2591
|
}[] | undefined;
|
|
2537
2592
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2538
|
-
readonly expression?: {
|
|
2593
|
+
readonly expression?: string | {
|
|
2539
2594
|
dialect: "cel" | "cron" | "template";
|
|
2540
2595
|
source?: string | undefined;
|
|
2541
2596
|
ast?: unknown;
|
|
@@ -2552,7 +2607,99 @@ declare const SysWebhook: Omit<{
|
|
|
2552
2607
|
relationshipField?: string | undefined;
|
|
2553
2608
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2554
2609
|
} | undefined;
|
|
2555
|
-
readonly
|
|
2610
|
+
readonly reference?: string | undefined;
|
|
2611
|
+
readonly scale?: number | undefined;
|
|
2612
|
+
readonly searchable?: boolean | undefined;
|
|
2613
|
+
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
2614
|
+
readonly defaultValue?: unknown;
|
|
2615
|
+
readonly maxLength?: number | undefined;
|
|
2616
|
+
readonly minLength?: number | undefined;
|
|
2617
|
+
readonly min?: number | undefined;
|
|
2618
|
+
readonly max?: number | undefined;
|
|
2619
|
+
readonly useGrouping?: boolean | undefined;
|
|
2620
|
+
readonly accept?: string[] | undefined;
|
|
2621
|
+
readonly maxSize?: number | undefined;
|
|
2622
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2623
|
+
readonly inlineTitle?: string | undefined;
|
|
2624
|
+
readonly inlineColumns?: any[] | undefined;
|
|
2625
|
+
readonly inlineAmountField?: string | undefined;
|
|
2626
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2627
|
+
readonly relatedListTitle?: string | undefined;
|
|
2628
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
2629
|
+
readonly displayField?: string | undefined;
|
|
2630
|
+
readonly descriptionField?: string | undefined;
|
|
2631
|
+
readonly lookupColumns?: (string | {
|
|
2632
|
+
field: string;
|
|
2633
|
+
label?: string | undefined;
|
|
2634
|
+
width?: string | undefined;
|
|
2635
|
+
type?: string | undefined;
|
|
2636
|
+
})[] | undefined;
|
|
2637
|
+
readonly lookupPageSize?: number | undefined;
|
|
2638
|
+
readonly dependsOn?: (string | {
|
|
2639
|
+
field: string;
|
|
2640
|
+
param?: string | undefined;
|
|
2641
|
+
})[] | undefined;
|
|
2642
|
+
readonly allowCreate?: boolean | undefined;
|
|
2643
|
+
readonly language?: string | undefined;
|
|
2644
|
+
readonly step?: number | undefined;
|
|
2645
|
+
readonly currencyConfig?: {
|
|
2646
|
+
precision?: number | undefined;
|
|
2647
|
+
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
2648
|
+
defaultCurrency?: string | undefined;
|
|
2649
|
+
} | undefined;
|
|
2650
|
+
readonly dimensions?: number | undefined;
|
|
2651
|
+
readonly trackHistory?: boolean | undefined;
|
|
2652
|
+
readonly group?: string | undefined;
|
|
2653
|
+
readonly requiredWhen?: string | {
|
|
2654
|
+
dialect: "cel" | "cron" | "template";
|
|
2655
|
+
source?: string | undefined;
|
|
2656
|
+
ast?: unknown;
|
|
2657
|
+
meta?: {
|
|
2658
|
+
rationale?: string | undefined;
|
|
2659
|
+
generatedBy?: string | undefined;
|
|
2660
|
+
} | undefined;
|
|
2661
|
+
} | undefined;
|
|
2662
|
+
readonly conditionalRequired?: undefined;
|
|
2663
|
+
readonly hidden?: boolean | undefined;
|
|
2664
|
+
readonly internal?: boolean | undefined;
|
|
2665
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2666
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2667
|
+
readonly system?: boolean | undefined;
|
|
2668
|
+
readonly sortable?: boolean | undefined;
|
|
2669
|
+
readonly inlineHelpText?: string | undefined;
|
|
2670
|
+
readonly externalId?: boolean | undefined;
|
|
2671
|
+
readonly type: "secret";
|
|
2672
|
+
};
|
|
2673
|
+
readonly managed_by: {
|
|
2674
|
+
readonly readonly?: boolean | undefined;
|
|
2675
|
+
readonly format?: string | undefined;
|
|
2676
|
+
options: {
|
|
2677
|
+
label: string;
|
|
2678
|
+
value: string;
|
|
2679
|
+
color?: string | undefined;
|
|
2680
|
+
default?: boolean | undefined;
|
|
2681
|
+
visibleWhen?: string | {
|
|
2682
|
+
dialect: "cel" | "cron" | "template";
|
|
2683
|
+
source?: string | undefined;
|
|
2684
|
+
ast?: unknown;
|
|
2685
|
+
meta?: {
|
|
2686
|
+
rationale?: string | undefined;
|
|
2687
|
+
generatedBy?: string | undefined;
|
|
2688
|
+
} | undefined;
|
|
2689
|
+
} | undefined;
|
|
2690
|
+
}[];
|
|
2691
|
+
readonly description?: string | undefined;
|
|
2692
|
+
readonly label?: string | undefined;
|
|
2693
|
+
readonly name?: string | undefined;
|
|
2694
|
+
readonly precision?: number | undefined;
|
|
2695
|
+
readonly required?: boolean | undefined;
|
|
2696
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2697
|
+
readonly widget?: string | undefined;
|
|
2698
|
+
readonly multiple?: boolean | undefined;
|
|
2699
|
+
readonly storage?: {
|
|
2700
|
+
notNull?: boolean | undefined;
|
|
2701
|
+
} | undefined;
|
|
2702
|
+
readonly visibleWhen?: string | {
|
|
2556
2703
|
dialect: "cel" | "cron" | "template";
|
|
2557
2704
|
source?: string | undefined;
|
|
2558
2705
|
ast?: unknown;
|
|
@@ -2561,6 +2708,46 @@ declare const SysWebhook: Omit<{
|
|
|
2561
2708
|
generatedBy?: string | undefined;
|
|
2562
2709
|
} | undefined;
|
|
2563
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;
|
|
2720
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2721
|
+
readonly _lockReason?: string | undefined;
|
|
2722
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2723
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2724
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2725
|
+
readonly _packageId?: string | undefined;
|
|
2726
|
+
readonly _packageVersion?: string | undefined;
|
|
2727
|
+
readonly lookupFilters?: {
|
|
2728
|
+
field: string;
|
|
2729
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2730
|
+
value: any;
|
|
2731
|
+
}[] | undefined;
|
|
2732
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2733
|
+
readonly expression?: string | {
|
|
2734
|
+
dialect: "cel" | "cron" | "template";
|
|
2735
|
+
source?: string | undefined;
|
|
2736
|
+
ast?: unknown;
|
|
2737
|
+
meta?: {
|
|
2738
|
+
rationale?: string | undefined;
|
|
2739
|
+
generatedBy?: string | undefined;
|
|
2740
|
+
} | undefined;
|
|
2741
|
+
} | undefined;
|
|
2742
|
+
readonly autonumberFormat?: string | undefined;
|
|
2743
|
+
readonly summaryOperations?: {
|
|
2744
|
+
object: string;
|
|
2745
|
+
field: string;
|
|
2746
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2747
|
+
relationshipField?: string | undefined;
|
|
2748
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2749
|
+
} | undefined;
|
|
2750
|
+
readonly reference?: string | undefined;
|
|
2564
2751
|
readonly scale?: number | undefined;
|
|
2565
2752
|
readonly searchable?: boolean | undefined;
|
|
2566
2753
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -2569,8 +2756,9 @@ declare const SysWebhook: Omit<{
|
|
|
2569
2756
|
readonly minLength?: number | undefined;
|
|
2570
2757
|
readonly min?: number | undefined;
|
|
2571
2758
|
readonly max?: number | undefined;
|
|
2759
|
+
readonly useGrouping?: boolean | undefined;
|
|
2572
2760
|
readonly accept?: string[] | undefined;
|
|
2573
|
-
readonly
|
|
2761
|
+
readonly maxSize?: number | undefined;
|
|
2574
2762
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2575
2763
|
readonly inlineTitle?: string | undefined;
|
|
2576
2764
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2595,14 +2783,63 @@ declare const SysWebhook: Omit<{
|
|
|
2595
2783
|
readonly language?: string | undefined;
|
|
2596
2784
|
readonly step?: number | undefined;
|
|
2597
2785
|
readonly currencyConfig?: {
|
|
2598
|
-
precision
|
|
2599
|
-
currencyMode
|
|
2600
|
-
defaultCurrency
|
|
2786
|
+
precision?: number | undefined;
|
|
2787
|
+
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
2788
|
+
defaultCurrency?: string | undefined;
|
|
2601
2789
|
} | undefined;
|
|
2602
2790
|
readonly dimensions?: number | undefined;
|
|
2603
2791
|
readonly trackHistory?: boolean | undefined;
|
|
2604
2792
|
readonly group?: string | undefined;
|
|
2605
|
-
readonly
|
|
2793
|
+
readonly requiredWhen?: string | {
|
|
2794
|
+
dialect: "cel" | "cron" | "template";
|
|
2795
|
+
source?: string | undefined;
|
|
2796
|
+
ast?: unknown;
|
|
2797
|
+
meta?: {
|
|
2798
|
+
rationale?: string | undefined;
|
|
2799
|
+
generatedBy?: string | undefined;
|
|
2800
|
+
} | undefined;
|
|
2801
|
+
} | undefined;
|
|
2802
|
+
readonly conditionalRequired?: undefined;
|
|
2803
|
+
readonly hidden?: boolean | undefined;
|
|
2804
|
+
readonly internal?: boolean | undefined;
|
|
2805
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2806
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2807
|
+
readonly system?: boolean | undefined;
|
|
2808
|
+
readonly sortable?: boolean | undefined;
|
|
2809
|
+
readonly inlineHelpText?: string | undefined;
|
|
2810
|
+
readonly externalId?: boolean | undefined;
|
|
2811
|
+
readonly type: "select";
|
|
2812
|
+
};
|
|
2813
|
+
readonly customized: {
|
|
2814
|
+
readonly readonly?: boolean | undefined;
|
|
2815
|
+
readonly format?: string | undefined;
|
|
2816
|
+
readonly options?: {
|
|
2817
|
+
label: string;
|
|
2818
|
+
value: string;
|
|
2819
|
+
color?: string | undefined;
|
|
2820
|
+
default?: boolean | undefined;
|
|
2821
|
+
visibleWhen?: string | {
|
|
2822
|
+
dialect: "cel" | "cron" | "template";
|
|
2823
|
+
source?: string | undefined;
|
|
2824
|
+
ast?: unknown;
|
|
2825
|
+
meta?: {
|
|
2826
|
+
rationale?: string | undefined;
|
|
2827
|
+
generatedBy?: string | undefined;
|
|
2828
|
+
} | undefined;
|
|
2829
|
+
} | undefined;
|
|
2830
|
+
}[] | undefined;
|
|
2831
|
+
readonly description?: string | undefined;
|
|
2832
|
+
readonly label?: string | undefined;
|
|
2833
|
+
readonly name?: string | undefined;
|
|
2834
|
+
readonly precision?: number | undefined;
|
|
2835
|
+
readonly required?: boolean | undefined;
|
|
2836
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2837
|
+
readonly widget?: string | undefined;
|
|
2838
|
+
readonly multiple?: boolean | undefined;
|
|
2839
|
+
readonly storage?: {
|
|
2840
|
+
notNull?: boolean | undefined;
|
|
2841
|
+
} | undefined;
|
|
2842
|
+
readonly visibleWhen?: string | {
|
|
2606
2843
|
dialect: "cel" | "cron" | "template";
|
|
2607
2844
|
source?: string | undefined;
|
|
2608
2845
|
ast?: unknown;
|
|
@@ -2611,7 +2848,89 @@ declare const SysWebhook: Omit<{
|
|
|
2611
2848
|
generatedBy?: string | undefined;
|
|
2612
2849
|
} | undefined;
|
|
2613
2850
|
} | undefined;
|
|
2614
|
-
readonly
|
|
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;
|
|
2860
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2861
|
+
readonly _lockReason?: string | undefined;
|
|
2862
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2863
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2864
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2865
|
+
readonly _packageId?: string | undefined;
|
|
2866
|
+
readonly _packageVersion?: string | undefined;
|
|
2867
|
+
readonly lookupFilters?: {
|
|
2868
|
+
field: string;
|
|
2869
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2870
|
+
value: any;
|
|
2871
|
+
}[] | undefined;
|
|
2872
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2873
|
+
readonly expression?: string | {
|
|
2874
|
+
dialect: "cel" | "cron" | "template";
|
|
2875
|
+
source?: string | undefined;
|
|
2876
|
+
ast?: unknown;
|
|
2877
|
+
meta?: {
|
|
2878
|
+
rationale?: string | undefined;
|
|
2879
|
+
generatedBy?: string | undefined;
|
|
2880
|
+
} | undefined;
|
|
2881
|
+
} | undefined;
|
|
2882
|
+
readonly autonumberFormat?: string | undefined;
|
|
2883
|
+
readonly summaryOperations?: {
|
|
2884
|
+
object: string;
|
|
2885
|
+
field: string;
|
|
2886
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2887
|
+
relationshipField?: string | undefined;
|
|
2888
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2889
|
+
} | undefined;
|
|
2890
|
+
readonly reference?: string | undefined;
|
|
2891
|
+
readonly scale?: number | undefined;
|
|
2892
|
+
readonly searchable?: boolean | undefined;
|
|
2893
|
+
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
2894
|
+
readonly defaultValue?: unknown;
|
|
2895
|
+
readonly maxLength?: number | undefined;
|
|
2896
|
+
readonly minLength?: number | undefined;
|
|
2897
|
+
readonly min?: number | undefined;
|
|
2898
|
+
readonly max?: number | undefined;
|
|
2899
|
+
readonly useGrouping?: boolean | undefined;
|
|
2900
|
+
readonly accept?: string[] | undefined;
|
|
2901
|
+
readonly maxSize?: number | undefined;
|
|
2902
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2903
|
+
readonly inlineTitle?: string | undefined;
|
|
2904
|
+
readonly inlineColumns?: any[] | undefined;
|
|
2905
|
+
readonly inlineAmountField?: string | undefined;
|
|
2906
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2907
|
+
readonly relatedListTitle?: string | undefined;
|
|
2908
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
2909
|
+
readonly displayField?: string | undefined;
|
|
2910
|
+
readonly descriptionField?: string | undefined;
|
|
2911
|
+
readonly lookupColumns?: (string | {
|
|
2912
|
+
field: string;
|
|
2913
|
+
label?: string | undefined;
|
|
2914
|
+
width?: string | undefined;
|
|
2915
|
+
type?: string | undefined;
|
|
2916
|
+
})[] | undefined;
|
|
2917
|
+
readonly lookupPageSize?: number | undefined;
|
|
2918
|
+
readonly dependsOn?: (string | {
|
|
2919
|
+
field: string;
|
|
2920
|
+
param?: string | undefined;
|
|
2921
|
+
})[] | undefined;
|
|
2922
|
+
readonly allowCreate?: boolean | undefined;
|
|
2923
|
+
readonly language?: string | undefined;
|
|
2924
|
+
readonly step?: number | undefined;
|
|
2925
|
+
readonly currencyConfig?: {
|
|
2926
|
+
precision?: number | undefined;
|
|
2927
|
+
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
2928
|
+
defaultCurrency?: string | undefined;
|
|
2929
|
+
} | undefined;
|
|
2930
|
+
readonly dimensions?: number | undefined;
|
|
2931
|
+
readonly trackHistory?: boolean | undefined;
|
|
2932
|
+
readonly group?: string | undefined;
|
|
2933
|
+
readonly requiredWhen?: string | {
|
|
2615
2934
|
dialect: "cel" | "cron" | "template";
|
|
2616
2935
|
source?: string | undefined;
|
|
2617
2936
|
ast?: unknown;
|
|
@@ -2622,6 +2941,7 @@ declare const SysWebhook: Omit<{
|
|
|
2622
2941
|
} | undefined;
|
|
2623
2942
|
readonly conditionalRequired?: undefined;
|
|
2624
2943
|
readonly hidden?: boolean | undefined;
|
|
2944
|
+
readonly internal?: boolean | undefined;
|
|
2625
2945
|
readonly requiredPermissions?: string[] | undefined;
|
|
2626
2946
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2627
2947
|
readonly system?: boolean | undefined;
|
|
@@ -2638,7 +2958,7 @@ declare const SysWebhook: Omit<{
|
|
|
2638
2958
|
value: string;
|
|
2639
2959
|
color?: string | undefined;
|
|
2640
2960
|
default?: boolean | undefined;
|
|
2641
|
-
visibleWhen?: {
|
|
2961
|
+
visibleWhen?: string | {
|
|
2642
2962
|
dialect: "cel" | "cron" | "template";
|
|
2643
2963
|
source?: string | undefined;
|
|
2644
2964
|
ast?: unknown;
|
|
@@ -2659,7 +2979,24 @@ declare const SysWebhook: Omit<{
|
|
|
2659
2979
|
readonly storage?: {
|
|
2660
2980
|
notNull?: boolean | undefined;
|
|
2661
2981
|
} | undefined;
|
|
2662
|
-
readonly
|
|
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;
|
|
2663
3000
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2664
3001
|
readonly _lockReason?: string | undefined;
|
|
2665
3002
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2673,7 +3010,7 @@ declare const SysWebhook: Omit<{
|
|
|
2673
3010
|
value: any;
|
|
2674
3011
|
}[] | undefined;
|
|
2675
3012
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2676
|
-
readonly expression?: {
|
|
3013
|
+
readonly expression?: string | {
|
|
2677
3014
|
dialect: "cel" | "cron" | "template";
|
|
2678
3015
|
source?: string | undefined;
|
|
2679
3016
|
ast?: unknown;
|
|
@@ -2690,15 +3027,7 @@ declare const SysWebhook: Omit<{
|
|
|
2690
3027
|
relationshipField?: string | undefined;
|
|
2691
3028
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2692
3029
|
} | undefined;
|
|
2693
|
-
readonly
|
|
2694
|
-
dialect: "cel" | "cron" | "template";
|
|
2695
|
-
source?: string | undefined;
|
|
2696
|
-
ast?: unknown;
|
|
2697
|
-
meta?: {
|
|
2698
|
-
rationale?: string | undefined;
|
|
2699
|
-
generatedBy?: string | undefined;
|
|
2700
|
-
} | undefined;
|
|
2701
|
-
} | undefined;
|
|
3030
|
+
readonly reference?: string | undefined;
|
|
2702
3031
|
readonly scale?: number | undefined;
|
|
2703
3032
|
readonly searchable?: boolean | undefined;
|
|
2704
3033
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -2707,8 +3036,9 @@ declare const SysWebhook: Omit<{
|
|
|
2707
3036
|
readonly minLength?: number | undefined;
|
|
2708
3037
|
readonly min?: number | undefined;
|
|
2709
3038
|
readonly max?: number | undefined;
|
|
3039
|
+
readonly useGrouping?: boolean | undefined;
|
|
2710
3040
|
readonly accept?: string[] | undefined;
|
|
2711
|
-
readonly
|
|
3041
|
+
readonly maxSize?: number | undefined;
|
|
2712
3042
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2713
3043
|
readonly inlineTitle?: string | undefined;
|
|
2714
3044
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2733,23 +3063,14 @@ declare const SysWebhook: Omit<{
|
|
|
2733
3063
|
readonly language?: string | undefined;
|
|
2734
3064
|
readonly step?: number | undefined;
|
|
2735
3065
|
readonly currencyConfig?: {
|
|
2736
|
-
precision
|
|
2737
|
-
currencyMode
|
|
2738
|
-
defaultCurrency
|
|
3066
|
+
precision?: number | undefined;
|
|
3067
|
+
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
3068
|
+
defaultCurrency?: string | undefined;
|
|
2739
3069
|
} | undefined;
|
|
2740
3070
|
readonly dimensions?: number | undefined;
|
|
2741
3071
|
readonly trackHistory?: boolean | undefined;
|
|
2742
3072
|
readonly group?: string | undefined;
|
|
2743
|
-
readonly
|
|
2744
|
-
dialect: "cel" | "cron" | "template";
|
|
2745
|
-
source?: string | undefined;
|
|
2746
|
-
ast?: unknown;
|
|
2747
|
-
meta?: {
|
|
2748
|
-
rationale?: string | undefined;
|
|
2749
|
-
generatedBy?: string | undefined;
|
|
2750
|
-
} | undefined;
|
|
2751
|
-
} | undefined;
|
|
2752
|
-
readonly requiredWhen?: {
|
|
3073
|
+
readonly requiredWhen?: string | {
|
|
2753
3074
|
dialect: "cel" | "cron" | "template";
|
|
2754
3075
|
source?: string | undefined;
|
|
2755
3076
|
ast?: unknown;
|
|
@@ -2760,6 +3081,7 @@ declare const SysWebhook: Omit<{
|
|
|
2760
3081
|
} | undefined;
|
|
2761
3082
|
readonly conditionalRequired?: undefined;
|
|
2762
3083
|
readonly hidden?: boolean | undefined;
|
|
3084
|
+
readonly internal?: boolean | undefined;
|
|
2763
3085
|
readonly requiredPermissions?: string[] | undefined;
|
|
2764
3086
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2765
3087
|
readonly system?: boolean | undefined;
|
|
@@ -2776,7 +3098,7 @@ declare const SysWebhook: Omit<{
|
|
|
2776
3098
|
value: string;
|
|
2777
3099
|
color?: string | undefined;
|
|
2778
3100
|
default?: boolean | undefined;
|
|
2779
|
-
visibleWhen?: {
|
|
3101
|
+
visibleWhen?: string | {
|
|
2780
3102
|
dialect: "cel" | "cron" | "template";
|
|
2781
3103
|
source?: string | undefined;
|
|
2782
3104
|
ast?: unknown;
|
|
@@ -2797,7 +3119,24 @@ declare const SysWebhook: Omit<{
|
|
|
2797
3119
|
readonly storage?: {
|
|
2798
3120
|
notNull?: boolean | undefined;
|
|
2799
3121
|
} | undefined;
|
|
2800
|
-
readonly
|
|
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;
|
|
2801
3140
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2802
3141
|
readonly _lockReason?: string | undefined;
|
|
2803
3142
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2811,7 +3150,7 @@ declare const SysWebhook: Omit<{
|
|
|
2811
3150
|
value: any;
|
|
2812
3151
|
}[] | undefined;
|
|
2813
3152
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2814
|
-
readonly expression?: {
|
|
3153
|
+
readonly expression?: string | {
|
|
2815
3154
|
dialect: "cel" | "cron" | "template";
|
|
2816
3155
|
source?: string | undefined;
|
|
2817
3156
|
ast?: unknown;
|
|
@@ -2828,15 +3167,7 @@ declare const SysWebhook: Omit<{
|
|
|
2828
3167
|
relationshipField?: string | undefined;
|
|
2829
3168
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2830
3169
|
} | undefined;
|
|
2831
|
-
readonly
|
|
2832
|
-
dialect: "cel" | "cron" | "template";
|
|
2833
|
-
source?: string | undefined;
|
|
2834
|
-
ast?: unknown;
|
|
2835
|
-
meta?: {
|
|
2836
|
-
rationale?: string | undefined;
|
|
2837
|
-
generatedBy?: string | undefined;
|
|
2838
|
-
} | undefined;
|
|
2839
|
-
} | undefined;
|
|
3170
|
+
readonly reference?: string | undefined;
|
|
2840
3171
|
readonly scale?: number | undefined;
|
|
2841
3172
|
readonly searchable?: boolean | undefined;
|
|
2842
3173
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -2845,8 +3176,9 @@ declare const SysWebhook: Omit<{
|
|
|
2845
3176
|
readonly minLength?: number | undefined;
|
|
2846
3177
|
readonly min?: number | undefined;
|
|
2847
3178
|
readonly max?: number | undefined;
|
|
3179
|
+
readonly useGrouping?: boolean | undefined;
|
|
2848
3180
|
readonly accept?: string[] | undefined;
|
|
2849
|
-
readonly
|
|
3181
|
+
readonly maxSize?: number | undefined;
|
|
2850
3182
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2851
3183
|
readonly inlineTitle?: string | undefined;
|
|
2852
3184
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2871,23 +3203,14 @@ declare const SysWebhook: Omit<{
|
|
|
2871
3203
|
readonly language?: string | undefined;
|
|
2872
3204
|
readonly step?: number | undefined;
|
|
2873
3205
|
readonly currencyConfig?: {
|
|
2874
|
-
precision
|
|
2875
|
-
currencyMode
|
|
2876
|
-
defaultCurrency
|
|
3206
|
+
precision?: number | undefined;
|
|
3207
|
+
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
3208
|
+
defaultCurrency?: string | undefined;
|
|
2877
3209
|
} | undefined;
|
|
2878
3210
|
readonly dimensions?: number | undefined;
|
|
2879
3211
|
readonly trackHistory?: boolean | undefined;
|
|
2880
3212
|
readonly group?: string | undefined;
|
|
2881
|
-
readonly
|
|
2882
|
-
dialect: "cel" | "cron" | "template";
|
|
2883
|
-
source?: string | undefined;
|
|
2884
|
-
ast?: unknown;
|
|
2885
|
-
meta?: {
|
|
2886
|
-
rationale?: string | undefined;
|
|
2887
|
-
generatedBy?: string | undefined;
|
|
2888
|
-
} | undefined;
|
|
2889
|
-
} | undefined;
|
|
2890
|
-
readonly requiredWhen?: {
|
|
3213
|
+
readonly requiredWhen?: string | {
|
|
2891
3214
|
dialect: "cel" | "cron" | "template";
|
|
2892
3215
|
source?: string | undefined;
|
|
2893
3216
|
ast?: unknown;
|
|
@@ -2898,6 +3221,7 @@ declare const SysWebhook: Omit<{
|
|
|
2898
3221
|
} | undefined;
|
|
2899
3222
|
readonly conditionalRequired?: undefined;
|
|
2900
3223
|
readonly hidden?: boolean | undefined;
|
|
3224
|
+
readonly internal?: boolean | undefined;
|
|
2901
3225
|
readonly requiredPermissions?: string[] | undefined;
|
|
2902
3226
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2903
3227
|
readonly system?: boolean | undefined;
|
|
@@ -2909,7 +3233,7 @@ declare const SysWebhook: Omit<{
|
|
|
2909
3233
|
};
|
|
2910
3234
|
readonly indexes: [{
|
|
2911
3235
|
readonly fields: ["name"];
|
|
2912
|
-
readonly unique:
|
|
3236
|
+
readonly unique: "organization";
|
|
2913
3237
|
}, {
|
|
2914
3238
|
readonly fields: ["object_name"];
|
|
2915
3239
|
}, {
|