@objectstack/plugin-webhooks 17.0.0 → 17.2.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 +426 -0
- package/dist/{chunk-Q4FEMGD6.cjs → chunk-DRHJ2M45.cjs} +61 -2
- package/dist/chunk-DRHJ2M45.cjs.map +1 -0
- package/dist/{chunk-GDCWDVDT.js → chunk-XERWWQKN.js} +61 -2
- package/dist/{chunk-GDCWDVDT.js.map → chunk-XERWWQKN.js.map} +1 -1
- package/dist/index.cjs +250 -98
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +140 -6
- package/dist/index.d.ts +140 -6
- package/dist/index.js +187 -35
- package/dist/index.js.map +1 -1
- package/dist/schema.cjs +2 -2
- package/dist/schema.d.cts +1193 -267
- package/dist/schema.d.ts +1193 -267
- package/dist/schema.js +1 -1
- package/dist/{translations-U32QIEPB.js → translations-IAKF6NAP.js} +1 -1
- package/dist/translations-IAKF6NAP.js.map +1 -0
- package/dist/{translations-H5ZYI6YP.cjs → translations-IHRALWSP.cjs} +1 -1
- package/dist/translations-IHRALWSP.cjs.map +1 -0
- package/package.json +7 -7
- package/dist/chunk-Q4FEMGD6.cjs.map +0 -1
- package/dist/translations-H5ZYI6YP.cjs.map +0 -1
- package/dist/translations-U32QIEPB.js.map +0 -1
package/dist/schema.d.ts
CHANGED
|
@@ -85,11 +85,52 @@ declare const SysWebhook: Omit<{
|
|
|
85
85
|
deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
86
86
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
87
87
|
inlineTitle?: string | undefined;
|
|
88
|
-
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;
|
|
89
129
|
inlineAmountField?: string | undefined;
|
|
90
130
|
relatedList?: boolean | "primary" | undefined;
|
|
91
131
|
relatedListTitle?: string | undefined;
|
|
92
|
-
relatedListColumns?:
|
|
132
|
+
relatedListColumns?: string[] | undefined;
|
|
133
|
+
relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
93
134
|
displayField?: string | undefined;
|
|
94
135
|
descriptionField?: string | undefined;
|
|
95
136
|
lookupColumns?: (string | {
|
|
@@ -169,10 +210,15 @@ declare const SysWebhook: Omit<{
|
|
|
169
210
|
internal?: boolean | undefined;
|
|
170
211
|
readonly?: boolean | undefined;
|
|
171
212
|
requiredPermissions?: string[] | undefined;
|
|
213
|
+
maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
214
|
+
keepHead: number;
|
|
215
|
+
keepTail: number;
|
|
216
|
+
} | undefined;
|
|
172
217
|
ackPlaintextMasking?: boolean | undefined;
|
|
173
218
|
system?: boolean | undefined;
|
|
174
219
|
sortable?: boolean | undefined;
|
|
175
220
|
inlineHelpText?: string | undefined;
|
|
221
|
+
placeholder?: string | undefined;
|
|
176
222
|
autonumberFormat?: string | undefined;
|
|
177
223
|
externalId?: boolean | undefined;
|
|
178
224
|
}>;
|
|
@@ -310,6 +356,7 @@ declare const SysWebhook: Omit<{
|
|
|
310
356
|
tenancy?: {
|
|
311
357
|
enabled: boolean;
|
|
312
358
|
tenantField?: string | undefined;
|
|
359
|
+
organizationField?: string | undefined;
|
|
313
360
|
} | undefined;
|
|
314
361
|
access?: {
|
|
315
362
|
default?: "public" | "private" | undefined;
|
|
@@ -326,11 +373,18 @@ declare const SysWebhook: Omit<{
|
|
|
326
373
|
maxAge: string;
|
|
327
374
|
onlyWhen?: Record<string, string | number | boolean | {
|
|
328
375
|
$in: (string | number)[];
|
|
376
|
+
} | {
|
|
377
|
+
$null: boolean;
|
|
329
378
|
}> | undefined;
|
|
330
379
|
} | undefined;
|
|
331
380
|
ttl?: {
|
|
332
381
|
field: string;
|
|
333
382
|
expireAfter: string;
|
|
383
|
+
onlyWhen?: Record<string, string | number | boolean | {
|
|
384
|
+
$in: (string | number)[];
|
|
385
|
+
} | {
|
|
386
|
+
$null: boolean;
|
|
387
|
+
}> | undefined;
|
|
334
388
|
} | undefined;
|
|
335
389
|
storage?: {
|
|
336
390
|
strategy: "rotation";
|
|
@@ -368,9 +422,12 @@ declare const SysWebhook: Omit<{
|
|
|
368
422
|
listViews?: Record<string, {
|
|
369
423
|
columns: string[] | {
|
|
370
424
|
field: string;
|
|
371
|
-
label?: string | Record<string, string>
|
|
425
|
+
label?: string | (Record<string, string> & {
|
|
426
|
+
key?: never;
|
|
427
|
+
defaultValue?: never;
|
|
428
|
+
}) | undefined;
|
|
372
429
|
width?: number | undefined;
|
|
373
|
-
align?: "
|
|
430
|
+
align?: "center" | "left" | "right" | undefined;
|
|
374
431
|
hidden?: boolean | undefined;
|
|
375
432
|
sortable?: boolean | undefined;
|
|
376
433
|
resizable?: boolean | undefined;
|
|
@@ -388,6 +445,15 @@ declare const SysWebhook: Omit<{
|
|
|
388
445
|
link?: boolean | undefined;
|
|
389
446
|
action?: string | undefined;
|
|
390
447
|
}[];
|
|
448
|
+
map?: {
|
|
449
|
+
latitudeField?: string | undefined;
|
|
450
|
+
longitudeField?: string | undefined;
|
|
451
|
+
locationField?: string | undefined;
|
|
452
|
+
titleField?: string | undefined;
|
|
453
|
+
descriptionField?: string | undefined;
|
|
454
|
+
zoom?: number | undefined;
|
|
455
|
+
center?: [number, number] | undefined;
|
|
456
|
+
} | undefined;
|
|
391
457
|
type?: "map" | "tree" | "grid" | "gallery" | "kanban" | "calendar" | "timeline" | "gantt" | "chart" | undefined;
|
|
392
458
|
sort?: string | {
|
|
393
459
|
field: string;
|
|
@@ -398,8 +464,14 @@ declare const SysWebhook: Omit<{
|
|
|
398
464
|
operator: unknown;
|
|
399
465
|
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
400
466
|
}[] | undefined;
|
|
401
|
-
description?: string | Record<string, string>
|
|
402
|
-
|
|
467
|
+
description?: string | (Record<string, string> & {
|
|
468
|
+
key?: never;
|
|
469
|
+
defaultValue?: never;
|
|
470
|
+
}) | undefined;
|
|
471
|
+
label?: string | (Record<string, string> & {
|
|
472
|
+
key?: never;
|
|
473
|
+
defaultValue?: never;
|
|
474
|
+
}) | undefined;
|
|
403
475
|
name?: string | undefined;
|
|
404
476
|
tree?: {
|
|
405
477
|
[x: string]: unknown;
|
|
@@ -449,13 +521,19 @@ declare const SysWebhook: Omit<{
|
|
|
449
521
|
lockedBy?: string | undefined;
|
|
450
522
|
} | undefined;
|
|
451
523
|
aria?: {
|
|
452
|
-
ariaLabel?: string | Record<string, string>
|
|
524
|
+
ariaLabel?: string | (Record<string, string> & {
|
|
525
|
+
key?: never;
|
|
526
|
+
defaultValue?: never;
|
|
527
|
+
}) | undefined;
|
|
453
528
|
ariaDescribedBy?: string | undefined;
|
|
454
529
|
role?: string | undefined;
|
|
455
530
|
} | undefined;
|
|
456
531
|
tabs?: {
|
|
457
532
|
name: string;
|
|
458
|
-
label?: string | Record<string, string>
|
|
533
|
+
label?: string | (Record<string, string> & {
|
|
534
|
+
key?: never;
|
|
535
|
+
defaultValue?: never;
|
|
536
|
+
}) | undefined;
|
|
459
537
|
icon?: string | undefined;
|
|
460
538
|
view?: string | undefined;
|
|
461
539
|
filter?: {
|
|
@@ -469,8 +547,14 @@ declare const SysWebhook: Omit<{
|
|
|
469
547
|
visible?: boolean | undefined;
|
|
470
548
|
}[] | undefined;
|
|
471
549
|
emptyState?: {
|
|
472
|
-
title?: string | Record<string, string>
|
|
473
|
-
|
|
550
|
+
title?: string | (Record<string, string> & {
|
|
551
|
+
key?: never;
|
|
552
|
+
defaultValue?: never;
|
|
553
|
+
}) | undefined;
|
|
554
|
+
message?: string | (Record<string, string> & {
|
|
555
|
+
key?: never;
|
|
556
|
+
defaultValue?: never;
|
|
557
|
+
}) | undefined;
|
|
474
558
|
icon?: string | undefined;
|
|
475
559
|
} | undefined;
|
|
476
560
|
userActions?: {
|
|
@@ -556,6 +640,7 @@ declare const SysWebhook: Omit<{
|
|
|
556
640
|
})[] | undefined;
|
|
557
641
|
}[] | undefined;
|
|
558
642
|
autoZoomToFilter?: boolean | undefined;
|
|
643
|
+
viewMode?: "year" | "month" | "day" | "week" | "quarter" | undefined;
|
|
559
644
|
} | undefined;
|
|
560
645
|
chart?: {
|
|
561
646
|
dataset: string;
|
|
@@ -654,11 +739,17 @@ declare const SysWebhook: Omit<{
|
|
|
654
739
|
element?: "toggle" | "dropdown" | undefined;
|
|
655
740
|
fields?: {
|
|
656
741
|
field: string;
|
|
657
|
-
label?: string | Record<string, string>
|
|
742
|
+
label?: string | (Record<string, string> & {
|
|
743
|
+
key?: never;
|
|
744
|
+
defaultValue?: never;
|
|
745
|
+
}) | undefined;
|
|
658
746
|
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
659
747
|
options?: {
|
|
660
748
|
value: string | number | boolean;
|
|
661
|
-
label: string | Record<string, string
|
|
749
|
+
label: string | (Record<string, string> & {
|
|
750
|
+
key?: never;
|
|
751
|
+
defaultValue?: never;
|
|
752
|
+
});
|
|
662
753
|
color?: string | undefined;
|
|
663
754
|
}[] | undefined;
|
|
664
755
|
showCount?: boolean | undefined;
|
|
@@ -689,7 +780,10 @@ declare const SysWebhook: Omit<{
|
|
|
689
780
|
} | undefined;
|
|
690
781
|
actions?: {
|
|
691
782
|
name: string;
|
|
692
|
-
label: string | Record<string, string
|
|
783
|
+
label: string | (Record<string, string> & {
|
|
784
|
+
key?: never;
|
|
785
|
+
defaultValue?: never;
|
|
786
|
+
});
|
|
693
787
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
694
788
|
_lockReason?: string | undefined;
|
|
695
789
|
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -697,7 +791,10 @@ declare const SysWebhook: Omit<{
|
|
|
697
791
|
_packageId?: string | undefined;
|
|
698
792
|
_packageVersion?: string | undefined;
|
|
699
793
|
_lockDocsUrl?: string | undefined;
|
|
700
|
-
description?: string | Record<string, string>
|
|
794
|
+
description?: string | (Record<string, string> & {
|
|
795
|
+
key?: never;
|
|
796
|
+
defaultValue?: never;
|
|
797
|
+
}) | undefined;
|
|
701
798
|
objectName?: string | undefined;
|
|
702
799
|
icon?: string | undefined;
|
|
703
800
|
locations?: ("record_header" | "list_toolbar" | "list_item" | "record_more" | "record_related" | "record_section")[] | undefined;
|
|
@@ -720,11 +817,17 @@ declare const SysWebhook: Omit<{
|
|
|
720
817
|
name?: string | undefined;
|
|
721
818
|
field?: string | undefined;
|
|
722
819
|
objectOverride?: string | undefined;
|
|
723
|
-
label?: string | Record<string, string>
|
|
820
|
+
label?: string | (Record<string, string> & {
|
|
821
|
+
key?: never;
|
|
822
|
+
defaultValue?: never;
|
|
823
|
+
}) | undefined;
|
|
724
824
|
type?: "number" | "boolean" | "secret" | "email" | "currency" | "code" | "date" | "record" | "file" | "user" | "datetime" | "signature" | "url" | "time" | "formula" | "text" | "textarea" | "phone" | "password" | "markdown" | "html" | "richtext" | "percent" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "progress" | "tags" | "vector" | undefined;
|
|
725
825
|
required?: boolean | undefined;
|
|
726
826
|
options?: {
|
|
727
|
-
label: string | Record<string, string
|
|
827
|
+
label: string | (Record<string, string> & {
|
|
828
|
+
key?: never;
|
|
829
|
+
defaultValue?: never;
|
|
830
|
+
});
|
|
728
831
|
value: string;
|
|
729
832
|
visibleWhen?: string | {
|
|
730
833
|
dialect: "cel" | "cron" | "template";
|
|
@@ -757,19 +860,40 @@ declare const SysWebhook: Omit<{
|
|
|
757
860
|
}[] | undefined;
|
|
758
861
|
variant?: "primary" | "secondary" | "danger" | "ghost" | "link" | undefined;
|
|
759
862
|
order?: number | undefined;
|
|
760
|
-
confirmText?: string | Record<string, string>
|
|
761
|
-
|
|
762
|
-
|
|
863
|
+
confirmText?: string | (Record<string, string> & {
|
|
864
|
+
key?: never;
|
|
865
|
+
defaultValue?: never;
|
|
866
|
+
}) | undefined;
|
|
867
|
+
successMessage?: string | (Record<string, string> & {
|
|
868
|
+
key?: never;
|
|
869
|
+
defaultValue?: never;
|
|
870
|
+
}) | undefined;
|
|
871
|
+
errorMessage?: string | (Record<string, string> & {
|
|
872
|
+
key?: never;
|
|
873
|
+
defaultValue?: never;
|
|
874
|
+
}) | undefined;
|
|
763
875
|
refreshAfter?: boolean | undefined;
|
|
764
876
|
undoable?: boolean | undefined;
|
|
765
877
|
resultDialog?: {
|
|
766
|
-
title?: string | Record<string, string>
|
|
767
|
-
|
|
768
|
-
|
|
878
|
+
title?: string | (Record<string, string> & {
|
|
879
|
+
key?: never;
|
|
880
|
+
defaultValue?: never;
|
|
881
|
+
}) | undefined;
|
|
882
|
+
description?: string | (Record<string, string> & {
|
|
883
|
+
key?: never;
|
|
884
|
+
defaultValue?: never;
|
|
885
|
+
}) | undefined;
|
|
886
|
+
acknowledge?: string | (Record<string, string> & {
|
|
887
|
+
key?: never;
|
|
888
|
+
defaultValue?: never;
|
|
889
|
+
}) | undefined;
|
|
769
890
|
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
770
891
|
fields?: {
|
|
771
892
|
path: string;
|
|
772
|
-
label?: string | Record<string, string>
|
|
893
|
+
label?: string | (Record<string, string> & {
|
|
894
|
+
key?: never;
|
|
895
|
+
defaultValue?: never;
|
|
896
|
+
}) | undefined;
|
|
773
897
|
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
774
898
|
}[] | undefined;
|
|
775
899
|
} | undefined;
|
|
@@ -817,8 +941,15 @@ declare const SysWebhook: Omit<{
|
|
|
817
941
|
mode?: "delete" | "create" | "custom" | "edit" | undefined;
|
|
818
942
|
opensInNewTab?: boolean | undefined;
|
|
819
943
|
newTabUrl?: string | undefined;
|
|
944
|
+
onSuccess?: {
|
|
945
|
+
navigate: string;
|
|
946
|
+
openIn?: "self" | "newTab" | undefined;
|
|
947
|
+
} | undefined;
|
|
820
948
|
aria?: {
|
|
821
|
-
ariaLabel?: string | Record<string, string>
|
|
949
|
+
ariaLabel?: string | (Record<string, string> & {
|
|
950
|
+
key?: never;
|
|
951
|
+
defaultValue?: never;
|
|
952
|
+
}) | undefined;
|
|
822
953
|
ariaDescribedBy?: string | undefined;
|
|
823
954
|
role?: string | undefined;
|
|
824
955
|
} | undefined;
|
|
@@ -1016,6 +1147,19 @@ declare const SysWebhook: Omit<{
|
|
|
1016
1147
|
} | undefined;
|
|
1017
1148
|
readonly reference?: string | undefined;
|
|
1018
1149
|
readonly scale?: number | undefined;
|
|
1150
|
+
readonly step?: number | undefined;
|
|
1151
|
+
readonly displayField?: string | undefined;
|
|
1152
|
+
readonly accept?: string[] | undefined;
|
|
1153
|
+
readonly requiredWhen?: string | {
|
|
1154
|
+
dialect: "cel" | "cron" | "template";
|
|
1155
|
+
source?: string | undefined;
|
|
1156
|
+
ast?: unknown;
|
|
1157
|
+
meta?: {
|
|
1158
|
+
rationale?: string | undefined;
|
|
1159
|
+
generatedBy?: string | undefined;
|
|
1160
|
+
} | undefined;
|
|
1161
|
+
} | undefined;
|
|
1162
|
+
readonly hidden?: boolean | undefined;
|
|
1019
1163
|
readonly searchable?: boolean | undefined;
|
|
1020
1164
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
1021
1165
|
readonly defaultValue?: unknown;
|
|
@@ -1024,16 +1168,55 @@ declare const SysWebhook: Omit<{
|
|
|
1024
1168
|
readonly min?: number | undefined;
|
|
1025
1169
|
readonly max?: number | undefined;
|
|
1026
1170
|
readonly useGrouping?: boolean | undefined;
|
|
1027
|
-
readonly accept?: string[] | undefined;
|
|
1028
1171
|
readonly maxSize?: number | undefined;
|
|
1029
1172
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1030
1173
|
readonly inlineTitle?: string | undefined;
|
|
1031
|
-
readonly inlineColumns?:
|
|
1174
|
+
readonly inlineColumns?: {
|
|
1175
|
+
name: string;
|
|
1176
|
+
label?: string | undefined;
|
|
1177
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
1178
|
+
width?: number | undefined;
|
|
1179
|
+
required?: boolean | undefined;
|
|
1180
|
+
options?: {
|
|
1181
|
+
label: string;
|
|
1182
|
+
value: string;
|
|
1183
|
+
}[] | undefined;
|
|
1184
|
+
prefix?: string | undefined;
|
|
1185
|
+
step?: number | undefined;
|
|
1186
|
+
reference?: string | undefined;
|
|
1187
|
+
displayField?: string | undefined;
|
|
1188
|
+
idField?: string | undefined;
|
|
1189
|
+
multiple?: boolean | undefined;
|
|
1190
|
+
accept?: string[] | undefined;
|
|
1191
|
+
defaultHidden?: boolean | undefined;
|
|
1192
|
+
computed?: boolean | undefined;
|
|
1193
|
+
expr?: string | undefined;
|
|
1194
|
+
scale?: number | undefined;
|
|
1195
|
+
autofill?: boolean | undefined;
|
|
1196
|
+
readonlyWhen?: string | {
|
|
1197
|
+
dialect: "cel" | "cron" | "template";
|
|
1198
|
+
source?: string | undefined;
|
|
1199
|
+
ast?: unknown;
|
|
1200
|
+
meta?: {
|
|
1201
|
+
rationale?: string | undefined;
|
|
1202
|
+
generatedBy?: string | undefined;
|
|
1203
|
+
} | undefined;
|
|
1204
|
+
} | undefined;
|
|
1205
|
+
requiredWhen?: string | {
|
|
1206
|
+
dialect: "cel" | "cron" | "template";
|
|
1207
|
+
source?: string | undefined;
|
|
1208
|
+
ast?: unknown;
|
|
1209
|
+
meta?: {
|
|
1210
|
+
rationale?: string | undefined;
|
|
1211
|
+
generatedBy?: string | undefined;
|
|
1212
|
+
} | undefined;
|
|
1213
|
+
} | undefined;
|
|
1214
|
+
}[] | undefined;
|
|
1032
1215
|
readonly inlineAmountField?: string | undefined;
|
|
1033
1216
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
1034
1217
|
readonly relatedListTitle?: string | undefined;
|
|
1035
|
-
readonly relatedListColumns?:
|
|
1036
|
-
readonly
|
|
1218
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
1219
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1037
1220
|
readonly descriptionField?: string | undefined;
|
|
1038
1221
|
readonly lookupColumns?: (string | {
|
|
1039
1222
|
field: string;
|
|
@@ -1048,7 +1231,6 @@ declare const SysWebhook: Omit<{
|
|
|
1048
1231
|
})[] | undefined;
|
|
1049
1232
|
readonly allowCreate?: boolean | undefined;
|
|
1050
1233
|
readonly language?: string | undefined;
|
|
1051
|
-
readonly step?: number | undefined;
|
|
1052
1234
|
readonly currencyConfig?: {
|
|
1053
1235
|
precision?: number | undefined;
|
|
1054
1236
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -1057,23 +1239,18 @@ declare const SysWebhook: Omit<{
|
|
|
1057
1239
|
readonly dimensions?: number | undefined;
|
|
1058
1240
|
readonly trackHistory?: boolean | undefined;
|
|
1059
1241
|
readonly group?: string | undefined;
|
|
1060
|
-
readonly requiredWhen?: string | {
|
|
1061
|
-
dialect: "cel" | "cron" | "template";
|
|
1062
|
-
source?: string | undefined;
|
|
1063
|
-
ast?: unknown;
|
|
1064
|
-
meta?: {
|
|
1065
|
-
rationale?: string | undefined;
|
|
1066
|
-
generatedBy?: string | undefined;
|
|
1067
|
-
} | undefined;
|
|
1068
|
-
} | undefined;
|
|
1069
1242
|
readonly conditionalRequired?: undefined;
|
|
1070
|
-
readonly hidden?: boolean | undefined;
|
|
1071
1243
|
readonly internal?: boolean | undefined;
|
|
1072
1244
|
readonly requiredPermissions?: string[] | undefined;
|
|
1245
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
1246
|
+
keepHead: number;
|
|
1247
|
+
keepTail: number;
|
|
1248
|
+
} | undefined;
|
|
1073
1249
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1074
1250
|
readonly system?: boolean | undefined;
|
|
1075
1251
|
readonly sortable?: boolean | undefined;
|
|
1076
1252
|
readonly inlineHelpText?: string | undefined;
|
|
1253
|
+
readonly placeholder?: string | undefined;
|
|
1077
1254
|
readonly externalId?: boolean | undefined;
|
|
1078
1255
|
readonly type: "text";
|
|
1079
1256
|
};
|
|
@@ -1156,6 +1333,19 @@ declare const SysWebhook: Omit<{
|
|
|
1156
1333
|
} | undefined;
|
|
1157
1334
|
readonly reference?: string | undefined;
|
|
1158
1335
|
readonly scale?: number | undefined;
|
|
1336
|
+
readonly step?: number | undefined;
|
|
1337
|
+
readonly displayField?: string | undefined;
|
|
1338
|
+
readonly accept?: string[] | undefined;
|
|
1339
|
+
readonly requiredWhen?: string | {
|
|
1340
|
+
dialect: "cel" | "cron" | "template";
|
|
1341
|
+
source?: string | undefined;
|
|
1342
|
+
ast?: unknown;
|
|
1343
|
+
meta?: {
|
|
1344
|
+
rationale?: string | undefined;
|
|
1345
|
+
generatedBy?: string | undefined;
|
|
1346
|
+
} | undefined;
|
|
1347
|
+
} | undefined;
|
|
1348
|
+
readonly hidden?: boolean | undefined;
|
|
1159
1349
|
readonly searchable?: boolean | undefined;
|
|
1160
1350
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
1161
1351
|
readonly defaultValue?: unknown;
|
|
@@ -1164,16 +1354,55 @@ declare const SysWebhook: Omit<{
|
|
|
1164
1354
|
readonly min?: number | undefined;
|
|
1165
1355
|
readonly max?: number | undefined;
|
|
1166
1356
|
readonly useGrouping?: boolean | undefined;
|
|
1167
|
-
readonly accept?: string[] | undefined;
|
|
1168
1357
|
readonly maxSize?: number | undefined;
|
|
1169
1358
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1170
1359
|
readonly inlineTitle?: string | undefined;
|
|
1171
|
-
readonly inlineColumns?:
|
|
1360
|
+
readonly inlineColumns?: {
|
|
1361
|
+
name: string;
|
|
1362
|
+
label?: string | undefined;
|
|
1363
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
1364
|
+
width?: number | undefined;
|
|
1365
|
+
required?: boolean | undefined;
|
|
1366
|
+
options?: {
|
|
1367
|
+
label: string;
|
|
1368
|
+
value: string;
|
|
1369
|
+
}[] | undefined;
|
|
1370
|
+
prefix?: string | undefined;
|
|
1371
|
+
step?: number | undefined;
|
|
1372
|
+
reference?: string | undefined;
|
|
1373
|
+
displayField?: string | undefined;
|
|
1374
|
+
idField?: string | undefined;
|
|
1375
|
+
multiple?: boolean | undefined;
|
|
1376
|
+
accept?: string[] | undefined;
|
|
1377
|
+
defaultHidden?: boolean | undefined;
|
|
1378
|
+
computed?: boolean | undefined;
|
|
1379
|
+
expr?: string | undefined;
|
|
1380
|
+
scale?: number | undefined;
|
|
1381
|
+
autofill?: boolean | undefined;
|
|
1382
|
+
readonlyWhen?: string | {
|
|
1383
|
+
dialect: "cel" | "cron" | "template";
|
|
1384
|
+
source?: string | undefined;
|
|
1385
|
+
ast?: unknown;
|
|
1386
|
+
meta?: {
|
|
1387
|
+
rationale?: string | undefined;
|
|
1388
|
+
generatedBy?: string | undefined;
|
|
1389
|
+
} | undefined;
|
|
1390
|
+
} | undefined;
|
|
1391
|
+
requiredWhen?: string | {
|
|
1392
|
+
dialect: "cel" | "cron" | "template";
|
|
1393
|
+
source?: string | undefined;
|
|
1394
|
+
ast?: unknown;
|
|
1395
|
+
meta?: {
|
|
1396
|
+
rationale?: string | undefined;
|
|
1397
|
+
generatedBy?: string | undefined;
|
|
1398
|
+
} | undefined;
|
|
1399
|
+
} | undefined;
|
|
1400
|
+
}[] | undefined;
|
|
1172
1401
|
readonly inlineAmountField?: string | undefined;
|
|
1173
1402
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
1174
1403
|
readonly relatedListTitle?: string | undefined;
|
|
1175
|
-
readonly relatedListColumns?:
|
|
1176
|
-
readonly
|
|
1404
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
1405
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1177
1406
|
readonly descriptionField?: string | undefined;
|
|
1178
1407
|
readonly lookupColumns?: (string | {
|
|
1179
1408
|
field: string;
|
|
@@ -1188,7 +1417,6 @@ declare const SysWebhook: Omit<{
|
|
|
1188
1417
|
})[] | undefined;
|
|
1189
1418
|
readonly allowCreate?: boolean | undefined;
|
|
1190
1419
|
readonly language?: string | undefined;
|
|
1191
|
-
readonly step?: number | undefined;
|
|
1192
1420
|
readonly currencyConfig?: {
|
|
1193
1421
|
precision?: number | undefined;
|
|
1194
1422
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -1197,23 +1425,18 @@ declare const SysWebhook: Omit<{
|
|
|
1197
1425
|
readonly dimensions?: number | undefined;
|
|
1198
1426
|
readonly trackHistory?: boolean | undefined;
|
|
1199
1427
|
readonly group?: string | undefined;
|
|
1200
|
-
readonly requiredWhen?: string | {
|
|
1201
|
-
dialect: "cel" | "cron" | "template";
|
|
1202
|
-
source?: string | undefined;
|
|
1203
|
-
ast?: unknown;
|
|
1204
|
-
meta?: {
|
|
1205
|
-
rationale?: string | undefined;
|
|
1206
|
-
generatedBy?: string | undefined;
|
|
1207
|
-
} | undefined;
|
|
1208
|
-
} | undefined;
|
|
1209
1428
|
readonly conditionalRequired?: undefined;
|
|
1210
|
-
readonly hidden?: boolean | undefined;
|
|
1211
1429
|
readonly internal?: boolean | undefined;
|
|
1212
1430
|
readonly requiredPermissions?: string[] | undefined;
|
|
1431
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
1432
|
+
keepHead: number;
|
|
1433
|
+
keepTail: number;
|
|
1434
|
+
} | undefined;
|
|
1213
1435
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1214
1436
|
readonly system?: boolean | undefined;
|
|
1215
1437
|
readonly sortable?: boolean | undefined;
|
|
1216
1438
|
readonly inlineHelpText?: string | undefined;
|
|
1439
|
+
readonly placeholder?: string | undefined;
|
|
1217
1440
|
readonly externalId?: boolean | undefined;
|
|
1218
1441
|
readonly type: "text";
|
|
1219
1442
|
};
|
|
@@ -1296,6 +1519,19 @@ declare const SysWebhook: Omit<{
|
|
|
1296
1519
|
} | undefined;
|
|
1297
1520
|
readonly reference?: string | undefined;
|
|
1298
1521
|
readonly scale?: number | undefined;
|
|
1522
|
+
readonly step?: number | undefined;
|
|
1523
|
+
readonly displayField?: string | undefined;
|
|
1524
|
+
readonly accept?: string[] | undefined;
|
|
1525
|
+
readonly requiredWhen?: string | {
|
|
1526
|
+
dialect: "cel" | "cron" | "template";
|
|
1527
|
+
source?: string | undefined;
|
|
1528
|
+
ast?: unknown;
|
|
1529
|
+
meta?: {
|
|
1530
|
+
rationale?: string | undefined;
|
|
1531
|
+
generatedBy?: string | undefined;
|
|
1532
|
+
} | undefined;
|
|
1533
|
+
} | undefined;
|
|
1534
|
+
readonly hidden?: boolean | undefined;
|
|
1299
1535
|
readonly searchable?: boolean | undefined;
|
|
1300
1536
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
1301
1537
|
readonly defaultValue?: unknown;
|
|
@@ -1304,16 +1540,55 @@ declare const SysWebhook: Omit<{
|
|
|
1304
1540
|
readonly min?: number | undefined;
|
|
1305
1541
|
readonly max?: number | undefined;
|
|
1306
1542
|
readonly useGrouping?: boolean | undefined;
|
|
1307
|
-
readonly accept?: string[] | undefined;
|
|
1308
1543
|
readonly maxSize?: number | undefined;
|
|
1309
1544
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1310
1545
|
readonly inlineTitle?: string | undefined;
|
|
1311
|
-
readonly inlineColumns?:
|
|
1546
|
+
readonly inlineColumns?: {
|
|
1547
|
+
name: string;
|
|
1548
|
+
label?: string | undefined;
|
|
1549
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
1550
|
+
width?: number | undefined;
|
|
1551
|
+
required?: boolean | undefined;
|
|
1552
|
+
options?: {
|
|
1553
|
+
label: string;
|
|
1554
|
+
value: string;
|
|
1555
|
+
}[] | undefined;
|
|
1556
|
+
prefix?: string | undefined;
|
|
1557
|
+
step?: number | undefined;
|
|
1558
|
+
reference?: string | undefined;
|
|
1559
|
+
displayField?: string | undefined;
|
|
1560
|
+
idField?: string | undefined;
|
|
1561
|
+
multiple?: boolean | undefined;
|
|
1562
|
+
accept?: string[] | undefined;
|
|
1563
|
+
defaultHidden?: boolean | undefined;
|
|
1564
|
+
computed?: boolean | undefined;
|
|
1565
|
+
expr?: string | undefined;
|
|
1566
|
+
scale?: number | undefined;
|
|
1567
|
+
autofill?: boolean | undefined;
|
|
1568
|
+
readonlyWhen?: string | {
|
|
1569
|
+
dialect: "cel" | "cron" | "template";
|
|
1570
|
+
source?: string | undefined;
|
|
1571
|
+
ast?: unknown;
|
|
1572
|
+
meta?: {
|
|
1573
|
+
rationale?: string | undefined;
|
|
1574
|
+
generatedBy?: string | undefined;
|
|
1575
|
+
} | undefined;
|
|
1576
|
+
} | undefined;
|
|
1577
|
+
requiredWhen?: string | {
|
|
1578
|
+
dialect: "cel" | "cron" | "template";
|
|
1579
|
+
source?: string | undefined;
|
|
1580
|
+
ast?: unknown;
|
|
1581
|
+
meta?: {
|
|
1582
|
+
rationale?: string | undefined;
|
|
1583
|
+
generatedBy?: string | undefined;
|
|
1584
|
+
} | undefined;
|
|
1585
|
+
} | undefined;
|
|
1586
|
+
}[] | undefined;
|
|
1312
1587
|
readonly inlineAmountField?: string | undefined;
|
|
1313
1588
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
1314
1589
|
readonly relatedListTitle?: string | undefined;
|
|
1315
|
-
readonly relatedListColumns?:
|
|
1316
|
-
readonly
|
|
1590
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
1591
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1317
1592
|
readonly descriptionField?: string | undefined;
|
|
1318
1593
|
readonly lookupColumns?: (string | {
|
|
1319
1594
|
field: string;
|
|
@@ -1328,7 +1603,6 @@ declare const SysWebhook: Omit<{
|
|
|
1328
1603
|
})[] | undefined;
|
|
1329
1604
|
readonly allowCreate?: boolean | undefined;
|
|
1330
1605
|
readonly language?: string | undefined;
|
|
1331
|
-
readonly step?: number | undefined;
|
|
1332
1606
|
readonly currencyConfig?: {
|
|
1333
1607
|
precision?: number | undefined;
|
|
1334
1608
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -1337,23 +1611,18 @@ declare const SysWebhook: Omit<{
|
|
|
1337
1611
|
readonly dimensions?: number | undefined;
|
|
1338
1612
|
readonly trackHistory?: boolean | undefined;
|
|
1339
1613
|
readonly group?: string | undefined;
|
|
1340
|
-
readonly requiredWhen?: string | {
|
|
1341
|
-
dialect: "cel" | "cron" | "template";
|
|
1342
|
-
source?: string | undefined;
|
|
1343
|
-
ast?: unknown;
|
|
1344
|
-
meta?: {
|
|
1345
|
-
rationale?: string | undefined;
|
|
1346
|
-
generatedBy?: string | undefined;
|
|
1347
|
-
} | undefined;
|
|
1348
|
-
} | undefined;
|
|
1349
1614
|
readonly conditionalRequired?: undefined;
|
|
1350
|
-
readonly hidden?: boolean | undefined;
|
|
1351
1615
|
readonly internal?: boolean | undefined;
|
|
1352
1616
|
readonly requiredPermissions?: string[] | undefined;
|
|
1617
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
1618
|
+
keepHead: number;
|
|
1619
|
+
keepTail: number;
|
|
1620
|
+
} | undefined;
|
|
1353
1621
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1354
1622
|
readonly system?: boolean | undefined;
|
|
1355
1623
|
readonly sortable?: boolean | undefined;
|
|
1356
1624
|
readonly inlineHelpText?: string | undefined;
|
|
1625
|
+
readonly placeholder?: string | undefined;
|
|
1357
1626
|
readonly externalId?: boolean | undefined;
|
|
1358
1627
|
readonly type: "text";
|
|
1359
1628
|
};
|
|
@@ -1436,6 +1705,19 @@ declare const SysWebhook: Omit<{
|
|
|
1436
1705
|
} | undefined;
|
|
1437
1706
|
readonly reference?: string | undefined;
|
|
1438
1707
|
readonly scale?: number | undefined;
|
|
1708
|
+
readonly step?: number | undefined;
|
|
1709
|
+
readonly displayField?: string | undefined;
|
|
1710
|
+
readonly accept?: string[] | undefined;
|
|
1711
|
+
readonly requiredWhen?: string | {
|
|
1712
|
+
dialect: "cel" | "cron" | "template";
|
|
1713
|
+
source?: string | undefined;
|
|
1714
|
+
ast?: unknown;
|
|
1715
|
+
meta?: {
|
|
1716
|
+
rationale?: string | undefined;
|
|
1717
|
+
generatedBy?: string | undefined;
|
|
1718
|
+
} | undefined;
|
|
1719
|
+
} | undefined;
|
|
1720
|
+
readonly hidden?: boolean | undefined;
|
|
1439
1721
|
readonly searchable?: boolean | undefined;
|
|
1440
1722
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
1441
1723
|
readonly defaultValue?: unknown;
|
|
@@ -1444,16 +1726,55 @@ declare const SysWebhook: Omit<{
|
|
|
1444
1726
|
readonly min?: number | undefined;
|
|
1445
1727
|
readonly max?: number | undefined;
|
|
1446
1728
|
readonly useGrouping?: boolean | undefined;
|
|
1447
|
-
readonly accept?: string[] | undefined;
|
|
1448
1729
|
readonly maxSize?: number | undefined;
|
|
1449
1730
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1450
1731
|
readonly inlineTitle?: string | undefined;
|
|
1451
|
-
readonly inlineColumns?:
|
|
1732
|
+
readonly inlineColumns?: {
|
|
1733
|
+
name: string;
|
|
1734
|
+
label?: string | undefined;
|
|
1735
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
1736
|
+
width?: number | undefined;
|
|
1737
|
+
required?: boolean | undefined;
|
|
1738
|
+
options?: {
|
|
1739
|
+
label: string;
|
|
1740
|
+
value: string;
|
|
1741
|
+
}[] | undefined;
|
|
1742
|
+
prefix?: string | undefined;
|
|
1743
|
+
step?: number | undefined;
|
|
1744
|
+
reference?: string | undefined;
|
|
1745
|
+
displayField?: string | undefined;
|
|
1746
|
+
idField?: string | undefined;
|
|
1747
|
+
multiple?: boolean | undefined;
|
|
1748
|
+
accept?: string[] | undefined;
|
|
1749
|
+
defaultHidden?: boolean | undefined;
|
|
1750
|
+
computed?: boolean | undefined;
|
|
1751
|
+
expr?: string | undefined;
|
|
1752
|
+
scale?: number | undefined;
|
|
1753
|
+
autofill?: boolean | undefined;
|
|
1754
|
+
readonlyWhen?: string | {
|
|
1755
|
+
dialect: "cel" | "cron" | "template";
|
|
1756
|
+
source?: string | undefined;
|
|
1757
|
+
ast?: unknown;
|
|
1758
|
+
meta?: {
|
|
1759
|
+
rationale?: string | undefined;
|
|
1760
|
+
generatedBy?: string | undefined;
|
|
1761
|
+
} | undefined;
|
|
1762
|
+
} | undefined;
|
|
1763
|
+
requiredWhen?: string | {
|
|
1764
|
+
dialect: "cel" | "cron" | "template";
|
|
1765
|
+
source?: string | undefined;
|
|
1766
|
+
ast?: unknown;
|
|
1767
|
+
meta?: {
|
|
1768
|
+
rationale?: string | undefined;
|
|
1769
|
+
generatedBy?: string | undefined;
|
|
1770
|
+
} | undefined;
|
|
1771
|
+
} | undefined;
|
|
1772
|
+
}[] | undefined;
|
|
1452
1773
|
readonly inlineAmountField?: string | undefined;
|
|
1453
1774
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
1454
1775
|
readonly relatedListTitle?: string | undefined;
|
|
1455
|
-
readonly relatedListColumns?:
|
|
1456
|
-
readonly
|
|
1776
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
1777
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1457
1778
|
readonly descriptionField?: string | undefined;
|
|
1458
1779
|
readonly lookupColumns?: (string | {
|
|
1459
1780
|
field: string;
|
|
@@ -1468,7 +1789,6 @@ declare const SysWebhook: Omit<{
|
|
|
1468
1789
|
})[] | undefined;
|
|
1469
1790
|
readonly allowCreate?: boolean | undefined;
|
|
1470
1791
|
readonly language?: string | undefined;
|
|
1471
|
-
readonly step?: number | undefined;
|
|
1472
1792
|
readonly currencyConfig?: {
|
|
1473
1793
|
precision?: number | undefined;
|
|
1474
1794
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -1477,23 +1797,18 @@ declare const SysWebhook: Omit<{
|
|
|
1477
1797
|
readonly dimensions?: number | undefined;
|
|
1478
1798
|
readonly trackHistory?: boolean | undefined;
|
|
1479
1799
|
readonly group?: string | undefined;
|
|
1480
|
-
readonly requiredWhen?: string | {
|
|
1481
|
-
dialect: "cel" | "cron" | "template";
|
|
1482
|
-
source?: string | undefined;
|
|
1483
|
-
ast?: unknown;
|
|
1484
|
-
meta?: {
|
|
1485
|
-
rationale?: string | undefined;
|
|
1486
|
-
generatedBy?: string | undefined;
|
|
1487
|
-
} | undefined;
|
|
1488
|
-
} | undefined;
|
|
1489
1800
|
readonly conditionalRequired?: undefined;
|
|
1490
|
-
readonly hidden?: boolean | undefined;
|
|
1491
1801
|
readonly internal?: boolean | undefined;
|
|
1492
1802
|
readonly requiredPermissions?: string[] | undefined;
|
|
1803
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
1804
|
+
keepHead: number;
|
|
1805
|
+
keepTail: number;
|
|
1806
|
+
} | undefined;
|
|
1493
1807
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1494
1808
|
readonly system?: boolean | undefined;
|
|
1495
1809
|
readonly sortable?: boolean | undefined;
|
|
1496
1810
|
readonly inlineHelpText?: string | undefined;
|
|
1811
|
+
readonly placeholder?: string | undefined;
|
|
1497
1812
|
readonly externalId?: boolean | undefined;
|
|
1498
1813
|
readonly type: "text";
|
|
1499
1814
|
};
|
|
@@ -1576,6 +1891,19 @@ declare const SysWebhook: Omit<{
|
|
|
1576
1891
|
} | undefined;
|
|
1577
1892
|
readonly reference?: string | undefined;
|
|
1578
1893
|
readonly scale?: number | undefined;
|
|
1894
|
+
readonly step?: number | undefined;
|
|
1895
|
+
readonly displayField?: string | undefined;
|
|
1896
|
+
readonly accept?: string[] | undefined;
|
|
1897
|
+
readonly requiredWhen?: string | {
|
|
1898
|
+
dialect: "cel" | "cron" | "template";
|
|
1899
|
+
source?: string | undefined;
|
|
1900
|
+
ast?: unknown;
|
|
1901
|
+
meta?: {
|
|
1902
|
+
rationale?: string | undefined;
|
|
1903
|
+
generatedBy?: string | undefined;
|
|
1904
|
+
} | undefined;
|
|
1905
|
+
} | undefined;
|
|
1906
|
+
readonly hidden?: boolean | undefined;
|
|
1579
1907
|
readonly searchable?: boolean | undefined;
|
|
1580
1908
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
1581
1909
|
readonly defaultValue?: unknown;
|
|
@@ -1584,16 +1912,55 @@ declare const SysWebhook: Omit<{
|
|
|
1584
1912
|
readonly min?: number | undefined;
|
|
1585
1913
|
readonly max?: number | undefined;
|
|
1586
1914
|
readonly useGrouping?: boolean | undefined;
|
|
1587
|
-
readonly accept?: string[] | undefined;
|
|
1588
1915
|
readonly maxSize?: number | undefined;
|
|
1589
1916
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1590
1917
|
readonly inlineTitle?: string | undefined;
|
|
1591
|
-
readonly inlineColumns?:
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1918
|
+
readonly inlineColumns?: {
|
|
1919
|
+
name: string;
|
|
1920
|
+
label?: string | undefined;
|
|
1921
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
1922
|
+
width?: number | undefined;
|
|
1923
|
+
required?: boolean | undefined;
|
|
1924
|
+
options?: {
|
|
1925
|
+
label: string;
|
|
1926
|
+
value: string;
|
|
1927
|
+
}[] | undefined;
|
|
1928
|
+
prefix?: string | undefined;
|
|
1929
|
+
step?: number | undefined;
|
|
1930
|
+
reference?: string | undefined;
|
|
1931
|
+
displayField?: string | undefined;
|
|
1932
|
+
idField?: string | undefined;
|
|
1933
|
+
multiple?: boolean | undefined;
|
|
1934
|
+
accept?: string[] | undefined;
|
|
1935
|
+
defaultHidden?: boolean | undefined;
|
|
1936
|
+
computed?: boolean | undefined;
|
|
1937
|
+
expr?: string | undefined;
|
|
1938
|
+
scale?: number | undefined;
|
|
1939
|
+
autofill?: boolean | undefined;
|
|
1940
|
+
readonlyWhen?: string | {
|
|
1941
|
+
dialect: "cel" | "cron" | "template";
|
|
1942
|
+
source?: string | undefined;
|
|
1943
|
+
ast?: unknown;
|
|
1944
|
+
meta?: {
|
|
1945
|
+
rationale?: string | undefined;
|
|
1946
|
+
generatedBy?: string | undefined;
|
|
1947
|
+
} | undefined;
|
|
1948
|
+
} | undefined;
|
|
1949
|
+
requiredWhen?: string | {
|
|
1950
|
+
dialect: "cel" | "cron" | "template";
|
|
1951
|
+
source?: string | undefined;
|
|
1952
|
+
ast?: unknown;
|
|
1953
|
+
meta?: {
|
|
1954
|
+
rationale?: string | undefined;
|
|
1955
|
+
generatedBy?: string | undefined;
|
|
1956
|
+
} | undefined;
|
|
1957
|
+
} | undefined;
|
|
1958
|
+
}[] | undefined;
|
|
1959
|
+
readonly inlineAmountField?: string | undefined;
|
|
1960
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1961
|
+
readonly relatedListTitle?: string | undefined;
|
|
1962
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
1963
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1597
1964
|
readonly descriptionField?: string | undefined;
|
|
1598
1965
|
readonly lookupColumns?: (string | {
|
|
1599
1966
|
field: string;
|
|
@@ -1608,7 +1975,6 @@ declare const SysWebhook: Omit<{
|
|
|
1608
1975
|
})[] | undefined;
|
|
1609
1976
|
readonly allowCreate?: boolean | undefined;
|
|
1610
1977
|
readonly language?: string | undefined;
|
|
1611
|
-
readonly step?: number | undefined;
|
|
1612
1978
|
readonly currencyConfig?: {
|
|
1613
1979
|
precision?: number | undefined;
|
|
1614
1980
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -1617,23 +1983,18 @@ declare const SysWebhook: Omit<{
|
|
|
1617
1983
|
readonly dimensions?: number | undefined;
|
|
1618
1984
|
readonly trackHistory?: boolean | undefined;
|
|
1619
1985
|
readonly group?: string | undefined;
|
|
1620
|
-
readonly requiredWhen?: string | {
|
|
1621
|
-
dialect: "cel" | "cron" | "template";
|
|
1622
|
-
source?: string | undefined;
|
|
1623
|
-
ast?: unknown;
|
|
1624
|
-
meta?: {
|
|
1625
|
-
rationale?: string | undefined;
|
|
1626
|
-
generatedBy?: string | undefined;
|
|
1627
|
-
} | undefined;
|
|
1628
|
-
} | undefined;
|
|
1629
1986
|
readonly conditionalRequired?: undefined;
|
|
1630
|
-
readonly hidden?: boolean | undefined;
|
|
1631
1987
|
readonly internal?: boolean | undefined;
|
|
1632
1988
|
readonly requiredPermissions?: string[] | undefined;
|
|
1989
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
1990
|
+
keepHead: number;
|
|
1991
|
+
keepTail: number;
|
|
1992
|
+
} | undefined;
|
|
1633
1993
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1634
1994
|
readonly system?: boolean | undefined;
|
|
1635
1995
|
readonly sortable?: boolean | undefined;
|
|
1636
1996
|
readonly inlineHelpText?: string | undefined;
|
|
1997
|
+
readonly placeholder?: string | undefined;
|
|
1637
1998
|
readonly externalId?: boolean | undefined;
|
|
1638
1999
|
readonly type: "select";
|
|
1639
2000
|
};
|
|
@@ -1716,6 +2077,19 @@ declare const SysWebhook: Omit<{
|
|
|
1716
2077
|
} | undefined;
|
|
1717
2078
|
readonly reference?: string | undefined;
|
|
1718
2079
|
readonly scale?: number | undefined;
|
|
2080
|
+
readonly step?: number | undefined;
|
|
2081
|
+
readonly displayField?: string | undefined;
|
|
2082
|
+
readonly accept?: string[] | undefined;
|
|
2083
|
+
readonly requiredWhen?: string | {
|
|
2084
|
+
dialect: "cel" | "cron" | "template";
|
|
2085
|
+
source?: string | undefined;
|
|
2086
|
+
ast?: unknown;
|
|
2087
|
+
meta?: {
|
|
2088
|
+
rationale?: string | undefined;
|
|
2089
|
+
generatedBy?: string | undefined;
|
|
2090
|
+
} | undefined;
|
|
2091
|
+
} | undefined;
|
|
2092
|
+
readonly hidden?: boolean | undefined;
|
|
1719
2093
|
readonly searchable?: boolean | undefined;
|
|
1720
2094
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
1721
2095
|
readonly defaultValue?: unknown;
|
|
@@ -1724,16 +2098,55 @@ declare const SysWebhook: Omit<{
|
|
|
1724
2098
|
readonly min?: number | undefined;
|
|
1725
2099
|
readonly max?: number | undefined;
|
|
1726
2100
|
readonly useGrouping?: boolean | undefined;
|
|
1727
|
-
readonly accept?: string[] | undefined;
|
|
1728
2101
|
readonly maxSize?: number | undefined;
|
|
1729
2102
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1730
2103
|
readonly inlineTitle?: string | undefined;
|
|
1731
|
-
readonly inlineColumns?:
|
|
2104
|
+
readonly inlineColumns?: {
|
|
2105
|
+
name: string;
|
|
2106
|
+
label?: string | undefined;
|
|
2107
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
2108
|
+
width?: number | undefined;
|
|
2109
|
+
required?: boolean | undefined;
|
|
2110
|
+
options?: {
|
|
2111
|
+
label: string;
|
|
2112
|
+
value: string;
|
|
2113
|
+
}[] | undefined;
|
|
2114
|
+
prefix?: string | undefined;
|
|
2115
|
+
step?: number | undefined;
|
|
2116
|
+
reference?: string | undefined;
|
|
2117
|
+
displayField?: string | undefined;
|
|
2118
|
+
idField?: string | undefined;
|
|
2119
|
+
multiple?: boolean | undefined;
|
|
2120
|
+
accept?: string[] | undefined;
|
|
2121
|
+
defaultHidden?: boolean | undefined;
|
|
2122
|
+
computed?: boolean | undefined;
|
|
2123
|
+
expr?: string | undefined;
|
|
2124
|
+
scale?: number | undefined;
|
|
2125
|
+
autofill?: boolean | undefined;
|
|
2126
|
+
readonlyWhen?: string | {
|
|
2127
|
+
dialect: "cel" | "cron" | "template";
|
|
2128
|
+
source?: string | undefined;
|
|
2129
|
+
ast?: unknown;
|
|
2130
|
+
meta?: {
|
|
2131
|
+
rationale?: string | undefined;
|
|
2132
|
+
generatedBy?: string | undefined;
|
|
2133
|
+
} | undefined;
|
|
2134
|
+
} | undefined;
|
|
2135
|
+
requiredWhen?: string | {
|
|
2136
|
+
dialect: "cel" | "cron" | "template";
|
|
2137
|
+
source?: string | undefined;
|
|
2138
|
+
ast?: unknown;
|
|
2139
|
+
meta?: {
|
|
2140
|
+
rationale?: string | undefined;
|
|
2141
|
+
generatedBy?: string | undefined;
|
|
2142
|
+
} | undefined;
|
|
2143
|
+
} | undefined;
|
|
2144
|
+
}[] | undefined;
|
|
1732
2145
|
readonly inlineAmountField?: string | undefined;
|
|
1733
2146
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
1734
2147
|
readonly relatedListTitle?: string | undefined;
|
|
1735
|
-
readonly relatedListColumns?:
|
|
1736
|
-
readonly
|
|
2148
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
2149
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1737
2150
|
readonly descriptionField?: string | undefined;
|
|
1738
2151
|
readonly lookupColumns?: (string | {
|
|
1739
2152
|
field: string;
|
|
@@ -1748,7 +2161,6 @@ declare const SysWebhook: Omit<{
|
|
|
1748
2161
|
})[] | undefined;
|
|
1749
2162
|
readonly allowCreate?: boolean | undefined;
|
|
1750
2163
|
readonly language?: string | undefined;
|
|
1751
|
-
readonly step?: number | undefined;
|
|
1752
2164
|
readonly currencyConfig?: {
|
|
1753
2165
|
precision?: number | undefined;
|
|
1754
2166
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -1757,23 +2169,18 @@ declare const SysWebhook: Omit<{
|
|
|
1757
2169
|
readonly dimensions?: number | undefined;
|
|
1758
2170
|
readonly trackHistory?: boolean | undefined;
|
|
1759
2171
|
readonly group?: string | undefined;
|
|
1760
|
-
readonly requiredWhen?: string | {
|
|
1761
|
-
dialect: "cel" | "cron" | "template";
|
|
1762
|
-
source?: string | undefined;
|
|
1763
|
-
ast?: unknown;
|
|
1764
|
-
meta?: {
|
|
1765
|
-
rationale?: string | undefined;
|
|
1766
|
-
generatedBy?: string | undefined;
|
|
1767
|
-
} | undefined;
|
|
1768
|
-
} | undefined;
|
|
1769
2172
|
readonly conditionalRequired?: undefined;
|
|
1770
|
-
readonly hidden?: boolean | undefined;
|
|
1771
2173
|
readonly internal?: boolean | undefined;
|
|
1772
2174
|
readonly requiredPermissions?: string[] | undefined;
|
|
2175
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
2176
|
+
keepHead: number;
|
|
2177
|
+
keepTail: number;
|
|
2178
|
+
} | undefined;
|
|
1773
2179
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1774
2180
|
readonly system?: boolean | undefined;
|
|
1775
2181
|
readonly sortable?: boolean | undefined;
|
|
1776
2182
|
readonly inlineHelpText?: string | undefined;
|
|
2183
|
+
readonly placeholder?: string | undefined;
|
|
1777
2184
|
readonly externalId?: boolean | undefined;
|
|
1778
2185
|
readonly type: "text";
|
|
1779
2186
|
};
|
|
@@ -1856,6 +2263,19 @@ declare const SysWebhook: Omit<{
|
|
|
1856
2263
|
} | undefined;
|
|
1857
2264
|
readonly reference?: string | undefined;
|
|
1858
2265
|
readonly scale?: number | undefined;
|
|
2266
|
+
readonly step?: number | undefined;
|
|
2267
|
+
readonly displayField?: string | undefined;
|
|
2268
|
+
readonly accept?: string[] | undefined;
|
|
2269
|
+
readonly requiredWhen?: string | {
|
|
2270
|
+
dialect: "cel" | "cron" | "template";
|
|
2271
|
+
source?: string | undefined;
|
|
2272
|
+
ast?: unknown;
|
|
2273
|
+
meta?: {
|
|
2274
|
+
rationale?: string | undefined;
|
|
2275
|
+
generatedBy?: string | undefined;
|
|
2276
|
+
} | undefined;
|
|
2277
|
+
} | undefined;
|
|
2278
|
+
readonly hidden?: boolean | undefined;
|
|
1859
2279
|
readonly searchable?: boolean | undefined;
|
|
1860
2280
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
1861
2281
|
readonly defaultValue?: unknown;
|
|
@@ -1864,16 +2284,55 @@ declare const SysWebhook: Omit<{
|
|
|
1864
2284
|
readonly min?: number | undefined;
|
|
1865
2285
|
readonly max?: number | undefined;
|
|
1866
2286
|
readonly useGrouping?: boolean | undefined;
|
|
1867
|
-
readonly accept?: string[] | undefined;
|
|
1868
2287
|
readonly maxSize?: number | undefined;
|
|
1869
2288
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1870
2289
|
readonly inlineTitle?: string | undefined;
|
|
1871
|
-
readonly inlineColumns?:
|
|
2290
|
+
readonly inlineColumns?: {
|
|
2291
|
+
name: string;
|
|
2292
|
+
label?: string | undefined;
|
|
2293
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
2294
|
+
width?: number | undefined;
|
|
2295
|
+
required?: boolean | undefined;
|
|
2296
|
+
options?: {
|
|
2297
|
+
label: string;
|
|
2298
|
+
value: string;
|
|
2299
|
+
}[] | undefined;
|
|
2300
|
+
prefix?: string | undefined;
|
|
2301
|
+
step?: number | undefined;
|
|
2302
|
+
reference?: string | undefined;
|
|
2303
|
+
displayField?: string | undefined;
|
|
2304
|
+
idField?: string | undefined;
|
|
2305
|
+
multiple?: boolean | undefined;
|
|
2306
|
+
accept?: string[] | undefined;
|
|
2307
|
+
defaultHidden?: boolean | undefined;
|
|
2308
|
+
computed?: boolean | undefined;
|
|
2309
|
+
expr?: string | undefined;
|
|
2310
|
+
scale?: number | undefined;
|
|
2311
|
+
autofill?: boolean | undefined;
|
|
2312
|
+
readonlyWhen?: string | {
|
|
2313
|
+
dialect: "cel" | "cron" | "template";
|
|
2314
|
+
source?: string | undefined;
|
|
2315
|
+
ast?: unknown;
|
|
2316
|
+
meta?: {
|
|
2317
|
+
rationale?: string | undefined;
|
|
2318
|
+
generatedBy?: string | undefined;
|
|
2319
|
+
} | undefined;
|
|
2320
|
+
} | undefined;
|
|
2321
|
+
requiredWhen?: string | {
|
|
2322
|
+
dialect: "cel" | "cron" | "template";
|
|
2323
|
+
source?: string | undefined;
|
|
2324
|
+
ast?: unknown;
|
|
2325
|
+
meta?: {
|
|
2326
|
+
rationale?: string | undefined;
|
|
2327
|
+
generatedBy?: string | undefined;
|
|
2328
|
+
} | undefined;
|
|
2329
|
+
} | undefined;
|
|
2330
|
+
}[] | undefined;
|
|
1872
2331
|
readonly inlineAmountField?: string | undefined;
|
|
1873
2332
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
1874
2333
|
readonly relatedListTitle?: string | undefined;
|
|
1875
|
-
readonly relatedListColumns?:
|
|
1876
|
-
readonly
|
|
2334
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
2335
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1877
2336
|
readonly descriptionField?: string | undefined;
|
|
1878
2337
|
readonly lookupColumns?: (string | {
|
|
1879
2338
|
field: string;
|
|
@@ -1888,7 +2347,6 @@ declare const SysWebhook: Omit<{
|
|
|
1888
2347
|
})[] | undefined;
|
|
1889
2348
|
readonly allowCreate?: boolean | undefined;
|
|
1890
2349
|
readonly language?: string | undefined;
|
|
1891
|
-
readonly step?: number | undefined;
|
|
1892
2350
|
readonly currencyConfig?: {
|
|
1893
2351
|
precision?: number | undefined;
|
|
1894
2352
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -1897,23 +2355,18 @@ declare const SysWebhook: Omit<{
|
|
|
1897
2355
|
readonly dimensions?: number | undefined;
|
|
1898
2356
|
readonly trackHistory?: boolean | undefined;
|
|
1899
2357
|
readonly group?: string | undefined;
|
|
1900
|
-
readonly requiredWhen?: string | {
|
|
1901
|
-
dialect: "cel" | "cron" | "template";
|
|
1902
|
-
source?: string | undefined;
|
|
1903
|
-
ast?: unknown;
|
|
1904
|
-
meta?: {
|
|
1905
|
-
rationale?: string | undefined;
|
|
1906
|
-
generatedBy?: string | undefined;
|
|
1907
|
-
} | undefined;
|
|
1908
|
-
} | undefined;
|
|
1909
2358
|
readonly conditionalRequired?: undefined;
|
|
1910
|
-
readonly hidden?: boolean | undefined;
|
|
1911
2359
|
readonly internal?: boolean | undefined;
|
|
1912
2360
|
readonly requiredPermissions?: string[] | undefined;
|
|
2361
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
2362
|
+
keepHead: number;
|
|
2363
|
+
keepTail: number;
|
|
2364
|
+
} | undefined;
|
|
1913
2365
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1914
2366
|
readonly system?: boolean | undefined;
|
|
1915
2367
|
readonly sortable?: boolean | undefined;
|
|
1916
2368
|
readonly inlineHelpText?: string | undefined;
|
|
2369
|
+
readonly placeholder?: string | undefined;
|
|
1917
2370
|
readonly externalId?: boolean | undefined;
|
|
1918
2371
|
readonly type: "select";
|
|
1919
2372
|
};
|
|
@@ -1996,6 +2449,19 @@ declare const SysWebhook: Omit<{
|
|
|
1996
2449
|
} | undefined;
|
|
1997
2450
|
readonly reference?: string | undefined;
|
|
1998
2451
|
readonly scale?: number | undefined;
|
|
2452
|
+
readonly step?: number | undefined;
|
|
2453
|
+
readonly displayField?: string | undefined;
|
|
2454
|
+
readonly accept?: string[] | undefined;
|
|
2455
|
+
readonly requiredWhen?: string | {
|
|
2456
|
+
dialect: "cel" | "cron" | "template";
|
|
2457
|
+
source?: string | undefined;
|
|
2458
|
+
ast?: unknown;
|
|
2459
|
+
meta?: {
|
|
2460
|
+
rationale?: string | undefined;
|
|
2461
|
+
generatedBy?: string | undefined;
|
|
2462
|
+
} | undefined;
|
|
2463
|
+
} | undefined;
|
|
2464
|
+
readonly hidden?: boolean | undefined;
|
|
1999
2465
|
readonly searchable?: boolean | undefined;
|
|
2000
2466
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
2001
2467
|
readonly defaultValue?: unknown;
|
|
@@ -2004,16 +2470,55 @@ declare const SysWebhook: Omit<{
|
|
|
2004
2470
|
readonly min?: number | undefined;
|
|
2005
2471
|
readonly max?: number | undefined;
|
|
2006
2472
|
readonly useGrouping?: boolean | undefined;
|
|
2007
|
-
readonly accept?: string[] | undefined;
|
|
2008
2473
|
readonly maxSize?: number | undefined;
|
|
2009
2474
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2010
2475
|
readonly inlineTitle?: string | undefined;
|
|
2011
|
-
readonly inlineColumns?:
|
|
2476
|
+
readonly inlineColumns?: {
|
|
2477
|
+
name: string;
|
|
2478
|
+
label?: string | undefined;
|
|
2479
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
2480
|
+
width?: number | undefined;
|
|
2481
|
+
required?: boolean | undefined;
|
|
2482
|
+
options?: {
|
|
2483
|
+
label: string;
|
|
2484
|
+
value: string;
|
|
2485
|
+
}[] | undefined;
|
|
2486
|
+
prefix?: string | undefined;
|
|
2487
|
+
step?: number | undefined;
|
|
2488
|
+
reference?: string | undefined;
|
|
2489
|
+
displayField?: string | undefined;
|
|
2490
|
+
idField?: string | undefined;
|
|
2491
|
+
multiple?: boolean | undefined;
|
|
2492
|
+
accept?: string[] | undefined;
|
|
2493
|
+
defaultHidden?: boolean | undefined;
|
|
2494
|
+
computed?: boolean | undefined;
|
|
2495
|
+
expr?: string | undefined;
|
|
2496
|
+
scale?: number | undefined;
|
|
2497
|
+
autofill?: boolean | undefined;
|
|
2498
|
+
readonlyWhen?: string | {
|
|
2499
|
+
dialect: "cel" | "cron" | "template";
|
|
2500
|
+
source?: string | undefined;
|
|
2501
|
+
ast?: unknown;
|
|
2502
|
+
meta?: {
|
|
2503
|
+
rationale?: string | undefined;
|
|
2504
|
+
generatedBy?: string | undefined;
|
|
2505
|
+
} | undefined;
|
|
2506
|
+
} | undefined;
|
|
2507
|
+
requiredWhen?: string | {
|
|
2508
|
+
dialect: "cel" | "cron" | "template";
|
|
2509
|
+
source?: string | undefined;
|
|
2510
|
+
ast?: unknown;
|
|
2511
|
+
meta?: {
|
|
2512
|
+
rationale?: string | undefined;
|
|
2513
|
+
generatedBy?: string | undefined;
|
|
2514
|
+
} | undefined;
|
|
2515
|
+
} | undefined;
|
|
2516
|
+
}[] | undefined;
|
|
2012
2517
|
readonly inlineAmountField?: string | undefined;
|
|
2013
2518
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
2014
2519
|
readonly relatedListTitle?: string | undefined;
|
|
2015
|
-
readonly relatedListColumns?:
|
|
2016
|
-
readonly
|
|
2520
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
2521
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2017
2522
|
readonly descriptionField?: string | undefined;
|
|
2018
2523
|
readonly lookupColumns?: (string | {
|
|
2019
2524
|
field: string;
|
|
@@ -2028,7 +2533,6 @@ declare const SysWebhook: Omit<{
|
|
|
2028
2533
|
})[] | undefined;
|
|
2029
2534
|
readonly allowCreate?: boolean | undefined;
|
|
2030
2535
|
readonly language?: string | undefined;
|
|
2031
|
-
readonly step?: number | undefined;
|
|
2032
2536
|
readonly currencyConfig?: {
|
|
2033
2537
|
precision?: number | undefined;
|
|
2034
2538
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -2037,23 +2541,18 @@ declare const SysWebhook: Omit<{
|
|
|
2037
2541
|
readonly dimensions?: number | undefined;
|
|
2038
2542
|
readonly trackHistory?: boolean | undefined;
|
|
2039
2543
|
readonly group?: string | undefined;
|
|
2040
|
-
readonly requiredWhen?: string | {
|
|
2041
|
-
dialect: "cel" | "cron" | "template";
|
|
2042
|
-
source?: string | undefined;
|
|
2043
|
-
ast?: unknown;
|
|
2044
|
-
meta?: {
|
|
2045
|
-
rationale?: string | undefined;
|
|
2046
|
-
generatedBy?: string | undefined;
|
|
2047
|
-
} | undefined;
|
|
2048
|
-
} | undefined;
|
|
2049
2544
|
readonly conditionalRequired?: undefined;
|
|
2050
|
-
readonly hidden?: boolean | undefined;
|
|
2051
2545
|
readonly internal?: boolean | undefined;
|
|
2052
2546
|
readonly requiredPermissions?: string[] | undefined;
|
|
2547
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
2548
|
+
keepHead: number;
|
|
2549
|
+
keepTail: number;
|
|
2550
|
+
} | undefined;
|
|
2053
2551
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2054
2552
|
readonly system?: boolean | undefined;
|
|
2055
2553
|
readonly sortable?: boolean | undefined;
|
|
2056
2554
|
readonly inlineHelpText?: string | undefined;
|
|
2555
|
+
readonly placeholder?: string | undefined;
|
|
2057
2556
|
readonly externalId?: boolean | undefined;
|
|
2058
2557
|
readonly type: "textarea";
|
|
2059
2558
|
};
|
|
@@ -2136,6 +2635,19 @@ declare const SysWebhook: Omit<{
|
|
|
2136
2635
|
} | undefined;
|
|
2137
2636
|
readonly reference?: string | undefined;
|
|
2138
2637
|
readonly scale?: number | undefined;
|
|
2638
|
+
readonly step?: number | undefined;
|
|
2639
|
+
readonly displayField?: string | undefined;
|
|
2640
|
+
readonly accept?: string[] | undefined;
|
|
2641
|
+
readonly requiredWhen?: string | {
|
|
2642
|
+
dialect: "cel" | "cron" | "template";
|
|
2643
|
+
source?: string | undefined;
|
|
2644
|
+
ast?: unknown;
|
|
2645
|
+
meta?: {
|
|
2646
|
+
rationale?: string | undefined;
|
|
2647
|
+
generatedBy?: string | undefined;
|
|
2648
|
+
} | undefined;
|
|
2649
|
+
} | undefined;
|
|
2650
|
+
readonly hidden?: boolean | undefined;
|
|
2139
2651
|
readonly searchable?: boolean | undefined;
|
|
2140
2652
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
2141
2653
|
readonly defaultValue?: unknown;
|
|
@@ -2144,16 +2656,55 @@ declare const SysWebhook: Omit<{
|
|
|
2144
2656
|
readonly min?: number | undefined;
|
|
2145
2657
|
readonly max?: number | undefined;
|
|
2146
2658
|
readonly useGrouping?: boolean | undefined;
|
|
2147
|
-
readonly accept?: string[] | undefined;
|
|
2148
2659
|
readonly maxSize?: number | undefined;
|
|
2149
2660
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2150
2661
|
readonly inlineTitle?: string | undefined;
|
|
2151
|
-
readonly inlineColumns?:
|
|
2662
|
+
readonly inlineColumns?: {
|
|
2663
|
+
name: string;
|
|
2664
|
+
label?: string | undefined;
|
|
2665
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
2666
|
+
width?: number | undefined;
|
|
2667
|
+
required?: boolean | undefined;
|
|
2668
|
+
options?: {
|
|
2669
|
+
label: string;
|
|
2670
|
+
value: string;
|
|
2671
|
+
}[] | undefined;
|
|
2672
|
+
prefix?: string | undefined;
|
|
2673
|
+
step?: number | undefined;
|
|
2674
|
+
reference?: string | undefined;
|
|
2675
|
+
displayField?: string | undefined;
|
|
2676
|
+
idField?: string | undefined;
|
|
2677
|
+
multiple?: boolean | undefined;
|
|
2678
|
+
accept?: string[] | undefined;
|
|
2679
|
+
defaultHidden?: boolean | undefined;
|
|
2680
|
+
computed?: boolean | undefined;
|
|
2681
|
+
expr?: string | undefined;
|
|
2682
|
+
scale?: number | undefined;
|
|
2683
|
+
autofill?: boolean | undefined;
|
|
2684
|
+
readonlyWhen?: string | {
|
|
2685
|
+
dialect: "cel" | "cron" | "template";
|
|
2686
|
+
source?: string | undefined;
|
|
2687
|
+
ast?: unknown;
|
|
2688
|
+
meta?: {
|
|
2689
|
+
rationale?: string | undefined;
|
|
2690
|
+
generatedBy?: string | undefined;
|
|
2691
|
+
} | undefined;
|
|
2692
|
+
} | undefined;
|
|
2693
|
+
requiredWhen?: string | {
|
|
2694
|
+
dialect: "cel" | "cron" | "template";
|
|
2695
|
+
source?: string | undefined;
|
|
2696
|
+
ast?: unknown;
|
|
2697
|
+
meta?: {
|
|
2698
|
+
rationale?: string | undefined;
|
|
2699
|
+
generatedBy?: string | undefined;
|
|
2700
|
+
} | undefined;
|
|
2701
|
+
} | undefined;
|
|
2702
|
+
}[] | undefined;
|
|
2152
2703
|
readonly inlineAmountField?: string | undefined;
|
|
2153
2704
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
2154
2705
|
readonly relatedListTitle?: string | undefined;
|
|
2155
|
-
readonly relatedListColumns?:
|
|
2156
|
-
readonly
|
|
2706
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
2707
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2157
2708
|
readonly descriptionField?: string | undefined;
|
|
2158
2709
|
readonly lookupColumns?: (string | {
|
|
2159
2710
|
field: string;
|
|
@@ -2168,7 +2719,6 @@ declare const SysWebhook: Omit<{
|
|
|
2168
2719
|
})[] | undefined;
|
|
2169
2720
|
readonly allowCreate?: boolean | undefined;
|
|
2170
2721
|
readonly language?: string | undefined;
|
|
2171
|
-
readonly step?: number | undefined;
|
|
2172
2722
|
readonly currencyConfig?: {
|
|
2173
2723
|
precision?: number | undefined;
|
|
2174
2724
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -2177,23 +2727,18 @@ declare const SysWebhook: Omit<{
|
|
|
2177
2727
|
readonly dimensions?: number | undefined;
|
|
2178
2728
|
readonly trackHistory?: boolean | undefined;
|
|
2179
2729
|
readonly group?: string | undefined;
|
|
2180
|
-
readonly requiredWhen?: string | {
|
|
2181
|
-
dialect: "cel" | "cron" | "template";
|
|
2182
|
-
source?: string | undefined;
|
|
2183
|
-
ast?: unknown;
|
|
2184
|
-
meta?: {
|
|
2185
|
-
rationale?: string | undefined;
|
|
2186
|
-
generatedBy?: string | undefined;
|
|
2187
|
-
} | undefined;
|
|
2188
|
-
} | undefined;
|
|
2189
2730
|
readonly conditionalRequired?: undefined;
|
|
2190
|
-
readonly hidden?: boolean | undefined;
|
|
2191
2731
|
readonly internal?: boolean | undefined;
|
|
2192
2732
|
readonly requiredPermissions?: string[] | undefined;
|
|
2733
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
2734
|
+
keepHead: number;
|
|
2735
|
+
keepTail: number;
|
|
2736
|
+
} | undefined;
|
|
2193
2737
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2194
2738
|
readonly system?: boolean | undefined;
|
|
2195
2739
|
readonly sortable?: boolean | undefined;
|
|
2196
2740
|
readonly inlineHelpText?: string | undefined;
|
|
2741
|
+
readonly placeholder?: string | undefined;
|
|
2197
2742
|
readonly externalId?: boolean | undefined;
|
|
2198
2743
|
readonly type: "boolean";
|
|
2199
2744
|
};
|
|
@@ -2276,6 +2821,19 @@ declare const SysWebhook: Omit<{
|
|
|
2276
2821
|
} | undefined;
|
|
2277
2822
|
readonly reference?: string | undefined;
|
|
2278
2823
|
readonly scale?: number | undefined;
|
|
2824
|
+
readonly step?: number | undefined;
|
|
2825
|
+
readonly displayField?: string | undefined;
|
|
2826
|
+
readonly accept?: string[] | undefined;
|
|
2827
|
+
readonly requiredWhen?: string | {
|
|
2828
|
+
dialect: "cel" | "cron" | "template";
|
|
2829
|
+
source?: string | undefined;
|
|
2830
|
+
ast?: unknown;
|
|
2831
|
+
meta?: {
|
|
2832
|
+
rationale?: string | undefined;
|
|
2833
|
+
generatedBy?: string | undefined;
|
|
2834
|
+
} | undefined;
|
|
2835
|
+
} | undefined;
|
|
2836
|
+
readonly hidden?: boolean | undefined;
|
|
2279
2837
|
readonly searchable?: boolean | undefined;
|
|
2280
2838
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
2281
2839
|
readonly defaultValue?: unknown;
|
|
@@ -2284,16 +2842,55 @@ declare const SysWebhook: Omit<{
|
|
|
2284
2842
|
readonly min?: number | undefined;
|
|
2285
2843
|
readonly max?: number | undefined;
|
|
2286
2844
|
readonly useGrouping?: boolean | undefined;
|
|
2287
|
-
readonly accept?: string[] | undefined;
|
|
2288
2845
|
readonly maxSize?: number | undefined;
|
|
2289
2846
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2290
2847
|
readonly inlineTitle?: string | undefined;
|
|
2291
|
-
readonly inlineColumns?:
|
|
2848
|
+
readonly inlineColumns?: {
|
|
2849
|
+
name: string;
|
|
2850
|
+
label?: string | undefined;
|
|
2851
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
2852
|
+
width?: number | undefined;
|
|
2853
|
+
required?: boolean | undefined;
|
|
2854
|
+
options?: {
|
|
2855
|
+
label: string;
|
|
2856
|
+
value: string;
|
|
2857
|
+
}[] | undefined;
|
|
2858
|
+
prefix?: string | undefined;
|
|
2859
|
+
step?: number | undefined;
|
|
2860
|
+
reference?: string | undefined;
|
|
2861
|
+
displayField?: string | undefined;
|
|
2862
|
+
idField?: string | undefined;
|
|
2863
|
+
multiple?: boolean | undefined;
|
|
2864
|
+
accept?: string[] | undefined;
|
|
2865
|
+
defaultHidden?: boolean | undefined;
|
|
2866
|
+
computed?: boolean | undefined;
|
|
2867
|
+
expr?: string | undefined;
|
|
2868
|
+
scale?: number | undefined;
|
|
2869
|
+
autofill?: boolean | undefined;
|
|
2870
|
+
readonlyWhen?: string | {
|
|
2871
|
+
dialect: "cel" | "cron" | "template";
|
|
2872
|
+
source?: string | undefined;
|
|
2873
|
+
ast?: unknown;
|
|
2874
|
+
meta?: {
|
|
2875
|
+
rationale?: string | undefined;
|
|
2876
|
+
generatedBy?: string | undefined;
|
|
2877
|
+
} | undefined;
|
|
2878
|
+
} | undefined;
|
|
2879
|
+
requiredWhen?: string | {
|
|
2880
|
+
dialect: "cel" | "cron" | "template";
|
|
2881
|
+
source?: string | undefined;
|
|
2882
|
+
ast?: unknown;
|
|
2883
|
+
meta?: {
|
|
2884
|
+
rationale?: string | undefined;
|
|
2885
|
+
generatedBy?: string | undefined;
|
|
2886
|
+
} | undefined;
|
|
2887
|
+
} | undefined;
|
|
2888
|
+
}[] | undefined;
|
|
2292
2889
|
readonly inlineAmountField?: string | undefined;
|
|
2293
2890
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
2294
2891
|
readonly relatedListTitle?: string | undefined;
|
|
2295
|
-
readonly relatedListColumns?:
|
|
2296
|
-
readonly
|
|
2892
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
2893
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2297
2894
|
readonly descriptionField?: string | undefined;
|
|
2298
2895
|
readonly lookupColumns?: (string | {
|
|
2299
2896
|
field: string;
|
|
@@ -2308,7 +2905,6 @@ declare const SysWebhook: Omit<{
|
|
|
2308
2905
|
})[] | undefined;
|
|
2309
2906
|
readonly allowCreate?: boolean | undefined;
|
|
2310
2907
|
readonly language?: string | undefined;
|
|
2311
|
-
readonly step?: number | undefined;
|
|
2312
2908
|
readonly currencyConfig?: {
|
|
2313
2909
|
precision?: number | undefined;
|
|
2314
2910
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -2317,23 +2913,18 @@ declare const SysWebhook: Omit<{
|
|
|
2317
2913
|
readonly dimensions?: number | undefined;
|
|
2318
2914
|
readonly trackHistory?: boolean | undefined;
|
|
2319
2915
|
readonly group?: string | undefined;
|
|
2320
|
-
readonly requiredWhen?: string | {
|
|
2321
|
-
dialect: "cel" | "cron" | "template";
|
|
2322
|
-
source?: string | undefined;
|
|
2323
|
-
ast?: unknown;
|
|
2324
|
-
meta?: {
|
|
2325
|
-
rationale?: string | undefined;
|
|
2326
|
-
generatedBy?: string | undefined;
|
|
2327
|
-
} | undefined;
|
|
2328
|
-
} | undefined;
|
|
2329
2916
|
readonly conditionalRequired?: undefined;
|
|
2330
|
-
readonly hidden?: boolean | undefined;
|
|
2331
2917
|
readonly internal?: boolean | undefined;
|
|
2332
2918
|
readonly requiredPermissions?: string[] | undefined;
|
|
2919
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
2920
|
+
keepHead: number;
|
|
2921
|
+
keepTail: number;
|
|
2922
|
+
} | undefined;
|
|
2333
2923
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2334
2924
|
readonly system?: boolean | undefined;
|
|
2335
2925
|
readonly sortable?: boolean | undefined;
|
|
2336
2926
|
readonly inlineHelpText?: string | undefined;
|
|
2927
|
+
readonly placeholder?: string | undefined;
|
|
2337
2928
|
readonly externalId?: boolean | undefined;
|
|
2338
2929
|
readonly type: "textarea";
|
|
2339
2930
|
};
|
|
@@ -2446,6 +3037,19 @@ declare const SysWebhook: Omit<{
|
|
|
2446
3037
|
} | undefined;
|
|
2447
3038
|
readonly reference?: string | undefined;
|
|
2448
3039
|
readonly scale?: number | undefined;
|
|
3040
|
+
readonly step?: number | undefined;
|
|
3041
|
+
readonly displayField?: string | undefined;
|
|
3042
|
+
readonly accept?: string[] | undefined;
|
|
3043
|
+
readonly requiredWhen?: string | {
|
|
3044
|
+
dialect: "cel" | "cron" | "template";
|
|
3045
|
+
source?: string | undefined;
|
|
3046
|
+
ast?: unknown;
|
|
3047
|
+
meta?: {
|
|
3048
|
+
rationale?: string | undefined;
|
|
3049
|
+
generatedBy?: string | undefined;
|
|
3050
|
+
} | undefined;
|
|
3051
|
+
} | undefined;
|
|
3052
|
+
readonly hidden?: boolean | undefined;
|
|
2449
3053
|
readonly searchable?: boolean | undefined;
|
|
2450
3054
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
2451
3055
|
readonly defaultValue?: unknown;
|
|
@@ -2454,16 +3058,55 @@ declare const SysWebhook: Omit<{
|
|
|
2454
3058
|
readonly min?: number | undefined;
|
|
2455
3059
|
readonly max?: number | undefined;
|
|
2456
3060
|
readonly useGrouping?: boolean | undefined;
|
|
2457
|
-
readonly accept?: string[] | undefined;
|
|
2458
3061
|
readonly maxSize?: number | undefined;
|
|
2459
3062
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2460
3063
|
readonly inlineTitle?: string | undefined;
|
|
2461
|
-
readonly inlineColumns?:
|
|
3064
|
+
readonly inlineColumns?: {
|
|
3065
|
+
name: string;
|
|
3066
|
+
label?: string | undefined;
|
|
3067
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
3068
|
+
width?: number | undefined;
|
|
3069
|
+
required?: boolean | undefined;
|
|
3070
|
+
options?: {
|
|
3071
|
+
label: string;
|
|
3072
|
+
value: string;
|
|
3073
|
+
}[] | undefined;
|
|
3074
|
+
prefix?: string | undefined;
|
|
3075
|
+
step?: number | undefined;
|
|
3076
|
+
reference?: string | undefined;
|
|
3077
|
+
displayField?: string | undefined;
|
|
3078
|
+
idField?: string | undefined;
|
|
3079
|
+
multiple?: boolean | undefined;
|
|
3080
|
+
accept?: string[] | undefined;
|
|
3081
|
+
defaultHidden?: boolean | undefined;
|
|
3082
|
+
computed?: boolean | undefined;
|
|
3083
|
+
expr?: string | undefined;
|
|
3084
|
+
scale?: number | undefined;
|
|
3085
|
+
autofill?: boolean | undefined;
|
|
3086
|
+
readonlyWhen?: string | {
|
|
3087
|
+
dialect: "cel" | "cron" | "template";
|
|
3088
|
+
source?: string | undefined;
|
|
3089
|
+
ast?: unknown;
|
|
3090
|
+
meta?: {
|
|
3091
|
+
rationale?: string | undefined;
|
|
3092
|
+
generatedBy?: string | undefined;
|
|
3093
|
+
} | undefined;
|
|
3094
|
+
} | undefined;
|
|
3095
|
+
requiredWhen?: string | {
|
|
3096
|
+
dialect: "cel" | "cron" | "template";
|
|
3097
|
+
source?: string | undefined;
|
|
3098
|
+
ast?: unknown;
|
|
3099
|
+
meta?: {
|
|
3100
|
+
rationale?: string | undefined;
|
|
3101
|
+
generatedBy?: string | undefined;
|
|
3102
|
+
} | undefined;
|
|
3103
|
+
} | undefined;
|
|
3104
|
+
}[] | undefined;
|
|
2462
3105
|
readonly inlineAmountField?: string | undefined;
|
|
2463
3106
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
2464
3107
|
readonly relatedListTitle?: string | undefined;
|
|
2465
|
-
readonly relatedListColumns?:
|
|
2466
|
-
readonly
|
|
3108
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
3109
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2467
3110
|
readonly descriptionField?: string | undefined;
|
|
2468
3111
|
readonly lookupColumns?: (string | {
|
|
2469
3112
|
field: string;
|
|
@@ -2478,7 +3121,6 @@ declare const SysWebhook: Omit<{
|
|
|
2478
3121
|
})[] | undefined;
|
|
2479
3122
|
readonly allowCreate?: boolean | undefined;
|
|
2480
3123
|
readonly language?: string | undefined;
|
|
2481
|
-
readonly step?: number | undefined;
|
|
2482
3124
|
readonly currencyConfig?: {
|
|
2483
3125
|
precision?: number | undefined;
|
|
2484
3126
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -2487,23 +3129,18 @@ declare const SysWebhook: Omit<{
|
|
|
2487
3129
|
readonly dimensions?: number | undefined;
|
|
2488
3130
|
readonly trackHistory?: boolean | undefined;
|
|
2489
3131
|
readonly group?: string | undefined;
|
|
2490
|
-
readonly requiredWhen?: string | {
|
|
2491
|
-
dialect: "cel" | "cron" | "template";
|
|
2492
|
-
source?: string | undefined;
|
|
2493
|
-
ast?: unknown;
|
|
2494
|
-
meta?: {
|
|
2495
|
-
rationale?: string | undefined;
|
|
2496
|
-
generatedBy?: string | undefined;
|
|
2497
|
-
} | undefined;
|
|
2498
|
-
} | undefined;
|
|
2499
3132
|
readonly conditionalRequired?: undefined;
|
|
2500
|
-
readonly hidden?: boolean | undefined;
|
|
2501
3133
|
readonly internal?: boolean | undefined;
|
|
2502
3134
|
readonly requiredPermissions?: string[] | undefined;
|
|
3135
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
3136
|
+
keepHead: number;
|
|
3137
|
+
keepTail: number;
|
|
3138
|
+
} | undefined;
|
|
2503
3139
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2504
3140
|
readonly system?: boolean | undefined;
|
|
2505
3141
|
readonly sortable?: boolean | undefined;
|
|
2506
3142
|
readonly inlineHelpText?: string | undefined;
|
|
3143
|
+
readonly placeholder?: string | undefined;
|
|
2507
3144
|
readonly externalId?: boolean | undefined;
|
|
2508
3145
|
readonly type: "secret";
|
|
2509
3146
|
};
|
|
@@ -2609,6 +3246,19 @@ declare const SysWebhook: Omit<{
|
|
|
2609
3246
|
} | undefined;
|
|
2610
3247
|
readonly reference?: string | undefined;
|
|
2611
3248
|
readonly scale?: number | undefined;
|
|
3249
|
+
readonly step?: number | undefined;
|
|
3250
|
+
readonly displayField?: string | undefined;
|
|
3251
|
+
readonly accept?: string[] | undefined;
|
|
3252
|
+
readonly requiredWhen?: string | {
|
|
3253
|
+
dialect: "cel" | "cron" | "template";
|
|
3254
|
+
source?: string | undefined;
|
|
3255
|
+
ast?: unknown;
|
|
3256
|
+
meta?: {
|
|
3257
|
+
rationale?: string | undefined;
|
|
3258
|
+
generatedBy?: string | undefined;
|
|
3259
|
+
} | undefined;
|
|
3260
|
+
} | undefined;
|
|
3261
|
+
readonly hidden?: boolean | undefined;
|
|
2612
3262
|
readonly searchable?: boolean | undefined;
|
|
2613
3263
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
2614
3264
|
readonly defaultValue?: unknown;
|
|
@@ -2617,16 +3267,55 @@ declare const SysWebhook: Omit<{
|
|
|
2617
3267
|
readonly min?: number | undefined;
|
|
2618
3268
|
readonly max?: number | undefined;
|
|
2619
3269
|
readonly useGrouping?: boolean | undefined;
|
|
2620
|
-
readonly accept?: string[] | undefined;
|
|
2621
3270
|
readonly maxSize?: number | undefined;
|
|
2622
3271
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2623
3272
|
readonly inlineTitle?: string | undefined;
|
|
2624
|
-
readonly inlineColumns?:
|
|
3273
|
+
readonly inlineColumns?: {
|
|
3274
|
+
name: string;
|
|
3275
|
+
label?: string | undefined;
|
|
3276
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
3277
|
+
width?: number | undefined;
|
|
3278
|
+
required?: boolean | undefined;
|
|
3279
|
+
options?: {
|
|
3280
|
+
label: string;
|
|
3281
|
+
value: string;
|
|
3282
|
+
}[] | undefined;
|
|
3283
|
+
prefix?: string | undefined;
|
|
3284
|
+
step?: number | undefined;
|
|
3285
|
+
reference?: string | undefined;
|
|
3286
|
+
displayField?: string | undefined;
|
|
3287
|
+
idField?: string | undefined;
|
|
3288
|
+
multiple?: boolean | undefined;
|
|
3289
|
+
accept?: string[] | undefined;
|
|
3290
|
+
defaultHidden?: boolean | undefined;
|
|
3291
|
+
computed?: boolean | undefined;
|
|
3292
|
+
expr?: string | undefined;
|
|
3293
|
+
scale?: number | undefined;
|
|
3294
|
+
autofill?: boolean | undefined;
|
|
3295
|
+
readonlyWhen?: string | {
|
|
3296
|
+
dialect: "cel" | "cron" | "template";
|
|
3297
|
+
source?: string | undefined;
|
|
3298
|
+
ast?: unknown;
|
|
3299
|
+
meta?: {
|
|
3300
|
+
rationale?: string | undefined;
|
|
3301
|
+
generatedBy?: string | undefined;
|
|
3302
|
+
} | undefined;
|
|
3303
|
+
} | undefined;
|
|
3304
|
+
requiredWhen?: string | {
|
|
3305
|
+
dialect: "cel" | "cron" | "template";
|
|
3306
|
+
source?: string | undefined;
|
|
3307
|
+
ast?: unknown;
|
|
3308
|
+
meta?: {
|
|
3309
|
+
rationale?: string | undefined;
|
|
3310
|
+
generatedBy?: string | undefined;
|
|
3311
|
+
} | undefined;
|
|
3312
|
+
} | undefined;
|
|
3313
|
+
}[] | undefined;
|
|
2625
3314
|
readonly inlineAmountField?: string | undefined;
|
|
2626
3315
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
2627
3316
|
readonly relatedListTitle?: string | undefined;
|
|
2628
|
-
readonly relatedListColumns?:
|
|
2629
|
-
readonly
|
|
3317
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
3318
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2630
3319
|
readonly descriptionField?: string | undefined;
|
|
2631
3320
|
readonly lookupColumns?: (string | {
|
|
2632
3321
|
field: string;
|
|
@@ -2641,7 +3330,6 @@ declare const SysWebhook: Omit<{
|
|
|
2641
3330
|
})[] | undefined;
|
|
2642
3331
|
readonly allowCreate?: boolean | undefined;
|
|
2643
3332
|
readonly language?: string | undefined;
|
|
2644
|
-
readonly step?: number | undefined;
|
|
2645
3333
|
readonly currencyConfig?: {
|
|
2646
3334
|
precision?: number | undefined;
|
|
2647
3335
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -2650,23 +3338,18 @@ declare const SysWebhook: Omit<{
|
|
|
2650
3338
|
readonly dimensions?: number | undefined;
|
|
2651
3339
|
readonly trackHistory?: boolean | undefined;
|
|
2652
3340
|
readonly group?: string | undefined;
|
|
2653
|
-
readonly requiredWhen?: string | {
|
|
2654
|
-
dialect: "cel" | "cron" | "template";
|
|
2655
|
-
source?: string | undefined;
|
|
2656
|
-
ast?: unknown;
|
|
2657
|
-
meta?: {
|
|
2658
|
-
rationale?: string | undefined;
|
|
2659
|
-
generatedBy?: string | undefined;
|
|
2660
|
-
} | undefined;
|
|
2661
|
-
} | undefined;
|
|
2662
3341
|
readonly conditionalRequired?: undefined;
|
|
2663
|
-
readonly hidden?: boolean | undefined;
|
|
2664
3342
|
readonly internal?: boolean | undefined;
|
|
2665
3343
|
readonly requiredPermissions?: string[] | undefined;
|
|
3344
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
3345
|
+
keepHead: number;
|
|
3346
|
+
keepTail: number;
|
|
3347
|
+
} | undefined;
|
|
2666
3348
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2667
3349
|
readonly system?: boolean | undefined;
|
|
2668
3350
|
readonly sortable?: boolean | undefined;
|
|
2669
3351
|
readonly inlineHelpText?: string | undefined;
|
|
3352
|
+
readonly placeholder?: string | undefined;
|
|
2670
3353
|
readonly externalId?: boolean | undefined;
|
|
2671
3354
|
readonly type: "secret";
|
|
2672
3355
|
};
|
|
@@ -2749,6 +3432,19 @@ declare const SysWebhook: Omit<{
|
|
|
2749
3432
|
} | undefined;
|
|
2750
3433
|
readonly reference?: string | undefined;
|
|
2751
3434
|
readonly scale?: number | undefined;
|
|
3435
|
+
readonly step?: number | undefined;
|
|
3436
|
+
readonly displayField?: string | undefined;
|
|
3437
|
+
readonly accept?: string[] | undefined;
|
|
3438
|
+
readonly requiredWhen?: string | {
|
|
3439
|
+
dialect: "cel" | "cron" | "template";
|
|
3440
|
+
source?: string | undefined;
|
|
3441
|
+
ast?: unknown;
|
|
3442
|
+
meta?: {
|
|
3443
|
+
rationale?: string | undefined;
|
|
3444
|
+
generatedBy?: string | undefined;
|
|
3445
|
+
} | undefined;
|
|
3446
|
+
} | undefined;
|
|
3447
|
+
readonly hidden?: boolean | undefined;
|
|
2752
3448
|
readonly searchable?: boolean | undefined;
|
|
2753
3449
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
2754
3450
|
readonly defaultValue?: unknown;
|
|
@@ -2757,16 +3453,55 @@ declare const SysWebhook: Omit<{
|
|
|
2757
3453
|
readonly min?: number | undefined;
|
|
2758
3454
|
readonly max?: number | undefined;
|
|
2759
3455
|
readonly useGrouping?: boolean | undefined;
|
|
2760
|
-
readonly accept?: string[] | undefined;
|
|
2761
3456
|
readonly maxSize?: number | undefined;
|
|
2762
3457
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2763
3458
|
readonly inlineTitle?: string | undefined;
|
|
2764
|
-
readonly inlineColumns?:
|
|
3459
|
+
readonly inlineColumns?: {
|
|
3460
|
+
name: string;
|
|
3461
|
+
label?: string | undefined;
|
|
3462
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
3463
|
+
width?: number | undefined;
|
|
3464
|
+
required?: boolean | undefined;
|
|
3465
|
+
options?: {
|
|
3466
|
+
label: string;
|
|
3467
|
+
value: string;
|
|
3468
|
+
}[] | undefined;
|
|
3469
|
+
prefix?: string | undefined;
|
|
3470
|
+
step?: number | undefined;
|
|
3471
|
+
reference?: string | undefined;
|
|
3472
|
+
displayField?: string | undefined;
|
|
3473
|
+
idField?: string | undefined;
|
|
3474
|
+
multiple?: boolean | undefined;
|
|
3475
|
+
accept?: string[] | undefined;
|
|
3476
|
+
defaultHidden?: boolean | undefined;
|
|
3477
|
+
computed?: boolean | undefined;
|
|
3478
|
+
expr?: string | undefined;
|
|
3479
|
+
scale?: number | undefined;
|
|
3480
|
+
autofill?: boolean | undefined;
|
|
3481
|
+
readonlyWhen?: string | {
|
|
3482
|
+
dialect: "cel" | "cron" | "template";
|
|
3483
|
+
source?: string | undefined;
|
|
3484
|
+
ast?: unknown;
|
|
3485
|
+
meta?: {
|
|
3486
|
+
rationale?: string | undefined;
|
|
3487
|
+
generatedBy?: string | undefined;
|
|
3488
|
+
} | undefined;
|
|
3489
|
+
} | undefined;
|
|
3490
|
+
requiredWhen?: string | {
|
|
3491
|
+
dialect: "cel" | "cron" | "template";
|
|
3492
|
+
source?: string | undefined;
|
|
3493
|
+
ast?: unknown;
|
|
3494
|
+
meta?: {
|
|
3495
|
+
rationale?: string | undefined;
|
|
3496
|
+
generatedBy?: string | undefined;
|
|
3497
|
+
} | undefined;
|
|
3498
|
+
} | undefined;
|
|
3499
|
+
}[] | undefined;
|
|
2765
3500
|
readonly inlineAmountField?: string | undefined;
|
|
2766
3501
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
2767
3502
|
readonly relatedListTitle?: string | undefined;
|
|
2768
|
-
readonly relatedListColumns?:
|
|
2769
|
-
readonly
|
|
3503
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
3504
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2770
3505
|
readonly descriptionField?: string | undefined;
|
|
2771
3506
|
readonly lookupColumns?: (string | {
|
|
2772
3507
|
field: string;
|
|
@@ -2781,7 +3516,6 @@ declare const SysWebhook: Omit<{
|
|
|
2781
3516
|
})[] | undefined;
|
|
2782
3517
|
readonly allowCreate?: boolean | undefined;
|
|
2783
3518
|
readonly language?: string | undefined;
|
|
2784
|
-
readonly step?: number | undefined;
|
|
2785
3519
|
readonly currencyConfig?: {
|
|
2786
3520
|
precision?: number | undefined;
|
|
2787
3521
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -2790,23 +3524,18 @@ declare const SysWebhook: Omit<{
|
|
|
2790
3524
|
readonly dimensions?: number | undefined;
|
|
2791
3525
|
readonly trackHistory?: boolean | undefined;
|
|
2792
3526
|
readonly group?: string | undefined;
|
|
2793
|
-
readonly requiredWhen?: string | {
|
|
2794
|
-
dialect: "cel" | "cron" | "template";
|
|
2795
|
-
source?: string | undefined;
|
|
2796
|
-
ast?: unknown;
|
|
2797
|
-
meta?: {
|
|
2798
|
-
rationale?: string | undefined;
|
|
2799
|
-
generatedBy?: string | undefined;
|
|
2800
|
-
} | undefined;
|
|
2801
|
-
} | undefined;
|
|
2802
3527
|
readonly conditionalRequired?: undefined;
|
|
2803
|
-
readonly hidden?: boolean | undefined;
|
|
2804
3528
|
readonly internal?: boolean | undefined;
|
|
2805
3529
|
readonly requiredPermissions?: string[] | undefined;
|
|
3530
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
3531
|
+
keepHead: number;
|
|
3532
|
+
keepTail: number;
|
|
3533
|
+
} | undefined;
|
|
2806
3534
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2807
3535
|
readonly system?: boolean | undefined;
|
|
2808
3536
|
readonly sortable?: boolean | undefined;
|
|
2809
3537
|
readonly inlineHelpText?: string | undefined;
|
|
3538
|
+
readonly placeholder?: string | undefined;
|
|
2810
3539
|
readonly externalId?: boolean | undefined;
|
|
2811
3540
|
readonly type: "select";
|
|
2812
3541
|
};
|
|
@@ -2889,6 +3618,19 @@ declare const SysWebhook: Omit<{
|
|
|
2889
3618
|
} | undefined;
|
|
2890
3619
|
readonly reference?: string | undefined;
|
|
2891
3620
|
readonly scale?: number | undefined;
|
|
3621
|
+
readonly step?: number | undefined;
|
|
3622
|
+
readonly displayField?: string | undefined;
|
|
3623
|
+
readonly accept?: string[] | undefined;
|
|
3624
|
+
readonly requiredWhen?: string | {
|
|
3625
|
+
dialect: "cel" | "cron" | "template";
|
|
3626
|
+
source?: string | undefined;
|
|
3627
|
+
ast?: unknown;
|
|
3628
|
+
meta?: {
|
|
3629
|
+
rationale?: string | undefined;
|
|
3630
|
+
generatedBy?: string | undefined;
|
|
3631
|
+
} | undefined;
|
|
3632
|
+
} | undefined;
|
|
3633
|
+
readonly hidden?: boolean | undefined;
|
|
2892
3634
|
readonly searchable?: boolean | undefined;
|
|
2893
3635
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
2894
3636
|
readonly defaultValue?: unknown;
|
|
@@ -2897,16 +3639,55 @@ declare const SysWebhook: Omit<{
|
|
|
2897
3639
|
readonly min?: number | undefined;
|
|
2898
3640
|
readonly max?: number | undefined;
|
|
2899
3641
|
readonly useGrouping?: boolean | undefined;
|
|
2900
|
-
readonly accept?: string[] | undefined;
|
|
2901
3642
|
readonly maxSize?: number | undefined;
|
|
2902
3643
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2903
3644
|
readonly inlineTitle?: string | undefined;
|
|
2904
|
-
readonly inlineColumns?:
|
|
3645
|
+
readonly inlineColumns?: {
|
|
3646
|
+
name: string;
|
|
3647
|
+
label?: string | undefined;
|
|
3648
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
3649
|
+
width?: number | undefined;
|
|
3650
|
+
required?: boolean | undefined;
|
|
3651
|
+
options?: {
|
|
3652
|
+
label: string;
|
|
3653
|
+
value: string;
|
|
3654
|
+
}[] | undefined;
|
|
3655
|
+
prefix?: string | undefined;
|
|
3656
|
+
step?: number | undefined;
|
|
3657
|
+
reference?: string | undefined;
|
|
3658
|
+
displayField?: string | undefined;
|
|
3659
|
+
idField?: string | undefined;
|
|
3660
|
+
multiple?: boolean | undefined;
|
|
3661
|
+
accept?: string[] | undefined;
|
|
3662
|
+
defaultHidden?: boolean | undefined;
|
|
3663
|
+
computed?: boolean | undefined;
|
|
3664
|
+
expr?: string | undefined;
|
|
3665
|
+
scale?: number | undefined;
|
|
3666
|
+
autofill?: boolean | undefined;
|
|
3667
|
+
readonlyWhen?: string | {
|
|
3668
|
+
dialect: "cel" | "cron" | "template";
|
|
3669
|
+
source?: string | undefined;
|
|
3670
|
+
ast?: unknown;
|
|
3671
|
+
meta?: {
|
|
3672
|
+
rationale?: string | undefined;
|
|
3673
|
+
generatedBy?: string | undefined;
|
|
3674
|
+
} | undefined;
|
|
3675
|
+
} | undefined;
|
|
3676
|
+
requiredWhen?: string | {
|
|
3677
|
+
dialect: "cel" | "cron" | "template";
|
|
3678
|
+
source?: string | undefined;
|
|
3679
|
+
ast?: unknown;
|
|
3680
|
+
meta?: {
|
|
3681
|
+
rationale?: string | undefined;
|
|
3682
|
+
generatedBy?: string | undefined;
|
|
3683
|
+
} | undefined;
|
|
3684
|
+
} | undefined;
|
|
3685
|
+
}[] | undefined;
|
|
2905
3686
|
readonly inlineAmountField?: string | undefined;
|
|
2906
3687
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
2907
3688
|
readonly relatedListTitle?: string | undefined;
|
|
2908
|
-
readonly relatedListColumns?:
|
|
2909
|
-
readonly
|
|
3689
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
3690
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2910
3691
|
readonly descriptionField?: string | undefined;
|
|
2911
3692
|
readonly lookupColumns?: (string | {
|
|
2912
3693
|
field: string;
|
|
@@ -2921,7 +3702,6 @@ declare const SysWebhook: Omit<{
|
|
|
2921
3702
|
})[] | undefined;
|
|
2922
3703
|
readonly allowCreate?: boolean | undefined;
|
|
2923
3704
|
readonly language?: string | undefined;
|
|
2924
|
-
readonly step?: number | undefined;
|
|
2925
3705
|
readonly currencyConfig?: {
|
|
2926
3706
|
precision?: number | undefined;
|
|
2927
3707
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -2930,23 +3710,18 @@ declare const SysWebhook: Omit<{
|
|
|
2930
3710
|
readonly dimensions?: number | undefined;
|
|
2931
3711
|
readonly trackHistory?: boolean | undefined;
|
|
2932
3712
|
readonly group?: string | undefined;
|
|
2933
|
-
readonly requiredWhen?: string | {
|
|
2934
|
-
dialect: "cel" | "cron" | "template";
|
|
2935
|
-
source?: string | undefined;
|
|
2936
|
-
ast?: unknown;
|
|
2937
|
-
meta?: {
|
|
2938
|
-
rationale?: string | undefined;
|
|
2939
|
-
generatedBy?: string | undefined;
|
|
2940
|
-
} | undefined;
|
|
2941
|
-
} | undefined;
|
|
2942
3713
|
readonly conditionalRequired?: undefined;
|
|
2943
|
-
readonly hidden?: boolean | undefined;
|
|
2944
3714
|
readonly internal?: boolean | undefined;
|
|
2945
3715
|
readonly requiredPermissions?: string[] | undefined;
|
|
3716
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
3717
|
+
keepHead: number;
|
|
3718
|
+
keepTail: number;
|
|
3719
|
+
} | undefined;
|
|
2946
3720
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2947
3721
|
readonly system?: boolean | undefined;
|
|
2948
3722
|
readonly sortable?: boolean | undefined;
|
|
2949
3723
|
readonly inlineHelpText?: string | undefined;
|
|
3724
|
+
readonly placeholder?: string | undefined;
|
|
2950
3725
|
readonly externalId?: boolean | undefined;
|
|
2951
3726
|
readonly type: "boolean";
|
|
2952
3727
|
};
|
|
@@ -3029,6 +3804,19 @@ declare const SysWebhook: Omit<{
|
|
|
3029
3804
|
} | undefined;
|
|
3030
3805
|
readonly reference?: string | undefined;
|
|
3031
3806
|
readonly scale?: number | undefined;
|
|
3807
|
+
readonly step?: number | undefined;
|
|
3808
|
+
readonly displayField?: string | undefined;
|
|
3809
|
+
readonly accept?: string[] | undefined;
|
|
3810
|
+
readonly requiredWhen?: string | {
|
|
3811
|
+
dialect: "cel" | "cron" | "template";
|
|
3812
|
+
source?: string | undefined;
|
|
3813
|
+
ast?: unknown;
|
|
3814
|
+
meta?: {
|
|
3815
|
+
rationale?: string | undefined;
|
|
3816
|
+
generatedBy?: string | undefined;
|
|
3817
|
+
} | undefined;
|
|
3818
|
+
} | undefined;
|
|
3819
|
+
readonly hidden?: boolean | undefined;
|
|
3032
3820
|
readonly searchable?: boolean | undefined;
|
|
3033
3821
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
3034
3822
|
readonly defaultValue?: unknown;
|
|
@@ -3037,16 +3825,55 @@ declare const SysWebhook: Omit<{
|
|
|
3037
3825
|
readonly min?: number | undefined;
|
|
3038
3826
|
readonly max?: number | undefined;
|
|
3039
3827
|
readonly useGrouping?: boolean | undefined;
|
|
3040
|
-
readonly accept?: string[] | undefined;
|
|
3041
3828
|
readonly maxSize?: number | undefined;
|
|
3042
3829
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3043
3830
|
readonly inlineTitle?: string | undefined;
|
|
3044
|
-
readonly inlineColumns?:
|
|
3831
|
+
readonly inlineColumns?: {
|
|
3832
|
+
name: string;
|
|
3833
|
+
label?: string | undefined;
|
|
3834
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
3835
|
+
width?: number | undefined;
|
|
3836
|
+
required?: boolean | undefined;
|
|
3837
|
+
options?: {
|
|
3838
|
+
label: string;
|
|
3839
|
+
value: string;
|
|
3840
|
+
}[] | undefined;
|
|
3841
|
+
prefix?: string | undefined;
|
|
3842
|
+
step?: number | undefined;
|
|
3843
|
+
reference?: string | undefined;
|
|
3844
|
+
displayField?: string | undefined;
|
|
3845
|
+
idField?: string | undefined;
|
|
3846
|
+
multiple?: boolean | undefined;
|
|
3847
|
+
accept?: string[] | undefined;
|
|
3848
|
+
defaultHidden?: boolean | undefined;
|
|
3849
|
+
computed?: boolean | undefined;
|
|
3850
|
+
expr?: string | undefined;
|
|
3851
|
+
scale?: number | undefined;
|
|
3852
|
+
autofill?: boolean | undefined;
|
|
3853
|
+
readonlyWhen?: string | {
|
|
3854
|
+
dialect: "cel" | "cron" | "template";
|
|
3855
|
+
source?: string | undefined;
|
|
3856
|
+
ast?: unknown;
|
|
3857
|
+
meta?: {
|
|
3858
|
+
rationale?: string | undefined;
|
|
3859
|
+
generatedBy?: string | undefined;
|
|
3860
|
+
} | undefined;
|
|
3861
|
+
} | undefined;
|
|
3862
|
+
requiredWhen?: string | {
|
|
3863
|
+
dialect: "cel" | "cron" | "template";
|
|
3864
|
+
source?: string | undefined;
|
|
3865
|
+
ast?: unknown;
|
|
3866
|
+
meta?: {
|
|
3867
|
+
rationale?: string | undefined;
|
|
3868
|
+
generatedBy?: string | undefined;
|
|
3869
|
+
} | undefined;
|
|
3870
|
+
} | undefined;
|
|
3871
|
+
}[] | undefined;
|
|
3045
3872
|
readonly inlineAmountField?: string | undefined;
|
|
3046
3873
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
3047
3874
|
readonly relatedListTitle?: string | undefined;
|
|
3048
|
-
readonly relatedListColumns?:
|
|
3049
|
-
readonly
|
|
3875
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
3876
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
3050
3877
|
readonly descriptionField?: string | undefined;
|
|
3051
3878
|
readonly lookupColumns?: (string | {
|
|
3052
3879
|
field: string;
|
|
@@ -3061,7 +3888,6 @@ declare const SysWebhook: Omit<{
|
|
|
3061
3888
|
})[] | undefined;
|
|
3062
3889
|
readonly allowCreate?: boolean | undefined;
|
|
3063
3890
|
readonly language?: string | undefined;
|
|
3064
|
-
readonly step?: number | undefined;
|
|
3065
3891
|
readonly currencyConfig?: {
|
|
3066
3892
|
precision?: number | undefined;
|
|
3067
3893
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -3070,23 +3896,18 @@ declare const SysWebhook: Omit<{
|
|
|
3070
3896
|
readonly dimensions?: number | undefined;
|
|
3071
3897
|
readonly trackHistory?: boolean | undefined;
|
|
3072
3898
|
readonly group?: string | undefined;
|
|
3073
|
-
readonly requiredWhen?: string | {
|
|
3074
|
-
dialect: "cel" | "cron" | "template";
|
|
3075
|
-
source?: string | undefined;
|
|
3076
|
-
ast?: unknown;
|
|
3077
|
-
meta?: {
|
|
3078
|
-
rationale?: string | undefined;
|
|
3079
|
-
generatedBy?: string | undefined;
|
|
3080
|
-
} | undefined;
|
|
3081
|
-
} | undefined;
|
|
3082
3899
|
readonly conditionalRequired?: undefined;
|
|
3083
|
-
readonly hidden?: boolean | undefined;
|
|
3084
3900
|
readonly internal?: boolean | undefined;
|
|
3085
3901
|
readonly requiredPermissions?: string[] | undefined;
|
|
3902
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
3903
|
+
keepHead: number;
|
|
3904
|
+
keepTail: number;
|
|
3905
|
+
} | undefined;
|
|
3086
3906
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
3087
3907
|
readonly system?: boolean | undefined;
|
|
3088
3908
|
readonly sortable?: boolean | undefined;
|
|
3089
3909
|
readonly inlineHelpText?: string | undefined;
|
|
3910
|
+
readonly placeholder?: string | undefined;
|
|
3090
3911
|
readonly externalId?: boolean | undefined;
|
|
3091
3912
|
readonly type: "datetime";
|
|
3092
3913
|
};
|
|
@@ -3169,6 +3990,19 @@ declare const SysWebhook: Omit<{
|
|
|
3169
3990
|
} | undefined;
|
|
3170
3991
|
readonly reference?: string | undefined;
|
|
3171
3992
|
readonly scale?: number | undefined;
|
|
3993
|
+
readonly step?: number | undefined;
|
|
3994
|
+
readonly displayField?: string | undefined;
|
|
3995
|
+
readonly accept?: string[] | undefined;
|
|
3996
|
+
readonly requiredWhen?: string | {
|
|
3997
|
+
dialect: "cel" | "cron" | "template";
|
|
3998
|
+
source?: string | undefined;
|
|
3999
|
+
ast?: unknown;
|
|
4000
|
+
meta?: {
|
|
4001
|
+
rationale?: string | undefined;
|
|
4002
|
+
generatedBy?: string | undefined;
|
|
4003
|
+
} | undefined;
|
|
4004
|
+
} | undefined;
|
|
4005
|
+
readonly hidden?: boolean | undefined;
|
|
3172
4006
|
readonly searchable?: boolean | undefined;
|
|
3173
4007
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
3174
4008
|
readonly defaultValue?: unknown;
|
|
@@ -3177,16 +4011,55 @@ declare const SysWebhook: Omit<{
|
|
|
3177
4011
|
readonly min?: number | undefined;
|
|
3178
4012
|
readonly max?: number | undefined;
|
|
3179
4013
|
readonly useGrouping?: boolean | undefined;
|
|
3180
|
-
readonly accept?: string[] | undefined;
|
|
3181
4014
|
readonly maxSize?: number | undefined;
|
|
3182
4015
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3183
4016
|
readonly inlineTitle?: string | undefined;
|
|
3184
|
-
readonly inlineColumns?:
|
|
4017
|
+
readonly inlineColumns?: {
|
|
4018
|
+
name: string;
|
|
4019
|
+
label?: string | undefined;
|
|
4020
|
+
type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
|
|
4021
|
+
width?: number | undefined;
|
|
4022
|
+
required?: boolean | undefined;
|
|
4023
|
+
options?: {
|
|
4024
|
+
label: string;
|
|
4025
|
+
value: string;
|
|
4026
|
+
}[] | undefined;
|
|
4027
|
+
prefix?: string | undefined;
|
|
4028
|
+
step?: number | undefined;
|
|
4029
|
+
reference?: string | undefined;
|
|
4030
|
+
displayField?: string | undefined;
|
|
4031
|
+
idField?: string | undefined;
|
|
4032
|
+
multiple?: boolean | undefined;
|
|
4033
|
+
accept?: string[] | undefined;
|
|
4034
|
+
defaultHidden?: boolean | undefined;
|
|
4035
|
+
computed?: boolean | undefined;
|
|
4036
|
+
expr?: string | undefined;
|
|
4037
|
+
scale?: number | undefined;
|
|
4038
|
+
autofill?: boolean | undefined;
|
|
4039
|
+
readonlyWhen?: string | {
|
|
4040
|
+
dialect: "cel" | "cron" | "template";
|
|
4041
|
+
source?: string | undefined;
|
|
4042
|
+
ast?: unknown;
|
|
4043
|
+
meta?: {
|
|
4044
|
+
rationale?: string | undefined;
|
|
4045
|
+
generatedBy?: string | undefined;
|
|
4046
|
+
} | undefined;
|
|
4047
|
+
} | undefined;
|
|
4048
|
+
requiredWhen?: string | {
|
|
4049
|
+
dialect: "cel" | "cron" | "template";
|
|
4050
|
+
source?: string | undefined;
|
|
4051
|
+
ast?: unknown;
|
|
4052
|
+
meta?: {
|
|
4053
|
+
rationale?: string | undefined;
|
|
4054
|
+
generatedBy?: string | undefined;
|
|
4055
|
+
} | undefined;
|
|
4056
|
+
} | undefined;
|
|
4057
|
+
}[] | undefined;
|
|
3185
4058
|
readonly inlineAmountField?: string | undefined;
|
|
3186
4059
|
readonly relatedList?: boolean | "primary" | undefined;
|
|
3187
4060
|
readonly relatedListTitle?: string | undefined;
|
|
3188
|
-
readonly relatedListColumns?:
|
|
3189
|
-
readonly
|
|
4061
|
+
readonly relatedListColumns?: string[] | undefined;
|
|
4062
|
+
readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
3190
4063
|
readonly descriptionField?: string | undefined;
|
|
3191
4064
|
readonly lookupColumns?: (string | {
|
|
3192
4065
|
field: string;
|
|
@@ -3201,7 +4074,6 @@ declare const SysWebhook: Omit<{
|
|
|
3201
4074
|
})[] | undefined;
|
|
3202
4075
|
readonly allowCreate?: boolean | undefined;
|
|
3203
4076
|
readonly language?: string | undefined;
|
|
3204
|
-
readonly step?: number | undefined;
|
|
3205
4077
|
readonly currencyConfig?: {
|
|
3206
4078
|
precision?: number | undefined;
|
|
3207
4079
|
currencyMode?: "fixed" | "dynamic" | undefined;
|
|
@@ -3210,23 +4082,18 @@ declare const SysWebhook: Omit<{
|
|
|
3210
4082
|
readonly dimensions?: number | undefined;
|
|
3211
4083
|
readonly trackHistory?: boolean | undefined;
|
|
3212
4084
|
readonly group?: string | undefined;
|
|
3213
|
-
readonly requiredWhen?: string | {
|
|
3214
|
-
dialect: "cel" | "cron" | "template";
|
|
3215
|
-
source?: string | undefined;
|
|
3216
|
-
ast?: unknown;
|
|
3217
|
-
meta?: {
|
|
3218
|
-
rationale?: string | undefined;
|
|
3219
|
-
generatedBy?: string | undefined;
|
|
3220
|
-
} | undefined;
|
|
3221
|
-
} | undefined;
|
|
3222
4085
|
readonly conditionalRequired?: undefined;
|
|
3223
|
-
readonly hidden?: boolean | undefined;
|
|
3224
4086
|
readonly internal?: boolean | undefined;
|
|
3225
4087
|
readonly requiredPermissions?: string[] | undefined;
|
|
4088
|
+
readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
|
|
4089
|
+
keepHead: number;
|
|
4090
|
+
keepTail: number;
|
|
4091
|
+
} | undefined;
|
|
3226
4092
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
3227
4093
|
readonly system?: boolean | undefined;
|
|
3228
4094
|
readonly sortable?: boolean | undefined;
|
|
3229
4095
|
readonly inlineHelpText?: string | undefined;
|
|
4096
|
+
readonly placeholder?: string | undefined;
|
|
3230
4097
|
readonly externalId?: boolean | undefined;
|
|
3231
4098
|
readonly type: "datetime";
|
|
3232
4099
|
};
|
|
@@ -3239,6 +4106,65 @@ declare const SysWebhook: Omit<{
|
|
|
3239
4106
|
}, {
|
|
3240
4107
|
readonly fields: ["active", "object_name"];
|
|
3241
4108
|
}];
|
|
4109
|
+
/**
|
|
4110
|
+
* [#9756] The data-API exposure of this object, declared EXPLICITLY.
|
|
4111
|
+
*
|
|
4112
|
+
* ## Why the block exists
|
|
4113
|
+
*
|
|
4114
|
+
* Three cards observed that `sys_webhook` declared no `enable` block at all
|
|
4115
|
+
* and each named narrowing its read surface as the next step — #7799 (the
|
|
4116
|
+
* signing secret), #7986 (the custom headers) and #8025 option 2 (the URL) —
|
|
4117
|
+
* and each assumed a later one would write the line. None did. The condition
|
|
4118
|
+
* held not because anyone judged the full default API correct here, but
|
|
4119
|
+
* because the omission was never anybody's deliverable. That is the standard
|
|
4120
|
+
* #8025 set and #9756 quotes back: *an omission is not a decision unless
|
|
4121
|
+
* someone wrote it down.* This block is that decision, written down.
|
|
4122
|
+
*
|
|
4123
|
+
* ## The census the set is derived from (#9756, measured before writing)
|
|
4124
|
+
*
|
|
4125
|
+
* | consumer | reaches this object through | needs |
|
|
4126
|
+
* |:---|:---|:---|
|
|
4127
|
+
* | 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` |
|
|
4128
|
+
* | 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` |
|
|
4129
|
+
* | `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 |
|
|
4130
|
+
*
|
|
4131
|
+
* ⇒ every primitive is required by a real, measured consumer, so the set is
|
|
4132
|
+
* all six. No consumer outside the admin/operator surface was found.
|
|
4133
|
+
*
|
|
4134
|
+
* ## ⛔ This narrows NOTHING — do not read it as if it did
|
|
4135
|
+
*
|
|
4136
|
+
* `resolveEffectiveApiMethods` (`@objectstack/spec/data`) seeds the
|
|
4137
|
+
* `unrestricted` branch with the very same `API_PRIMITIVES` set, so the six
|
|
4138
|
+
* primitives resolve to the operation closure the *absent* block already
|
|
4139
|
+
* produced. The serialized effective set (`/me/permissions`, the 405
|
|
4140
|
+
* `allowed` array) is byte-identical, and no route or `callData` action
|
|
4141
|
+
* reaches an operation whose answer differs. Only `mode` changes,
|
|
4142
|
+
* `unrestricted` → `restricted`.
|
|
4143
|
+
*
|
|
4144
|
+
* So the presence of this block is NOT evidence that the reachable cleartext
|
|
4145
|
+
* on this object was reduced. It was not, and `apiMethods` is the wrong
|
|
4146
|
+
* instrument for it: `url` (#8025 — won't-fix on masking, because the URL is
|
|
4147
|
+
* the routing key an operator must be able to see, search, sort and edit) and
|
|
4148
|
+
* a legacy row's un-migrated `definition_json.headers` (#7986 —
|
|
4149
|
+
* `readLegacyHeaders` in `auto-enqueuer.ts` still reads them and warns) are
|
|
4150
|
+
* both served by `get`/`list`, which is exactly what the console requires.
|
|
4151
|
+
* Any set that removes them removes the admin surface with them. A survey
|
|
4152
|
+
* that greps this file for `enable:` and stops is measuring the wrong thing;
|
|
4153
|
+
* #9756's report carries the census that says so.
|
|
4154
|
+
*
|
|
4155
|
+
* Contrast the sibling `sys_http_delivery` (`['get','list']`,
|
|
4156
|
+
* `service-messaging`), whose narrowing is real: that table is engine-owned —
|
|
4157
|
+
* written only by `SqlHttpOutbox` through context-less raw-engine writes,
|
|
4158
|
+
* never authored — so closing its write surface costs nothing. `sys_webhook`
|
|
4159
|
+
* is a first-class admin authoring surface. That is the whole difference, and
|
|
4160
|
+
* it is why the sibling's shape could not simply be copied here.
|
|
4161
|
+
*
|
|
4162
|
+
* Pinned — the census, the no-narrowing equality, and the registration-time
|
|
4163
|
+
* survival of every write verb — in `sys-webhook-api-exposure.test.ts`.
|
|
4164
|
+
*/
|
|
4165
|
+
readonly enable: {
|
|
4166
|
+
readonly apiMethods: ["get", "list", "create", "update", "delete", "bulk"];
|
|
4167
|
+
};
|
|
3242
4168
|
}, "fields">;
|
|
3243
4169
|
|
|
3244
4170
|
export { SysWebhook };
|