@objectstack/plugin-webhooks 17.0.0-rc.6 → 17.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2019 -0
- package/dist/chunk-DRHJ2M45.cjs +319 -0
- package/dist/chunk-DRHJ2M45.cjs.map +1 -0
- package/dist/chunk-XERWWQKN.js +319 -0
- package/dist/chunk-XERWWQKN.js.map +1 -0
- package/dist/index.cjs +803 -90
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +457 -1
- package/dist/index.d.ts +457 -1
- package/dist/index.js +742 -29
- package/dist/index.js.map +1 -1
- package/dist/schema.cjs +2 -2
- package/dist/schema.cjs.map +1 -1
- package/dist/schema.d.cts +1733 -405
- package/dist/schema.d.ts +1733 -405
- package/dist/schema.js +1 -1
- package/dist/{translations-2VGD4XRF.js → translations-IAKF6NAP.js} +41 -9
- package/dist/translations-IAKF6NAP.js.map +1 -0
- package/dist/{translations-BWS57U2V.cjs → translations-IHRALWSP.cjs} +41 -9
- package/dist/translations-IHRALWSP.cjs.map +1 -0
- package/package.json +8 -6
- package/dist/chunk-3QGZLM3T.js +0 -186
- package/dist/chunk-3QGZLM3T.js.map +0 -1
- package/dist/chunk-JQUVS5KK.cjs +0 -186
- 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
|
@@ -37,7 +37,7 @@ import * as _objectstack_spec_data from '@objectstack/spec/data';
|
|
|
37
37
|
declare const SysWebhook: Omit<{
|
|
38
38
|
name: string;
|
|
39
39
|
fields: Record<string, {
|
|
40
|
-
type: "number" | "boolean" | "email" | "currency" | "code" | "date" | "record" | "file" | "
|
|
40
|
+
type: "number" | "boolean" | "secret" | "email" | "currency" | "code" | "date" | "record" | "file" | "user" | "datetime" | "signature" | "url" | "time" | "formula" | "text" | "textarea" | "phone" | "password" | "markdown" | "html" | "richtext" | "percent" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "progress" | "tags" | "vector";
|
|
41
41
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
42
42
|
_lockReason?: string | undefined;
|
|
43
43
|
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -63,6 +63,7 @@ declare const SysWebhook: Omit<{
|
|
|
63
63
|
scale?: number | undefined;
|
|
64
64
|
min?: number | undefined;
|
|
65
65
|
max?: number | undefined;
|
|
66
|
+
useGrouping?: boolean | undefined;
|
|
66
67
|
accept?: string[] | undefined;
|
|
67
68
|
maxSize?: number | undefined;
|
|
68
69
|
options?: {
|
|
@@ -84,11 +85,52 @@ declare const SysWebhook: Omit<{
|
|
|
84
85
|
deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
85
86
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
86
87
|
inlineTitle?: string | undefined;
|
|
87
|
-
inlineColumns?:
|
|
88
|
+
inlineColumns?: {
|
|
89
|
+
name: string;
|
|
90
|
+
label?: string | undefined;
|
|
91
|
+
type?: "number" | "currency" | "date" | "file" | "datetime" | "time" | "text" | "select" | "lookup" | undefined;
|
|
92
|
+
width?: number | undefined;
|
|
93
|
+
required?: boolean | undefined;
|
|
94
|
+
options?: {
|
|
95
|
+
label: string;
|
|
96
|
+
value: string;
|
|
97
|
+
}[] | undefined;
|
|
98
|
+
prefix?: string | undefined;
|
|
99
|
+
step?: number | undefined;
|
|
100
|
+
reference?: string | undefined;
|
|
101
|
+
displayField?: string | undefined;
|
|
102
|
+
idField?: string | undefined;
|
|
103
|
+
multiple?: boolean | undefined;
|
|
104
|
+
accept?: string[] | undefined;
|
|
105
|
+
defaultHidden?: boolean | undefined;
|
|
106
|
+
computed?: boolean | undefined;
|
|
107
|
+
expr?: string | undefined;
|
|
108
|
+
scale?: number | undefined;
|
|
109
|
+
autofill?: boolean | undefined;
|
|
110
|
+
readonlyWhen?: string | {
|
|
111
|
+
dialect: "cel" | "cron" | "template";
|
|
112
|
+
source?: string | undefined;
|
|
113
|
+
ast?: unknown;
|
|
114
|
+
meta?: {
|
|
115
|
+
rationale?: string | undefined;
|
|
116
|
+
generatedBy?: string | undefined;
|
|
117
|
+
} | undefined;
|
|
118
|
+
} | undefined;
|
|
119
|
+
requiredWhen?: string | {
|
|
120
|
+
dialect: "cel" | "cron" | "template";
|
|
121
|
+
source?: string | undefined;
|
|
122
|
+
ast?: unknown;
|
|
123
|
+
meta?: {
|
|
124
|
+
rationale?: string | undefined;
|
|
125
|
+
generatedBy?: string | undefined;
|
|
126
|
+
} | undefined;
|
|
127
|
+
} | undefined;
|
|
128
|
+
}[] | undefined;
|
|
88
129
|
inlineAmountField?: string | undefined;
|
|
89
130
|
relatedList?: boolean | "primary" | undefined;
|
|
90
131
|
relatedListTitle?: string | undefined;
|
|
91
|
-
relatedListColumns?:
|
|
132
|
+
relatedListColumns?: string[] | undefined;
|
|
133
|
+
relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
92
134
|
displayField?: string | undefined;
|
|
93
135
|
descriptionField?: string | undefined;
|
|
94
136
|
lookupColumns?: (string | {
|
|
@@ -165,12 +207,18 @@ declare const SysWebhook: Omit<{
|
|
|
165
207
|
conditionalRequired?: undefined;
|
|
166
208
|
widget?: string | undefined;
|
|
167
209
|
hidden?: boolean | undefined;
|
|
210
|
+
internal?: boolean | undefined;
|
|
168
211
|
readonly?: boolean | undefined;
|
|
169
212
|
requiredPermissions?: string[] | undefined;
|
|
213
|
+
maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
214
|
+
keepHead: number;
|
|
215
|
+
keepTail: number;
|
|
216
|
+
} | undefined;
|
|
170
217
|
ackPlaintextMasking?: boolean | undefined;
|
|
171
218
|
system?: boolean | undefined;
|
|
172
219
|
sortable?: boolean | undefined;
|
|
173
220
|
inlineHelpText?: string | undefined;
|
|
221
|
+
placeholder?: string | undefined;
|
|
174
222
|
autonumberFormat?: string | undefined;
|
|
175
223
|
externalId?: boolean | undefined;
|
|
176
224
|
}>;
|
|
@@ -189,8 +237,48 @@ declare const SysWebhook: Omit<{
|
|
|
189
237
|
managedBy?: "platform" | "config" | "system-data" | "engine-owned" | "append-only" | "better-auth" | undefined;
|
|
190
238
|
ownership?: "none" | "org" | "user" | "business_unit" | undefined;
|
|
191
239
|
userActions?: {
|
|
192
|
-
create?: boolean |
|
|
193
|
-
|
|
240
|
+
create?: boolean | {
|
|
241
|
+
enabled?: boolean | undefined;
|
|
242
|
+
visibleWhen?: string | {
|
|
243
|
+
dialect: "cel" | "cron" | "template";
|
|
244
|
+
source?: string | undefined;
|
|
245
|
+
ast?: unknown;
|
|
246
|
+
meta?: {
|
|
247
|
+
rationale?: string | undefined;
|
|
248
|
+
generatedBy?: string | undefined;
|
|
249
|
+
} | undefined;
|
|
250
|
+
} | undefined;
|
|
251
|
+
disabledWhen?: string | {
|
|
252
|
+
dialect: "cel" | "cron" | "template";
|
|
253
|
+
source?: string | undefined;
|
|
254
|
+
ast?: unknown;
|
|
255
|
+
meta?: {
|
|
256
|
+
rationale?: string | undefined;
|
|
257
|
+
generatedBy?: string | undefined;
|
|
258
|
+
} | undefined;
|
|
259
|
+
} | undefined;
|
|
260
|
+
} | undefined;
|
|
261
|
+
import?: boolean | {
|
|
262
|
+
enabled?: boolean | undefined;
|
|
263
|
+
visibleWhen?: string | {
|
|
264
|
+
dialect: "cel" | "cron" | "template";
|
|
265
|
+
source?: string | undefined;
|
|
266
|
+
ast?: unknown;
|
|
267
|
+
meta?: {
|
|
268
|
+
rationale?: string | undefined;
|
|
269
|
+
generatedBy?: string | undefined;
|
|
270
|
+
} | undefined;
|
|
271
|
+
} | undefined;
|
|
272
|
+
disabledWhen?: string | {
|
|
273
|
+
dialect: "cel" | "cron" | "template";
|
|
274
|
+
source?: string | undefined;
|
|
275
|
+
ast?: unknown;
|
|
276
|
+
meta?: {
|
|
277
|
+
rationale?: string | undefined;
|
|
278
|
+
generatedBy?: string | undefined;
|
|
279
|
+
} | undefined;
|
|
280
|
+
} | undefined;
|
|
281
|
+
} | undefined;
|
|
194
282
|
edit?: boolean | {
|
|
195
283
|
enabled?: boolean | undefined;
|
|
196
284
|
visibleWhen?: string | {
|
|
@@ -268,6 +356,7 @@ declare const SysWebhook: Omit<{
|
|
|
268
356
|
tenancy?: {
|
|
269
357
|
enabled: boolean;
|
|
270
358
|
tenantField?: string | undefined;
|
|
359
|
+
organizationField?: string | undefined;
|
|
271
360
|
} | undefined;
|
|
272
361
|
access?: {
|
|
273
362
|
default?: "public" | "private" | undefined;
|
|
@@ -326,9 +415,12 @@ declare const SysWebhook: Omit<{
|
|
|
326
415
|
listViews?: Record<string, {
|
|
327
416
|
columns: string[] | {
|
|
328
417
|
field: string;
|
|
329
|
-
label?: string | Record<string, string>
|
|
418
|
+
label?: string | (Record<string, string> & {
|
|
419
|
+
key?: never;
|
|
420
|
+
defaultValue?: never;
|
|
421
|
+
}) | undefined;
|
|
330
422
|
width?: number | undefined;
|
|
331
|
-
align?: "
|
|
423
|
+
align?: "center" | "left" | "right" | undefined;
|
|
332
424
|
hidden?: boolean | undefined;
|
|
333
425
|
sortable?: boolean | undefined;
|
|
334
426
|
resizable?: boolean | undefined;
|
|
@@ -346,6 +438,15 @@ declare const SysWebhook: Omit<{
|
|
|
346
438
|
link?: boolean | undefined;
|
|
347
439
|
action?: string | undefined;
|
|
348
440
|
}[];
|
|
441
|
+
map?: {
|
|
442
|
+
latitudeField?: string | undefined;
|
|
443
|
+
longitudeField?: string | undefined;
|
|
444
|
+
locationField?: string | undefined;
|
|
445
|
+
titleField?: string | undefined;
|
|
446
|
+
descriptionField?: string | undefined;
|
|
447
|
+
zoom?: number | undefined;
|
|
448
|
+
center?: [number, number] | undefined;
|
|
449
|
+
} | undefined;
|
|
349
450
|
type?: "map" | "tree" | "grid" | "gallery" | "kanban" | "calendar" | "timeline" | "gantt" | "chart" | undefined;
|
|
350
451
|
sort?: string | {
|
|
351
452
|
field: string;
|
|
@@ -356,8 +457,14 @@ declare const SysWebhook: Omit<{
|
|
|
356
457
|
operator: unknown;
|
|
357
458
|
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
358
459
|
}[] | undefined;
|
|
359
|
-
description?: string | Record<string, string>
|
|
360
|
-
|
|
460
|
+
description?: string | (Record<string, string> & {
|
|
461
|
+
key?: never;
|
|
462
|
+
defaultValue?: never;
|
|
463
|
+
}) | undefined;
|
|
464
|
+
label?: string | (Record<string, string> & {
|
|
465
|
+
key?: never;
|
|
466
|
+
defaultValue?: never;
|
|
467
|
+
}) | undefined;
|
|
361
468
|
name?: string | undefined;
|
|
362
469
|
tree?: {
|
|
363
470
|
[x: string]: unknown;
|
|
@@ -407,13 +514,19 @@ declare const SysWebhook: Omit<{
|
|
|
407
514
|
lockedBy?: string | undefined;
|
|
408
515
|
} | undefined;
|
|
409
516
|
aria?: {
|
|
410
|
-
ariaLabel?: string | Record<string, string>
|
|
517
|
+
ariaLabel?: string | (Record<string, string> & {
|
|
518
|
+
key?: never;
|
|
519
|
+
defaultValue?: never;
|
|
520
|
+
}) | undefined;
|
|
411
521
|
ariaDescribedBy?: string | undefined;
|
|
412
522
|
role?: string | undefined;
|
|
413
523
|
} | undefined;
|
|
414
524
|
tabs?: {
|
|
415
525
|
name: string;
|
|
416
|
-
label?: string | Record<string, string>
|
|
526
|
+
label?: string | (Record<string, string> & {
|
|
527
|
+
key?: never;
|
|
528
|
+
defaultValue?: never;
|
|
529
|
+
}) | undefined;
|
|
417
530
|
icon?: string | undefined;
|
|
418
531
|
view?: string | undefined;
|
|
419
532
|
filter?: {
|
|
@@ -427,8 +540,14 @@ declare const SysWebhook: Omit<{
|
|
|
427
540
|
visible?: boolean | undefined;
|
|
428
541
|
}[] | undefined;
|
|
429
542
|
emptyState?: {
|
|
430
|
-
title?: string | Record<string, string>
|
|
431
|
-
|
|
543
|
+
title?: string | (Record<string, string> & {
|
|
544
|
+
key?: never;
|
|
545
|
+
defaultValue?: never;
|
|
546
|
+
}) | undefined;
|
|
547
|
+
message?: string | (Record<string, string> & {
|
|
548
|
+
key?: never;
|
|
549
|
+
defaultValue?: never;
|
|
550
|
+
}) | undefined;
|
|
432
551
|
icon?: string | undefined;
|
|
433
552
|
} | undefined;
|
|
434
553
|
userActions?: {
|
|
@@ -450,6 +569,16 @@ declare const SysWebhook: Omit<{
|
|
|
450
569
|
} | undefined;
|
|
451
570
|
responsive?: undefined;
|
|
452
571
|
performance?: undefined;
|
|
572
|
+
striped?: undefined;
|
|
573
|
+
bordered?: undefined;
|
|
574
|
+
virtualScroll?: undefined;
|
|
575
|
+
exportOptions?: ("json" | "xlsx" | "csv")[] | {
|
|
576
|
+
formats?: ("json" | "xlsx" | "csv")[] | undefined;
|
|
577
|
+
maxRecords?: number | undefined;
|
|
578
|
+
includeHeaders?: boolean | undefined;
|
|
579
|
+
fileNamePrefix?: string | undefined;
|
|
580
|
+
streaming?: boolean | undefined;
|
|
581
|
+
} | undefined;
|
|
453
582
|
appearance?: {
|
|
454
583
|
showDescription?: boolean | undefined;
|
|
455
584
|
allowedVisualizations?: ("map" | "tree" | "grid" | "gallery" | "kanban" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
@@ -504,6 +633,7 @@ declare const SysWebhook: Omit<{
|
|
|
504
633
|
})[] | undefined;
|
|
505
634
|
}[] | undefined;
|
|
506
635
|
autoZoomToFilter?: boolean | undefined;
|
|
636
|
+
viewMode?: "year" | "month" | "day" | "week" | "quarter" | undefined;
|
|
507
637
|
} | undefined;
|
|
508
638
|
chart?: {
|
|
509
639
|
dataset: string;
|
|
@@ -514,8 +644,6 @@ declare const SysWebhook: Omit<{
|
|
|
514
644
|
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
515
645
|
searchableFields?: string[] | undefined;
|
|
516
646
|
filterableFields?: string[] | undefined;
|
|
517
|
-
striped?: boolean | undefined;
|
|
518
|
-
bordered?: boolean | undefined;
|
|
519
647
|
compactToolbar?: boolean | undefined;
|
|
520
648
|
selection?: {
|
|
521
649
|
type?: "none" | "multiple" | "single" | undefined;
|
|
@@ -550,7 +678,7 @@ declare const SysWebhook: Omit<{
|
|
|
550
678
|
params?: {
|
|
551
679
|
[x: string]: unknown;
|
|
552
680
|
name: string;
|
|
553
|
-
type: "number" | "boolean" | "email" | "currency" | "code" | "date" | "record" | "file" | "
|
|
681
|
+
type: "number" | "boolean" | "secret" | "email" | "currency" | "code" | "date" | "record" | "file" | "user" | "datetime" | "signature" | "url" | "time" | "formula" | "text" | "textarea" | "phone" | "password" | "markdown" | "html" | "richtext" | "percent" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "progress" | "tags" | "vector";
|
|
554
682
|
label?: string | undefined;
|
|
555
683
|
help?: string | undefined;
|
|
556
684
|
required?: boolean | undefined;
|
|
@@ -580,7 +708,6 @@ declare const SysWebhook: Omit<{
|
|
|
580
708
|
maxRecords?: number | undefined;
|
|
581
709
|
batchSize?: number | undefined;
|
|
582
710
|
}[] | undefined;
|
|
583
|
-
virtualScroll?: boolean | undefined;
|
|
584
711
|
conditionalFormatting?: {
|
|
585
712
|
condition: string | {
|
|
586
713
|
dialect: "cel" | "cron" | "template";
|
|
@@ -593,7 +720,6 @@ declare const SysWebhook: Omit<{
|
|
|
593
720
|
};
|
|
594
721
|
style: Record<string, string>;
|
|
595
722
|
}[] | undefined;
|
|
596
|
-
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
597
723
|
addRecord?: {
|
|
598
724
|
enabled?: boolean | undefined;
|
|
599
725
|
position?: "top" | "bottom" | "both" | undefined;
|
|
@@ -606,11 +732,17 @@ declare const SysWebhook: Omit<{
|
|
|
606
732
|
element?: "toggle" | "dropdown" | undefined;
|
|
607
733
|
fields?: {
|
|
608
734
|
field: string;
|
|
609
|
-
label?: string | Record<string, string>
|
|
735
|
+
label?: string | (Record<string, string> & {
|
|
736
|
+
key?: never;
|
|
737
|
+
defaultValue?: never;
|
|
738
|
+
}) | undefined;
|
|
610
739
|
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
611
740
|
options?: {
|
|
612
741
|
value: string | number | boolean;
|
|
613
|
-
label: string | Record<string, string
|
|
742
|
+
label: string | (Record<string, string> & {
|
|
743
|
+
key?: never;
|
|
744
|
+
defaultValue?: never;
|
|
745
|
+
});
|
|
614
746
|
color?: string | undefined;
|
|
615
747
|
}[] | undefined;
|
|
616
748
|
showCount?: boolean | undefined;
|
|
@@ -641,7 +773,10 @@ declare const SysWebhook: Omit<{
|
|
|
641
773
|
} | undefined;
|
|
642
774
|
actions?: {
|
|
643
775
|
name: string;
|
|
644
|
-
label: string | Record<string, string
|
|
776
|
+
label: string | (Record<string, string> & {
|
|
777
|
+
key?: never;
|
|
778
|
+
defaultValue?: never;
|
|
779
|
+
});
|
|
645
780
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
646
781
|
_lockReason?: string | undefined;
|
|
647
782
|
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -649,12 +784,15 @@ declare const SysWebhook: Omit<{
|
|
|
649
784
|
_packageId?: string | undefined;
|
|
650
785
|
_packageVersion?: string | undefined;
|
|
651
786
|
_lockDocsUrl?: string | undefined;
|
|
652
|
-
description?: string | Record<string, string>
|
|
787
|
+
description?: string | (Record<string, string> & {
|
|
788
|
+
key?: never;
|
|
789
|
+
defaultValue?: never;
|
|
790
|
+
}) | undefined;
|
|
653
791
|
objectName?: string | undefined;
|
|
654
792
|
icon?: string | undefined;
|
|
655
793
|
locations?: ("record_header" | "list_toolbar" | "list_item" | "record_more" | "record_related" | "record_section")[] | undefined;
|
|
656
794
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
657
|
-
type?: "url" | "form" | "api" | "modal" | "
|
|
795
|
+
type?: "url" | "form" | "api" | "modal" | "flow" | "script" | undefined;
|
|
658
796
|
target?: string | undefined;
|
|
659
797
|
openIn?: "self" | "new-tab" | undefined;
|
|
660
798
|
body?: {
|
|
@@ -672,11 +810,17 @@ declare const SysWebhook: Omit<{
|
|
|
672
810
|
name?: string | undefined;
|
|
673
811
|
field?: string | undefined;
|
|
674
812
|
objectOverride?: string | undefined;
|
|
675
|
-
label?: string | Record<string, string>
|
|
676
|
-
|
|
813
|
+
label?: string | (Record<string, string> & {
|
|
814
|
+
key?: never;
|
|
815
|
+
defaultValue?: never;
|
|
816
|
+
}) | undefined;
|
|
817
|
+
type?: "number" | "boolean" | "secret" | "email" | "currency" | "code" | "date" | "record" | "file" | "user" | "datetime" | "signature" | "url" | "time" | "formula" | "text" | "textarea" | "phone" | "password" | "markdown" | "html" | "richtext" | "percent" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "progress" | "tags" | "vector" | undefined;
|
|
677
818
|
required?: boolean | undefined;
|
|
678
819
|
options?: {
|
|
679
|
-
label: string | Record<string, string
|
|
820
|
+
label: string | (Record<string, string> & {
|
|
821
|
+
key?: never;
|
|
822
|
+
defaultValue?: never;
|
|
823
|
+
});
|
|
680
824
|
value: string;
|
|
681
825
|
visibleWhen?: string | {
|
|
682
826
|
dialect: "cel" | "cron" | "template";
|
|
@@ -705,23 +849,44 @@ declare const SysWebhook: Omit<{
|
|
|
705
849
|
generatedBy?: string | undefined;
|
|
706
850
|
} | undefined;
|
|
707
851
|
} | undefined;
|
|
708
|
-
requiresFeature?: "organization" | "twoFactor" | "
|
|
852
|
+
requiresFeature?: "organization" | "twoFactor" | "multiOrgEnabled" | "degradedTenancy" | "oidcProvider" | "sso" | "ssoEnforced" | "deviceAuthorization" | "admin" | "phoneNumber" | "phoneNumberOtp" | undefined;
|
|
709
853
|
}[] | undefined;
|
|
710
854
|
variant?: "primary" | "secondary" | "danger" | "ghost" | "link" | undefined;
|
|
711
855
|
order?: number | undefined;
|
|
712
|
-
confirmText?: string | Record<string, string>
|
|
713
|
-
|
|
714
|
-
|
|
856
|
+
confirmText?: string | (Record<string, string> & {
|
|
857
|
+
key?: never;
|
|
858
|
+
defaultValue?: never;
|
|
859
|
+
}) | undefined;
|
|
860
|
+
successMessage?: string | (Record<string, string> & {
|
|
861
|
+
key?: never;
|
|
862
|
+
defaultValue?: never;
|
|
863
|
+
}) | undefined;
|
|
864
|
+
errorMessage?: string | (Record<string, string> & {
|
|
865
|
+
key?: never;
|
|
866
|
+
defaultValue?: never;
|
|
867
|
+
}) | undefined;
|
|
715
868
|
refreshAfter?: boolean | undefined;
|
|
716
869
|
undoable?: boolean | undefined;
|
|
717
870
|
resultDialog?: {
|
|
718
|
-
title?: string | Record<string, string>
|
|
719
|
-
|
|
720
|
-
|
|
871
|
+
title?: string | (Record<string, string> & {
|
|
872
|
+
key?: never;
|
|
873
|
+
defaultValue?: never;
|
|
874
|
+
}) | undefined;
|
|
875
|
+
description?: string | (Record<string, string> & {
|
|
876
|
+
key?: never;
|
|
877
|
+
defaultValue?: never;
|
|
878
|
+
}) | undefined;
|
|
879
|
+
acknowledge?: string | (Record<string, string> & {
|
|
880
|
+
key?: never;
|
|
881
|
+
defaultValue?: never;
|
|
882
|
+
}) | undefined;
|
|
721
883
|
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
722
884
|
fields?: {
|
|
723
885
|
path: string;
|
|
724
|
-
label?: string | Record<string, string>
|
|
886
|
+
label?: string | (Record<string, string> & {
|
|
887
|
+
key?: never;
|
|
888
|
+
defaultValue?: never;
|
|
889
|
+
}) | undefined;
|
|
725
890
|
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
726
891
|
}[] | undefined;
|
|
727
892
|
} | undefined;
|
|
@@ -734,7 +899,7 @@ declare const SysWebhook: Omit<{
|
|
|
734
899
|
generatedBy?: string | undefined;
|
|
735
900
|
} | undefined;
|
|
736
901
|
} | undefined;
|
|
737
|
-
requiresFeature?: "organization" | "twoFactor" | "
|
|
902
|
+
requiresFeature?: "organization" | "twoFactor" | "multiOrgEnabled" | "degradedTenancy" | "oidcProvider" | "sso" | "ssoEnforced" | "deviceAuthorization" | "admin" | "phoneNumber" | "phoneNumberOtp" | undefined;
|
|
738
903
|
disabled?: string | boolean | {
|
|
739
904
|
dialect: "cel" | "cron" | "template";
|
|
740
905
|
source?: string | undefined;
|
|
@@ -769,8 +934,15 @@ declare const SysWebhook: Omit<{
|
|
|
769
934
|
mode?: "delete" | "create" | "custom" | "edit" | undefined;
|
|
770
935
|
opensInNewTab?: boolean | undefined;
|
|
771
936
|
newTabUrl?: string | undefined;
|
|
937
|
+
onSuccess?: {
|
|
938
|
+
navigate: string;
|
|
939
|
+
openIn?: "self" | "newTab" | undefined;
|
|
940
|
+
} | undefined;
|
|
772
941
|
aria?: {
|
|
773
|
-
ariaLabel?: string | Record<string, string>
|
|
942
|
+
ariaLabel?: string | (Record<string, string> & {
|
|
943
|
+
key?: never;
|
|
944
|
+
defaultValue?: never;
|
|
945
|
+
}) | undefined;
|
|
774
946
|
ariaDescribedBy?: string | undefined;
|
|
775
947
|
role?: string | undefined;
|
|
776
948
|
} | undefined;
|
|
@@ -918,6 +1090,24 @@ declare const SysWebhook: Omit<{
|
|
|
918
1090
|
readonly storage?: {
|
|
919
1091
|
notNull?: boolean | undefined;
|
|
920
1092
|
} | undefined;
|
|
1093
|
+
readonly visibleWhen?: string | {
|
|
1094
|
+
dialect: "cel" | "cron" | "template";
|
|
1095
|
+
source?: string | undefined;
|
|
1096
|
+
ast?: unknown;
|
|
1097
|
+
meta?: {
|
|
1098
|
+
rationale?: string | undefined;
|
|
1099
|
+
generatedBy?: string | undefined;
|
|
1100
|
+
} | undefined;
|
|
1101
|
+
} | undefined;
|
|
1102
|
+
readonly readonlyWhen?: string | {
|
|
1103
|
+
dialect: "cel" | "cron" | "template";
|
|
1104
|
+
source?: string | undefined;
|
|
1105
|
+
ast?: unknown;
|
|
1106
|
+
meta?: {
|
|
1107
|
+
rationale?: string | undefined;
|
|
1108
|
+
generatedBy?: string | undefined;
|
|
1109
|
+
} | undefined;
|
|
1110
|
+
} | undefined;
|
|
921
1111
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
922
1112
|
readonly _lockReason?: string | undefined;
|
|
923
1113
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -949,7 +1139,11 @@ declare const SysWebhook: Omit<{
|
|
|
949
1139
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
950
1140
|
} | undefined;
|
|
951
1141
|
readonly reference?: string | undefined;
|
|
952
|
-
readonly
|
|
1142
|
+
readonly scale?: number | undefined;
|
|
1143
|
+
readonly step?: number | undefined;
|
|
1144
|
+
readonly displayField?: string | undefined;
|
|
1145
|
+
readonly accept?: string[] | undefined;
|
|
1146
|
+
readonly requiredWhen?: string | {
|
|
953
1147
|
dialect: "cel" | "cron" | "template";
|
|
954
1148
|
source?: string | undefined;
|
|
955
1149
|
ast?: unknown;
|
|
@@ -958,7 +1152,7 @@ declare const SysWebhook: Omit<{
|
|
|
958
1152
|
generatedBy?: string | undefined;
|
|
959
1153
|
} | undefined;
|
|
960
1154
|
} | undefined;
|
|
961
|
-
readonly
|
|
1155
|
+
readonly hidden?: boolean | undefined;
|
|
962
1156
|
readonly searchable?: boolean | undefined;
|
|
963
1157
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
964
1158
|
readonly defaultValue?: unknown;
|
|
@@ -966,16 +1160,56 @@ declare const SysWebhook: Omit<{
|
|
|
966
1160
|
readonly minLength?: number | undefined;
|
|
967
1161
|
readonly min?: number | undefined;
|
|
968
1162
|
readonly max?: number | undefined;
|
|
969
|
-
readonly
|
|
1163
|
+
readonly useGrouping?: boolean | undefined;
|
|
970
1164
|
readonly maxSize?: number | undefined;
|
|
971
1165
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
972
1166
|
readonly inlineTitle?: string | undefined;
|
|
973
|
-
readonly inlineColumns?:
|
|
1167
|
+
readonly inlineColumns?: {
|
|
1168
|
+
name: string;
|
|
1169
|
+
label?: string | undefined;
|
|
1170
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
1171
|
+
width?: number | undefined;
|
|
1172
|
+
required?: boolean | undefined;
|
|
1173
|
+
options?: {
|
|
1174
|
+
label: string;
|
|
1175
|
+
value: string;
|
|
1176
|
+
}[] | undefined;
|
|
1177
|
+
prefix?: string | undefined;
|
|
1178
|
+
step?: number | undefined;
|
|
1179
|
+
reference?: string | undefined;
|
|
1180
|
+
displayField?: string | undefined;
|
|
1181
|
+
idField?: string | undefined;
|
|
1182
|
+
multiple?: boolean | undefined;
|
|
1183
|
+
accept?: string[] | undefined;
|
|
1184
|
+
defaultHidden?: boolean | undefined;
|
|
1185
|
+
computed?: boolean | undefined;
|
|
1186
|
+
expr?: string | undefined;
|
|
1187
|
+
scale?: number | undefined;
|
|
1188
|
+
autofill?: boolean | undefined;
|
|
1189
|
+
readonlyWhen?: string | {
|
|
1190
|
+
dialect: "cel" | "cron" | "template";
|
|
1191
|
+
source?: string | undefined;
|
|
1192
|
+
ast?: unknown;
|
|
1193
|
+
meta?: {
|
|
1194
|
+
rationale?: string | undefined;
|
|
1195
|
+
generatedBy?: string | undefined;
|
|
1196
|
+
} | undefined;
|
|
1197
|
+
} | undefined;
|
|
1198
|
+
requiredWhen?: string | {
|
|
1199
|
+
dialect: "cel" | "cron" | "template";
|
|
1200
|
+
source?: string | undefined;
|
|
1201
|
+
ast?: unknown;
|
|
1202
|
+
meta?: {
|
|
1203
|
+
rationale?: string | undefined;
|
|
1204
|
+
generatedBy?: string | undefined;
|
|
1205
|
+
} | undefined;
|
|
1206
|
+
} | undefined;
|
|
1207
|
+
}[] | undefined;
|
|
974
1208
|
readonly inlineAmountField?: string | undefined;
|
|
975
1209
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
976
1210
|
readonly relatedListTitle?: string | undefined;
|
|
977
|
-
readonly relatedListColumns?:
|
|
978
|
-
readonly
|
|
1211
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
1212
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
979
1213
|
readonly descriptionField?: string | undefined;
|
|
980
1214
|
readonly lookupColumns?: (string | {
|
|
981
1215
|
field: string;
|
|
@@ -990,7 +1224,6 @@ declare const SysWebhook: Omit<{
|
|
|
990
1224
|
})[] | undefined;
|
|
991
1225
|
readonly allowCreate?: boolean | undefined;
|
|
992
1226
|
readonly language?: string | undefined;
|
|
993
|
-
readonly step?: number | undefined;
|
|
994
1227
|
readonly currencyConfig?: {
|
|
995
1228
|
precision?: number | undefined;
|
|
996
1229
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -999,31 +1232,18 @@ declare const SysWebhook: Omit<{
|
|
|
999
1232
|
readonly dimensions?: number | undefined;
|
|
1000
1233
|
readonly trackHistory?: boolean | undefined;
|
|
1001
1234
|
readonly group?: string | undefined;
|
|
1002
|
-
readonly readonlyWhen?: string | {
|
|
1003
|
-
dialect: "cel" | "cron" | "template";
|
|
1004
|
-
source?: string | undefined;
|
|
1005
|
-
ast?: unknown;
|
|
1006
|
-
meta?: {
|
|
1007
|
-
rationale?: string | undefined;
|
|
1008
|
-
generatedBy?: string | undefined;
|
|
1009
|
-
} | undefined;
|
|
1010
|
-
} | undefined;
|
|
1011
|
-
readonly requiredWhen?: string | {
|
|
1012
|
-
dialect: "cel" | "cron" | "template";
|
|
1013
|
-
source?: string | undefined;
|
|
1014
|
-
ast?: unknown;
|
|
1015
|
-
meta?: {
|
|
1016
|
-
rationale?: string | undefined;
|
|
1017
|
-
generatedBy?: string | undefined;
|
|
1018
|
-
} | undefined;
|
|
1019
|
-
} | undefined;
|
|
1020
1235
|
readonly conditionalRequired?: undefined;
|
|
1021
|
-
readonly
|
|
1236
|
+
readonly internal?: boolean | undefined;
|
|
1022
1237
|
readonly requiredPermissions?: string[] | undefined;
|
|
1238
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
1239
|
+
keepHead: number;
|
|
1240
|
+
keepTail: number;
|
|
1241
|
+
} | undefined;
|
|
1023
1242
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1024
1243
|
readonly system?: boolean | undefined;
|
|
1025
1244
|
readonly sortable?: boolean | undefined;
|
|
1026
1245
|
readonly inlineHelpText?: string | undefined;
|
|
1246
|
+
readonly placeholder?: string | undefined;
|
|
1027
1247
|
readonly externalId?: boolean | undefined;
|
|
1028
1248
|
readonly type: "text";
|
|
1029
1249
|
};
|
|
@@ -1056,6 +1276,24 @@ declare const SysWebhook: Omit<{
|
|
|
1056
1276
|
readonly storage?: {
|
|
1057
1277
|
notNull?: boolean | undefined;
|
|
1058
1278
|
} | undefined;
|
|
1279
|
+
readonly visibleWhen?: string | {
|
|
1280
|
+
dialect: "cel" | "cron" | "template";
|
|
1281
|
+
source?: string | undefined;
|
|
1282
|
+
ast?: unknown;
|
|
1283
|
+
meta?: {
|
|
1284
|
+
rationale?: string | undefined;
|
|
1285
|
+
generatedBy?: string | undefined;
|
|
1286
|
+
} | undefined;
|
|
1287
|
+
} | undefined;
|
|
1288
|
+
readonly readonlyWhen?: string | {
|
|
1289
|
+
dialect: "cel" | "cron" | "template";
|
|
1290
|
+
source?: string | undefined;
|
|
1291
|
+
ast?: unknown;
|
|
1292
|
+
meta?: {
|
|
1293
|
+
rationale?: string | undefined;
|
|
1294
|
+
generatedBy?: string | undefined;
|
|
1295
|
+
} | undefined;
|
|
1296
|
+
} | undefined;
|
|
1059
1297
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1060
1298
|
readonly _lockReason?: string | undefined;
|
|
1061
1299
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1087,7 +1325,11 @@ declare const SysWebhook: Omit<{
|
|
|
1087
1325
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1088
1326
|
} | undefined;
|
|
1089
1327
|
readonly reference?: string | undefined;
|
|
1090
|
-
readonly
|
|
1328
|
+
readonly scale?: number | undefined;
|
|
1329
|
+
readonly step?: number | undefined;
|
|
1330
|
+
readonly displayField?: string | undefined;
|
|
1331
|
+
readonly accept?: string[] | undefined;
|
|
1332
|
+
readonly requiredWhen?: string | {
|
|
1091
1333
|
dialect: "cel" | "cron" | "template";
|
|
1092
1334
|
source?: string | undefined;
|
|
1093
1335
|
ast?: unknown;
|
|
@@ -1096,7 +1338,7 @@ declare const SysWebhook: Omit<{
|
|
|
1096
1338
|
generatedBy?: string | undefined;
|
|
1097
1339
|
} | undefined;
|
|
1098
1340
|
} | undefined;
|
|
1099
|
-
readonly
|
|
1341
|
+
readonly hidden?: boolean | undefined;
|
|
1100
1342
|
readonly searchable?: boolean | undefined;
|
|
1101
1343
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
1102
1344
|
readonly defaultValue?: unknown;
|
|
@@ -1104,16 +1346,56 @@ declare const SysWebhook: Omit<{
|
|
|
1104
1346
|
readonly minLength?: number | undefined;
|
|
1105
1347
|
readonly min?: number | undefined;
|
|
1106
1348
|
readonly max?: number | undefined;
|
|
1107
|
-
readonly
|
|
1349
|
+
readonly useGrouping?: boolean | undefined;
|
|
1108
1350
|
readonly maxSize?: number | undefined;
|
|
1109
1351
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1110
1352
|
readonly inlineTitle?: string | undefined;
|
|
1111
|
-
readonly inlineColumns?:
|
|
1353
|
+
readonly inlineColumns?: {
|
|
1354
|
+
name: string;
|
|
1355
|
+
label?: string | undefined;
|
|
1356
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
1357
|
+
width?: number | undefined;
|
|
1358
|
+
required?: boolean | undefined;
|
|
1359
|
+
options?: {
|
|
1360
|
+
label: string;
|
|
1361
|
+
value: string;
|
|
1362
|
+
}[] | undefined;
|
|
1363
|
+
prefix?: string | undefined;
|
|
1364
|
+
step?: number | undefined;
|
|
1365
|
+
reference?: string | undefined;
|
|
1366
|
+
displayField?: string | undefined;
|
|
1367
|
+
idField?: string | undefined;
|
|
1368
|
+
multiple?: boolean | undefined;
|
|
1369
|
+
accept?: string[] | undefined;
|
|
1370
|
+
defaultHidden?: boolean | undefined;
|
|
1371
|
+
computed?: boolean | undefined;
|
|
1372
|
+
expr?: string | undefined;
|
|
1373
|
+
scale?: number | undefined;
|
|
1374
|
+
autofill?: boolean | undefined;
|
|
1375
|
+
readonlyWhen?: string | {
|
|
1376
|
+
dialect: "cel" | "cron" | "template";
|
|
1377
|
+
source?: string | undefined;
|
|
1378
|
+
ast?: unknown;
|
|
1379
|
+
meta?: {
|
|
1380
|
+
rationale?: string | undefined;
|
|
1381
|
+
generatedBy?: string | undefined;
|
|
1382
|
+
} | undefined;
|
|
1383
|
+
} | undefined;
|
|
1384
|
+
requiredWhen?: string | {
|
|
1385
|
+
dialect: "cel" | "cron" | "template";
|
|
1386
|
+
source?: string | undefined;
|
|
1387
|
+
ast?: unknown;
|
|
1388
|
+
meta?: {
|
|
1389
|
+
rationale?: string | undefined;
|
|
1390
|
+
generatedBy?: string | undefined;
|
|
1391
|
+
} | undefined;
|
|
1392
|
+
} | undefined;
|
|
1393
|
+
}[] | undefined;
|
|
1112
1394
|
readonly inlineAmountField?: string | undefined;
|
|
1113
1395
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
1114
1396
|
readonly relatedListTitle?: string | undefined;
|
|
1115
|
-
readonly relatedListColumns?:
|
|
1116
|
-
readonly
|
|
1397
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
1398
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1117
1399
|
readonly descriptionField?: string | undefined;
|
|
1118
1400
|
readonly lookupColumns?: (string | {
|
|
1119
1401
|
field: string;
|
|
@@ -1128,7 +1410,6 @@ declare const SysWebhook: Omit<{
|
|
|
1128
1410
|
})[] | undefined;
|
|
1129
1411
|
readonly allowCreate?: boolean | undefined;
|
|
1130
1412
|
readonly language?: string | undefined;
|
|
1131
|
-
readonly step?: number | undefined;
|
|
1132
1413
|
readonly currencyConfig?: {
|
|
1133
1414
|
precision?: number | undefined;
|
|
1134
1415
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -1137,31 +1418,18 @@ declare const SysWebhook: Omit<{
|
|
|
1137
1418
|
readonly dimensions?: number | undefined;
|
|
1138
1419
|
readonly trackHistory?: boolean | undefined;
|
|
1139
1420
|
readonly group?: string | undefined;
|
|
1140
|
-
readonly readonlyWhen?: string | {
|
|
1141
|
-
dialect: "cel" | "cron" | "template";
|
|
1142
|
-
source?: string | undefined;
|
|
1143
|
-
ast?: unknown;
|
|
1144
|
-
meta?: {
|
|
1145
|
-
rationale?: string | undefined;
|
|
1146
|
-
generatedBy?: string | undefined;
|
|
1147
|
-
} | undefined;
|
|
1148
|
-
} | undefined;
|
|
1149
|
-
readonly requiredWhen?: string | {
|
|
1150
|
-
dialect: "cel" | "cron" | "template";
|
|
1151
|
-
source?: string | undefined;
|
|
1152
|
-
ast?: unknown;
|
|
1153
|
-
meta?: {
|
|
1154
|
-
rationale?: string | undefined;
|
|
1155
|
-
generatedBy?: string | undefined;
|
|
1156
|
-
} | undefined;
|
|
1157
|
-
} | undefined;
|
|
1158
1421
|
readonly conditionalRequired?: undefined;
|
|
1159
|
-
readonly
|
|
1422
|
+
readonly internal?: boolean | undefined;
|
|
1160
1423
|
readonly requiredPermissions?: string[] | undefined;
|
|
1424
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
1425
|
+
keepHead: number;
|
|
1426
|
+
keepTail: number;
|
|
1427
|
+
} | undefined;
|
|
1161
1428
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1162
1429
|
readonly system?: boolean | undefined;
|
|
1163
1430
|
readonly sortable?: boolean | undefined;
|
|
1164
1431
|
readonly inlineHelpText?: string | undefined;
|
|
1432
|
+
readonly placeholder?: string | undefined;
|
|
1165
1433
|
readonly externalId?: boolean | undefined;
|
|
1166
1434
|
readonly type: "text";
|
|
1167
1435
|
};
|
|
@@ -1194,6 +1462,24 @@ declare const SysWebhook: Omit<{
|
|
|
1194
1462
|
readonly storage?: {
|
|
1195
1463
|
notNull?: boolean | undefined;
|
|
1196
1464
|
} | undefined;
|
|
1465
|
+
readonly visibleWhen?: string | {
|
|
1466
|
+
dialect: "cel" | "cron" | "template";
|
|
1467
|
+
source?: string | undefined;
|
|
1468
|
+
ast?: unknown;
|
|
1469
|
+
meta?: {
|
|
1470
|
+
rationale?: string | undefined;
|
|
1471
|
+
generatedBy?: string | undefined;
|
|
1472
|
+
} | undefined;
|
|
1473
|
+
} | undefined;
|
|
1474
|
+
readonly readonlyWhen?: string | {
|
|
1475
|
+
dialect: "cel" | "cron" | "template";
|
|
1476
|
+
source?: string | undefined;
|
|
1477
|
+
ast?: unknown;
|
|
1478
|
+
meta?: {
|
|
1479
|
+
rationale?: string | undefined;
|
|
1480
|
+
generatedBy?: string | undefined;
|
|
1481
|
+
} | undefined;
|
|
1482
|
+
} | undefined;
|
|
1197
1483
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1198
1484
|
readonly _lockReason?: string | undefined;
|
|
1199
1485
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1225,7 +1511,11 @@ declare const SysWebhook: Omit<{
|
|
|
1225
1511
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1226
1512
|
} | undefined;
|
|
1227
1513
|
readonly reference?: string | undefined;
|
|
1228
|
-
readonly
|
|
1514
|
+
readonly scale?: number | undefined;
|
|
1515
|
+
readonly step?: number | undefined;
|
|
1516
|
+
readonly displayField?: string | undefined;
|
|
1517
|
+
readonly accept?: string[] | undefined;
|
|
1518
|
+
readonly requiredWhen?: string | {
|
|
1229
1519
|
dialect: "cel" | "cron" | "template";
|
|
1230
1520
|
source?: string | undefined;
|
|
1231
1521
|
ast?: unknown;
|
|
@@ -1234,7 +1524,7 @@ declare const SysWebhook: Omit<{
|
|
|
1234
1524
|
generatedBy?: string | undefined;
|
|
1235
1525
|
} | undefined;
|
|
1236
1526
|
} | undefined;
|
|
1237
|
-
readonly
|
|
1527
|
+
readonly hidden?: boolean | undefined;
|
|
1238
1528
|
readonly searchable?: boolean | undefined;
|
|
1239
1529
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
1240
1530
|
readonly defaultValue?: unknown;
|
|
@@ -1242,21 +1532,61 @@ declare const SysWebhook: Omit<{
|
|
|
1242
1532
|
readonly minLength?: number | undefined;
|
|
1243
1533
|
readonly min?: number | undefined;
|
|
1244
1534
|
readonly max?: number | undefined;
|
|
1245
|
-
readonly
|
|
1535
|
+
readonly useGrouping?: boolean | undefined;
|
|
1246
1536
|
readonly maxSize?: number | undefined;
|
|
1247
1537
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1248
1538
|
readonly inlineTitle?: string | undefined;
|
|
1249
|
-
readonly inlineColumns?:
|
|
1250
|
-
|
|
1251
|
-
readonly relatedList?: boolean | "primary" | undefined;
|
|
1252
|
-
readonly relatedListTitle?: string | undefined;
|
|
1253
|
-
readonly relatedListColumns?: any[] | undefined;
|
|
1254
|
-
readonly displayField?: string | undefined;
|
|
1255
|
-
readonly descriptionField?: string | undefined;
|
|
1256
|
-
readonly lookupColumns?: (string | {
|
|
1257
|
-
field: string;
|
|
1539
|
+
readonly inlineColumns?: {
|
|
1540
|
+
name: string;
|
|
1258
1541
|
label?: string | undefined;
|
|
1259
|
-
|
|
1542
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
1543
|
+
width?: number | undefined;
|
|
1544
|
+
required?: boolean | undefined;
|
|
1545
|
+
options?: {
|
|
1546
|
+
label: string;
|
|
1547
|
+
value: string;
|
|
1548
|
+
}[] | undefined;
|
|
1549
|
+
prefix?: string | undefined;
|
|
1550
|
+
step?: number | undefined;
|
|
1551
|
+
reference?: string | undefined;
|
|
1552
|
+
displayField?: string | undefined;
|
|
1553
|
+
idField?: string | undefined;
|
|
1554
|
+
multiple?: boolean | undefined;
|
|
1555
|
+
accept?: string[] | undefined;
|
|
1556
|
+
defaultHidden?: boolean | undefined;
|
|
1557
|
+
computed?: boolean | undefined;
|
|
1558
|
+
expr?: string | undefined;
|
|
1559
|
+
scale?: number | undefined;
|
|
1560
|
+
autofill?: boolean | undefined;
|
|
1561
|
+
readonlyWhen?: string | {
|
|
1562
|
+
dialect: "cel" | "cron" | "template";
|
|
1563
|
+
source?: string | undefined;
|
|
1564
|
+
ast?: unknown;
|
|
1565
|
+
meta?: {
|
|
1566
|
+
rationale?: string | undefined;
|
|
1567
|
+
generatedBy?: string | undefined;
|
|
1568
|
+
} | undefined;
|
|
1569
|
+
} | undefined;
|
|
1570
|
+
requiredWhen?: string | {
|
|
1571
|
+
dialect: "cel" | "cron" | "template";
|
|
1572
|
+
source?: string | undefined;
|
|
1573
|
+
ast?: unknown;
|
|
1574
|
+
meta?: {
|
|
1575
|
+
rationale?: string | undefined;
|
|
1576
|
+
generatedBy?: string | undefined;
|
|
1577
|
+
} | undefined;
|
|
1578
|
+
} | undefined;
|
|
1579
|
+
}[] | undefined;
|
|
1580
|
+
readonly inlineAmountField?: string | undefined;
|
|
1581
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1582
|
+
readonly relatedListTitle?: string | undefined;
|
|
1583
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
1584
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1585
|
+
readonly descriptionField?: string | undefined;
|
|
1586
|
+
readonly lookupColumns?: (string | {
|
|
1587
|
+
field: string;
|
|
1588
|
+
label?: string | undefined;
|
|
1589
|
+
width?: string | undefined;
|
|
1260
1590
|
type?: string | undefined;
|
|
1261
1591
|
})[] | undefined;
|
|
1262
1592
|
readonly lookupPageSize?: number | undefined;
|
|
@@ -1266,7 +1596,6 @@ declare const SysWebhook: Omit<{
|
|
|
1266
1596
|
})[] | undefined;
|
|
1267
1597
|
readonly allowCreate?: boolean | undefined;
|
|
1268
1598
|
readonly language?: string | undefined;
|
|
1269
|
-
readonly step?: number | undefined;
|
|
1270
1599
|
readonly currencyConfig?: {
|
|
1271
1600
|
precision?: number | undefined;
|
|
1272
1601
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -1275,31 +1604,18 @@ declare const SysWebhook: Omit<{
|
|
|
1275
1604
|
readonly dimensions?: number | undefined;
|
|
1276
1605
|
readonly trackHistory?: boolean | undefined;
|
|
1277
1606
|
readonly group?: string | undefined;
|
|
1278
|
-
readonly readonlyWhen?: string | {
|
|
1279
|
-
dialect: "cel" | "cron" | "template";
|
|
1280
|
-
source?: string | undefined;
|
|
1281
|
-
ast?: unknown;
|
|
1282
|
-
meta?: {
|
|
1283
|
-
rationale?: string | undefined;
|
|
1284
|
-
generatedBy?: string | undefined;
|
|
1285
|
-
} | undefined;
|
|
1286
|
-
} | undefined;
|
|
1287
|
-
readonly requiredWhen?: string | {
|
|
1288
|
-
dialect: "cel" | "cron" | "template";
|
|
1289
|
-
source?: string | undefined;
|
|
1290
|
-
ast?: unknown;
|
|
1291
|
-
meta?: {
|
|
1292
|
-
rationale?: string | undefined;
|
|
1293
|
-
generatedBy?: string | undefined;
|
|
1294
|
-
} | undefined;
|
|
1295
|
-
} | undefined;
|
|
1296
1607
|
readonly conditionalRequired?: undefined;
|
|
1297
|
-
readonly
|
|
1608
|
+
readonly internal?: boolean | undefined;
|
|
1298
1609
|
readonly requiredPermissions?: string[] | undefined;
|
|
1610
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
1611
|
+
keepHead: number;
|
|
1612
|
+
keepTail: number;
|
|
1613
|
+
} | undefined;
|
|
1299
1614
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1300
1615
|
readonly system?: boolean | undefined;
|
|
1301
1616
|
readonly sortable?: boolean | undefined;
|
|
1302
1617
|
readonly inlineHelpText?: string | undefined;
|
|
1618
|
+
readonly placeholder?: string | undefined;
|
|
1303
1619
|
readonly externalId?: boolean | undefined;
|
|
1304
1620
|
readonly type: "text";
|
|
1305
1621
|
};
|
|
@@ -1332,6 +1648,24 @@ declare const SysWebhook: Omit<{
|
|
|
1332
1648
|
readonly storage?: {
|
|
1333
1649
|
notNull?: boolean | undefined;
|
|
1334
1650
|
} | undefined;
|
|
1651
|
+
readonly visibleWhen?: string | {
|
|
1652
|
+
dialect: "cel" | "cron" | "template";
|
|
1653
|
+
source?: string | undefined;
|
|
1654
|
+
ast?: unknown;
|
|
1655
|
+
meta?: {
|
|
1656
|
+
rationale?: string | undefined;
|
|
1657
|
+
generatedBy?: string | undefined;
|
|
1658
|
+
} | undefined;
|
|
1659
|
+
} | undefined;
|
|
1660
|
+
readonly readonlyWhen?: string | {
|
|
1661
|
+
dialect: "cel" | "cron" | "template";
|
|
1662
|
+
source?: string | undefined;
|
|
1663
|
+
ast?: unknown;
|
|
1664
|
+
meta?: {
|
|
1665
|
+
rationale?: string | undefined;
|
|
1666
|
+
generatedBy?: string | undefined;
|
|
1667
|
+
} | undefined;
|
|
1668
|
+
} | undefined;
|
|
1335
1669
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1336
1670
|
readonly _lockReason?: string | undefined;
|
|
1337
1671
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1363,7 +1697,11 @@ declare const SysWebhook: Omit<{
|
|
|
1363
1697
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1364
1698
|
} | undefined;
|
|
1365
1699
|
readonly reference?: string | undefined;
|
|
1366
|
-
readonly
|
|
1700
|
+
readonly scale?: number | undefined;
|
|
1701
|
+
readonly step?: number | undefined;
|
|
1702
|
+
readonly displayField?: string | undefined;
|
|
1703
|
+
readonly accept?: string[] | undefined;
|
|
1704
|
+
readonly requiredWhen?: string | {
|
|
1367
1705
|
dialect: "cel" | "cron" | "template";
|
|
1368
1706
|
source?: string | undefined;
|
|
1369
1707
|
ast?: unknown;
|
|
@@ -1372,7 +1710,7 @@ declare const SysWebhook: Omit<{
|
|
|
1372
1710
|
generatedBy?: string | undefined;
|
|
1373
1711
|
} | undefined;
|
|
1374
1712
|
} | undefined;
|
|
1375
|
-
readonly
|
|
1713
|
+
readonly hidden?: boolean | undefined;
|
|
1376
1714
|
readonly searchable?: boolean | undefined;
|
|
1377
1715
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
1378
1716
|
readonly defaultValue?: unknown;
|
|
@@ -1380,16 +1718,56 @@ declare const SysWebhook: Omit<{
|
|
|
1380
1718
|
readonly minLength?: number | undefined;
|
|
1381
1719
|
readonly min?: number | undefined;
|
|
1382
1720
|
readonly max?: number | undefined;
|
|
1383
|
-
readonly
|
|
1721
|
+
readonly useGrouping?: boolean | undefined;
|
|
1384
1722
|
readonly maxSize?: number | undefined;
|
|
1385
1723
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1386
1724
|
readonly inlineTitle?: string | undefined;
|
|
1387
|
-
readonly inlineColumns?:
|
|
1725
|
+
readonly inlineColumns?: {
|
|
1726
|
+
name: string;
|
|
1727
|
+
label?: string | undefined;
|
|
1728
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
1729
|
+
width?: number | undefined;
|
|
1730
|
+
required?: boolean | undefined;
|
|
1731
|
+
options?: {
|
|
1732
|
+
label: string;
|
|
1733
|
+
value: string;
|
|
1734
|
+
}[] | undefined;
|
|
1735
|
+
prefix?: string | undefined;
|
|
1736
|
+
step?: number | undefined;
|
|
1737
|
+
reference?: string | undefined;
|
|
1738
|
+
displayField?: string | undefined;
|
|
1739
|
+
idField?: string | undefined;
|
|
1740
|
+
multiple?: boolean | undefined;
|
|
1741
|
+
accept?: string[] | undefined;
|
|
1742
|
+
defaultHidden?: boolean | undefined;
|
|
1743
|
+
computed?: boolean | undefined;
|
|
1744
|
+
expr?: string | undefined;
|
|
1745
|
+
scale?: number | undefined;
|
|
1746
|
+
autofill?: boolean | undefined;
|
|
1747
|
+
readonlyWhen?: string | {
|
|
1748
|
+
dialect: "cel" | "cron" | "template";
|
|
1749
|
+
source?: string | undefined;
|
|
1750
|
+
ast?: unknown;
|
|
1751
|
+
meta?: {
|
|
1752
|
+
rationale?: string | undefined;
|
|
1753
|
+
generatedBy?: string | undefined;
|
|
1754
|
+
} | undefined;
|
|
1755
|
+
} | undefined;
|
|
1756
|
+
requiredWhen?: string | {
|
|
1757
|
+
dialect: "cel" | "cron" | "template";
|
|
1758
|
+
source?: string | undefined;
|
|
1759
|
+
ast?: unknown;
|
|
1760
|
+
meta?: {
|
|
1761
|
+
rationale?: string | undefined;
|
|
1762
|
+
generatedBy?: string | undefined;
|
|
1763
|
+
} | undefined;
|
|
1764
|
+
} | undefined;
|
|
1765
|
+
}[] | undefined;
|
|
1388
1766
|
readonly inlineAmountField?: string | undefined;
|
|
1389
1767
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
1390
1768
|
readonly relatedListTitle?: string | undefined;
|
|
1391
|
-
readonly relatedListColumns?:
|
|
1392
|
-
readonly
|
|
1769
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
1770
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1393
1771
|
readonly descriptionField?: string | undefined;
|
|
1394
1772
|
readonly lookupColumns?: (string | {
|
|
1395
1773
|
field: string;
|
|
@@ -1404,7 +1782,6 @@ declare const SysWebhook: Omit<{
|
|
|
1404
1782
|
})[] | undefined;
|
|
1405
1783
|
readonly allowCreate?: boolean | undefined;
|
|
1406
1784
|
readonly language?: string | undefined;
|
|
1407
|
-
readonly step?: number | undefined;
|
|
1408
1785
|
readonly currencyConfig?: {
|
|
1409
1786
|
precision?: number | undefined;
|
|
1410
1787
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -1413,31 +1790,18 @@ declare const SysWebhook: Omit<{
|
|
|
1413
1790
|
readonly dimensions?: number | undefined;
|
|
1414
1791
|
readonly trackHistory?: boolean | undefined;
|
|
1415
1792
|
readonly group?: string | undefined;
|
|
1416
|
-
readonly readonlyWhen?: string | {
|
|
1417
|
-
dialect: "cel" | "cron" | "template";
|
|
1418
|
-
source?: string | undefined;
|
|
1419
|
-
ast?: unknown;
|
|
1420
|
-
meta?: {
|
|
1421
|
-
rationale?: string | undefined;
|
|
1422
|
-
generatedBy?: string | undefined;
|
|
1423
|
-
} | undefined;
|
|
1424
|
-
} | undefined;
|
|
1425
|
-
readonly requiredWhen?: string | {
|
|
1426
|
-
dialect: "cel" | "cron" | "template";
|
|
1427
|
-
source?: string | undefined;
|
|
1428
|
-
ast?: unknown;
|
|
1429
|
-
meta?: {
|
|
1430
|
-
rationale?: string | undefined;
|
|
1431
|
-
generatedBy?: string | undefined;
|
|
1432
|
-
} | undefined;
|
|
1433
|
-
} | undefined;
|
|
1434
1793
|
readonly conditionalRequired?: undefined;
|
|
1435
|
-
readonly
|
|
1794
|
+
readonly internal?: boolean | undefined;
|
|
1436
1795
|
readonly requiredPermissions?: string[] | undefined;
|
|
1796
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
1797
|
+
keepHead: number;
|
|
1798
|
+
keepTail: number;
|
|
1799
|
+
} | undefined;
|
|
1437
1800
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1438
1801
|
readonly system?: boolean | undefined;
|
|
1439
1802
|
readonly sortable?: boolean | undefined;
|
|
1440
1803
|
readonly inlineHelpText?: string | undefined;
|
|
1804
|
+
readonly placeholder?: string | undefined;
|
|
1441
1805
|
readonly externalId?: boolean | undefined;
|
|
1442
1806
|
readonly type: "text";
|
|
1443
1807
|
};
|
|
@@ -1470,6 +1834,24 @@ declare const SysWebhook: Omit<{
|
|
|
1470
1834
|
readonly storage?: {
|
|
1471
1835
|
notNull?: boolean | undefined;
|
|
1472
1836
|
} | undefined;
|
|
1837
|
+
readonly visibleWhen?: string | {
|
|
1838
|
+
dialect: "cel" | "cron" | "template";
|
|
1839
|
+
source?: string | undefined;
|
|
1840
|
+
ast?: unknown;
|
|
1841
|
+
meta?: {
|
|
1842
|
+
rationale?: string | undefined;
|
|
1843
|
+
generatedBy?: string | undefined;
|
|
1844
|
+
} | undefined;
|
|
1845
|
+
} | undefined;
|
|
1846
|
+
readonly readonlyWhen?: string | {
|
|
1847
|
+
dialect: "cel" | "cron" | "template";
|
|
1848
|
+
source?: string | undefined;
|
|
1849
|
+
ast?: unknown;
|
|
1850
|
+
meta?: {
|
|
1851
|
+
rationale?: string | undefined;
|
|
1852
|
+
generatedBy?: string | undefined;
|
|
1853
|
+
} | undefined;
|
|
1854
|
+
} | undefined;
|
|
1473
1855
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1474
1856
|
readonly _lockReason?: string | undefined;
|
|
1475
1857
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1501,7 +1883,11 @@ declare const SysWebhook: Omit<{
|
|
|
1501
1883
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1502
1884
|
} | undefined;
|
|
1503
1885
|
readonly reference?: string | undefined;
|
|
1504
|
-
readonly
|
|
1886
|
+
readonly scale?: number | undefined;
|
|
1887
|
+
readonly step?: number | undefined;
|
|
1888
|
+
readonly displayField?: string | undefined;
|
|
1889
|
+
readonly accept?: string[] | undefined;
|
|
1890
|
+
readonly requiredWhen?: string | {
|
|
1505
1891
|
dialect: "cel" | "cron" | "template";
|
|
1506
1892
|
source?: string | undefined;
|
|
1507
1893
|
ast?: unknown;
|
|
@@ -1510,7 +1896,7 @@ declare const SysWebhook: Omit<{
|
|
|
1510
1896
|
generatedBy?: string | undefined;
|
|
1511
1897
|
} | undefined;
|
|
1512
1898
|
} | undefined;
|
|
1513
|
-
readonly
|
|
1899
|
+
readonly hidden?: boolean | undefined;
|
|
1514
1900
|
readonly searchable?: boolean | undefined;
|
|
1515
1901
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
1516
1902
|
readonly defaultValue?: unknown;
|
|
@@ -1518,16 +1904,56 @@ declare const SysWebhook: Omit<{
|
|
|
1518
1904
|
readonly minLength?: number | undefined;
|
|
1519
1905
|
readonly min?: number | undefined;
|
|
1520
1906
|
readonly max?: number | undefined;
|
|
1521
|
-
readonly
|
|
1907
|
+
readonly useGrouping?: boolean | undefined;
|
|
1522
1908
|
readonly maxSize?: number | undefined;
|
|
1523
1909
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1524
1910
|
readonly inlineTitle?: string | undefined;
|
|
1525
|
-
readonly inlineColumns?:
|
|
1911
|
+
readonly inlineColumns?: {
|
|
1912
|
+
name: string;
|
|
1913
|
+
label?: string | undefined;
|
|
1914
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
1915
|
+
width?: number | undefined;
|
|
1916
|
+
required?: boolean | undefined;
|
|
1917
|
+
options?: {
|
|
1918
|
+
label: string;
|
|
1919
|
+
value: string;
|
|
1920
|
+
}[] | undefined;
|
|
1921
|
+
prefix?: string | undefined;
|
|
1922
|
+
step?: number | undefined;
|
|
1923
|
+
reference?: string | undefined;
|
|
1924
|
+
displayField?: string | undefined;
|
|
1925
|
+
idField?: string | undefined;
|
|
1926
|
+
multiple?: boolean | undefined;
|
|
1927
|
+
accept?: string[] | undefined;
|
|
1928
|
+
defaultHidden?: boolean | undefined;
|
|
1929
|
+
computed?: boolean | undefined;
|
|
1930
|
+
expr?: string | undefined;
|
|
1931
|
+
scale?: number | undefined;
|
|
1932
|
+
autofill?: boolean | undefined;
|
|
1933
|
+
readonlyWhen?: string | {
|
|
1934
|
+
dialect: "cel" | "cron" | "template";
|
|
1935
|
+
source?: string | undefined;
|
|
1936
|
+
ast?: unknown;
|
|
1937
|
+
meta?: {
|
|
1938
|
+
rationale?: string | undefined;
|
|
1939
|
+
generatedBy?: string | undefined;
|
|
1940
|
+
} | undefined;
|
|
1941
|
+
} | undefined;
|
|
1942
|
+
requiredWhen?: string | {
|
|
1943
|
+
dialect: "cel" | "cron" | "template";
|
|
1944
|
+
source?: string | undefined;
|
|
1945
|
+
ast?: unknown;
|
|
1946
|
+
meta?: {
|
|
1947
|
+
rationale?: string | undefined;
|
|
1948
|
+
generatedBy?: string | undefined;
|
|
1949
|
+
} | undefined;
|
|
1950
|
+
} | undefined;
|
|
1951
|
+
}[] | undefined;
|
|
1526
1952
|
readonly inlineAmountField?: string | undefined;
|
|
1527
1953
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
1528
1954
|
readonly relatedListTitle?: string | undefined;
|
|
1529
|
-
readonly relatedListColumns?:
|
|
1530
|
-
readonly
|
|
1955
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
1956
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1531
1957
|
readonly descriptionField?: string | undefined;
|
|
1532
1958
|
readonly lookupColumns?: (string | {
|
|
1533
1959
|
field: string;
|
|
@@ -1542,7 +1968,6 @@ declare const SysWebhook: Omit<{
|
|
|
1542
1968
|
})[] | undefined;
|
|
1543
1969
|
readonly allowCreate?: boolean | undefined;
|
|
1544
1970
|
readonly language?: string | undefined;
|
|
1545
|
-
readonly step?: number | undefined;
|
|
1546
1971
|
readonly currencyConfig?: {
|
|
1547
1972
|
precision?: number | undefined;
|
|
1548
1973
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -1551,31 +1976,18 @@ declare const SysWebhook: Omit<{
|
|
|
1551
1976
|
readonly dimensions?: number | undefined;
|
|
1552
1977
|
readonly trackHistory?: boolean | undefined;
|
|
1553
1978
|
readonly group?: string | undefined;
|
|
1554
|
-
readonly readonlyWhen?: string | {
|
|
1555
|
-
dialect: "cel" | "cron" | "template";
|
|
1556
|
-
source?: string | undefined;
|
|
1557
|
-
ast?: unknown;
|
|
1558
|
-
meta?: {
|
|
1559
|
-
rationale?: string | undefined;
|
|
1560
|
-
generatedBy?: string | undefined;
|
|
1561
|
-
} | undefined;
|
|
1562
|
-
} | undefined;
|
|
1563
|
-
readonly requiredWhen?: string | {
|
|
1564
|
-
dialect: "cel" | "cron" | "template";
|
|
1565
|
-
source?: string | undefined;
|
|
1566
|
-
ast?: unknown;
|
|
1567
|
-
meta?: {
|
|
1568
|
-
rationale?: string | undefined;
|
|
1569
|
-
generatedBy?: string | undefined;
|
|
1570
|
-
} | undefined;
|
|
1571
|
-
} | undefined;
|
|
1572
1979
|
readonly conditionalRequired?: undefined;
|
|
1573
|
-
readonly
|
|
1980
|
+
readonly internal?: boolean | undefined;
|
|
1574
1981
|
readonly requiredPermissions?: string[] | undefined;
|
|
1982
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
1983
|
+
keepHead: number;
|
|
1984
|
+
keepTail: number;
|
|
1985
|
+
} | undefined;
|
|
1575
1986
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1576
1987
|
readonly system?: boolean | undefined;
|
|
1577
1988
|
readonly sortable?: boolean | undefined;
|
|
1578
1989
|
readonly inlineHelpText?: string | undefined;
|
|
1990
|
+
readonly placeholder?: string | undefined;
|
|
1579
1991
|
readonly externalId?: boolean | undefined;
|
|
1580
1992
|
readonly type: "select";
|
|
1581
1993
|
};
|
|
@@ -1608,6 +2020,24 @@ declare const SysWebhook: Omit<{
|
|
|
1608
2020
|
readonly storage?: {
|
|
1609
2021
|
notNull?: boolean | undefined;
|
|
1610
2022
|
} | undefined;
|
|
2023
|
+
readonly visibleWhen?: string | {
|
|
2024
|
+
dialect: "cel" | "cron" | "template";
|
|
2025
|
+
source?: string | undefined;
|
|
2026
|
+
ast?: unknown;
|
|
2027
|
+
meta?: {
|
|
2028
|
+
rationale?: string | undefined;
|
|
2029
|
+
generatedBy?: string | undefined;
|
|
2030
|
+
} | undefined;
|
|
2031
|
+
} | undefined;
|
|
2032
|
+
readonly readonlyWhen?: string | {
|
|
2033
|
+
dialect: "cel" | "cron" | "template";
|
|
2034
|
+
source?: string | undefined;
|
|
2035
|
+
ast?: unknown;
|
|
2036
|
+
meta?: {
|
|
2037
|
+
rationale?: string | undefined;
|
|
2038
|
+
generatedBy?: string | undefined;
|
|
2039
|
+
} | undefined;
|
|
2040
|
+
} | undefined;
|
|
1611
2041
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1612
2042
|
readonly _lockReason?: string | undefined;
|
|
1613
2043
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1639,7 +2069,11 @@ declare const SysWebhook: Omit<{
|
|
|
1639
2069
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1640
2070
|
} | undefined;
|
|
1641
2071
|
readonly reference?: string | undefined;
|
|
1642
|
-
readonly
|
|
2072
|
+
readonly scale?: number | undefined;
|
|
2073
|
+
readonly step?: number | undefined;
|
|
2074
|
+
readonly displayField?: string | undefined;
|
|
2075
|
+
readonly accept?: string[] | undefined;
|
|
2076
|
+
readonly requiredWhen?: string | {
|
|
1643
2077
|
dialect: "cel" | "cron" | "template";
|
|
1644
2078
|
source?: string | undefined;
|
|
1645
2079
|
ast?: unknown;
|
|
@@ -1648,7 +2082,7 @@ declare const SysWebhook: Omit<{
|
|
|
1648
2082
|
generatedBy?: string | undefined;
|
|
1649
2083
|
} | undefined;
|
|
1650
2084
|
} | undefined;
|
|
1651
|
-
readonly
|
|
2085
|
+
readonly hidden?: boolean | undefined;
|
|
1652
2086
|
readonly searchable?: boolean | undefined;
|
|
1653
2087
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
1654
2088
|
readonly defaultValue?: unknown;
|
|
@@ -1656,16 +2090,56 @@ declare const SysWebhook: Omit<{
|
|
|
1656
2090
|
readonly minLength?: number | undefined;
|
|
1657
2091
|
readonly min?: number | undefined;
|
|
1658
2092
|
readonly max?: number | undefined;
|
|
1659
|
-
readonly
|
|
2093
|
+
readonly useGrouping?: boolean | undefined;
|
|
1660
2094
|
readonly maxSize?: number | undefined;
|
|
1661
2095
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1662
2096
|
readonly inlineTitle?: string | undefined;
|
|
1663
|
-
readonly inlineColumns?:
|
|
2097
|
+
readonly inlineColumns?: {
|
|
2098
|
+
name: string;
|
|
2099
|
+
label?: string | undefined;
|
|
2100
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
2101
|
+
width?: number | undefined;
|
|
2102
|
+
required?: boolean | undefined;
|
|
2103
|
+
options?: {
|
|
2104
|
+
label: string;
|
|
2105
|
+
value: string;
|
|
2106
|
+
}[] | undefined;
|
|
2107
|
+
prefix?: string | undefined;
|
|
2108
|
+
step?: number | undefined;
|
|
2109
|
+
reference?: string | undefined;
|
|
2110
|
+
displayField?: string | undefined;
|
|
2111
|
+
idField?: string | undefined;
|
|
2112
|
+
multiple?: boolean | undefined;
|
|
2113
|
+
accept?: string[] | undefined;
|
|
2114
|
+
defaultHidden?: boolean | undefined;
|
|
2115
|
+
computed?: boolean | undefined;
|
|
2116
|
+
expr?: string | undefined;
|
|
2117
|
+
scale?: number | undefined;
|
|
2118
|
+
autofill?: boolean | undefined;
|
|
2119
|
+
readonlyWhen?: string | {
|
|
2120
|
+
dialect: "cel" | "cron" | "template";
|
|
2121
|
+
source?: string | undefined;
|
|
2122
|
+
ast?: unknown;
|
|
2123
|
+
meta?: {
|
|
2124
|
+
rationale?: string | undefined;
|
|
2125
|
+
generatedBy?: string | undefined;
|
|
2126
|
+
} | undefined;
|
|
2127
|
+
} | undefined;
|
|
2128
|
+
requiredWhen?: string | {
|
|
2129
|
+
dialect: "cel" | "cron" | "template";
|
|
2130
|
+
source?: string | undefined;
|
|
2131
|
+
ast?: unknown;
|
|
2132
|
+
meta?: {
|
|
2133
|
+
rationale?: string | undefined;
|
|
2134
|
+
generatedBy?: string | undefined;
|
|
2135
|
+
} | undefined;
|
|
2136
|
+
} | undefined;
|
|
2137
|
+
}[] | undefined;
|
|
1664
2138
|
readonly inlineAmountField?: string | undefined;
|
|
1665
2139
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
1666
2140
|
readonly relatedListTitle?: string | undefined;
|
|
1667
|
-
readonly relatedListColumns?:
|
|
1668
|
-
readonly
|
|
2141
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
2142
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1669
2143
|
readonly descriptionField?: string | undefined;
|
|
1670
2144
|
readonly lookupColumns?: (string | {
|
|
1671
2145
|
field: string;
|
|
@@ -1680,7 +2154,6 @@ declare const SysWebhook: Omit<{
|
|
|
1680
2154
|
})[] | undefined;
|
|
1681
2155
|
readonly allowCreate?: boolean | undefined;
|
|
1682
2156
|
readonly language?: string | undefined;
|
|
1683
|
-
readonly step?: number | undefined;
|
|
1684
2157
|
readonly currencyConfig?: {
|
|
1685
2158
|
precision?: number | undefined;
|
|
1686
2159
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -1689,31 +2162,18 @@ declare const SysWebhook: Omit<{
|
|
|
1689
2162
|
readonly dimensions?: number | undefined;
|
|
1690
2163
|
readonly trackHistory?: boolean | undefined;
|
|
1691
2164
|
readonly group?: string | undefined;
|
|
1692
|
-
readonly readonlyWhen?: string | {
|
|
1693
|
-
dialect: "cel" | "cron" | "template";
|
|
1694
|
-
source?: string | undefined;
|
|
1695
|
-
ast?: unknown;
|
|
1696
|
-
meta?: {
|
|
1697
|
-
rationale?: string | undefined;
|
|
1698
|
-
generatedBy?: string | undefined;
|
|
1699
|
-
} | undefined;
|
|
1700
|
-
} | undefined;
|
|
1701
|
-
readonly requiredWhen?: string | {
|
|
1702
|
-
dialect: "cel" | "cron" | "template";
|
|
1703
|
-
source?: string | undefined;
|
|
1704
|
-
ast?: unknown;
|
|
1705
|
-
meta?: {
|
|
1706
|
-
rationale?: string | undefined;
|
|
1707
|
-
generatedBy?: string | undefined;
|
|
1708
|
-
} | undefined;
|
|
1709
|
-
} | undefined;
|
|
1710
2165
|
readonly conditionalRequired?: undefined;
|
|
1711
|
-
readonly
|
|
2166
|
+
readonly internal?: boolean | undefined;
|
|
1712
2167
|
readonly requiredPermissions?: string[] | undefined;
|
|
2168
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
2169
|
+
keepHead: number;
|
|
2170
|
+
keepTail: number;
|
|
2171
|
+
} | undefined;
|
|
1713
2172
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1714
2173
|
readonly system?: boolean | undefined;
|
|
1715
2174
|
readonly sortable?: boolean | undefined;
|
|
1716
2175
|
readonly inlineHelpText?: string | undefined;
|
|
2176
|
+
readonly placeholder?: string | undefined;
|
|
1717
2177
|
readonly externalId?: boolean | undefined;
|
|
1718
2178
|
readonly type: "text";
|
|
1719
2179
|
};
|
|
@@ -1746,6 +2206,24 @@ declare const SysWebhook: Omit<{
|
|
|
1746
2206
|
readonly storage?: {
|
|
1747
2207
|
notNull?: boolean | undefined;
|
|
1748
2208
|
} | undefined;
|
|
2209
|
+
readonly visibleWhen?: string | {
|
|
2210
|
+
dialect: "cel" | "cron" | "template";
|
|
2211
|
+
source?: string | undefined;
|
|
2212
|
+
ast?: unknown;
|
|
2213
|
+
meta?: {
|
|
2214
|
+
rationale?: string | undefined;
|
|
2215
|
+
generatedBy?: string | undefined;
|
|
2216
|
+
} | undefined;
|
|
2217
|
+
} | undefined;
|
|
2218
|
+
readonly readonlyWhen?: string | {
|
|
2219
|
+
dialect: "cel" | "cron" | "template";
|
|
2220
|
+
source?: string | undefined;
|
|
2221
|
+
ast?: unknown;
|
|
2222
|
+
meta?: {
|
|
2223
|
+
rationale?: string | undefined;
|
|
2224
|
+
generatedBy?: string | undefined;
|
|
2225
|
+
} | undefined;
|
|
2226
|
+
} | undefined;
|
|
1749
2227
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1750
2228
|
readonly _lockReason?: string | undefined;
|
|
1751
2229
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1777,7 +2255,11 @@ declare const SysWebhook: Omit<{
|
|
|
1777
2255
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1778
2256
|
} | undefined;
|
|
1779
2257
|
readonly reference?: string | undefined;
|
|
1780
|
-
readonly
|
|
2258
|
+
readonly scale?: number | undefined;
|
|
2259
|
+
readonly step?: number | undefined;
|
|
2260
|
+
readonly displayField?: string | undefined;
|
|
2261
|
+
readonly accept?: string[] | undefined;
|
|
2262
|
+
readonly requiredWhen?: string | {
|
|
1781
2263
|
dialect: "cel" | "cron" | "template";
|
|
1782
2264
|
source?: string | undefined;
|
|
1783
2265
|
ast?: unknown;
|
|
@@ -1786,7 +2268,7 @@ declare const SysWebhook: Omit<{
|
|
|
1786
2268
|
generatedBy?: string | undefined;
|
|
1787
2269
|
} | undefined;
|
|
1788
2270
|
} | undefined;
|
|
1789
|
-
readonly
|
|
2271
|
+
readonly hidden?: boolean | undefined;
|
|
1790
2272
|
readonly searchable?: boolean | undefined;
|
|
1791
2273
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
1792
2274
|
readonly defaultValue?: unknown;
|
|
@@ -1794,16 +2276,56 @@ declare const SysWebhook: Omit<{
|
|
|
1794
2276
|
readonly minLength?: number | undefined;
|
|
1795
2277
|
readonly min?: number | undefined;
|
|
1796
2278
|
readonly max?: number | undefined;
|
|
1797
|
-
readonly
|
|
2279
|
+
readonly useGrouping?: boolean | undefined;
|
|
1798
2280
|
readonly maxSize?: number | undefined;
|
|
1799
2281
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1800
2282
|
readonly inlineTitle?: string | undefined;
|
|
1801
|
-
readonly inlineColumns?:
|
|
2283
|
+
readonly inlineColumns?: {
|
|
2284
|
+
name: string;
|
|
2285
|
+
label?: string | undefined;
|
|
2286
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
2287
|
+
width?: number | undefined;
|
|
2288
|
+
required?: boolean | undefined;
|
|
2289
|
+
options?: {
|
|
2290
|
+
label: string;
|
|
2291
|
+
value: string;
|
|
2292
|
+
}[] | undefined;
|
|
2293
|
+
prefix?: string | undefined;
|
|
2294
|
+
step?: number | undefined;
|
|
2295
|
+
reference?: string | undefined;
|
|
2296
|
+
displayField?: string | undefined;
|
|
2297
|
+
idField?: string | undefined;
|
|
2298
|
+
multiple?: boolean | undefined;
|
|
2299
|
+
accept?: string[] | undefined;
|
|
2300
|
+
defaultHidden?: boolean | undefined;
|
|
2301
|
+
computed?: boolean | undefined;
|
|
2302
|
+
expr?: string | undefined;
|
|
2303
|
+
scale?: number | undefined;
|
|
2304
|
+
autofill?: boolean | undefined;
|
|
2305
|
+
readonlyWhen?: string | {
|
|
2306
|
+
dialect: "cel" | "cron" | "template";
|
|
2307
|
+
source?: string | undefined;
|
|
2308
|
+
ast?: unknown;
|
|
2309
|
+
meta?: {
|
|
2310
|
+
rationale?: string | undefined;
|
|
2311
|
+
generatedBy?: string | undefined;
|
|
2312
|
+
} | undefined;
|
|
2313
|
+
} | undefined;
|
|
2314
|
+
requiredWhen?: string | {
|
|
2315
|
+
dialect: "cel" | "cron" | "template";
|
|
2316
|
+
source?: string | undefined;
|
|
2317
|
+
ast?: unknown;
|
|
2318
|
+
meta?: {
|
|
2319
|
+
rationale?: string | undefined;
|
|
2320
|
+
generatedBy?: string | undefined;
|
|
2321
|
+
} | undefined;
|
|
2322
|
+
} | undefined;
|
|
2323
|
+
}[] | undefined;
|
|
1802
2324
|
readonly inlineAmountField?: string | undefined;
|
|
1803
2325
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
1804
2326
|
readonly relatedListTitle?: string | undefined;
|
|
1805
|
-
readonly relatedListColumns?:
|
|
1806
|
-
readonly
|
|
2327
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
2328
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1807
2329
|
readonly descriptionField?: string | undefined;
|
|
1808
2330
|
readonly lookupColumns?: (string | {
|
|
1809
2331
|
field: string;
|
|
@@ -1818,7 +2340,6 @@ declare const SysWebhook: Omit<{
|
|
|
1818
2340
|
})[] | undefined;
|
|
1819
2341
|
readonly allowCreate?: boolean | undefined;
|
|
1820
2342
|
readonly language?: string | undefined;
|
|
1821
|
-
readonly step?: number | undefined;
|
|
1822
2343
|
readonly currencyConfig?: {
|
|
1823
2344
|
precision?: number | undefined;
|
|
1824
2345
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -1827,31 +2348,18 @@ declare const SysWebhook: Omit<{
|
|
|
1827
2348
|
readonly dimensions?: number | undefined;
|
|
1828
2349
|
readonly trackHistory?: boolean | undefined;
|
|
1829
2350
|
readonly group?: string | undefined;
|
|
1830
|
-
readonly readonlyWhen?: string | {
|
|
1831
|
-
dialect: "cel" | "cron" | "template";
|
|
1832
|
-
source?: string | undefined;
|
|
1833
|
-
ast?: unknown;
|
|
1834
|
-
meta?: {
|
|
1835
|
-
rationale?: string | undefined;
|
|
1836
|
-
generatedBy?: string | undefined;
|
|
1837
|
-
} | undefined;
|
|
1838
|
-
} | undefined;
|
|
1839
|
-
readonly requiredWhen?: string | {
|
|
1840
|
-
dialect: "cel" | "cron" | "template";
|
|
1841
|
-
source?: string | undefined;
|
|
1842
|
-
ast?: unknown;
|
|
1843
|
-
meta?: {
|
|
1844
|
-
rationale?: string | undefined;
|
|
1845
|
-
generatedBy?: string | undefined;
|
|
1846
|
-
} | undefined;
|
|
1847
|
-
} | undefined;
|
|
1848
2351
|
readonly conditionalRequired?: undefined;
|
|
1849
|
-
readonly
|
|
2352
|
+
readonly internal?: boolean | undefined;
|
|
1850
2353
|
readonly requiredPermissions?: string[] | undefined;
|
|
2354
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
2355
|
+
keepHead: number;
|
|
2356
|
+
keepTail: number;
|
|
2357
|
+
} | undefined;
|
|
1851
2358
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1852
2359
|
readonly system?: boolean | undefined;
|
|
1853
2360
|
readonly sortable?: boolean | undefined;
|
|
1854
2361
|
readonly inlineHelpText?: string | undefined;
|
|
2362
|
+
readonly placeholder?: string | undefined;
|
|
1855
2363
|
readonly externalId?: boolean | undefined;
|
|
1856
2364
|
readonly type: "select";
|
|
1857
2365
|
};
|
|
@@ -1884,6 +2392,24 @@ declare const SysWebhook: Omit<{
|
|
|
1884
2392
|
readonly storage?: {
|
|
1885
2393
|
notNull?: boolean | undefined;
|
|
1886
2394
|
} | undefined;
|
|
2395
|
+
readonly visibleWhen?: string | {
|
|
2396
|
+
dialect: "cel" | "cron" | "template";
|
|
2397
|
+
source?: string | undefined;
|
|
2398
|
+
ast?: unknown;
|
|
2399
|
+
meta?: {
|
|
2400
|
+
rationale?: string | undefined;
|
|
2401
|
+
generatedBy?: string | undefined;
|
|
2402
|
+
} | undefined;
|
|
2403
|
+
} | undefined;
|
|
2404
|
+
readonly readonlyWhen?: string | {
|
|
2405
|
+
dialect: "cel" | "cron" | "template";
|
|
2406
|
+
source?: string | undefined;
|
|
2407
|
+
ast?: unknown;
|
|
2408
|
+
meta?: {
|
|
2409
|
+
rationale?: string | undefined;
|
|
2410
|
+
generatedBy?: string | undefined;
|
|
2411
|
+
} | undefined;
|
|
2412
|
+
} | undefined;
|
|
1887
2413
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1888
2414
|
readonly _lockReason?: string | undefined;
|
|
1889
2415
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1915,7 +2441,11 @@ declare const SysWebhook: Omit<{
|
|
|
1915
2441
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1916
2442
|
} | undefined;
|
|
1917
2443
|
readonly reference?: string | undefined;
|
|
1918
|
-
readonly
|
|
2444
|
+
readonly scale?: number | undefined;
|
|
2445
|
+
readonly step?: number | undefined;
|
|
2446
|
+
readonly displayField?: string | undefined;
|
|
2447
|
+
readonly accept?: string[] | undefined;
|
|
2448
|
+
readonly requiredWhen?: string | {
|
|
1919
2449
|
dialect: "cel" | "cron" | "template";
|
|
1920
2450
|
source?: string | undefined;
|
|
1921
2451
|
ast?: unknown;
|
|
@@ -1924,7 +2454,7 @@ declare const SysWebhook: Omit<{
|
|
|
1924
2454
|
generatedBy?: string | undefined;
|
|
1925
2455
|
} | undefined;
|
|
1926
2456
|
} | undefined;
|
|
1927
|
-
readonly
|
|
2457
|
+
readonly hidden?: boolean | undefined;
|
|
1928
2458
|
readonly searchable?: boolean | undefined;
|
|
1929
2459
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
1930
2460
|
readonly defaultValue?: unknown;
|
|
@@ -1932,16 +2462,56 @@ declare const SysWebhook: Omit<{
|
|
|
1932
2462
|
readonly minLength?: number | undefined;
|
|
1933
2463
|
readonly min?: number | undefined;
|
|
1934
2464
|
readonly max?: number | undefined;
|
|
1935
|
-
readonly
|
|
2465
|
+
readonly useGrouping?: boolean | undefined;
|
|
1936
2466
|
readonly maxSize?: number | undefined;
|
|
1937
2467
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1938
2468
|
readonly inlineTitle?: string | undefined;
|
|
1939
|
-
readonly inlineColumns?:
|
|
2469
|
+
readonly inlineColumns?: {
|
|
2470
|
+
name: string;
|
|
2471
|
+
label?: string | undefined;
|
|
2472
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
2473
|
+
width?: number | undefined;
|
|
2474
|
+
required?: boolean | undefined;
|
|
2475
|
+
options?: {
|
|
2476
|
+
label: string;
|
|
2477
|
+
value: string;
|
|
2478
|
+
}[] | undefined;
|
|
2479
|
+
prefix?: string | undefined;
|
|
2480
|
+
step?: number | undefined;
|
|
2481
|
+
reference?: string | undefined;
|
|
2482
|
+
displayField?: string | undefined;
|
|
2483
|
+
idField?: string | undefined;
|
|
2484
|
+
multiple?: boolean | undefined;
|
|
2485
|
+
accept?: string[] | undefined;
|
|
2486
|
+
defaultHidden?: boolean | undefined;
|
|
2487
|
+
computed?: boolean | undefined;
|
|
2488
|
+
expr?: string | undefined;
|
|
2489
|
+
scale?: number | undefined;
|
|
2490
|
+
autofill?: boolean | undefined;
|
|
2491
|
+
readonlyWhen?: string | {
|
|
2492
|
+
dialect: "cel" | "cron" | "template";
|
|
2493
|
+
source?: string | undefined;
|
|
2494
|
+
ast?: unknown;
|
|
2495
|
+
meta?: {
|
|
2496
|
+
rationale?: string | undefined;
|
|
2497
|
+
generatedBy?: string | undefined;
|
|
2498
|
+
} | undefined;
|
|
2499
|
+
} | undefined;
|
|
2500
|
+
requiredWhen?: string | {
|
|
2501
|
+
dialect: "cel" | "cron" | "template";
|
|
2502
|
+
source?: string | undefined;
|
|
2503
|
+
ast?: unknown;
|
|
2504
|
+
meta?: {
|
|
2505
|
+
rationale?: string | undefined;
|
|
2506
|
+
generatedBy?: string | undefined;
|
|
2507
|
+
} | undefined;
|
|
2508
|
+
} | undefined;
|
|
2509
|
+
}[] | undefined;
|
|
1940
2510
|
readonly inlineAmountField?: string | undefined;
|
|
1941
2511
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
1942
2512
|
readonly relatedListTitle?: string | undefined;
|
|
1943
|
-
readonly relatedListColumns?:
|
|
1944
|
-
readonly
|
|
2513
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
2514
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1945
2515
|
readonly descriptionField?: string | undefined;
|
|
1946
2516
|
readonly lookupColumns?: (string | {
|
|
1947
2517
|
field: string;
|
|
@@ -1956,7 +2526,6 @@ declare const SysWebhook: Omit<{
|
|
|
1956
2526
|
})[] | undefined;
|
|
1957
2527
|
readonly allowCreate?: boolean | undefined;
|
|
1958
2528
|
readonly language?: string | undefined;
|
|
1959
|
-
readonly step?: number | undefined;
|
|
1960
2529
|
readonly currencyConfig?: {
|
|
1961
2530
|
precision?: number | undefined;
|
|
1962
2531
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -1965,31 +2534,18 @@ declare const SysWebhook: Omit<{
|
|
|
1965
2534
|
readonly dimensions?: number | undefined;
|
|
1966
2535
|
readonly trackHistory?: boolean | undefined;
|
|
1967
2536
|
readonly group?: string | undefined;
|
|
1968
|
-
readonly readonlyWhen?: string | {
|
|
1969
|
-
dialect: "cel" | "cron" | "template";
|
|
1970
|
-
source?: string | undefined;
|
|
1971
|
-
ast?: unknown;
|
|
1972
|
-
meta?: {
|
|
1973
|
-
rationale?: string | undefined;
|
|
1974
|
-
generatedBy?: string | undefined;
|
|
1975
|
-
} | undefined;
|
|
1976
|
-
} | undefined;
|
|
1977
|
-
readonly requiredWhen?: string | {
|
|
1978
|
-
dialect: "cel" | "cron" | "template";
|
|
1979
|
-
source?: string | undefined;
|
|
1980
|
-
ast?: unknown;
|
|
1981
|
-
meta?: {
|
|
1982
|
-
rationale?: string | undefined;
|
|
1983
|
-
generatedBy?: string | undefined;
|
|
1984
|
-
} | undefined;
|
|
1985
|
-
} | undefined;
|
|
1986
2537
|
readonly conditionalRequired?: undefined;
|
|
1987
|
-
readonly
|
|
2538
|
+
readonly internal?: boolean | undefined;
|
|
1988
2539
|
readonly requiredPermissions?: string[] | undefined;
|
|
2540
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
2541
|
+
keepHead: number;
|
|
2542
|
+
keepTail: number;
|
|
2543
|
+
} | undefined;
|
|
1989
2544
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1990
2545
|
readonly system?: boolean | undefined;
|
|
1991
2546
|
readonly sortable?: boolean | undefined;
|
|
1992
2547
|
readonly inlineHelpText?: string | undefined;
|
|
2548
|
+
readonly placeholder?: string | undefined;
|
|
1993
2549
|
readonly externalId?: boolean | undefined;
|
|
1994
2550
|
readonly type: "textarea";
|
|
1995
2551
|
};
|
|
@@ -2022,6 +2578,24 @@ declare const SysWebhook: Omit<{
|
|
|
2022
2578
|
readonly storage?: {
|
|
2023
2579
|
notNull?: boolean | undefined;
|
|
2024
2580
|
} | undefined;
|
|
2581
|
+
readonly visibleWhen?: string | {
|
|
2582
|
+
dialect: "cel" | "cron" | "template";
|
|
2583
|
+
source?: string | undefined;
|
|
2584
|
+
ast?: unknown;
|
|
2585
|
+
meta?: {
|
|
2586
|
+
rationale?: string | undefined;
|
|
2587
|
+
generatedBy?: string | undefined;
|
|
2588
|
+
} | undefined;
|
|
2589
|
+
} | undefined;
|
|
2590
|
+
readonly readonlyWhen?: string | {
|
|
2591
|
+
dialect: "cel" | "cron" | "template";
|
|
2592
|
+
source?: string | undefined;
|
|
2593
|
+
ast?: unknown;
|
|
2594
|
+
meta?: {
|
|
2595
|
+
rationale?: string | undefined;
|
|
2596
|
+
generatedBy?: string | undefined;
|
|
2597
|
+
} | undefined;
|
|
2598
|
+
} | undefined;
|
|
2025
2599
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2026
2600
|
readonly _lockReason?: string | undefined;
|
|
2027
2601
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2053,7 +2627,11 @@ declare const SysWebhook: Omit<{
|
|
|
2053
2627
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2054
2628
|
} | undefined;
|
|
2055
2629
|
readonly reference?: string | undefined;
|
|
2056
|
-
readonly
|
|
2630
|
+
readonly scale?: number | undefined;
|
|
2631
|
+
readonly step?: number | undefined;
|
|
2632
|
+
readonly displayField?: string | undefined;
|
|
2633
|
+
readonly accept?: string[] | undefined;
|
|
2634
|
+
readonly requiredWhen?: string | {
|
|
2057
2635
|
dialect: "cel" | "cron" | "template";
|
|
2058
2636
|
source?: string | undefined;
|
|
2059
2637
|
ast?: unknown;
|
|
@@ -2062,7 +2640,7 @@ declare const SysWebhook: Omit<{
|
|
|
2062
2640
|
generatedBy?: string | undefined;
|
|
2063
2641
|
} | undefined;
|
|
2064
2642
|
} | undefined;
|
|
2065
|
-
readonly
|
|
2643
|
+
readonly hidden?: boolean | undefined;
|
|
2066
2644
|
readonly searchable?: boolean | undefined;
|
|
2067
2645
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
2068
2646
|
readonly defaultValue?: unknown;
|
|
@@ -2070,16 +2648,56 @@ declare const SysWebhook: Omit<{
|
|
|
2070
2648
|
readonly minLength?: number | undefined;
|
|
2071
2649
|
readonly min?: number | undefined;
|
|
2072
2650
|
readonly max?: number | undefined;
|
|
2073
|
-
readonly
|
|
2651
|
+
readonly useGrouping?: boolean | undefined;
|
|
2074
2652
|
readonly maxSize?: number | undefined;
|
|
2075
2653
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2076
2654
|
readonly inlineTitle?: string | undefined;
|
|
2077
|
-
readonly inlineColumns?:
|
|
2655
|
+
readonly inlineColumns?: {
|
|
2656
|
+
name: string;
|
|
2657
|
+
label?: string | undefined;
|
|
2658
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
2659
|
+
width?: number | undefined;
|
|
2660
|
+
required?: boolean | undefined;
|
|
2661
|
+
options?: {
|
|
2662
|
+
label: string;
|
|
2663
|
+
value: string;
|
|
2664
|
+
}[] | undefined;
|
|
2665
|
+
prefix?: string | undefined;
|
|
2666
|
+
step?: number | undefined;
|
|
2667
|
+
reference?: string | undefined;
|
|
2668
|
+
displayField?: string | undefined;
|
|
2669
|
+
idField?: string | undefined;
|
|
2670
|
+
multiple?: boolean | undefined;
|
|
2671
|
+
accept?: string[] | undefined;
|
|
2672
|
+
defaultHidden?: boolean | undefined;
|
|
2673
|
+
computed?: boolean | undefined;
|
|
2674
|
+
expr?: string | undefined;
|
|
2675
|
+
scale?: number | undefined;
|
|
2676
|
+
autofill?: boolean | undefined;
|
|
2677
|
+
readonlyWhen?: string | {
|
|
2678
|
+
dialect: "cel" | "cron" | "template";
|
|
2679
|
+
source?: string | undefined;
|
|
2680
|
+
ast?: unknown;
|
|
2681
|
+
meta?: {
|
|
2682
|
+
rationale?: string | undefined;
|
|
2683
|
+
generatedBy?: string | undefined;
|
|
2684
|
+
} | undefined;
|
|
2685
|
+
} | undefined;
|
|
2686
|
+
requiredWhen?: string | {
|
|
2687
|
+
dialect: "cel" | "cron" | "template";
|
|
2688
|
+
source?: string | undefined;
|
|
2689
|
+
ast?: unknown;
|
|
2690
|
+
meta?: {
|
|
2691
|
+
rationale?: string | undefined;
|
|
2692
|
+
generatedBy?: string | undefined;
|
|
2693
|
+
} | undefined;
|
|
2694
|
+
} | undefined;
|
|
2695
|
+
}[] | undefined;
|
|
2078
2696
|
readonly inlineAmountField?: string | undefined;
|
|
2079
2697
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
2080
2698
|
readonly relatedListTitle?: string | undefined;
|
|
2081
|
-
readonly relatedListColumns?:
|
|
2082
|
-
readonly
|
|
2699
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
2700
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2083
2701
|
readonly descriptionField?: string | undefined;
|
|
2084
2702
|
readonly lookupColumns?: (string | {
|
|
2085
2703
|
field: string;
|
|
@@ -2094,7 +2712,6 @@ declare const SysWebhook: Omit<{
|
|
|
2094
2712
|
})[] | undefined;
|
|
2095
2713
|
readonly allowCreate?: boolean | undefined;
|
|
2096
2714
|
readonly language?: string | undefined;
|
|
2097
|
-
readonly step?: number | undefined;
|
|
2098
2715
|
readonly currencyConfig?: {
|
|
2099
2716
|
precision?: number | undefined;
|
|
2100
2717
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -2103,31 +2720,18 @@ declare const SysWebhook: Omit<{
|
|
|
2103
2720
|
readonly dimensions?: number | undefined;
|
|
2104
2721
|
readonly trackHistory?: boolean | undefined;
|
|
2105
2722
|
readonly group?: string | undefined;
|
|
2106
|
-
readonly readonlyWhen?: string | {
|
|
2107
|
-
dialect: "cel" | "cron" | "template";
|
|
2108
|
-
source?: string | undefined;
|
|
2109
|
-
ast?: unknown;
|
|
2110
|
-
meta?: {
|
|
2111
|
-
rationale?: string | undefined;
|
|
2112
|
-
generatedBy?: string | undefined;
|
|
2113
|
-
} | undefined;
|
|
2114
|
-
} | undefined;
|
|
2115
|
-
readonly requiredWhen?: string | {
|
|
2116
|
-
dialect: "cel" | "cron" | "template";
|
|
2117
|
-
source?: string | undefined;
|
|
2118
|
-
ast?: unknown;
|
|
2119
|
-
meta?: {
|
|
2120
|
-
rationale?: string | undefined;
|
|
2121
|
-
generatedBy?: string | undefined;
|
|
2122
|
-
} | undefined;
|
|
2123
|
-
} | undefined;
|
|
2124
2723
|
readonly conditionalRequired?: undefined;
|
|
2125
|
-
readonly
|
|
2724
|
+
readonly internal?: boolean | undefined;
|
|
2126
2725
|
readonly requiredPermissions?: string[] | undefined;
|
|
2726
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
2727
|
+
keepHead: number;
|
|
2728
|
+
keepTail: number;
|
|
2729
|
+
} | undefined;
|
|
2127
2730
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2128
2731
|
readonly system?: boolean | undefined;
|
|
2129
2732
|
readonly sortable?: boolean | undefined;
|
|
2130
2733
|
readonly inlineHelpText?: string | undefined;
|
|
2734
|
+
readonly placeholder?: string | undefined;
|
|
2131
2735
|
readonly externalId?: boolean | undefined;
|
|
2132
2736
|
readonly type: "boolean";
|
|
2133
2737
|
};
|
|
@@ -2160,6 +2764,24 @@ declare const SysWebhook: Omit<{
|
|
|
2160
2764
|
readonly storage?: {
|
|
2161
2765
|
notNull?: boolean | undefined;
|
|
2162
2766
|
} | undefined;
|
|
2767
|
+
readonly visibleWhen?: string | {
|
|
2768
|
+
dialect: "cel" | "cron" | "template";
|
|
2769
|
+
source?: string | undefined;
|
|
2770
|
+
ast?: unknown;
|
|
2771
|
+
meta?: {
|
|
2772
|
+
rationale?: string | undefined;
|
|
2773
|
+
generatedBy?: string | undefined;
|
|
2774
|
+
} | undefined;
|
|
2775
|
+
} | undefined;
|
|
2776
|
+
readonly readonlyWhen?: string | {
|
|
2777
|
+
dialect: "cel" | "cron" | "template";
|
|
2778
|
+
source?: string | undefined;
|
|
2779
|
+
ast?: unknown;
|
|
2780
|
+
meta?: {
|
|
2781
|
+
rationale?: string | undefined;
|
|
2782
|
+
generatedBy?: string | undefined;
|
|
2783
|
+
} | undefined;
|
|
2784
|
+
} | undefined;
|
|
2163
2785
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2164
2786
|
readonly _lockReason?: string | undefined;
|
|
2165
2787
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2191,16 +2813,20 @@ declare const SysWebhook: Omit<{
|
|
|
2191
2813
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2192
2814
|
} | undefined;
|
|
2193
2815
|
readonly reference?: string | undefined;
|
|
2194
|
-
readonly
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2816
|
+
readonly scale?: number | undefined;
|
|
2817
|
+
readonly step?: number | undefined;
|
|
2818
|
+
readonly displayField?: string | undefined;
|
|
2819
|
+
readonly accept?: string[] | undefined;
|
|
2820
|
+
readonly requiredWhen?: string | {
|
|
2821
|
+
dialect: "cel" | "cron" | "template";
|
|
2822
|
+
source?: string | undefined;
|
|
2823
|
+
ast?: unknown;
|
|
2824
|
+
meta?: {
|
|
2199
2825
|
rationale?: string | undefined;
|
|
2200
2826
|
generatedBy?: string | undefined;
|
|
2201
2827
|
} | undefined;
|
|
2202
2828
|
} | undefined;
|
|
2203
|
-
readonly
|
|
2829
|
+
readonly hidden?: boolean | undefined;
|
|
2204
2830
|
readonly searchable?: boolean | undefined;
|
|
2205
2831
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
2206
2832
|
readonly defaultValue?: unknown;
|
|
@@ -2208,16 +2834,56 @@ declare const SysWebhook: Omit<{
|
|
|
2208
2834
|
readonly minLength?: number | undefined;
|
|
2209
2835
|
readonly min?: number | undefined;
|
|
2210
2836
|
readonly max?: number | undefined;
|
|
2211
|
-
readonly
|
|
2837
|
+
readonly useGrouping?: boolean | undefined;
|
|
2212
2838
|
readonly maxSize?: number | undefined;
|
|
2213
2839
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2214
2840
|
readonly inlineTitle?: string | undefined;
|
|
2215
|
-
readonly inlineColumns?:
|
|
2841
|
+
readonly inlineColumns?: {
|
|
2842
|
+
name: string;
|
|
2843
|
+
label?: string | undefined;
|
|
2844
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
2845
|
+
width?: number | undefined;
|
|
2846
|
+
required?: boolean | undefined;
|
|
2847
|
+
options?: {
|
|
2848
|
+
label: string;
|
|
2849
|
+
value: string;
|
|
2850
|
+
}[] | undefined;
|
|
2851
|
+
prefix?: string | undefined;
|
|
2852
|
+
step?: number | undefined;
|
|
2853
|
+
reference?: string | undefined;
|
|
2854
|
+
displayField?: string | undefined;
|
|
2855
|
+
idField?: string | undefined;
|
|
2856
|
+
multiple?: boolean | undefined;
|
|
2857
|
+
accept?: string[] | undefined;
|
|
2858
|
+
defaultHidden?: boolean | undefined;
|
|
2859
|
+
computed?: boolean | undefined;
|
|
2860
|
+
expr?: string | undefined;
|
|
2861
|
+
scale?: number | undefined;
|
|
2862
|
+
autofill?: boolean | undefined;
|
|
2863
|
+
readonlyWhen?: string | {
|
|
2864
|
+
dialect: "cel" | "cron" | "template";
|
|
2865
|
+
source?: string | undefined;
|
|
2866
|
+
ast?: unknown;
|
|
2867
|
+
meta?: {
|
|
2868
|
+
rationale?: string | undefined;
|
|
2869
|
+
generatedBy?: string | undefined;
|
|
2870
|
+
} | undefined;
|
|
2871
|
+
} | undefined;
|
|
2872
|
+
requiredWhen?: string | {
|
|
2873
|
+
dialect: "cel" | "cron" | "template";
|
|
2874
|
+
source?: string | undefined;
|
|
2875
|
+
ast?: unknown;
|
|
2876
|
+
meta?: {
|
|
2877
|
+
rationale?: string | undefined;
|
|
2878
|
+
generatedBy?: string | undefined;
|
|
2879
|
+
} | undefined;
|
|
2880
|
+
} | undefined;
|
|
2881
|
+
}[] | undefined;
|
|
2216
2882
|
readonly inlineAmountField?: string | undefined;
|
|
2217
2883
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
2218
2884
|
readonly relatedListTitle?: string | undefined;
|
|
2219
|
-
readonly relatedListColumns?:
|
|
2220
|
-
readonly
|
|
2885
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
2886
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2221
2887
|
readonly descriptionField?: string | undefined;
|
|
2222
2888
|
readonly lookupColumns?: (string | {
|
|
2223
2889
|
field: string;
|
|
@@ -2232,7 +2898,6 @@ declare const SysWebhook: Omit<{
|
|
|
2232
2898
|
})[] | undefined;
|
|
2233
2899
|
readonly allowCreate?: boolean | undefined;
|
|
2234
2900
|
readonly language?: string | undefined;
|
|
2235
|
-
readonly step?: number | undefined;
|
|
2236
2901
|
readonly currencyConfig?: {
|
|
2237
2902
|
precision?: number | undefined;
|
|
2238
2903
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -2241,6 +2906,89 @@ declare const SysWebhook: Omit<{
|
|
|
2241
2906
|
readonly dimensions?: number | undefined;
|
|
2242
2907
|
readonly trackHistory?: boolean | undefined;
|
|
2243
2908
|
readonly group?: string | undefined;
|
|
2909
|
+
readonly conditionalRequired?: undefined;
|
|
2910
|
+
readonly internal?: boolean | undefined;
|
|
2911
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2912
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
2913
|
+
keepHead: number;
|
|
2914
|
+
keepTail: number;
|
|
2915
|
+
} | undefined;
|
|
2916
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2917
|
+
readonly system?: boolean | undefined;
|
|
2918
|
+
readonly sortable?: boolean | undefined;
|
|
2919
|
+
readonly inlineHelpText?: string | undefined;
|
|
2920
|
+
readonly placeholder?: string | undefined;
|
|
2921
|
+
readonly externalId?: boolean | undefined;
|
|
2922
|
+
readonly type: "textarea";
|
|
2923
|
+
};
|
|
2924
|
+
/**
|
|
2925
|
+
* [#7986] Custom HTTP headers, in the engine's ENCRYPTED credential channel.
|
|
2926
|
+
*
|
|
2927
|
+
* The sibling passenger #7799 left on the blob it emptied. That card was
|
|
2928
|
+
* framed as "the signing secret is in cleartext" and was fixed exactly as
|
|
2929
|
+
* framed — but the COLUMN was the problem, and `headers` is the ordinary
|
|
2930
|
+
* place an `Authorization: Bearer …` goes. `definition_json` is an ordinary
|
|
2931
|
+
* textarea on an admin-authorable object with no restrictive
|
|
2932
|
+
* `enable.apiMethods` at all, so `GET /api/v1/data/sys_webhook` returned the
|
|
2933
|
+
* header map to every persona that can read the object, with none of the
|
|
2934
|
+
* retention bound that eventually ages out `sys_http_delivery`'s copies.
|
|
2935
|
+
*
|
|
2936
|
+
* The WHOLE map moves rather than the credential-looking entries, because
|
|
2937
|
+
* only some entries are credentials and the platform cannot tell which:
|
|
2938
|
+
* guessing from the header name is fail-OPEN on exactly the custom spellings
|
|
2939
|
+
* (`X-Acme-Token`) most likely to be one, and letting the author declare
|
|
2940
|
+
* which are sensitive is a change to the authoring envelope
|
|
2941
|
+
* (`webhook.zod.ts`) that belongs to the spec seat. See
|
|
2942
|
+
* `webhook-headers.ts` for the full comparison.
|
|
2943
|
+
*
|
|
2944
|
+
* Stored as the SERIALIZED map (the encrypted channel carries a string);
|
|
2945
|
+
* the enqueuer recovers and re-parses it server-side through
|
|
2946
|
+
* `engine.resolveSecretField()` when it refreshes its subscription cache,
|
|
2947
|
+
* on the same refresh that recovers the signing secret.
|
|
2948
|
+
*
|
|
2949
|
+
* Fail-closed by construction, the same way `signing_secret` is: with no
|
|
2950
|
+
* CryptoProvider the engine REFUSES the write rather than falling back to
|
|
2951
|
+
* cleartext, and a stored map that cannot be decrypted DROPS the
|
|
2952
|
+
* subscription rather than delivering it with its headers silently missing.
|
|
2953
|
+
*/
|
|
2954
|
+
readonly headers_secret: {
|
|
2955
|
+
readonly readonly?: boolean | undefined;
|
|
2956
|
+
readonly format?: string | undefined;
|
|
2957
|
+
readonly options?: {
|
|
2958
|
+
label: string;
|
|
2959
|
+
value: string;
|
|
2960
|
+
color?: string | undefined;
|
|
2961
|
+
default?: boolean | undefined;
|
|
2962
|
+
visibleWhen?: string | {
|
|
2963
|
+
dialect: "cel" | "cron" | "template";
|
|
2964
|
+
source?: string | undefined;
|
|
2965
|
+
ast?: unknown;
|
|
2966
|
+
meta?: {
|
|
2967
|
+
rationale?: string | undefined;
|
|
2968
|
+
generatedBy?: string | undefined;
|
|
2969
|
+
} | undefined;
|
|
2970
|
+
} | undefined;
|
|
2971
|
+
}[] | undefined;
|
|
2972
|
+
readonly description?: string | undefined;
|
|
2973
|
+
readonly label?: string | undefined;
|
|
2974
|
+
readonly name?: string | undefined;
|
|
2975
|
+
readonly precision?: number | undefined;
|
|
2976
|
+
readonly required?: boolean | undefined;
|
|
2977
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2978
|
+
readonly widget?: string | undefined;
|
|
2979
|
+
readonly multiple?: boolean | undefined;
|
|
2980
|
+
readonly storage?: {
|
|
2981
|
+
notNull?: boolean | undefined;
|
|
2982
|
+
} | undefined;
|
|
2983
|
+
readonly visibleWhen?: string | {
|
|
2984
|
+
dialect: "cel" | "cron" | "template";
|
|
2985
|
+
source?: string | undefined;
|
|
2986
|
+
ast?: unknown;
|
|
2987
|
+
meta?: {
|
|
2988
|
+
rationale?: string | undefined;
|
|
2989
|
+
generatedBy?: string | undefined;
|
|
2990
|
+
} | undefined;
|
|
2991
|
+
} | undefined;
|
|
2244
2992
|
readonly readonlyWhen?: string | {
|
|
2245
2993
|
dialect: "cel" | "cron" | "template";
|
|
2246
2994
|
source?: string | undefined;
|
|
@@ -2250,6 +2998,41 @@ declare const SysWebhook: Omit<{
|
|
|
2250
2998
|
generatedBy?: string | undefined;
|
|
2251
2999
|
} | undefined;
|
|
2252
3000
|
} | undefined;
|
|
3001
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
3002
|
+
readonly _lockReason?: string | undefined;
|
|
3003
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
3004
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
3005
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3006
|
+
readonly _packageId?: string | undefined;
|
|
3007
|
+
readonly _packageVersion?: string | undefined;
|
|
3008
|
+
readonly lookupFilters?: {
|
|
3009
|
+
field: string;
|
|
3010
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
3011
|
+
value: any;
|
|
3012
|
+
}[] | undefined;
|
|
3013
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3014
|
+
readonly expression?: string | {
|
|
3015
|
+
dialect: "cel" | "cron" | "template";
|
|
3016
|
+
source?: string | undefined;
|
|
3017
|
+
ast?: unknown;
|
|
3018
|
+
meta?: {
|
|
3019
|
+
rationale?: string | undefined;
|
|
3020
|
+
generatedBy?: string | undefined;
|
|
3021
|
+
} | undefined;
|
|
3022
|
+
} | undefined;
|
|
3023
|
+
readonly autonumberFormat?: string | undefined;
|
|
3024
|
+
readonly summaryOperations?: {
|
|
3025
|
+
object: string;
|
|
3026
|
+
field: string;
|
|
3027
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3028
|
+
relationshipField?: string | undefined;
|
|
3029
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
3030
|
+
} | undefined;
|
|
3031
|
+
readonly reference?: string | undefined;
|
|
3032
|
+
readonly scale?: number | undefined;
|
|
3033
|
+
readonly step?: number | undefined;
|
|
3034
|
+
readonly displayField?: string | undefined;
|
|
3035
|
+
readonly accept?: string[] | undefined;
|
|
2253
3036
|
readonly requiredWhen?: string | {
|
|
2254
3037
|
dialect: "cel" | "cron" | "template";
|
|
2255
3038
|
source?: string | undefined;
|
|
@@ -2259,15 +3042,309 @@ declare const SysWebhook: Omit<{
|
|
|
2259
3042
|
generatedBy?: string | undefined;
|
|
2260
3043
|
} | undefined;
|
|
2261
3044
|
} | undefined;
|
|
3045
|
+
readonly hidden?: boolean | undefined;
|
|
3046
|
+
readonly searchable?: boolean | undefined;
|
|
3047
|
+
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
3048
|
+
readonly defaultValue?: unknown;
|
|
3049
|
+
readonly maxLength?: number | undefined;
|
|
3050
|
+
readonly minLength?: number | undefined;
|
|
3051
|
+
readonly min?: number | undefined;
|
|
3052
|
+
readonly max?: number | undefined;
|
|
3053
|
+
readonly useGrouping?: boolean | undefined;
|
|
3054
|
+
readonly maxSize?: number | undefined;
|
|
3055
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3056
|
+
readonly inlineTitle?: string | undefined;
|
|
3057
|
+
readonly inlineColumns?: {
|
|
3058
|
+
name: string;
|
|
3059
|
+
label?: string | undefined;
|
|
3060
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
3061
|
+
width?: number | undefined;
|
|
3062
|
+
required?: boolean | undefined;
|
|
3063
|
+
options?: {
|
|
3064
|
+
label: string;
|
|
3065
|
+
value: string;
|
|
3066
|
+
}[] | undefined;
|
|
3067
|
+
prefix?: string | undefined;
|
|
3068
|
+
step?: number | undefined;
|
|
3069
|
+
reference?: string | undefined;
|
|
3070
|
+
displayField?: string | undefined;
|
|
3071
|
+
idField?: string | undefined;
|
|
3072
|
+
multiple?: boolean | undefined;
|
|
3073
|
+
accept?: string[] | undefined;
|
|
3074
|
+
defaultHidden?: boolean | undefined;
|
|
3075
|
+
computed?: boolean | undefined;
|
|
3076
|
+
expr?: string | undefined;
|
|
3077
|
+
scale?: number | undefined;
|
|
3078
|
+
autofill?: boolean | undefined;
|
|
3079
|
+
readonlyWhen?: string | {
|
|
3080
|
+
dialect: "cel" | "cron" | "template";
|
|
3081
|
+
source?: string | undefined;
|
|
3082
|
+
ast?: unknown;
|
|
3083
|
+
meta?: {
|
|
3084
|
+
rationale?: string | undefined;
|
|
3085
|
+
generatedBy?: string | undefined;
|
|
3086
|
+
} | undefined;
|
|
3087
|
+
} | undefined;
|
|
3088
|
+
requiredWhen?: string | {
|
|
3089
|
+
dialect: "cel" | "cron" | "template";
|
|
3090
|
+
source?: string | undefined;
|
|
3091
|
+
ast?: unknown;
|
|
3092
|
+
meta?: {
|
|
3093
|
+
rationale?: string | undefined;
|
|
3094
|
+
generatedBy?: string | undefined;
|
|
3095
|
+
} | undefined;
|
|
3096
|
+
} | undefined;
|
|
3097
|
+
}[] | undefined;
|
|
3098
|
+
readonly inlineAmountField?: string | undefined;
|
|
3099
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3100
|
+
readonly relatedListTitle?: string | undefined;
|
|
3101
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
3102
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
3103
|
+
readonly descriptionField?: string | undefined;
|
|
3104
|
+
readonly lookupColumns?: (string | {
|
|
3105
|
+
field: string;
|
|
3106
|
+
label?: string | undefined;
|
|
3107
|
+
width?: string | undefined;
|
|
3108
|
+
type?: string | undefined;
|
|
3109
|
+
})[] | undefined;
|
|
3110
|
+
readonly lookupPageSize?: number | undefined;
|
|
3111
|
+
readonly dependsOn?: (string | {
|
|
3112
|
+
field: string;
|
|
3113
|
+
param?: string | undefined;
|
|
3114
|
+
})[] | undefined;
|
|
3115
|
+
readonly allowCreate?: boolean | undefined;
|
|
3116
|
+
readonly language?: string | undefined;
|
|
3117
|
+
readonly currencyConfig?: {
|
|
3118
|
+
precision?: number | undefined;
|
|
3119
|
+
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
3120
|
+
defaultCurrency?: string | undefined;
|
|
3121
|
+
} | undefined;
|
|
3122
|
+
readonly dimensions?: number | undefined;
|
|
3123
|
+
readonly trackHistory?: boolean | undefined;
|
|
3124
|
+
readonly group?: string | undefined;
|
|
2262
3125
|
readonly conditionalRequired?: undefined;
|
|
3126
|
+
readonly internal?: boolean | undefined;
|
|
3127
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
3128
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
3129
|
+
keepHead: number;
|
|
3130
|
+
keepTail: number;
|
|
3131
|
+
} | undefined;
|
|
3132
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
3133
|
+
readonly system?: boolean | undefined;
|
|
3134
|
+
readonly sortable?: boolean | undefined;
|
|
3135
|
+
readonly inlineHelpText?: string | undefined;
|
|
3136
|
+
readonly placeholder?: string | undefined;
|
|
3137
|
+
readonly externalId?: boolean | undefined;
|
|
3138
|
+
readonly type: "secret";
|
|
3139
|
+
};
|
|
3140
|
+
/**
|
|
3141
|
+
* [#7799] HMAC signing key, in the engine's ENCRYPTED credential channel.
|
|
3142
|
+
*
|
|
3143
|
+
* It used to ride inside `definition_json` as cleartext, because that column
|
|
3144
|
+
* is where the seeder parked the whole authored envelope. `definition_json`
|
|
3145
|
+
* is an ordinary textarea on an admin-authorable object with no restrictive
|
|
3146
|
+
* `enable.apiMethods`, so `GET /api/v1/data/sys_webhook` handed the key back
|
|
3147
|
+
* to every persona that can read the object — and that key is the receiver's
|
|
3148
|
+
* ONLY proof a delivery came from us. Same exposure class as #7722's
|
|
3149
|
+
* per-attempt copies, minus the retention window that eventually aged those
|
|
3150
|
+
* out.
|
|
3151
|
+
*
|
|
3152
|
+
* `type: 'secret'` moves it onto the channel built for this: the engine
|
|
3153
|
+
* encrypts on write via the registered `ICryptoProvider`, stores the
|
|
3154
|
+
* ciphertext as a `sys_secret` row, keeps only an opaque `secret:<id>` ref
|
|
3155
|
+
* on this column, and returns the mask on every read path. The enqueuer
|
|
3156
|
+
* recovers the plaintext server-side through `engine.resolveSecretField()`
|
|
3157
|
+
* when it refreshes its subscription cache.
|
|
3158
|
+
*
|
|
3159
|
+
* Fail-closed by construction: with no CryptoProvider wired the engine
|
|
3160
|
+
* REFUSES the write rather than falling back to cleartext, so the seeder
|
|
3161
|
+
* skips that webhook loudly instead of re-opening the hole in a new column.
|
|
3162
|
+
*/
|
|
3163
|
+
readonly signing_secret: {
|
|
3164
|
+
readonly readonly?: boolean | undefined;
|
|
3165
|
+
readonly format?: string | undefined;
|
|
3166
|
+
readonly options?: {
|
|
3167
|
+
label: string;
|
|
3168
|
+
value: string;
|
|
3169
|
+
color?: string | undefined;
|
|
3170
|
+
default?: boolean | undefined;
|
|
3171
|
+
visibleWhen?: string | {
|
|
3172
|
+
dialect: "cel" | "cron" | "template";
|
|
3173
|
+
source?: string | undefined;
|
|
3174
|
+
ast?: unknown;
|
|
3175
|
+
meta?: {
|
|
3176
|
+
rationale?: string | undefined;
|
|
3177
|
+
generatedBy?: string | undefined;
|
|
3178
|
+
} | undefined;
|
|
3179
|
+
} | undefined;
|
|
3180
|
+
}[] | undefined;
|
|
3181
|
+
readonly description?: string | undefined;
|
|
3182
|
+
readonly label?: string | undefined;
|
|
3183
|
+
readonly name?: string | undefined;
|
|
3184
|
+
readonly precision?: number | undefined;
|
|
3185
|
+
readonly required?: boolean | undefined;
|
|
3186
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3187
|
+
readonly widget?: string | undefined;
|
|
3188
|
+
readonly multiple?: boolean | undefined;
|
|
3189
|
+
readonly storage?: {
|
|
3190
|
+
notNull?: boolean | undefined;
|
|
3191
|
+
} | undefined;
|
|
3192
|
+
readonly visibleWhen?: string | {
|
|
3193
|
+
dialect: "cel" | "cron" | "template";
|
|
3194
|
+
source?: string | undefined;
|
|
3195
|
+
ast?: unknown;
|
|
3196
|
+
meta?: {
|
|
3197
|
+
rationale?: string | undefined;
|
|
3198
|
+
generatedBy?: string | undefined;
|
|
3199
|
+
} | undefined;
|
|
3200
|
+
} | undefined;
|
|
3201
|
+
readonly readonlyWhen?: string | {
|
|
3202
|
+
dialect: "cel" | "cron" | "template";
|
|
3203
|
+
source?: string | undefined;
|
|
3204
|
+
ast?: unknown;
|
|
3205
|
+
meta?: {
|
|
3206
|
+
rationale?: string | undefined;
|
|
3207
|
+
generatedBy?: string | undefined;
|
|
3208
|
+
} | undefined;
|
|
3209
|
+
} | undefined;
|
|
3210
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
3211
|
+
readonly _lockReason?: string | undefined;
|
|
3212
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
3213
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
3214
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3215
|
+
readonly _packageId?: string | undefined;
|
|
3216
|
+
readonly _packageVersion?: string | undefined;
|
|
3217
|
+
readonly lookupFilters?: {
|
|
3218
|
+
field: string;
|
|
3219
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
3220
|
+
value: any;
|
|
3221
|
+
}[] | undefined;
|
|
3222
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3223
|
+
readonly expression?: string | {
|
|
3224
|
+
dialect: "cel" | "cron" | "template";
|
|
3225
|
+
source?: string | undefined;
|
|
3226
|
+
ast?: unknown;
|
|
3227
|
+
meta?: {
|
|
3228
|
+
rationale?: string | undefined;
|
|
3229
|
+
generatedBy?: string | undefined;
|
|
3230
|
+
} | undefined;
|
|
3231
|
+
} | undefined;
|
|
3232
|
+
readonly autonumberFormat?: string | undefined;
|
|
3233
|
+
readonly summaryOperations?: {
|
|
3234
|
+
object: string;
|
|
3235
|
+
field: string;
|
|
3236
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3237
|
+
relationshipField?: string | undefined;
|
|
3238
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
3239
|
+
} | undefined;
|
|
3240
|
+
readonly reference?: string | undefined;
|
|
3241
|
+
readonly scale?: number | undefined;
|
|
3242
|
+
readonly step?: number | undefined;
|
|
3243
|
+
readonly displayField?: string | undefined;
|
|
3244
|
+
readonly accept?: string[] | undefined;
|
|
3245
|
+
readonly requiredWhen?: string | {
|
|
3246
|
+
dialect: "cel" | "cron" | "template";
|
|
3247
|
+
source?: string | undefined;
|
|
3248
|
+
ast?: unknown;
|
|
3249
|
+
meta?: {
|
|
3250
|
+
rationale?: string | undefined;
|
|
3251
|
+
generatedBy?: string | undefined;
|
|
3252
|
+
} | undefined;
|
|
3253
|
+
} | undefined;
|
|
2263
3254
|
readonly hidden?: boolean | undefined;
|
|
3255
|
+
readonly searchable?: boolean | undefined;
|
|
3256
|
+
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
3257
|
+
readonly defaultValue?: unknown;
|
|
3258
|
+
readonly maxLength?: number | undefined;
|
|
3259
|
+
readonly minLength?: number | undefined;
|
|
3260
|
+
readonly min?: number | undefined;
|
|
3261
|
+
readonly max?: number | undefined;
|
|
3262
|
+
readonly useGrouping?: boolean | undefined;
|
|
3263
|
+
readonly maxSize?: number | undefined;
|
|
3264
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3265
|
+
readonly inlineTitle?: string | undefined;
|
|
3266
|
+
readonly inlineColumns?: {
|
|
3267
|
+
name: string;
|
|
3268
|
+
label?: string | undefined;
|
|
3269
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
3270
|
+
width?: number | undefined;
|
|
3271
|
+
required?: boolean | undefined;
|
|
3272
|
+
options?: {
|
|
3273
|
+
label: string;
|
|
3274
|
+
value: string;
|
|
3275
|
+
}[] | undefined;
|
|
3276
|
+
prefix?: string | undefined;
|
|
3277
|
+
step?: number | undefined;
|
|
3278
|
+
reference?: string | undefined;
|
|
3279
|
+
displayField?: string | undefined;
|
|
3280
|
+
idField?: string | undefined;
|
|
3281
|
+
multiple?: boolean | undefined;
|
|
3282
|
+
accept?: string[] | undefined;
|
|
3283
|
+
defaultHidden?: boolean | undefined;
|
|
3284
|
+
computed?: boolean | undefined;
|
|
3285
|
+
expr?: string | undefined;
|
|
3286
|
+
scale?: number | undefined;
|
|
3287
|
+
autofill?: boolean | undefined;
|
|
3288
|
+
readonlyWhen?: string | {
|
|
3289
|
+
dialect: "cel" | "cron" | "template";
|
|
3290
|
+
source?: string | undefined;
|
|
3291
|
+
ast?: unknown;
|
|
3292
|
+
meta?: {
|
|
3293
|
+
rationale?: string | undefined;
|
|
3294
|
+
generatedBy?: string | undefined;
|
|
3295
|
+
} | undefined;
|
|
3296
|
+
} | undefined;
|
|
3297
|
+
requiredWhen?: string | {
|
|
3298
|
+
dialect: "cel" | "cron" | "template";
|
|
3299
|
+
source?: string | undefined;
|
|
3300
|
+
ast?: unknown;
|
|
3301
|
+
meta?: {
|
|
3302
|
+
rationale?: string | undefined;
|
|
3303
|
+
generatedBy?: string | undefined;
|
|
3304
|
+
} | undefined;
|
|
3305
|
+
} | undefined;
|
|
3306
|
+
}[] | undefined;
|
|
3307
|
+
readonly inlineAmountField?: string | undefined;
|
|
3308
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3309
|
+
readonly relatedListTitle?: string | undefined;
|
|
3310
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
3311
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
3312
|
+
readonly descriptionField?: string | undefined;
|
|
3313
|
+
readonly lookupColumns?: (string | {
|
|
3314
|
+
field: string;
|
|
3315
|
+
label?: string | undefined;
|
|
3316
|
+
width?: string | undefined;
|
|
3317
|
+
type?: string | undefined;
|
|
3318
|
+
})[] | undefined;
|
|
3319
|
+
readonly lookupPageSize?: number | undefined;
|
|
3320
|
+
readonly dependsOn?: (string | {
|
|
3321
|
+
field: string;
|
|
3322
|
+
param?: string | undefined;
|
|
3323
|
+
})[] | undefined;
|
|
3324
|
+
readonly allowCreate?: boolean | undefined;
|
|
3325
|
+
readonly language?: string | undefined;
|
|
3326
|
+
readonly currencyConfig?: {
|
|
3327
|
+
precision?: number | undefined;
|
|
3328
|
+
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
3329
|
+
defaultCurrency?: string | undefined;
|
|
3330
|
+
} | undefined;
|
|
3331
|
+
readonly dimensions?: number | undefined;
|
|
3332
|
+
readonly trackHistory?: boolean | undefined;
|
|
3333
|
+
readonly group?: string | undefined;
|
|
3334
|
+
readonly conditionalRequired?: undefined;
|
|
3335
|
+
readonly internal?: boolean | undefined;
|
|
2264
3336
|
readonly requiredPermissions?: string[] | undefined;
|
|
3337
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
3338
|
+
keepHead: number;
|
|
3339
|
+
keepTail: number;
|
|
3340
|
+
} | undefined;
|
|
2265
3341
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2266
3342
|
readonly system?: boolean | undefined;
|
|
2267
3343
|
readonly sortable?: boolean | undefined;
|
|
2268
3344
|
readonly inlineHelpText?: string | undefined;
|
|
3345
|
+
readonly placeholder?: string | undefined;
|
|
2269
3346
|
readonly externalId?: boolean | undefined;
|
|
2270
|
-
readonly type: "
|
|
3347
|
+
readonly type: "secret";
|
|
2271
3348
|
};
|
|
2272
3349
|
readonly managed_by: {
|
|
2273
3350
|
readonly readonly?: boolean | undefined;
|
|
@@ -2298,6 +3375,24 @@ declare const SysWebhook: Omit<{
|
|
|
2298
3375
|
readonly storage?: {
|
|
2299
3376
|
notNull?: boolean | undefined;
|
|
2300
3377
|
} | undefined;
|
|
3378
|
+
readonly visibleWhen?: string | {
|
|
3379
|
+
dialect: "cel" | "cron" | "template";
|
|
3380
|
+
source?: string | undefined;
|
|
3381
|
+
ast?: unknown;
|
|
3382
|
+
meta?: {
|
|
3383
|
+
rationale?: string | undefined;
|
|
3384
|
+
generatedBy?: string | undefined;
|
|
3385
|
+
} | undefined;
|
|
3386
|
+
} | undefined;
|
|
3387
|
+
readonly readonlyWhen?: string | {
|
|
3388
|
+
dialect: "cel" | "cron" | "template";
|
|
3389
|
+
source?: string | undefined;
|
|
3390
|
+
ast?: unknown;
|
|
3391
|
+
meta?: {
|
|
3392
|
+
rationale?: string | undefined;
|
|
3393
|
+
generatedBy?: string | undefined;
|
|
3394
|
+
} | undefined;
|
|
3395
|
+
} | undefined;
|
|
2301
3396
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2302
3397
|
readonly _lockReason?: string | undefined;
|
|
2303
3398
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2329,7 +3424,11 @@ declare const SysWebhook: Omit<{
|
|
|
2329
3424
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2330
3425
|
} | undefined;
|
|
2331
3426
|
readonly reference?: string | undefined;
|
|
2332
|
-
readonly
|
|
3427
|
+
readonly scale?: number | undefined;
|
|
3428
|
+
readonly step?: number | undefined;
|
|
3429
|
+
readonly displayField?: string | undefined;
|
|
3430
|
+
readonly accept?: string[] | undefined;
|
|
3431
|
+
readonly requiredWhen?: string | {
|
|
2333
3432
|
dialect: "cel" | "cron" | "template";
|
|
2334
3433
|
source?: string | undefined;
|
|
2335
3434
|
ast?: unknown;
|
|
@@ -2337,25 +3436,65 @@ declare const SysWebhook: Omit<{
|
|
|
2337
3436
|
rationale?: string | undefined;
|
|
2338
3437
|
generatedBy?: string | undefined;
|
|
2339
3438
|
} | undefined;
|
|
2340
|
-
} | undefined;
|
|
2341
|
-
readonly
|
|
2342
|
-
readonly searchable?: boolean | undefined;
|
|
2343
|
-
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
2344
|
-
readonly defaultValue?: unknown;
|
|
2345
|
-
readonly maxLength?: number | undefined;
|
|
2346
|
-
readonly minLength?: number | undefined;
|
|
2347
|
-
readonly min?: number | undefined;
|
|
2348
|
-
readonly max?: number | undefined;
|
|
2349
|
-
readonly
|
|
2350
|
-
readonly maxSize?: number | undefined;
|
|
2351
|
-
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2352
|
-
readonly inlineTitle?: string | undefined;
|
|
2353
|
-
readonly inlineColumns?:
|
|
3439
|
+
} | undefined;
|
|
3440
|
+
readonly hidden?: boolean | undefined;
|
|
3441
|
+
readonly searchable?: boolean | undefined;
|
|
3442
|
+
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
3443
|
+
readonly defaultValue?: unknown;
|
|
3444
|
+
readonly maxLength?: number | undefined;
|
|
3445
|
+
readonly minLength?: number | undefined;
|
|
3446
|
+
readonly min?: number | undefined;
|
|
3447
|
+
readonly max?: number | undefined;
|
|
3448
|
+
readonly useGrouping?: boolean | undefined;
|
|
3449
|
+
readonly maxSize?: number | undefined;
|
|
3450
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3451
|
+
readonly inlineTitle?: string | undefined;
|
|
3452
|
+
readonly inlineColumns?: {
|
|
3453
|
+
name: string;
|
|
3454
|
+
label?: string | undefined;
|
|
3455
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
3456
|
+
width?: number | undefined;
|
|
3457
|
+
required?: boolean | undefined;
|
|
3458
|
+
options?: {
|
|
3459
|
+
label: string;
|
|
3460
|
+
value: string;
|
|
3461
|
+
}[] | undefined;
|
|
3462
|
+
prefix?: string | undefined;
|
|
3463
|
+
step?: number | undefined;
|
|
3464
|
+
reference?: string | undefined;
|
|
3465
|
+
displayField?: string | undefined;
|
|
3466
|
+
idField?: string | undefined;
|
|
3467
|
+
multiple?: boolean | undefined;
|
|
3468
|
+
accept?: string[] | undefined;
|
|
3469
|
+
defaultHidden?: boolean | undefined;
|
|
3470
|
+
computed?: boolean | undefined;
|
|
3471
|
+
expr?: string | undefined;
|
|
3472
|
+
scale?: number | undefined;
|
|
3473
|
+
autofill?: boolean | undefined;
|
|
3474
|
+
readonlyWhen?: string | {
|
|
3475
|
+
dialect: "cel" | "cron" | "template";
|
|
3476
|
+
source?: string | undefined;
|
|
3477
|
+
ast?: unknown;
|
|
3478
|
+
meta?: {
|
|
3479
|
+
rationale?: string | undefined;
|
|
3480
|
+
generatedBy?: string | undefined;
|
|
3481
|
+
} | undefined;
|
|
3482
|
+
} | undefined;
|
|
3483
|
+
requiredWhen?: string | {
|
|
3484
|
+
dialect: "cel" | "cron" | "template";
|
|
3485
|
+
source?: string | undefined;
|
|
3486
|
+
ast?: unknown;
|
|
3487
|
+
meta?: {
|
|
3488
|
+
rationale?: string | undefined;
|
|
3489
|
+
generatedBy?: string | undefined;
|
|
3490
|
+
} | undefined;
|
|
3491
|
+
} | undefined;
|
|
3492
|
+
}[] | undefined;
|
|
2354
3493
|
readonly inlineAmountField?: string | undefined;
|
|
2355
3494
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
2356
3495
|
readonly relatedListTitle?: string | undefined;
|
|
2357
|
-
readonly relatedListColumns?:
|
|
2358
|
-
readonly
|
|
3496
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
3497
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2359
3498
|
readonly descriptionField?: string | undefined;
|
|
2360
3499
|
readonly lookupColumns?: (string | {
|
|
2361
3500
|
field: string;
|
|
@@ -2370,7 +3509,6 @@ declare const SysWebhook: Omit<{
|
|
|
2370
3509
|
})[] | undefined;
|
|
2371
3510
|
readonly allowCreate?: boolean | undefined;
|
|
2372
3511
|
readonly language?: string | undefined;
|
|
2373
|
-
readonly step?: number | undefined;
|
|
2374
3512
|
readonly currencyConfig?: {
|
|
2375
3513
|
precision?: number | undefined;
|
|
2376
3514
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -2379,31 +3517,18 @@ declare const SysWebhook: Omit<{
|
|
|
2379
3517
|
readonly dimensions?: number | undefined;
|
|
2380
3518
|
readonly trackHistory?: boolean | undefined;
|
|
2381
3519
|
readonly group?: string | undefined;
|
|
2382
|
-
readonly readonlyWhen?: string | {
|
|
2383
|
-
dialect: "cel" | "cron" | "template";
|
|
2384
|
-
source?: string | undefined;
|
|
2385
|
-
ast?: unknown;
|
|
2386
|
-
meta?: {
|
|
2387
|
-
rationale?: string | undefined;
|
|
2388
|
-
generatedBy?: string | undefined;
|
|
2389
|
-
} | undefined;
|
|
2390
|
-
} | undefined;
|
|
2391
|
-
readonly requiredWhen?: string | {
|
|
2392
|
-
dialect: "cel" | "cron" | "template";
|
|
2393
|
-
source?: string | undefined;
|
|
2394
|
-
ast?: unknown;
|
|
2395
|
-
meta?: {
|
|
2396
|
-
rationale?: string | undefined;
|
|
2397
|
-
generatedBy?: string | undefined;
|
|
2398
|
-
} | undefined;
|
|
2399
|
-
} | undefined;
|
|
2400
3520
|
readonly conditionalRequired?: undefined;
|
|
2401
|
-
readonly
|
|
3521
|
+
readonly internal?: boolean | undefined;
|
|
2402
3522
|
readonly requiredPermissions?: string[] | undefined;
|
|
3523
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
3524
|
+
keepHead: number;
|
|
3525
|
+
keepTail: number;
|
|
3526
|
+
} | undefined;
|
|
2403
3527
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2404
3528
|
readonly system?: boolean | undefined;
|
|
2405
3529
|
readonly sortable?: boolean | undefined;
|
|
2406
3530
|
readonly inlineHelpText?: string | undefined;
|
|
3531
|
+
readonly placeholder?: string | undefined;
|
|
2407
3532
|
readonly externalId?: boolean | undefined;
|
|
2408
3533
|
readonly type: "select";
|
|
2409
3534
|
};
|
|
@@ -2436,6 +3561,24 @@ declare const SysWebhook: Omit<{
|
|
|
2436
3561
|
readonly storage?: {
|
|
2437
3562
|
notNull?: boolean | undefined;
|
|
2438
3563
|
} | undefined;
|
|
3564
|
+
readonly visibleWhen?: string | {
|
|
3565
|
+
dialect: "cel" | "cron" | "template";
|
|
3566
|
+
source?: string | undefined;
|
|
3567
|
+
ast?: unknown;
|
|
3568
|
+
meta?: {
|
|
3569
|
+
rationale?: string | undefined;
|
|
3570
|
+
generatedBy?: string | undefined;
|
|
3571
|
+
} | undefined;
|
|
3572
|
+
} | undefined;
|
|
3573
|
+
readonly readonlyWhen?: string | {
|
|
3574
|
+
dialect: "cel" | "cron" | "template";
|
|
3575
|
+
source?: string | undefined;
|
|
3576
|
+
ast?: unknown;
|
|
3577
|
+
meta?: {
|
|
3578
|
+
rationale?: string | undefined;
|
|
3579
|
+
generatedBy?: string | undefined;
|
|
3580
|
+
} | undefined;
|
|
3581
|
+
} | undefined;
|
|
2439
3582
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2440
3583
|
readonly _lockReason?: string | undefined;
|
|
2441
3584
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2467,7 +3610,11 @@ declare const SysWebhook: Omit<{
|
|
|
2467
3610
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2468
3611
|
} | undefined;
|
|
2469
3612
|
readonly reference?: string | undefined;
|
|
2470
|
-
readonly
|
|
3613
|
+
readonly scale?: number | undefined;
|
|
3614
|
+
readonly step?: number | undefined;
|
|
3615
|
+
readonly displayField?: string | undefined;
|
|
3616
|
+
readonly accept?: string[] | undefined;
|
|
3617
|
+
readonly requiredWhen?: string | {
|
|
2471
3618
|
dialect: "cel" | "cron" | "template";
|
|
2472
3619
|
source?: string | undefined;
|
|
2473
3620
|
ast?: unknown;
|
|
@@ -2476,7 +3623,7 @@ declare const SysWebhook: Omit<{
|
|
|
2476
3623
|
generatedBy?: string | undefined;
|
|
2477
3624
|
} | undefined;
|
|
2478
3625
|
} | undefined;
|
|
2479
|
-
readonly
|
|
3626
|
+
readonly hidden?: boolean | undefined;
|
|
2480
3627
|
readonly searchable?: boolean | undefined;
|
|
2481
3628
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
2482
3629
|
readonly defaultValue?: unknown;
|
|
@@ -2484,16 +3631,56 @@ declare const SysWebhook: Omit<{
|
|
|
2484
3631
|
readonly minLength?: number | undefined;
|
|
2485
3632
|
readonly min?: number | undefined;
|
|
2486
3633
|
readonly max?: number | undefined;
|
|
2487
|
-
readonly
|
|
3634
|
+
readonly useGrouping?: boolean | undefined;
|
|
2488
3635
|
readonly maxSize?: number | undefined;
|
|
2489
3636
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2490
3637
|
readonly inlineTitle?: string | undefined;
|
|
2491
|
-
readonly inlineColumns?:
|
|
3638
|
+
readonly inlineColumns?: {
|
|
3639
|
+
name: string;
|
|
3640
|
+
label?: string | undefined;
|
|
3641
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
3642
|
+
width?: number | undefined;
|
|
3643
|
+
required?: boolean | undefined;
|
|
3644
|
+
options?: {
|
|
3645
|
+
label: string;
|
|
3646
|
+
value: string;
|
|
3647
|
+
}[] | undefined;
|
|
3648
|
+
prefix?: string | undefined;
|
|
3649
|
+
step?: number | undefined;
|
|
3650
|
+
reference?: string | undefined;
|
|
3651
|
+
displayField?: string | undefined;
|
|
3652
|
+
idField?: string | undefined;
|
|
3653
|
+
multiple?: boolean | undefined;
|
|
3654
|
+
accept?: string[] | undefined;
|
|
3655
|
+
defaultHidden?: boolean | undefined;
|
|
3656
|
+
computed?: boolean | undefined;
|
|
3657
|
+
expr?: string | undefined;
|
|
3658
|
+
scale?: number | undefined;
|
|
3659
|
+
autofill?: boolean | undefined;
|
|
3660
|
+
readonlyWhen?: string | {
|
|
3661
|
+
dialect: "cel" | "cron" | "template";
|
|
3662
|
+
source?: string | undefined;
|
|
3663
|
+
ast?: unknown;
|
|
3664
|
+
meta?: {
|
|
3665
|
+
rationale?: string | undefined;
|
|
3666
|
+
generatedBy?: string | undefined;
|
|
3667
|
+
} | undefined;
|
|
3668
|
+
} | undefined;
|
|
3669
|
+
requiredWhen?: string | {
|
|
3670
|
+
dialect: "cel" | "cron" | "template";
|
|
3671
|
+
source?: string | undefined;
|
|
3672
|
+
ast?: unknown;
|
|
3673
|
+
meta?: {
|
|
3674
|
+
rationale?: string | undefined;
|
|
3675
|
+
generatedBy?: string | undefined;
|
|
3676
|
+
} | undefined;
|
|
3677
|
+
} | undefined;
|
|
3678
|
+
}[] | undefined;
|
|
2492
3679
|
readonly inlineAmountField?: string | undefined;
|
|
2493
3680
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
2494
3681
|
readonly relatedListTitle?: string | undefined;
|
|
2495
|
-
readonly relatedListColumns?:
|
|
2496
|
-
readonly
|
|
3682
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
3683
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2497
3684
|
readonly descriptionField?: string | undefined;
|
|
2498
3685
|
readonly lookupColumns?: (string | {
|
|
2499
3686
|
field: string;
|
|
@@ -2508,7 +3695,6 @@ declare const SysWebhook: Omit<{
|
|
|
2508
3695
|
})[] | undefined;
|
|
2509
3696
|
readonly allowCreate?: boolean | undefined;
|
|
2510
3697
|
readonly language?: string | undefined;
|
|
2511
|
-
readonly step?: number | undefined;
|
|
2512
3698
|
readonly currencyConfig?: {
|
|
2513
3699
|
precision?: number | undefined;
|
|
2514
3700
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -2517,31 +3703,18 @@ declare const SysWebhook: Omit<{
|
|
|
2517
3703
|
readonly dimensions?: number | undefined;
|
|
2518
3704
|
readonly trackHistory?: boolean | undefined;
|
|
2519
3705
|
readonly group?: string | undefined;
|
|
2520
|
-
readonly readonlyWhen?: string | {
|
|
2521
|
-
dialect: "cel" | "cron" | "template";
|
|
2522
|
-
source?: string | undefined;
|
|
2523
|
-
ast?: unknown;
|
|
2524
|
-
meta?: {
|
|
2525
|
-
rationale?: string | undefined;
|
|
2526
|
-
generatedBy?: string | undefined;
|
|
2527
|
-
} | undefined;
|
|
2528
|
-
} | undefined;
|
|
2529
|
-
readonly requiredWhen?: string | {
|
|
2530
|
-
dialect: "cel" | "cron" | "template";
|
|
2531
|
-
source?: string | undefined;
|
|
2532
|
-
ast?: unknown;
|
|
2533
|
-
meta?: {
|
|
2534
|
-
rationale?: string | undefined;
|
|
2535
|
-
generatedBy?: string | undefined;
|
|
2536
|
-
} | undefined;
|
|
2537
|
-
} | undefined;
|
|
2538
3706
|
readonly conditionalRequired?: undefined;
|
|
2539
|
-
readonly
|
|
3707
|
+
readonly internal?: boolean | undefined;
|
|
2540
3708
|
readonly requiredPermissions?: string[] | undefined;
|
|
3709
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
3710
|
+
keepHead: number;
|
|
3711
|
+
keepTail: number;
|
|
3712
|
+
} | undefined;
|
|
2541
3713
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2542
3714
|
readonly system?: boolean | undefined;
|
|
2543
3715
|
readonly sortable?: boolean | undefined;
|
|
2544
3716
|
readonly inlineHelpText?: string | undefined;
|
|
3717
|
+
readonly placeholder?: string | undefined;
|
|
2545
3718
|
readonly externalId?: boolean | undefined;
|
|
2546
3719
|
readonly type: "boolean";
|
|
2547
3720
|
};
|
|
@@ -2574,6 +3747,24 @@ declare const SysWebhook: Omit<{
|
|
|
2574
3747
|
readonly storage?: {
|
|
2575
3748
|
notNull?: boolean | undefined;
|
|
2576
3749
|
} | undefined;
|
|
3750
|
+
readonly visibleWhen?: string | {
|
|
3751
|
+
dialect: "cel" | "cron" | "template";
|
|
3752
|
+
source?: string | undefined;
|
|
3753
|
+
ast?: unknown;
|
|
3754
|
+
meta?: {
|
|
3755
|
+
rationale?: string | undefined;
|
|
3756
|
+
generatedBy?: string | undefined;
|
|
3757
|
+
} | undefined;
|
|
3758
|
+
} | undefined;
|
|
3759
|
+
readonly readonlyWhen?: string | {
|
|
3760
|
+
dialect: "cel" | "cron" | "template";
|
|
3761
|
+
source?: string | undefined;
|
|
3762
|
+
ast?: unknown;
|
|
3763
|
+
meta?: {
|
|
3764
|
+
rationale?: string | undefined;
|
|
3765
|
+
generatedBy?: string | undefined;
|
|
3766
|
+
} | undefined;
|
|
3767
|
+
} | undefined;
|
|
2577
3768
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2578
3769
|
readonly _lockReason?: string | undefined;
|
|
2579
3770
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2605,7 +3796,11 @@ declare const SysWebhook: Omit<{
|
|
|
2605
3796
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2606
3797
|
} | undefined;
|
|
2607
3798
|
readonly reference?: string | undefined;
|
|
2608
|
-
readonly
|
|
3799
|
+
readonly scale?: number | undefined;
|
|
3800
|
+
readonly step?: number | undefined;
|
|
3801
|
+
readonly displayField?: string | undefined;
|
|
3802
|
+
readonly accept?: string[] | undefined;
|
|
3803
|
+
readonly requiredWhen?: string | {
|
|
2609
3804
|
dialect: "cel" | "cron" | "template";
|
|
2610
3805
|
source?: string | undefined;
|
|
2611
3806
|
ast?: unknown;
|
|
@@ -2614,7 +3809,7 @@ declare const SysWebhook: Omit<{
|
|
|
2614
3809
|
generatedBy?: string | undefined;
|
|
2615
3810
|
} | undefined;
|
|
2616
3811
|
} | undefined;
|
|
2617
|
-
readonly
|
|
3812
|
+
readonly hidden?: boolean | undefined;
|
|
2618
3813
|
readonly searchable?: boolean | undefined;
|
|
2619
3814
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
2620
3815
|
readonly defaultValue?: unknown;
|
|
@@ -2622,16 +3817,56 @@ declare const SysWebhook: Omit<{
|
|
|
2622
3817
|
readonly minLength?: number | undefined;
|
|
2623
3818
|
readonly min?: number | undefined;
|
|
2624
3819
|
readonly max?: number | undefined;
|
|
2625
|
-
readonly
|
|
3820
|
+
readonly useGrouping?: boolean | undefined;
|
|
2626
3821
|
readonly maxSize?: number | undefined;
|
|
2627
3822
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2628
3823
|
readonly inlineTitle?: string | undefined;
|
|
2629
|
-
readonly inlineColumns?:
|
|
3824
|
+
readonly inlineColumns?: {
|
|
3825
|
+
name: string;
|
|
3826
|
+
label?: string | undefined;
|
|
3827
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
3828
|
+
width?: number | undefined;
|
|
3829
|
+
required?: boolean | undefined;
|
|
3830
|
+
options?: {
|
|
3831
|
+
label: string;
|
|
3832
|
+
value: string;
|
|
3833
|
+
}[] | undefined;
|
|
3834
|
+
prefix?: string | undefined;
|
|
3835
|
+
step?: number | undefined;
|
|
3836
|
+
reference?: string | undefined;
|
|
3837
|
+
displayField?: string | undefined;
|
|
3838
|
+
idField?: string | undefined;
|
|
3839
|
+
multiple?: boolean | undefined;
|
|
3840
|
+
accept?: string[] | undefined;
|
|
3841
|
+
defaultHidden?: boolean | undefined;
|
|
3842
|
+
computed?: boolean | undefined;
|
|
3843
|
+
expr?: string | undefined;
|
|
3844
|
+
scale?: number | undefined;
|
|
3845
|
+
autofill?: boolean | undefined;
|
|
3846
|
+
readonlyWhen?: string | {
|
|
3847
|
+
dialect: "cel" | "cron" | "template";
|
|
3848
|
+
source?: string | undefined;
|
|
3849
|
+
ast?: unknown;
|
|
3850
|
+
meta?: {
|
|
3851
|
+
rationale?: string | undefined;
|
|
3852
|
+
generatedBy?: string | undefined;
|
|
3853
|
+
} | undefined;
|
|
3854
|
+
} | undefined;
|
|
3855
|
+
requiredWhen?: string | {
|
|
3856
|
+
dialect: "cel" | "cron" | "template";
|
|
3857
|
+
source?: string | undefined;
|
|
3858
|
+
ast?: unknown;
|
|
3859
|
+
meta?: {
|
|
3860
|
+
rationale?: string | undefined;
|
|
3861
|
+
generatedBy?: string | undefined;
|
|
3862
|
+
} | undefined;
|
|
3863
|
+
} | undefined;
|
|
3864
|
+
}[] | undefined;
|
|
2630
3865
|
readonly inlineAmountField?: string | undefined;
|
|
2631
3866
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
2632
3867
|
readonly relatedListTitle?: string | undefined;
|
|
2633
|
-
readonly relatedListColumns?:
|
|
2634
|
-
readonly
|
|
3868
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
3869
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2635
3870
|
readonly descriptionField?: string | undefined;
|
|
2636
3871
|
readonly lookupColumns?: (string | {
|
|
2637
3872
|
field: string;
|
|
@@ -2646,7 +3881,6 @@ declare const SysWebhook: Omit<{
|
|
|
2646
3881
|
})[] | undefined;
|
|
2647
3882
|
readonly allowCreate?: boolean | undefined;
|
|
2648
3883
|
readonly language?: string | undefined;
|
|
2649
|
-
readonly step?: number | undefined;
|
|
2650
3884
|
readonly currencyConfig?: {
|
|
2651
3885
|
precision?: number | undefined;
|
|
2652
3886
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -2655,31 +3889,18 @@ declare const SysWebhook: Omit<{
|
|
|
2655
3889
|
readonly dimensions?: number | undefined;
|
|
2656
3890
|
readonly trackHistory?: boolean | undefined;
|
|
2657
3891
|
readonly group?: string | undefined;
|
|
2658
|
-
readonly readonlyWhen?: string | {
|
|
2659
|
-
dialect: "cel" | "cron" | "template";
|
|
2660
|
-
source?: string | undefined;
|
|
2661
|
-
ast?: unknown;
|
|
2662
|
-
meta?: {
|
|
2663
|
-
rationale?: string | undefined;
|
|
2664
|
-
generatedBy?: string | undefined;
|
|
2665
|
-
} | undefined;
|
|
2666
|
-
} | undefined;
|
|
2667
|
-
readonly requiredWhen?: string | {
|
|
2668
|
-
dialect: "cel" | "cron" | "template";
|
|
2669
|
-
source?: string | undefined;
|
|
2670
|
-
ast?: unknown;
|
|
2671
|
-
meta?: {
|
|
2672
|
-
rationale?: string | undefined;
|
|
2673
|
-
generatedBy?: string | undefined;
|
|
2674
|
-
} | undefined;
|
|
2675
|
-
} | undefined;
|
|
2676
3892
|
readonly conditionalRequired?: undefined;
|
|
2677
|
-
readonly
|
|
3893
|
+
readonly internal?: boolean | undefined;
|
|
2678
3894
|
readonly requiredPermissions?: string[] | undefined;
|
|
3895
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
3896
|
+
keepHead: number;
|
|
3897
|
+
keepTail: number;
|
|
3898
|
+
} | undefined;
|
|
2679
3899
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2680
3900
|
readonly system?: boolean | undefined;
|
|
2681
3901
|
readonly sortable?: boolean | undefined;
|
|
2682
3902
|
readonly inlineHelpText?: string | undefined;
|
|
3903
|
+
readonly placeholder?: string | undefined;
|
|
2683
3904
|
readonly externalId?: boolean | undefined;
|
|
2684
3905
|
readonly type: "datetime";
|
|
2685
3906
|
};
|
|
@@ -2712,6 +3933,24 @@ declare const SysWebhook: Omit<{
|
|
|
2712
3933
|
readonly storage?: {
|
|
2713
3934
|
notNull?: boolean | undefined;
|
|
2714
3935
|
} | undefined;
|
|
3936
|
+
readonly visibleWhen?: string | {
|
|
3937
|
+
dialect: "cel" | "cron" | "template";
|
|
3938
|
+
source?: string | undefined;
|
|
3939
|
+
ast?: unknown;
|
|
3940
|
+
meta?: {
|
|
3941
|
+
rationale?: string | undefined;
|
|
3942
|
+
generatedBy?: string | undefined;
|
|
3943
|
+
} | undefined;
|
|
3944
|
+
} | undefined;
|
|
3945
|
+
readonly readonlyWhen?: string | {
|
|
3946
|
+
dialect: "cel" | "cron" | "template";
|
|
3947
|
+
source?: string | undefined;
|
|
3948
|
+
ast?: unknown;
|
|
3949
|
+
meta?: {
|
|
3950
|
+
rationale?: string | undefined;
|
|
3951
|
+
generatedBy?: string | undefined;
|
|
3952
|
+
} | undefined;
|
|
3953
|
+
} | undefined;
|
|
2715
3954
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2716
3955
|
readonly _lockReason?: string | undefined;
|
|
2717
3956
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2743,7 +3982,11 @@ declare const SysWebhook: Omit<{
|
|
|
2743
3982
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2744
3983
|
} | undefined;
|
|
2745
3984
|
readonly reference?: string | undefined;
|
|
2746
|
-
readonly
|
|
3985
|
+
readonly scale?: number | undefined;
|
|
3986
|
+
readonly step?: number | undefined;
|
|
3987
|
+
readonly displayField?: string | undefined;
|
|
3988
|
+
readonly accept?: string[] | undefined;
|
|
3989
|
+
readonly requiredWhen?: string | {
|
|
2747
3990
|
dialect: "cel" | "cron" | "template";
|
|
2748
3991
|
source?: string | undefined;
|
|
2749
3992
|
ast?: unknown;
|
|
@@ -2752,7 +3995,7 @@ declare const SysWebhook: Omit<{
|
|
|
2752
3995
|
generatedBy?: string | undefined;
|
|
2753
3996
|
} | undefined;
|
|
2754
3997
|
} | undefined;
|
|
2755
|
-
readonly
|
|
3998
|
+
readonly hidden?: boolean | undefined;
|
|
2756
3999
|
readonly searchable?: boolean | undefined;
|
|
2757
4000
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
2758
4001
|
readonly defaultValue?: unknown;
|
|
@@ -2760,16 +4003,56 @@ declare const SysWebhook: Omit<{
|
|
|
2760
4003
|
readonly minLength?: number | undefined;
|
|
2761
4004
|
readonly min?: number | undefined;
|
|
2762
4005
|
readonly max?: number | undefined;
|
|
2763
|
-
readonly
|
|
4006
|
+
readonly useGrouping?: boolean | undefined;
|
|
2764
4007
|
readonly maxSize?: number | undefined;
|
|
2765
4008
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2766
4009
|
readonly inlineTitle?: string | undefined;
|
|
2767
|
-
readonly inlineColumns?:
|
|
4010
|
+
readonly inlineColumns?: {
|
|
4011
|
+
name: string;
|
|
4012
|
+
label?: string | undefined;
|
|
4013
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
4014
|
+
width?: number | undefined;
|
|
4015
|
+
required?: boolean | undefined;
|
|
4016
|
+
options?: {
|
|
4017
|
+
label: string;
|
|
4018
|
+
value: string;
|
|
4019
|
+
}[] | undefined;
|
|
4020
|
+
prefix?: string | undefined;
|
|
4021
|
+
step?: number | undefined;
|
|
4022
|
+
reference?: string | undefined;
|
|
4023
|
+
displayField?: string | undefined;
|
|
4024
|
+
idField?: string | undefined;
|
|
4025
|
+
multiple?: boolean | undefined;
|
|
4026
|
+
accept?: string[] | undefined;
|
|
4027
|
+
defaultHidden?: boolean | undefined;
|
|
4028
|
+
computed?: boolean | undefined;
|
|
4029
|
+
expr?: string | undefined;
|
|
4030
|
+
scale?: number | undefined;
|
|
4031
|
+
autofill?: boolean | undefined;
|
|
4032
|
+
readonlyWhen?: string | {
|
|
4033
|
+
dialect: "cel" | "cron" | "template";
|
|
4034
|
+
source?: string | undefined;
|
|
4035
|
+
ast?: unknown;
|
|
4036
|
+
meta?: {
|
|
4037
|
+
rationale?: string | undefined;
|
|
4038
|
+
generatedBy?: string | undefined;
|
|
4039
|
+
} | undefined;
|
|
4040
|
+
} | undefined;
|
|
4041
|
+
requiredWhen?: string | {
|
|
4042
|
+
dialect: "cel" | "cron" | "template";
|
|
4043
|
+
source?: string | undefined;
|
|
4044
|
+
ast?: unknown;
|
|
4045
|
+
meta?: {
|
|
4046
|
+
rationale?: string | undefined;
|
|
4047
|
+
generatedBy?: string | undefined;
|
|
4048
|
+
} | undefined;
|
|
4049
|
+
} | undefined;
|
|
4050
|
+
}[] | undefined;
|
|
2768
4051
|
readonly inlineAmountField?: string | undefined;
|
|
2769
4052
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
2770
4053
|
readonly relatedListTitle?: string | undefined;
|
|
2771
|
-
readonly relatedListColumns?:
|
|
2772
|
-
readonly
|
|
4054
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
4055
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2773
4056
|
readonly descriptionField?: string | undefined;
|
|
2774
4057
|
readonly lookupColumns?: (string | {
|
|
2775
4058
|
field: string;
|
|
@@ -2784,7 +4067,6 @@ declare const SysWebhook: Omit<{
|
|
|
2784
4067
|
})[] | undefined;
|
|
2785
4068
|
readonly allowCreate?: boolean | undefined;
|
|
2786
4069
|
readonly language?: string | undefined;
|
|
2787
|
-
readonly step?: number | undefined;
|
|
2788
4070
|
readonly currencyConfig?: {
|
|
2789
4071
|
precision?: number | undefined;
|
|
2790
4072
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -2793,43 +4075,89 @@ declare const SysWebhook: Omit<{
|
|
|
2793
4075
|
readonly dimensions?: number | undefined;
|
|
2794
4076
|
readonly trackHistory?: boolean | undefined;
|
|
2795
4077
|
readonly group?: string | undefined;
|
|
2796
|
-
readonly readonlyWhen?: string | {
|
|
2797
|
-
dialect: "cel" | "cron" | "template";
|
|
2798
|
-
source?: string | undefined;
|
|
2799
|
-
ast?: unknown;
|
|
2800
|
-
meta?: {
|
|
2801
|
-
rationale?: string | undefined;
|
|
2802
|
-
generatedBy?: string | undefined;
|
|
2803
|
-
} | undefined;
|
|
2804
|
-
} | undefined;
|
|
2805
|
-
readonly requiredWhen?: string | {
|
|
2806
|
-
dialect: "cel" | "cron" | "template";
|
|
2807
|
-
source?: string | undefined;
|
|
2808
|
-
ast?: unknown;
|
|
2809
|
-
meta?: {
|
|
2810
|
-
rationale?: string | undefined;
|
|
2811
|
-
generatedBy?: string | undefined;
|
|
2812
|
-
} | undefined;
|
|
2813
|
-
} | undefined;
|
|
2814
4078
|
readonly conditionalRequired?: undefined;
|
|
2815
|
-
readonly
|
|
4079
|
+
readonly internal?: boolean | undefined;
|
|
2816
4080
|
readonly requiredPermissions?: string[] | undefined;
|
|
4081
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
4082
|
+
keepHead: number;
|
|
4083
|
+
keepTail: number;
|
|
4084
|
+
} | undefined;
|
|
2817
4085
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2818
4086
|
readonly system?: boolean | undefined;
|
|
2819
4087
|
readonly sortable?: boolean | undefined;
|
|
2820
4088
|
readonly inlineHelpText?: string | undefined;
|
|
4089
|
+
readonly placeholder?: string | undefined;
|
|
2821
4090
|
readonly externalId?: boolean | undefined;
|
|
2822
4091
|
readonly type: "datetime";
|
|
2823
4092
|
};
|
|
2824
4093
|
};
|
|
2825
4094
|
readonly indexes: [{
|
|
2826
4095
|
readonly fields: ["name"];
|
|
2827
|
-
readonly unique:
|
|
4096
|
+
readonly unique: "organization";
|
|
2828
4097
|
}, {
|
|
2829
4098
|
readonly fields: ["object_name"];
|
|
2830
4099
|
}, {
|
|
2831
4100
|
readonly fields: ["active", "object_name"];
|
|
2832
4101
|
}];
|
|
4102
|
+
/**
|
|
4103
|
+
* [#9756] The data-API exposure of this object, declared EXPLICITLY.
|
|
4104
|
+
*
|
|
4105
|
+
* ## Why the block exists
|
|
4106
|
+
*
|
|
4107
|
+
* Three cards observed that `sys_webhook` declared no `enable` block at all
|
|
4108
|
+
* and each named narrowing its read surface as the next step — #7799 (the
|
|
4109
|
+
* signing secret), #7986 (the custom headers) and #8025 option 2 (the URL) —
|
|
4110
|
+
* and each assumed a later one would write the line. None did. The condition
|
|
4111
|
+
* held not because anyone judged the full default API correct here, but
|
|
4112
|
+
* because the omission was never anybody's deliverable. That is the standard
|
|
4113
|
+
* #8025 set and #9756 quotes back: *an omission is not a decision unless
|
|
4114
|
+
* someone wrote it down.* This block is that decision, written down.
|
|
4115
|
+
*
|
|
4116
|
+
* ## The census the set is derived from (#9756, measured before writing)
|
|
4117
|
+
*
|
|
4118
|
+
* | consumer | reaches this object through | needs |
|
|
4119
|
+
* |:---|:---|:---|
|
|
4120
|
+
* | Setup/Studio console — `nav_webhooks` (`webhook-outbox-plugin.ts`), the four list views above, `userActions` create/edit/delete | REST `/api/v1/data/sys_webhook` — the gated data API | `get` `list` `create` `update` `delete` |
|
|
4121
|
+
* | Operator predicate write — "deactivate every webhook on an object" (#4639, for which `AutoEnqueuer.handleSelfHealEvent` carries a `data.records.*` branch built expressly for this gesture) | REST `updateMany` / `deleteMany`, both gated on the `bulk` primitive | `bulk` |
|
|
4122
|
+
* | `AutoEnqueuer` cache refresh, `bootstrapDeclaredWebhooks`, `stampWebhookProvenance`, `redeliver-guard`, `migrateLegacyWebhookSecrets`, the `headers_secret` write gate | `engine.find/findOne/insert/update` and lifecycle hooks — ObjectQL directly, which never consults `enable.apiMethods` | ungated: unaffected by anything declared here |
|
|
4123
|
+
*
|
|
4124
|
+
* ⇒ every primitive is required by a real, measured consumer, so the set is
|
|
4125
|
+
* all six. No consumer outside the admin/operator surface was found.
|
|
4126
|
+
*
|
|
4127
|
+
* ## ⛔ This narrows NOTHING — do not read it as if it did
|
|
4128
|
+
*
|
|
4129
|
+
* `resolveEffectiveApiMethods` (`@objectstack/spec/data`) seeds the
|
|
4130
|
+
* `unrestricted` branch with the very same `API_PRIMITIVES` set, so the six
|
|
4131
|
+
* primitives resolve to the operation closure the *absent* block already
|
|
4132
|
+
* produced. The serialized effective set (`/me/permissions`, the 405
|
|
4133
|
+
* `allowed` array) is byte-identical, and no route or `callData` action
|
|
4134
|
+
* reaches an operation whose answer differs. Only `mode` changes,
|
|
4135
|
+
* `unrestricted` → `restricted`.
|
|
4136
|
+
*
|
|
4137
|
+
* So the presence of this block is NOT evidence that the reachable cleartext
|
|
4138
|
+
* on this object was reduced. It was not, and `apiMethods` is the wrong
|
|
4139
|
+
* instrument for it: `url` (#8025 — won't-fix on masking, because the URL is
|
|
4140
|
+
* the routing key an operator must be able to see, search, sort and edit) and
|
|
4141
|
+
* a legacy row's un-migrated `definition_json.headers` (#7986 —
|
|
4142
|
+
* `readLegacyHeaders` in `auto-enqueuer.ts` still reads them and warns) are
|
|
4143
|
+
* both served by `get`/`list`, which is exactly what the console requires.
|
|
4144
|
+
* Any set that removes them removes the admin surface with them. A survey
|
|
4145
|
+
* that greps this file for `enable:` and stops is measuring the wrong thing;
|
|
4146
|
+
* #9756's report carries the census that says so.
|
|
4147
|
+
*
|
|
4148
|
+
* Contrast the sibling `sys_http_delivery` (`['get','list']`,
|
|
4149
|
+
* `service-messaging`), whose narrowing is real: that table is engine-owned —
|
|
4150
|
+
* written only by `SqlHttpOutbox` through context-less raw-engine writes,
|
|
4151
|
+
* never authored — so closing its write surface costs nothing. `sys_webhook`
|
|
4152
|
+
* is a first-class admin authoring surface. That is the whole difference, and
|
|
4153
|
+
* it is why the sibling's shape could not simply be copied here.
|
|
4154
|
+
*
|
|
4155
|
+
* Pinned — the census, the no-narrowing equality, and the registration-time
|
|
4156
|
+
* survival of every write verb — in `sys-webhook-api-exposure.test.ts`.
|
|
4157
|
+
*/
|
|
4158
|
+
readonly enable: {
|
|
4159
|
+
readonly apiMethods: ["get", "list", "create", "update", "delete", "bulk"];
|
|
4160
|
+
};
|
|
2833
4161
|
}, "fields">;
|
|
2834
4162
|
|
|
2835
4163
|
export { SysWebhook };
|