@objectstack/plugin-webhooks 17.0.0 → 17.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/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?: any[] | undefined;
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?: any[] | undefined;
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;
@@ -368,9 +415,12 @@ declare const SysWebhook: Omit<{
368
415
  listViews?: Record<string, {
369
416
  columns: string[] | {
370
417
  field: string;
371
- label?: string | Record<string, string> | undefined;
418
+ label?: string | (Record<string, string> & {
419
+ key?: never;
420
+ defaultValue?: never;
421
+ }) | undefined;
372
422
  width?: number | undefined;
373
- align?: "left" | "right" | "center" | undefined;
423
+ align?: "center" | "left" | "right" | undefined;
374
424
  hidden?: boolean | undefined;
375
425
  sortable?: boolean | undefined;
376
426
  resizable?: boolean | undefined;
@@ -388,6 +438,15 @@ declare const SysWebhook: Omit<{
388
438
  link?: boolean | undefined;
389
439
  action?: string | undefined;
390
440
  }[];
441
+ map?: {
442
+ latitudeField?: string | undefined;
443
+ longitudeField?: string | undefined;
444
+ locationField?: string | undefined;
445
+ titleField?: string | undefined;
446
+ descriptionField?: string | undefined;
447
+ zoom?: number | undefined;
448
+ center?: [number, number] | undefined;
449
+ } | undefined;
391
450
  type?: "map" | "tree" | "grid" | "gallery" | "kanban" | "calendar" | "timeline" | "gantt" | "chart" | undefined;
392
451
  sort?: string | {
393
452
  field: string;
@@ -398,8 +457,14 @@ declare const SysWebhook: Omit<{
398
457
  operator: unknown;
399
458
  value?: string | number | boolean | (string | number)[] | null | undefined;
400
459
  }[] | undefined;
401
- description?: string | Record<string, string> | undefined;
402
- label?: string | Record<string, string> | undefined;
460
+ description?: string | (Record<string, string> & {
461
+ key?: never;
462
+ defaultValue?: never;
463
+ }) | undefined;
464
+ label?: string | (Record<string, string> & {
465
+ key?: never;
466
+ defaultValue?: never;
467
+ }) | undefined;
403
468
  name?: string | undefined;
404
469
  tree?: {
405
470
  [x: string]: unknown;
@@ -449,13 +514,19 @@ declare const SysWebhook: Omit<{
449
514
  lockedBy?: string | undefined;
450
515
  } | undefined;
451
516
  aria?: {
452
- ariaLabel?: string | Record<string, string> | undefined;
517
+ ariaLabel?: string | (Record<string, string> & {
518
+ key?: never;
519
+ defaultValue?: never;
520
+ }) | undefined;
453
521
  ariaDescribedBy?: string | undefined;
454
522
  role?: string | undefined;
455
523
  } | undefined;
456
524
  tabs?: {
457
525
  name: string;
458
- label?: string | Record<string, string> | undefined;
526
+ label?: string | (Record<string, string> & {
527
+ key?: never;
528
+ defaultValue?: never;
529
+ }) | undefined;
459
530
  icon?: string | undefined;
460
531
  view?: string | undefined;
461
532
  filter?: {
@@ -469,8 +540,14 @@ declare const SysWebhook: Omit<{
469
540
  visible?: boolean | undefined;
470
541
  }[] | undefined;
471
542
  emptyState?: {
472
- title?: string | Record<string, string> | undefined;
473
- message?: string | Record<string, string> | undefined;
543
+ title?: string | (Record<string, string> & {
544
+ key?: never;
545
+ defaultValue?: never;
546
+ }) | undefined;
547
+ message?: string | (Record<string, string> & {
548
+ key?: never;
549
+ defaultValue?: never;
550
+ }) | undefined;
474
551
  icon?: string | undefined;
475
552
  } | undefined;
476
553
  userActions?: {
@@ -556,6 +633,7 @@ declare const SysWebhook: Omit<{
556
633
  })[] | undefined;
557
634
  }[] | undefined;
558
635
  autoZoomToFilter?: boolean | undefined;
636
+ viewMode?: "year" | "month" | "day" | "week" | "quarter" | undefined;
559
637
  } | undefined;
560
638
  chart?: {
561
639
  dataset: string;
@@ -654,11 +732,17 @@ declare const SysWebhook: Omit<{
654
732
  element?: "toggle" | "dropdown" | undefined;
655
733
  fields?: {
656
734
  field: string;
657
- label?: string | Record<string, string> | undefined;
735
+ label?: string | (Record<string, string> & {
736
+ key?: never;
737
+ defaultValue?: never;
738
+ }) | undefined;
658
739
  type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
659
740
  options?: {
660
741
  value: string | number | boolean;
661
- label: string | Record<string, string>;
742
+ label: string | (Record<string, string> & {
743
+ key?: never;
744
+ defaultValue?: never;
745
+ });
662
746
  color?: string | undefined;
663
747
  }[] | undefined;
664
748
  showCount?: boolean | undefined;
@@ -689,7 +773,10 @@ declare const SysWebhook: Omit<{
689
773
  } | undefined;
690
774
  actions?: {
691
775
  name: string;
692
- label: string | Record<string, string>;
776
+ label: string | (Record<string, string> & {
777
+ key?: never;
778
+ defaultValue?: never;
779
+ });
693
780
  _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
694
781
  _lockReason?: string | undefined;
695
782
  _lockSource?: "artifact" | "package" | "env-forced" | undefined;
@@ -697,7 +784,10 @@ declare const SysWebhook: Omit<{
697
784
  _packageId?: string | undefined;
698
785
  _packageVersion?: string | undefined;
699
786
  _lockDocsUrl?: string | undefined;
700
- description?: string | Record<string, string> | undefined;
787
+ description?: string | (Record<string, string> & {
788
+ key?: never;
789
+ defaultValue?: never;
790
+ }) | undefined;
701
791
  objectName?: string | undefined;
702
792
  icon?: string | undefined;
703
793
  locations?: ("record_header" | "list_toolbar" | "list_item" | "record_more" | "record_related" | "record_section")[] | undefined;
@@ -720,11 +810,17 @@ declare const SysWebhook: Omit<{
720
810
  name?: string | undefined;
721
811
  field?: string | undefined;
722
812
  objectOverride?: string | undefined;
723
- label?: string | Record<string, string> | undefined;
813
+ label?: string | (Record<string, string> & {
814
+ key?: never;
815
+ defaultValue?: never;
816
+ }) | undefined;
724
817
  type?: "number" | "boolean" | "secret" | "email" | "currency" | "code" | "date" | "record" | "file" | "user" | "datetime" | "signature" | "url" | "time" | "formula" | "text" | "textarea" | "phone" | "password" | "markdown" | "html" | "richtext" | "percent" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "progress" | "tags" | "vector" | undefined;
725
818
  required?: boolean | undefined;
726
819
  options?: {
727
- label: string | Record<string, string>;
820
+ label: string | (Record<string, string> & {
821
+ key?: never;
822
+ defaultValue?: never;
823
+ });
728
824
  value: string;
729
825
  visibleWhen?: string | {
730
826
  dialect: "cel" | "cron" | "template";
@@ -757,19 +853,40 @@ declare const SysWebhook: Omit<{
757
853
  }[] | undefined;
758
854
  variant?: "primary" | "secondary" | "danger" | "ghost" | "link" | undefined;
759
855
  order?: number | undefined;
760
- confirmText?: string | Record<string, string> | undefined;
761
- successMessage?: string | Record<string, string> | undefined;
762
- errorMessage?: string | Record<string, string> | undefined;
856
+ confirmText?: string | (Record<string, string> & {
857
+ key?: never;
858
+ defaultValue?: never;
859
+ }) | undefined;
860
+ successMessage?: string | (Record<string, string> & {
861
+ key?: never;
862
+ defaultValue?: never;
863
+ }) | undefined;
864
+ errorMessage?: string | (Record<string, string> & {
865
+ key?: never;
866
+ defaultValue?: never;
867
+ }) | undefined;
763
868
  refreshAfter?: boolean | undefined;
764
869
  undoable?: boolean | undefined;
765
870
  resultDialog?: {
766
- title?: string | Record<string, string> | undefined;
767
- description?: string | Record<string, string> | undefined;
768
- acknowledge?: string | Record<string, string> | undefined;
871
+ title?: string | (Record<string, string> & {
872
+ key?: never;
873
+ defaultValue?: never;
874
+ }) | undefined;
875
+ description?: string | (Record<string, string> & {
876
+ key?: never;
877
+ defaultValue?: never;
878
+ }) | undefined;
879
+ acknowledge?: string | (Record<string, string> & {
880
+ key?: never;
881
+ defaultValue?: never;
882
+ }) | undefined;
769
883
  format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
770
884
  fields?: {
771
885
  path: string;
772
- label?: string | Record<string, string> | undefined;
886
+ label?: string | (Record<string, string> & {
887
+ key?: never;
888
+ defaultValue?: never;
889
+ }) | undefined;
773
890
  format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
774
891
  }[] | undefined;
775
892
  } | undefined;
@@ -817,8 +934,15 @@ declare const SysWebhook: Omit<{
817
934
  mode?: "delete" | "create" | "custom" | "edit" | undefined;
818
935
  opensInNewTab?: boolean | undefined;
819
936
  newTabUrl?: string | undefined;
937
+ onSuccess?: {
938
+ navigate: string;
939
+ openIn?: "self" | "newTab" | undefined;
940
+ } | undefined;
820
941
  aria?: {
821
- ariaLabel?: string | Record<string, string> | undefined;
942
+ ariaLabel?: string | (Record<string, string> & {
943
+ key?: never;
944
+ defaultValue?: never;
945
+ }) | undefined;
822
946
  ariaDescribedBy?: string | undefined;
823
947
  role?: string | undefined;
824
948
  } | undefined;
@@ -1016,6 +1140,19 @@ declare const SysWebhook: Omit<{
1016
1140
  } | undefined;
1017
1141
  readonly reference?: string | undefined;
1018
1142
  readonly scale?: number | undefined;
1143
+ readonly step?: number | undefined;
1144
+ readonly displayField?: string | undefined;
1145
+ readonly accept?: string[] | undefined;
1146
+ readonly requiredWhen?: string | {
1147
+ dialect: "cel" | "cron" | "template";
1148
+ source?: string | undefined;
1149
+ ast?: unknown;
1150
+ meta?: {
1151
+ rationale?: string | undefined;
1152
+ generatedBy?: string | undefined;
1153
+ } | undefined;
1154
+ } | undefined;
1155
+ readonly hidden?: boolean | undefined;
1019
1156
  readonly searchable?: boolean | undefined;
1020
1157
  readonly unique?: boolean | "global" | "organization" | undefined;
1021
1158
  readonly defaultValue?: unknown;
@@ -1024,16 +1161,55 @@ declare const SysWebhook: Omit<{
1024
1161
  readonly min?: number | undefined;
1025
1162
  readonly max?: number | undefined;
1026
1163
  readonly useGrouping?: boolean | undefined;
1027
- readonly accept?: string[] | undefined;
1028
1164
  readonly maxSize?: number | undefined;
1029
1165
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1030
1166
  readonly inlineTitle?: string | undefined;
1031
- readonly inlineColumns?: any[] | undefined;
1167
+ readonly inlineColumns?: {
1168
+ name: string;
1169
+ label?: string | undefined;
1170
+ type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
1171
+ width?: number | undefined;
1172
+ required?: boolean | undefined;
1173
+ options?: {
1174
+ label: string;
1175
+ value: string;
1176
+ }[] | undefined;
1177
+ prefix?: string | undefined;
1178
+ step?: number | undefined;
1179
+ reference?: string | undefined;
1180
+ displayField?: string | undefined;
1181
+ idField?: string | undefined;
1182
+ multiple?: boolean | undefined;
1183
+ accept?: string[] | undefined;
1184
+ defaultHidden?: boolean | undefined;
1185
+ computed?: boolean | undefined;
1186
+ expr?: string | undefined;
1187
+ scale?: number | undefined;
1188
+ autofill?: boolean | undefined;
1189
+ readonlyWhen?: string | {
1190
+ dialect: "cel" | "cron" | "template";
1191
+ source?: string | undefined;
1192
+ ast?: unknown;
1193
+ meta?: {
1194
+ rationale?: string | undefined;
1195
+ generatedBy?: string | undefined;
1196
+ } | undefined;
1197
+ } | undefined;
1198
+ requiredWhen?: string | {
1199
+ dialect: "cel" | "cron" | "template";
1200
+ source?: string | undefined;
1201
+ ast?: unknown;
1202
+ meta?: {
1203
+ rationale?: string | undefined;
1204
+ generatedBy?: string | undefined;
1205
+ } | undefined;
1206
+ } | undefined;
1207
+ }[] | undefined;
1032
1208
  readonly inlineAmountField?: string | undefined;
1033
1209
  readonly relatedList?: boolean | "primary" | undefined;
1034
1210
  readonly relatedListTitle?: string | undefined;
1035
- readonly relatedListColumns?: any[] | undefined;
1036
- readonly displayField?: string | undefined;
1211
+ readonly relatedListColumns?: string[] | undefined;
1212
+ readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
1037
1213
  readonly descriptionField?: string | undefined;
1038
1214
  readonly lookupColumns?: (string | {
1039
1215
  field: string;
@@ -1048,7 +1224,6 @@ declare const SysWebhook: Omit<{
1048
1224
  })[] | undefined;
1049
1225
  readonly allowCreate?: boolean | undefined;
1050
1226
  readonly language?: string | undefined;
1051
- readonly step?: number | undefined;
1052
1227
  readonly currencyConfig?: {
1053
1228
  precision?: number | undefined;
1054
1229
  currencyMode?: "fixed" | "dynamic" | undefined;
@@ -1057,23 +1232,18 @@ declare const SysWebhook: Omit<{
1057
1232
  readonly dimensions?: number | undefined;
1058
1233
  readonly trackHistory?: boolean | undefined;
1059
1234
  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
1235
  readonly conditionalRequired?: undefined;
1070
- readonly hidden?: boolean | undefined;
1071
1236
  readonly internal?: boolean | undefined;
1072
1237
  readonly requiredPermissions?: string[] | undefined;
1238
+ readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
1239
+ keepHead: number;
1240
+ keepTail: number;
1241
+ } | undefined;
1073
1242
  readonly ackPlaintextMasking?: boolean | undefined;
1074
1243
  readonly system?: boolean | undefined;
1075
1244
  readonly sortable?: boolean | undefined;
1076
1245
  readonly inlineHelpText?: string | undefined;
1246
+ readonly placeholder?: string | undefined;
1077
1247
  readonly externalId?: boolean | undefined;
1078
1248
  readonly type: "text";
1079
1249
  };
@@ -1156,6 +1326,19 @@ declare const SysWebhook: Omit<{
1156
1326
  } | undefined;
1157
1327
  readonly reference?: string | undefined;
1158
1328
  readonly scale?: number | undefined;
1329
+ readonly step?: number | undefined;
1330
+ readonly displayField?: string | undefined;
1331
+ readonly accept?: string[] | undefined;
1332
+ readonly requiredWhen?: string | {
1333
+ dialect: "cel" | "cron" | "template";
1334
+ source?: string | undefined;
1335
+ ast?: unknown;
1336
+ meta?: {
1337
+ rationale?: string | undefined;
1338
+ generatedBy?: string | undefined;
1339
+ } | undefined;
1340
+ } | undefined;
1341
+ readonly hidden?: boolean | undefined;
1159
1342
  readonly searchable?: boolean | undefined;
1160
1343
  readonly unique?: boolean | "global" | "organization" | undefined;
1161
1344
  readonly defaultValue?: unknown;
@@ -1164,16 +1347,55 @@ declare const SysWebhook: Omit<{
1164
1347
  readonly min?: number | undefined;
1165
1348
  readonly max?: number | undefined;
1166
1349
  readonly useGrouping?: boolean | undefined;
1167
- readonly accept?: string[] | undefined;
1168
1350
  readonly maxSize?: number | undefined;
1169
1351
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1170
1352
  readonly inlineTitle?: string | undefined;
1171
- readonly inlineColumns?: any[] | undefined;
1353
+ readonly inlineColumns?: {
1354
+ name: string;
1355
+ label?: string | undefined;
1356
+ type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
1357
+ width?: number | undefined;
1358
+ required?: boolean | undefined;
1359
+ options?: {
1360
+ label: string;
1361
+ value: string;
1362
+ }[] | undefined;
1363
+ prefix?: string | undefined;
1364
+ step?: number | undefined;
1365
+ reference?: string | undefined;
1366
+ displayField?: string | undefined;
1367
+ idField?: string | undefined;
1368
+ multiple?: boolean | undefined;
1369
+ accept?: string[] | undefined;
1370
+ defaultHidden?: boolean | undefined;
1371
+ computed?: boolean | undefined;
1372
+ expr?: string | undefined;
1373
+ scale?: number | undefined;
1374
+ autofill?: boolean | undefined;
1375
+ readonlyWhen?: string | {
1376
+ dialect: "cel" | "cron" | "template";
1377
+ source?: string | undefined;
1378
+ ast?: unknown;
1379
+ meta?: {
1380
+ rationale?: string | undefined;
1381
+ generatedBy?: string | undefined;
1382
+ } | undefined;
1383
+ } | undefined;
1384
+ requiredWhen?: string | {
1385
+ dialect: "cel" | "cron" | "template";
1386
+ source?: string | undefined;
1387
+ ast?: unknown;
1388
+ meta?: {
1389
+ rationale?: string | undefined;
1390
+ generatedBy?: string | undefined;
1391
+ } | undefined;
1392
+ } | undefined;
1393
+ }[] | undefined;
1172
1394
  readonly inlineAmountField?: string | undefined;
1173
1395
  readonly relatedList?: boolean | "primary" | undefined;
1174
1396
  readonly relatedListTitle?: string | undefined;
1175
- readonly relatedListColumns?: any[] | undefined;
1176
- readonly displayField?: string | undefined;
1397
+ readonly relatedListColumns?: string[] | undefined;
1398
+ readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
1177
1399
  readonly descriptionField?: string | undefined;
1178
1400
  readonly lookupColumns?: (string | {
1179
1401
  field: string;
@@ -1188,7 +1410,6 @@ declare const SysWebhook: Omit<{
1188
1410
  })[] | undefined;
1189
1411
  readonly allowCreate?: boolean | undefined;
1190
1412
  readonly language?: string | undefined;
1191
- readonly step?: number | undefined;
1192
1413
  readonly currencyConfig?: {
1193
1414
  precision?: number | undefined;
1194
1415
  currencyMode?: "fixed" | "dynamic" | undefined;
@@ -1197,23 +1418,18 @@ declare const SysWebhook: Omit<{
1197
1418
  readonly dimensions?: number | undefined;
1198
1419
  readonly trackHistory?: boolean | undefined;
1199
1420
  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
1421
  readonly conditionalRequired?: undefined;
1210
- readonly hidden?: boolean | undefined;
1211
1422
  readonly internal?: boolean | undefined;
1212
1423
  readonly requiredPermissions?: string[] | undefined;
1424
+ readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
1425
+ keepHead: number;
1426
+ keepTail: number;
1427
+ } | undefined;
1213
1428
  readonly ackPlaintextMasking?: boolean | undefined;
1214
1429
  readonly system?: boolean | undefined;
1215
1430
  readonly sortable?: boolean | undefined;
1216
1431
  readonly inlineHelpText?: string | undefined;
1432
+ readonly placeholder?: string | undefined;
1217
1433
  readonly externalId?: boolean | undefined;
1218
1434
  readonly type: "text";
1219
1435
  };
@@ -1296,6 +1512,19 @@ declare const SysWebhook: Omit<{
1296
1512
  } | undefined;
1297
1513
  readonly reference?: string | undefined;
1298
1514
  readonly scale?: number | undefined;
1515
+ readonly step?: number | undefined;
1516
+ readonly displayField?: string | undefined;
1517
+ readonly accept?: string[] | undefined;
1518
+ readonly requiredWhen?: string | {
1519
+ dialect: "cel" | "cron" | "template";
1520
+ source?: string | undefined;
1521
+ ast?: unknown;
1522
+ meta?: {
1523
+ rationale?: string | undefined;
1524
+ generatedBy?: string | undefined;
1525
+ } | undefined;
1526
+ } | undefined;
1527
+ readonly hidden?: boolean | undefined;
1299
1528
  readonly searchable?: boolean | undefined;
1300
1529
  readonly unique?: boolean | "global" | "organization" | undefined;
1301
1530
  readonly defaultValue?: unknown;
@@ -1304,16 +1533,55 @@ declare const SysWebhook: Omit<{
1304
1533
  readonly min?: number | undefined;
1305
1534
  readonly max?: number | undefined;
1306
1535
  readonly useGrouping?: boolean | undefined;
1307
- readonly accept?: string[] | undefined;
1308
1536
  readonly maxSize?: number | undefined;
1309
1537
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1310
1538
  readonly inlineTitle?: string | undefined;
1311
- readonly inlineColumns?: any[] | undefined;
1539
+ readonly inlineColumns?: {
1540
+ name: string;
1541
+ label?: string | undefined;
1542
+ type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
1543
+ width?: number | undefined;
1544
+ required?: boolean | undefined;
1545
+ options?: {
1546
+ label: string;
1547
+ value: string;
1548
+ }[] | undefined;
1549
+ prefix?: string | undefined;
1550
+ step?: number | undefined;
1551
+ reference?: string | undefined;
1552
+ displayField?: string | undefined;
1553
+ idField?: string | undefined;
1554
+ multiple?: boolean | undefined;
1555
+ accept?: string[] | undefined;
1556
+ defaultHidden?: boolean | undefined;
1557
+ computed?: boolean | undefined;
1558
+ expr?: string | undefined;
1559
+ scale?: number | undefined;
1560
+ autofill?: boolean | undefined;
1561
+ readonlyWhen?: string | {
1562
+ dialect: "cel" | "cron" | "template";
1563
+ source?: string | undefined;
1564
+ ast?: unknown;
1565
+ meta?: {
1566
+ rationale?: string | undefined;
1567
+ generatedBy?: string | undefined;
1568
+ } | undefined;
1569
+ } | undefined;
1570
+ requiredWhen?: string | {
1571
+ dialect: "cel" | "cron" | "template";
1572
+ source?: string | undefined;
1573
+ ast?: unknown;
1574
+ meta?: {
1575
+ rationale?: string | undefined;
1576
+ generatedBy?: string | undefined;
1577
+ } | undefined;
1578
+ } | undefined;
1579
+ }[] | undefined;
1312
1580
  readonly inlineAmountField?: string | undefined;
1313
1581
  readonly relatedList?: boolean | "primary" | undefined;
1314
1582
  readonly relatedListTitle?: string | undefined;
1315
- readonly relatedListColumns?: any[] | undefined;
1316
- readonly displayField?: string | undefined;
1583
+ readonly relatedListColumns?: string[] | undefined;
1584
+ readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
1317
1585
  readonly descriptionField?: string | undefined;
1318
1586
  readonly lookupColumns?: (string | {
1319
1587
  field: string;
@@ -1328,7 +1596,6 @@ declare const SysWebhook: Omit<{
1328
1596
  })[] | undefined;
1329
1597
  readonly allowCreate?: boolean | undefined;
1330
1598
  readonly language?: string | undefined;
1331
- readonly step?: number | undefined;
1332
1599
  readonly currencyConfig?: {
1333
1600
  precision?: number | undefined;
1334
1601
  currencyMode?: "fixed" | "dynamic" | undefined;
@@ -1337,23 +1604,18 @@ declare const SysWebhook: Omit<{
1337
1604
  readonly dimensions?: number | undefined;
1338
1605
  readonly trackHistory?: boolean | undefined;
1339
1606
  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
1607
  readonly conditionalRequired?: undefined;
1350
- readonly hidden?: boolean | undefined;
1351
1608
  readonly internal?: boolean | undefined;
1352
1609
  readonly requiredPermissions?: string[] | undefined;
1610
+ readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
1611
+ keepHead: number;
1612
+ keepTail: number;
1613
+ } | undefined;
1353
1614
  readonly ackPlaintextMasking?: boolean | undefined;
1354
1615
  readonly system?: boolean | undefined;
1355
1616
  readonly sortable?: boolean | undefined;
1356
1617
  readonly inlineHelpText?: string | undefined;
1618
+ readonly placeholder?: string | undefined;
1357
1619
  readonly externalId?: boolean | undefined;
1358
1620
  readonly type: "text";
1359
1621
  };
@@ -1436,6 +1698,19 @@ declare const SysWebhook: Omit<{
1436
1698
  } | undefined;
1437
1699
  readonly reference?: string | undefined;
1438
1700
  readonly scale?: number | undefined;
1701
+ readonly step?: number | undefined;
1702
+ readonly displayField?: string | undefined;
1703
+ readonly accept?: string[] | undefined;
1704
+ readonly requiredWhen?: string | {
1705
+ dialect: "cel" | "cron" | "template";
1706
+ source?: string | undefined;
1707
+ ast?: unknown;
1708
+ meta?: {
1709
+ rationale?: string | undefined;
1710
+ generatedBy?: string | undefined;
1711
+ } | undefined;
1712
+ } | undefined;
1713
+ readonly hidden?: boolean | undefined;
1439
1714
  readonly searchable?: boolean | undefined;
1440
1715
  readonly unique?: boolean | "global" | "organization" | undefined;
1441
1716
  readonly defaultValue?: unknown;
@@ -1444,16 +1719,55 @@ declare const SysWebhook: Omit<{
1444
1719
  readonly min?: number | undefined;
1445
1720
  readonly max?: number | undefined;
1446
1721
  readonly useGrouping?: boolean | undefined;
1447
- readonly accept?: string[] | undefined;
1448
1722
  readonly maxSize?: number | undefined;
1449
1723
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1450
1724
  readonly inlineTitle?: string | undefined;
1451
- readonly inlineColumns?: any[] | undefined;
1725
+ readonly inlineColumns?: {
1726
+ name: string;
1727
+ label?: string | undefined;
1728
+ type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
1729
+ width?: number | undefined;
1730
+ required?: boolean | undefined;
1731
+ options?: {
1732
+ label: string;
1733
+ value: string;
1734
+ }[] | undefined;
1735
+ prefix?: string | undefined;
1736
+ step?: number | undefined;
1737
+ reference?: string | undefined;
1738
+ displayField?: string | undefined;
1739
+ idField?: string | undefined;
1740
+ multiple?: boolean | undefined;
1741
+ accept?: string[] | undefined;
1742
+ defaultHidden?: boolean | undefined;
1743
+ computed?: boolean | undefined;
1744
+ expr?: string | undefined;
1745
+ scale?: number | undefined;
1746
+ autofill?: boolean | undefined;
1747
+ readonlyWhen?: string | {
1748
+ dialect: "cel" | "cron" | "template";
1749
+ source?: string | undefined;
1750
+ ast?: unknown;
1751
+ meta?: {
1752
+ rationale?: string | undefined;
1753
+ generatedBy?: string | undefined;
1754
+ } | undefined;
1755
+ } | undefined;
1756
+ requiredWhen?: string | {
1757
+ dialect: "cel" | "cron" | "template";
1758
+ source?: string | undefined;
1759
+ ast?: unknown;
1760
+ meta?: {
1761
+ rationale?: string | undefined;
1762
+ generatedBy?: string | undefined;
1763
+ } | undefined;
1764
+ } | undefined;
1765
+ }[] | undefined;
1452
1766
  readonly inlineAmountField?: string | undefined;
1453
1767
  readonly relatedList?: boolean | "primary" | undefined;
1454
1768
  readonly relatedListTitle?: string | undefined;
1455
- readonly relatedListColumns?: any[] | undefined;
1456
- readonly displayField?: string | undefined;
1769
+ readonly relatedListColumns?: string[] | undefined;
1770
+ readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
1457
1771
  readonly descriptionField?: string | undefined;
1458
1772
  readonly lookupColumns?: (string | {
1459
1773
  field: string;
@@ -1468,7 +1782,6 @@ declare const SysWebhook: Omit<{
1468
1782
  })[] | undefined;
1469
1783
  readonly allowCreate?: boolean | undefined;
1470
1784
  readonly language?: string | undefined;
1471
- readonly step?: number | undefined;
1472
1785
  readonly currencyConfig?: {
1473
1786
  precision?: number | undefined;
1474
1787
  currencyMode?: "fixed" | "dynamic" | undefined;
@@ -1477,23 +1790,18 @@ declare const SysWebhook: Omit<{
1477
1790
  readonly dimensions?: number | undefined;
1478
1791
  readonly trackHistory?: boolean | undefined;
1479
1792
  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
1793
  readonly conditionalRequired?: undefined;
1490
- readonly hidden?: boolean | undefined;
1491
1794
  readonly internal?: boolean | undefined;
1492
1795
  readonly requiredPermissions?: string[] | undefined;
1796
+ readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
1797
+ keepHead: number;
1798
+ keepTail: number;
1799
+ } | undefined;
1493
1800
  readonly ackPlaintextMasking?: boolean | undefined;
1494
1801
  readonly system?: boolean | undefined;
1495
1802
  readonly sortable?: boolean | undefined;
1496
1803
  readonly inlineHelpText?: string | undefined;
1804
+ readonly placeholder?: string | undefined;
1497
1805
  readonly externalId?: boolean | undefined;
1498
1806
  readonly type: "text";
1499
1807
  };
@@ -1576,6 +1884,19 @@ declare const SysWebhook: Omit<{
1576
1884
  } | undefined;
1577
1885
  readonly reference?: string | undefined;
1578
1886
  readonly scale?: number | undefined;
1887
+ readonly step?: number | undefined;
1888
+ readonly displayField?: string | undefined;
1889
+ readonly accept?: string[] | undefined;
1890
+ readonly requiredWhen?: string | {
1891
+ dialect: "cel" | "cron" | "template";
1892
+ source?: string | undefined;
1893
+ ast?: unknown;
1894
+ meta?: {
1895
+ rationale?: string | undefined;
1896
+ generatedBy?: string | undefined;
1897
+ } | undefined;
1898
+ } | undefined;
1899
+ readonly hidden?: boolean | undefined;
1579
1900
  readonly searchable?: boolean | undefined;
1580
1901
  readonly unique?: boolean | "global" | "organization" | undefined;
1581
1902
  readonly defaultValue?: unknown;
@@ -1584,18 +1905,57 @@ declare const SysWebhook: Omit<{
1584
1905
  readonly min?: number | undefined;
1585
1906
  readonly max?: number | undefined;
1586
1907
  readonly useGrouping?: boolean | undefined;
1587
- readonly accept?: string[] | undefined;
1588
1908
  readonly maxSize?: number | undefined;
1589
1909
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1590
1910
  readonly inlineTitle?: string | undefined;
1591
- readonly inlineColumns?: any[] | undefined;
1592
- readonly inlineAmountField?: string | undefined;
1593
- readonly relatedList?: boolean | "primary" | undefined;
1594
- readonly relatedListTitle?: string | undefined;
1595
- readonly relatedListColumns?: any[] | undefined;
1596
- readonly displayField?: string | undefined;
1597
- readonly descriptionField?: string | undefined;
1598
- readonly lookupColumns?: (string | {
1911
+ readonly inlineColumns?: {
1912
+ name: string;
1913
+ label?: string | undefined;
1914
+ type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
1915
+ width?: number | undefined;
1916
+ required?: boolean | undefined;
1917
+ options?: {
1918
+ label: string;
1919
+ value: string;
1920
+ }[] | undefined;
1921
+ prefix?: string | undefined;
1922
+ step?: number | undefined;
1923
+ reference?: string | undefined;
1924
+ displayField?: string | undefined;
1925
+ idField?: string | undefined;
1926
+ multiple?: boolean | undefined;
1927
+ accept?: string[] | undefined;
1928
+ defaultHidden?: boolean | undefined;
1929
+ computed?: boolean | undefined;
1930
+ expr?: string | undefined;
1931
+ scale?: number | undefined;
1932
+ autofill?: boolean | undefined;
1933
+ readonlyWhen?: string | {
1934
+ dialect: "cel" | "cron" | "template";
1935
+ source?: string | undefined;
1936
+ ast?: unknown;
1937
+ meta?: {
1938
+ rationale?: string | undefined;
1939
+ generatedBy?: string | undefined;
1940
+ } | undefined;
1941
+ } | undefined;
1942
+ requiredWhen?: string | {
1943
+ dialect: "cel" | "cron" | "template";
1944
+ source?: string | undefined;
1945
+ ast?: unknown;
1946
+ meta?: {
1947
+ rationale?: string | undefined;
1948
+ generatedBy?: string | undefined;
1949
+ } | undefined;
1950
+ } | undefined;
1951
+ }[] | undefined;
1952
+ readonly inlineAmountField?: string | undefined;
1953
+ readonly relatedList?: boolean | "primary" | undefined;
1954
+ readonly relatedListTitle?: string | undefined;
1955
+ readonly relatedListColumns?: string[] | undefined;
1956
+ readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
1957
+ readonly descriptionField?: string | undefined;
1958
+ readonly lookupColumns?: (string | {
1599
1959
  field: string;
1600
1960
  label?: string | undefined;
1601
1961
  width?: string | undefined;
@@ -1608,7 +1968,6 @@ declare const SysWebhook: Omit<{
1608
1968
  })[] | undefined;
1609
1969
  readonly allowCreate?: boolean | undefined;
1610
1970
  readonly language?: string | undefined;
1611
- readonly step?: number | undefined;
1612
1971
  readonly currencyConfig?: {
1613
1972
  precision?: number | undefined;
1614
1973
  currencyMode?: "fixed" | "dynamic" | undefined;
@@ -1617,23 +1976,18 @@ declare const SysWebhook: Omit<{
1617
1976
  readonly dimensions?: number | undefined;
1618
1977
  readonly trackHistory?: boolean | undefined;
1619
1978
  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
1979
  readonly conditionalRequired?: undefined;
1630
- readonly hidden?: boolean | undefined;
1631
1980
  readonly internal?: boolean | undefined;
1632
1981
  readonly requiredPermissions?: string[] | undefined;
1982
+ readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
1983
+ keepHead: number;
1984
+ keepTail: number;
1985
+ } | undefined;
1633
1986
  readonly ackPlaintextMasking?: boolean | undefined;
1634
1987
  readonly system?: boolean | undefined;
1635
1988
  readonly sortable?: boolean | undefined;
1636
1989
  readonly inlineHelpText?: string | undefined;
1990
+ readonly placeholder?: string | undefined;
1637
1991
  readonly externalId?: boolean | undefined;
1638
1992
  readonly type: "select";
1639
1993
  };
@@ -1716,6 +2070,19 @@ declare const SysWebhook: Omit<{
1716
2070
  } | undefined;
1717
2071
  readonly reference?: string | undefined;
1718
2072
  readonly scale?: number | undefined;
2073
+ readonly step?: number | undefined;
2074
+ readonly displayField?: string | undefined;
2075
+ readonly accept?: string[] | undefined;
2076
+ readonly requiredWhen?: string | {
2077
+ dialect: "cel" | "cron" | "template";
2078
+ source?: string | undefined;
2079
+ ast?: unknown;
2080
+ meta?: {
2081
+ rationale?: string | undefined;
2082
+ generatedBy?: string | undefined;
2083
+ } | undefined;
2084
+ } | undefined;
2085
+ readonly hidden?: boolean | undefined;
1719
2086
  readonly searchable?: boolean | undefined;
1720
2087
  readonly unique?: boolean | "global" | "organization" | undefined;
1721
2088
  readonly defaultValue?: unknown;
@@ -1724,16 +2091,55 @@ declare const SysWebhook: Omit<{
1724
2091
  readonly min?: number | undefined;
1725
2092
  readonly max?: number | undefined;
1726
2093
  readonly useGrouping?: boolean | undefined;
1727
- readonly accept?: string[] | undefined;
1728
2094
  readonly maxSize?: number | undefined;
1729
2095
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1730
2096
  readonly inlineTitle?: string | undefined;
1731
- readonly inlineColumns?: any[] | undefined;
2097
+ readonly inlineColumns?: {
2098
+ name: string;
2099
+ label?: string | undefined;
2100
+ type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
2101
+ width?: number | undefined;
2102
+ required?: boolean | undefined;
2103
+ options?: {
2104
+ label: string;
2105
+ value: string;
2106
+ }[] | undefined;
2107
+ prefix?: string | undefined;
2108
+ step?: number | undefined;
2109
+ reference?: string | undefined;
2110
+ displayField?: string | undefined;
2111
+ idField?: string | undefined;
2112
+ multiple?: boolean | undefined;
2113
+ accept?: string[] | undefined;
2114
+ defaultHidden?: boolean | undefined;
2115
+ computed?: boolean | undefined;
2116
+ expr?: string | undefined;
2117
+ scale?: number | undefined;
2118
+ autofill?: boolean | undefined;
2119
+ readonlyWhen?: string | {
2120
+ dialect: "cel" | "cron" | "template";
2121
+ source?: string | undefined;
2122
+ ast?: unknown;
2123
+ meta?: {
2124
+ rationale?: string | undefined;
2125
+ generatedBy?: string | undefined;
2126
+ } | undefined;
2127
+ } | undefined;
2128
+ requiredWhen?: string | {
2129
+ dialect: "cel" | "cron" | "template";
2130
+ source?: string | undefined;
2131
+ ast?: unknown;
2132
+ meta?: {
2133
+ rationale?: string | undefined;
2134
+ generatedBy?: string | undefined;
2135
+ } | undefined;
2136
+ } | undefined;
2137
+ }[] | undefined;
1732
2138
  readonly inlineAmountField?: string | undefined;
1733
2139
  readonly relatedList?: boolean | "primary" | undefined;
1734
2140
  readonly relatedListTitle?: string | undefined;
1735
- readonly relatedListColumns?: any[] | undefined;
1736
- readonly displayField?: string | undefined;
2141
+ readonly relatedListColumns?: string[] | undefined;
2142
+ readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
1737
2143
  readonly descriptionField?: string | undefined;
1738
2144
  readonly lookupColumns?: (string | {
1739
2145
  field: string;
@@ -1748,7 +2154,6 @@ declare const SysWebhook: Omit<{
1748
2154
  })[] | undefined;
1749
2155
  readonly allowCreate?: boolean | undefined;
1750
2156
  readonly language?: string | undefined;
1751
- readonly step?: number | undefined;
1752
2157
  readonly currencyConfig?: {
1753
2158
  precision?: number | undefined;
1754
2159
  currencyMode?: "fixed" | "dynamic" | undefined;
@@ -1757,23 +2162,18 @@ declare const SysWebhook: Omit<{
1757
2162
  readonly dimensions?: number | undefined;
1758
2163
  readonly trackHistory?: boolean | undefined;
1759
2164
  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
2165
  readonly conditionalRequired?: undefined;
1770
- readonly hidden?: boolean | undefined;
1771
2166
  readonly internal?: boolean | undefined;
1772
2167
  readonly requiredPermissions?: string[] | undefined;
2168
+ readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
2169
+ keepHead: number;
2170
+ keepTail: number;
2171
+ } | undefined;
1773
2172
  readonly ackPlaintextMasking?: boolean | undefined;
1774
2173
  readonly system?: boolean | undefined;
1775
2174
  readonly sortable?: boolean | undefined;
1776
2175
  readonly inlineHelpText?: string | undefined;
2176
+ readonly placeholder?: string | undefined;
1777
2177
  readonly externalId?: boolean | undefined;
1778
2178
  readonly type: "text";
1779
2179
  };
@@ -1856,6 +2256,19 @@ declare const SysWebhook: Omit<{
1856
2256
  } | undefined;
1857
2257
  readonly reference?: string | undefined;
1858
2258
  readonly scale?: number | undefined;
2259
+ readonly step?: number | undefined;
2260
+ readonly displayField?: string | undefined;
2261
+ readonly accept?: string[] | undefined;
2262
+ readonly requiredWhen?: string | {
2263
+ dialect: "cel" | "cron" | "template";
2264
+ source?: string | undefined;
2265
+ ast?: unknown;
2266
+ meta?: {
2267
+ rationale?: string | undefined;
2268
+ generatedBy?: string | undefined;
2269
+ } | undefined;
2270
+ } | undefined;
2271
+ readonly hidden?: boolean | undefined;
1859
2272
  readonly searchable?: boolean | undefined;
1860
2273
  readonly unique?: boolean | "global" | "organization" | undefined;
1861
2274
  readonly defaultValue?: unknown;
@@ -1864,16 +2277,55 @@ declare const SysWebhook: Omit<{
1864
2277
  readonly min?: number | undefined;
1865
2278
  readonly max?: number | undefined;
1866
2279
  readonly useGrouping?: boolean | undefined;
1867
- readonly accept?: string[] | undefined;
1868
2280
  readonly maxSize?: number | undefined;
1869
2281
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1870
2282
  readonly inlineTitle?: string | undefined;
1871
- readonly inlineColumns?: any[] | undefined;
2283
+ readonly inlineColumns?: {
2284
+ name: string;
2285
+ label?: string | undefined;
2286
+ type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
2287
+ width?: number | undefined;
2288
+ required?: boolean | undefined;
2289
+ options?: {
2290
+ label: string;
2291
+ value: string;
2292
+ }[] | undefined;
2293
+ prefix?: string | undefined;
2294
+ step?: number | undefined;
2295
+ reference?: string | undefined;
2296
+ displayField?: string | undefined;
2297
+ idField?: string | undefined;
2298
+ multiple?: boolean | undefined;
2299
+ accept?: string[] | undefined;
2300
+ defaultHidden?: boolean | undefined;
2301
+ computed?: boolean | undefined;
2302
+ expr?: string | undefined;
2303
+ scale?: number | undefined;
2304
+ autofill?: boolean | undefined;
2305
+ readonlyWhen?: string | {
2306
+ dialect: "cel" | "cron" | "template";
2307
+ source?: string | undefined;
2308
+ ast?: unknown;
2309
+ meta?: {
2310
+ rationale?: string | undefined;
2311
+ generatedBy?: string | undefined;
2312
+ } | undefined;
2313
+ } | undefined;
2314
+ requiredWhen?: string | {
2315
+ dialect: "cel" | "cron" | "template";
2316
+ source?: string | undefined;
2317
+ ast?: unknown;
2318
+ meta?: {
2319
+ rationale?: string | undefined;
2320
+ generatedBy?: string | undefined;
2321
+ } | undefined;
2322
+ } | undefined;
2323
+ }[] | undefined;
1872
2324
  readonly inlineAmountField?: string | undefined;
1873
2325
  readonly relatedList?: boolean | "primary" | undefined;
1874
2326
  readonly relatedListTitle?: string | undefined;
1875
- readonly relatedListColumns?: any[] | undefined;
1876
- readonly displayField?: string | undefined;
2327
+ readonly relatedListColumns?: string[] | undefined;
2328
+ readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
1877
2329
  readonly descriptionField?: string | undefined;
1878
2330
  readonly lookupColumns?: (string | {
1879
2331
  field: string;
@@ -1888,7 +2340,6 @@ declare const SysWebhook: Omit<{
1888
2340
  })[] | undefined;
1889
2341
  readonly allowCreate?: boolean | undefined;
1890
2342
  readonly language?: string | undefined;
1891
- readonly step?: number | undefined;
1892
2343
  readonly currencyConfig?: {
1893
2344
  precision?: number | undefined;
1894
2345
  currencyMode?: "fixed" | "dynamic" | undefined;
@@ -1897,23 +2348,18 @@ declare const SysWebhook: Omit<{
1897
2348
  readonly dimensions?: number | undefined;
1898
2349
  readonly trackHistory?: boolean | undefined;
1899
2350
  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
2351
  readonly conditionalRequired?: undefined;
1910
- readonly hidden?: boolean | undefined;
1911
2352
  readonly internal?: boolean | undefined;
1912
2353
  readonly requiredPermissions?: string[] | undefined;
2354
+ readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
2355
+ keepHead: number;
2356
+ keepTail: number;
2357
+ } | undefined;
1913
2358
  readonly ackPlaintextMasking?: boolean | undefined;
1914
2359
  readonly system?: boolean | undefined;
1915
2360
  readonly sortable?: boolean | undefined;
1916
2361
  readonly inlineHelpText?: string | undefined;
2362
+ readonly placeholder?: string | undefined;
1917
2363
  readonly externalId?: boolean | undefined;
1918
2364
  readonly type: "select";
1919
2365
  };
@@ -1996,6 +2442,19 @@ declare const SysWebhook: Omit<{
1996
2442
  } | undefined;
1997
2443
  readonly reference?: string | undefined;
1998
2444
  readonly scale?: number | undefined;
2445
+ readonly step?: number | undefined;
2446
+ readonly displayField?: string | undefined;
2447
+ readonly accept?: string[] | undefined;
2448
+ readonly requiredWhen?: string | {
2449
+ dialect: "cel" | "cron" | "template";
2450
+ source?: string | undefined;
2451
+ ast?: unknown;
2452
+ meta?: {
2453
+ rationale?: string | undefined;
2454
+ generatedBy?: string | undefined;
2455
+ } | undefined;
2456
+ } | undefined;
2457
+ readonly hidden?: boolean | undefined;
1999
2458
  readonly searchable?: boolean | undefined;
2000
2459
  readonly unique?: boolean | "global" | "organization" | undefined;
2001
2460
  readonly defaultValue?: unknown;
@@ -2004,16 +2463,55 @@ declare const SysWebhook: Omit<{
2004
2463
  readonly min?: number | undefined;
2005
2464
  readonly max?: number | undefined;
2006
2465
  readonly useGrouping?: boolean | undefined;
2007
- readonly accept?: string[] | undefined;
2008
2466
  readonly maxSize?: number | undefined;
2009
2467
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2010
2468
  readonly inlineTitle?: string | undefined;
2011
- readonly inlineColumns?: any[] | undefined;
2469
+ readonly inlineColumns?: {
2470
+ name: string;
2471
+ label?: string | undefined;
2472
+ type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
2473
+ width?: number | undefined;
2474
+ required?: boolean | undefined;
2475
+ options?: {
2476
+ label: string;
2477
+ value: string;
2478
+ }[] | undefined;
2479
+ prefix?: string | undefined;
2480
+ step?: number | undefined;
2481
+ reference?: string | undefined;
2482
+ displayField?: string | undefined;
2483
+ idField?: string | undefined;
2484
+ multiple?: boolean | undefined;
2485
+ accept?: string[] | undefined;
2486
+ defaultHidden?: boolean | undefined;
2487
+ computed?: boolean | undefined;
2488
+ expr?: string | undefined;
2489
+ scale?: number | undefined;
2490
+ autofill?: boolean | undefined;
2491
+ readonlyWhen?: string | {
2492
+ dialect: "cel" | "cron" | "template";
2493
+ source?: string | undefined;
2494
+ ast?: unknown;
2495
+ meta?: {
2496
+ rationale?: string | undefined;
2497
+ generatedBy?: string | undefined;
2498
+ } | undefined;
2499
+ } | undefined;
2500
+ requiredWhen?: string | {
2501
+ dialect: "cel" | "cron" | "template";
2502
+ source?: string | undefined;
2503
+ ast?: unknown;
2504
+ meta?: {
2505
+ rationale?: string | undefined;
2506
+ generatedBy?: string | undefined;
2507
+ } | undefined;
2508
+ } | undefined;
2509
+ }[] | undefined;
2012
2510
  readonly inlineAmountField?: string | undefined;
2013
2511
  readonly relatedList?: boolean | "primary" | undefined;
2014
2512
  readonly relatedListTitle?: string | undefined;
2015
- readonly relatedListColumns?: any[] | undefined;
2016
- readonly displayField?: string | undefined;
2513
+ readonly relatedListColumns?: string[] | undefined;
2514
+ readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
2017
2515
  readonly descriptionField?: string | undefined;
2018
2516
  readonly lookupColumns?: (string | {
2019
2517
  field: string;
@@ -2028,7 +2526,6 @@ declare const SysWebhook: Omit<{
2028
2526
  })[] | undefined;
2029
2527
  readonly allowCreate?: boolean | undefined;
2030
2528
  readonly language?: string | undefined;
2031
- readonly step?: number | undefined;
2032
2529
  readonly currencyConfig?: {
2033
2530
  precision?: number | undefined;
2034
2531
  currencyMode?: "fixed" | "dynamic" | undefined;
@@ -2037,23 +2534,18 @@ declare const SysWebhook: Omit<{
2037
2534
  readonly dimensions?: number | undefined;
2038
2535
  readonly trackHistory?: boolean | undefined;
2039
2536
  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
2537
  readonly conditionalRequired?: undefined;
2050
- readonly hidden?: boolean | undefined;
2051
2538
  readonly internal?: boolean | undefined;
2052
2539
  readonly requiredPermissions?: string[] | undefined;
2540
+ readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
2541
+ keepHead: number;
2542
+ keepTail: number;
2543
+ } | undefined;
2053
2544
  readonly ackPlaintextMasking?: boolean | undefined;
2054
2545
  readonly system?: boolean | undefined;
2055
2546
  readonly sortable?: boolean | undefined;
2056
2547
  readonly inlineHelpText?: string | undefined;
2548
+ readonly placeholder?: string | undefined;
2057
2549
  readonly externalId?: boolean | undefined;
2058
2550
  readonly type: "textarea";
2059
2551
  };
@@ -2136,6 +2628,19 @@ declare const SysWebhook: Omit<{
2136
2628
  } | undefined;
2137
2629
  readonly reference?: string | undefined;
2138
2630
  readonly scale?: number | undefined;
2631
+ readonly step?: number | undefined;
2632
+ readonly displayField?: string | undefined;
2633
+ readonly accept?: string[] | undefined;
2634
+ readonly requiredWhen?: string | {
2635
+ dialect: "cel" | "cron" | "template";
2636
+ source?: string | undefined;
2637
+ ast?: unknown;
2638
+ meta?: {
2639
+ rationale?: string | undefined;
2640
+ generatedBy?: string | undefined;
2641
+ } | undefined;
2642
+ } | undefined;
2643
+ readonly hidden?: boolean | undefined;
2139
2644
  readonly searchable?: boolean | undefined;
2140
2645
  readonly unique?: boolean | "global" | "organization" | undefined;
2141
2646
  readonly defaultValue?: unknown;
@@ -2144,16 +2649,55 @@ declare const SysWebhook: Omit<{
2144
2649
  readonly min?: number | undefined;
2145
2650
  readonly max?: number | undefined;
2146
2651
  readonly useGrouping?: boolean | undefined;
2147
- readonly accept?: string[] | undefined;
2148
2652
  readonly maxSize?: number | undefined;
2149
2653
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2150
2654
  readonly inlineTitle?: string | undefined;
2151
- readonly inlineColumns?: any[] | undefined;
2655
+ readonly inlineColumns?: {
2656
+ name: string;
2657
+ label?: string | undefined;
2658
+ type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
2659
+ width?: number | undefined;
2660
+ required?: boolean | undefined;
2661
+ options?: {
2662
+ label: string;
2663
+ value: string;
2664
+ }[] | undefined;
2665
+ prefix?: string | undefined;
2666
+ step?: number | undefined;
2667
+ reference?: string | undefined;
2668
+ displayField?: string | undefined;
2669
+ idField?: string | undefined;
2670
+ multiple?: boolean | undefined;
2671
+ accept?: string[] | undefined;
2672
+ defaultHidden?: boolean | undefined;
2673
+ computed?: boolean | undefined;
2674
+ expr?: string | undefined;
2675
+ scale?: number | undefined;
2676
+ autofill?: boolean | undefined;
2677
+ readonlyWhen?: string | {
2678
+ dialect: "cel" | "cron" | "template";
2679
+ source?: string | undefined;
2680
+ ast?: unknown;
2681
+ meta?: {
2682
+ rationale?: string | undefined;
2683
+ generatedBy?: string | undefined;
2684
+ } | undefined;
2685
+ } | undefined;
2686
+ requiredWhen?: string | {
2687
+ dialect: "cel" | "cron" | "template";
2688
+ source?: string | undefined;
2689
+ ast?: unknown;
2690
+ meta?: {
2691
+ rationale?: string | undefined;
2692
+ generatedBy?: string | undefined;
2693
+ } | undefined;
2694
+ } | undefined;
2695
+ }[] | undefined;
2152
2696
  readonly inlineAmountField?: string | undefined;
2153
2697
  readonly relatedList?: boolean | "primary" | undefined;
2154
2698
  readonly relatedListTitle?: string | undefined;
2155
- readonly relatedListColumns?: any[] | undefined;
2156
- readonly displayField?: string | undefined;
2699
+ readonly relatedListColumns?: string[] | undefined;
2700
+ readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
2157
2701
  readonly descriptionField?: string | undefined;
2158
2702
  readonly lookupColumns?: (string | {
2159
2703
  field: string;
@@ -2168,7 +2712,6 @@ declare const SysWebhook: Omit<{
2168
2712
  })[] | undefined;
2169
2713
  readonly allowCreate?: boolean | undefined;
2170
2714
  readonly language?: string | undefined;
2171
- readonly step?: number | undefined;
2172
2715
  readonly currencyConfig?: {
2173
2716
  precision?: number | undefined;
2174
2717
  currencyMode?: "fixed" | "dynamic" | undefined;
@@ -2177,23 +2720,18 @@ declare const SysWebhook: Omit<{
2177
2720
  readonly dimensions?: number | undefined;
2178
2721
  readonly trackHistory?: boolean | undefined;
2179
2722
  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
2723
  readonly conditionalRequired?: undefined;
2190
- readonly hidden?: boolean | undefined;
2191
2724
  readonly internal?: boolean | undefined;
2192
2725
  readonly requiredPermissions?: string[] | undefined;
2726
+ readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
2727
+ keepHead: number;
2728
+ keepTail: number;
2729
+ } | undefined;
2193
2730
  readonly ackPlaintextMasking?: boolean | undefined;
2194
2731
  readonly system?: boolean | undefined;
2195
2732
  readonly sortable?: boolean | undefined;
2196
2733
  readonly inlineHelpText?: string | undefined;
2734
+ readonly placeholder?: string | undefined;
2197
2735
  readonly externalId?: boolean | undefined;
2198
2736
  readonly type: "boolean";
2199
2737
  };
@@ -2276,6 +2814,19 @@ declare const SysWebhook: Omit<{
2276
2814
  } | undefined;
2277
2815
  readonly reference?: string | undefined;
2278
2816
  readonly scale?: number | undefined;
2817
+ readonly step?: number | undefined;
2818
+ readonly displayField?: string | undefined;
2819
+ readonly accept?: string[] | undefined;
2820
+ readonly requiredWhen?: string | {
2821
+ dialect: "cel" | "cron" | "template";
2822
+ source?: string | undefined;
2823
+ ast?: unknown;
2824
+ meta?: {
2825
+ rationale?: string | undefined;
2826
+ generatedBy?: string | undefined;
2827
+ } | undefined;
2828
+ } | undefined;
2829
+ readonly hidden?: boolean | undefined;
2279
2830
  readonly searchable?: boolean | undefined;
2280
2831
  readonly unique?: boolean | "global" | "organization" | undefined;
2281
2832
  readonly defaultValue?: unknown;
@@ -2284,16 +2835,55 @@ declare const SysWebhook: Omit<{
2284
2835
  readonly min?: number | undefined;
2285
2836
  readonly max?: number | undefined;
2286
2837
  readonly useGrouping?: boolean | undefined;
2287
- readonly accept?: string[] | undefined;
2288
2838
  readonly maxSize?: number | undefined;
2289
2839
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2290
2840
  readonly inlineTitle?: string | undefined;
2291
- readonly inlineColumns?: any[] | undefined;
2841
+ readonly inlineColumns?: {
2842
+ name: string;
2843
+ label?: string | undefined;
2844
+ type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
2845
+ width?: number | undefined;
2846
+ required?: boolean | undefined;
2847
+ options?: {
2848
+ label: string;
2849
+ value: string;
2850
+ }[] | undefined;
2851
+ prefix?: string | undefined;
2852
+ step?: number | undefined;
2853
+ reference?: string | undefined;
2854
+ displayField?: string | undefined;
2855
+ idField?: string | undefined;
2856
+ multiple?: boolean | undefined;
2857
+ accept?: string[] | undefined;
2858
+ defaultHidden?: boolean | undefined;
2859
+ computed?: boolean | undefined;
2860
+ expr?: string | undefined;
2861
+ scale?: number | undefined;
2862
+ autofill?: boolean | undefined;
2863
+ readonlyWhen?: string | {
2864
+ dialect: "cel" | "cron" | "template";
2865
+ source?: string | undefined;
2866
+ ast?: unknown;
2867
+ meta?: {
2868
+ rationale?: string | undefined;
2869
+ generatedBy?: string | undefined;
2870
+ } | undefined;
2871
+ } | undefined;
2872
+ requiredWhen?: string | {
2873
+ dialect: "cel" | "cron" | "template";
2874
+ source?: string | undefined;
2875
+ ast?: unknown;
2876
+ meta?: {
2877
+ rationale?: string | undefined;
2878
+ generatedBy?: string | undefined;
2879
+ } | undefined;
2880
+ } | undefined;
2881
+ }[] | undefined;
2292
2882
  readonly inlineAmountField?: string | undefined;
2293
2883
  readonly relatedList?: boolean | "primary" | undefined;
2294
2884
  readonly relatedListTitle?: string | undefined;
2295
- readonly relatedListColumns?: any[] | undefined;
2296
- readonly displayField?: string | undefined;
2885
+ readonly relatedListColumns?: string[] | undefined;
2886
+ readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
2297
2887
  readonly descriptionField?: string | undefined;
2298
2888
  readonly lookupColumns?: (string | {
2299
2889
  field: string;
@@ -2308,7 +2898,6 @@ declare const SysWebhook: Omit<{
2308
2898
  })[] | undefined;
2309
2899
  readonly allowCreate?: boolean | undefined;
2310
2900
  readonly language?: string | undefined;
2311
- readonly step?: number | undefined;
2312
2901
  readonly currencyConfig?: {
2313
2902
  precision?: number | undefined;
2314
2903
  currencyMode?: "fixed" | "dynamic" | undefined;
@@ -2317,23 +2906,18 @@ declare const SysWebhook: Omit<{
2317
2906
  readonly dimensions?: number | undefined;
2318
2907
  readonly trackHistory?: boolean | undefined;
2319
2908
  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
2909
  readonly conditionalRequired?: undefined;
2330
- readonly hidden?: boolean | undefined;
2331
2910
  readonly internal?: boolean | undefined;
2332
2911
  readonly requiredPermissions?: string[] | undefined;
2912
+ readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
2913
+ keepHead: number;
2914
+ keepTail: number;
2915
+ } | undefined;
2333
2916
  readonly ackPlaintextMasking?: boolean | undefined;
2334
2917
  readonly system?: boolean | undefined;
2335
2918
  readonly sortable?: boolean | undefined;
2336
2919
  readonly inlineHelpText?: string | undefined;
2920
+ readonly placeholder?: string | undefined;
2337
2921
  readonly externalId?: boolean | undefined;
2338
2922
  readonly type: "textarea";
2339
2923
  };
@@ -2446,6 +3030,19 @@ declare const SysWebhook: Omit<{
2446
3030
  } | undefined;
2447
3031
  readonly reference?: string | undefined;
2448
3032
  readonly scale?: number | undefined;
3033
+ readonly step?: number | undefined;
3034
+ readonly displayField?: string | undefined;
3035
+ readonly accept?: string[] | undefined;
3036
+ readonly requiredWhen?: string | {
3037
+ dialect: "cel" | "cron" | "template";
3038
+ source?: string | undefined;
3039
+ ast?: unknown;
3040
+ meta?: {
3041
+ rationale?: string | undefined;
3042
+ generatedBy?: string | undefined;
3043
+ } | undefined;
3044
+ } | undefined;
3045
+ readonly hidden?: boolean | undefined;
2449
3046
  readonly searchable?: boolean | undefined;
2450
3047
  readonly unique?: boolean | "global" | "organization" | undefined;
2451
3048
  readonly defaultValue?: unknown;
@@ -2454,16 +3051,55 @@ declare const SysWebhook: Omit<{
2454
3051
  readonly min?: number | undefined;
2455
3052
  readonly max?: number | undefined;
2456
3053
  readonly useGrouping?: boolean | undefined;
2457
- readonly accept?: string[] | undefined;
2458
3054
  readonly maxSize?: number | undefined;
2459
3055
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2460
3056
  readonly inlineTitle?: string | undefined;
2461
- readonly inlineColumns?: any[] | undefined;
3057
+ readonly inlineColumns?: {
3058
+ name: string;
3059
+ label?: string | undefined;
3060
+ type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
3061
+ width?: number | undefined;
3062
+ required?: boolean | undefined;
3063
+ options?: {
3064
+ label: string;
3065
+ value: string;
3066
+ }[] | undefined;
3067
+ prefix?: string | undefined;
3068
+ step?: number | undefined;
3069
+ reference?: string | undefined;
3070
+ displayField?: string | undefined;
3071
+ idField?: string | undefined;
3072
+ multiple?: boolean | undefined;
3073
+ accept?: string[] | undefined;
3074
+ defaultHidden?: boolean | undefined;
3075
+ computed?: boolean | undefined;
3076
+ expr?: string | undefined;
3077
+ scale?: number | undefined;
3078
+ autofill?: boolean | undefined;
3079
+ readonlyWhen?: string | {
3080
+ dialect: "cel" | "cron" | "template";
3081
+ source?: string | undefined;
3082
+ ast?: unknown;
3083
+ meta?: {
3084
+ rationale?: string | undefined;
3085
+ generatedBy?: string | undefined;
3086
+ } | undefined;
3087
+ } | undefined;
3088
+ requiredWhen?: string | {
3089
+ dialect: "cel" | "cron" | "template";
3090
+ source?: string | undefined;
3091
+ ast?: unknown;
3092
+ meta?: {
3093
+ rationale?: string | undefined;
3094
+ generatedBy?: string | undefined;
3095
+ } | undefined;
3096
+ } | undefined;
3097
+ }[] | undefined;
2462
3098
  readonly inlineAmountField?: string | undefined;
2463
3099
  readonly relatedList?: boolean | "primary" | undefined;
2464
3100
  readonly relatedListTitle?: string | undefined;
2465
- readonly relatedListColumns?: any[] | undefined;
2466
- readonly displayField?: string | undefined;
3101
+ readonly relatedListColumns?: string[] | undefined;
3102
+ readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
2467
3103
  readonly descriptionField?: string | undefined;
2468
3104
  readonly lookupColumns?: (string | {
2469
3105
  field: string;
@@ -2478,7 +3114,6 @@ declare const SysWebhook: Omit<{
2478
3114
  })[] | undefined;
2479
3115
  readonly allowCreate?: boolean | undefined;
2480
3116
  readonly language?: string | undefined;
2481
- readonly step?: number | undefined;
2482
3117
  readonly currencyConfig?: {
2483
3118
  precision?: number | undefined;
2484
3119
  currencyMode?: "fixed" | "dynamic" | undefined;
@@ -2487,23 +3122,18 @@ declare const SysWebhook: Omit<{
2487
3122
  readonly dimensions?: number | undefined;
2488
3123
  readonly trackHistory?: boolean | undefined;
2489
3124
  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
3125
  readonly conditionalRequired?: undefined;
2500
- readonly hidden?: boolean | undefined;
2501
3126
  readonly internal?: boolean | undefined;
2502
3127
  readonly requiredPermissions?: string[] | undefined;
3128
+ readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
3129
+ keepHead: number;
3130
+ keepTail: number;
3131
+ } | undefined;
2503
3132
  readonly ackPlaintextMasking?: boolean | undefined;
2504
3133
  readonly system?: boolean | undefined;
2505
3134
  readonly sortable?: boolean | undefined;
2506
3135
  readonly inlineHelpText?: string | undefined;
3136
+ readonly placeholder?: string | undefined;
2507
3137
  readonly externalId?: boolean | undefined;
2508
3138
  readonly type: "secret";
2509
3139
  };
@@ -2609,6 +3239,19 @@ declare const SysWebhook: Omit<{
2609
3239
  } | undefined;
2610
3240
  readonly reference?: string | undefined;
2611
3241
  readonly scale?: number | undefined;
3242
+ readonly step?: number | undefined;
3243
+ readonly displayField?: string | undefined;
3244
+ readonly accept?: string[] | undefined;
3245
+ readonly requiredWhen?: string | {
3246
+ dialect: "cel" | "cron" | "template";
3247
+ source?: string | undefined;
3248
+ ast?: unknown;
3249
+ meta?: {
3250
+ rationale?: string | undefined;
3251
+ generatedBy?: string | undefined;
3252
+ } | undefined;
3253
+ } | undefined;
3254
+ readonly hidden?: boolean | undefined;
2612
3255
  readonly searchable?: boolean | undefined;
2613
3256
  readonly unique?: boolean | "global" | "organization" | undefined;
2614
3257
  readonly defaultValue?: unknown;
@@ -2617,16 +3260,55 @@ declare const SysWebhook: Omit<{
2617
3260
  readonly min?: number | undefined;
2618
3261
  readonly max?: number | undefined;
2619
3262
  readonly useGrouping?: boolean | undefined;
2620
- readonly accept?: string[] | undefined;
2621
3263
  readonly maxSize?: number | undefined;
2622
3264
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2623
3265
  readonly inlineTitle?: string | undefined;
2624
- readonly inlineColumns?: any[] | undefined;
3266
+ readonly inlineColumns?: {
3267
+ name: string;
3268
+ label?: string | undefined;
3269
+ type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
3270
+ width?: number | undefined;
3271
+ required?: boolean | undefined;
3272
+ options?: {
3273
+ label: string;
3274
+ value: string;
3275
+ }[] | undefined;
3276
+ prefix?: string | undefined;
3277
+ step?: number | undefined;
3278
+ reference?: string | undefined;
3279
+ displayField?: string | undefined;
3280
+ idField?: string | undefined;
3281
+ multiple?: boolean | undefined;
3282
+ accept?: string[] | undefined;
3283
+ defaultHidden?: boolean | undefined;
3284
+ computed?: boolean | undefined;
3285
+ expr?: string | undefined;
3286
+ scale?: number | undefined;
3287
+ autofill?: boolean | undefined;
3288
+ readonlyWhen?: string | {
3289
+ dialect: "cel" | "cron" | "template";
3290
+ source?: string | undefined;
3291
+ ast?: unknown;
3292
+ meta?: {
3293
+ rationale?: string | undefined;
3294
+ generatedBy?: string | undefined;
3295
+ } | undefined;
3296
+ } | undefined;
3297
+ requiredWhen?: string | {
3298
+ dialect: "cel" | "cron" | "template";
3299
+ source?: string | undefined;
3300
+ ast?: unknown;
3301
+ meta?: {
3302
+ rationale?: string | undefined;
3303
+ generatedBy?: string | undefined;
3304
+ } | undefined;
3305
+ } | undefined;
3306
+ }[] | undefined;
2625
3307
  readonly inlineAmountField?: string | undefined;
2626
3308
  readonly relatedList?: boolean | "primary" | undefined;
2627
3309
  readonly relatedListTitle?: string | undefined;
2628
- readonly relatedListColumns?: any[] | undefined;
2629
- readonly displayField?: string | undefined;
3310
+ readonly relatedListColumns?: string[] | undefined;
3311
+ readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
2630
3312
  readonly descriptionField?: string | undefined;
2631
3313
  readonly lookupColumns?: (string | {
2632
3314
  field: string;
@@ -2641,7 +3323,6 @@ declare const SysWebhook: Omit<{
2641
3323
  })[] | undefined;
2642
3324
  readonly allowCreate?: boolean | undefined;
2643
3325
  readonly language?: string | undefined;
2644
- readonly step?: number | undefined;
2645
3326
  readonly currencyConfig?: {
2646
3327
  precision?: number | undefined;
2647
3328
  currencyMode?: "fixed" | "dynamic" | undefined;
@@ -2650,23 +3331,18 @@ declare const SysWebhook: Omit<{
2650
3331
  readonly dimensions?: number | undefined;
2651
3332
  readonly trackHistory?: boolean | undefined;
2652
3333
  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
3334
  readonly conditionalRequired?: undefined;
2663
- readonly hidden?: boolean | undefined;
2664
3335
  readonly internal?: boolean | undefined;
2665
3336
  readonly requiredPermissions?: string[] | undefined;
3337
+ readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
3338
+ keepHead: number;
3339
+ keepTail: number;
3340
+ } | undefined;
2666
3341
  readonly ackPlaintextMasking?: boolean | undefined;
2667
3342
  readonly system?: boolean | undefined;
2668
3343
  readonly sortable?: boolean | undefined;
2669
3344
  readonly inlineHelpText?: string | undefined;
3345
+ readonly placeholder?: string | undefined;
2670
3346
  readonly externalId?: boolean | undefined;
2671
3347
  readonly type: "secret";
2672
3348
  };
@@ -2749,6 +3425,19 @@ declare const SysWebhook: Omit<{
2749
3425
  } | undefined;
2750
3426
  readonly reference?: string | undefined;
2751
3427
  readonly scale?: number | undefined;
3428
+ readonly step?: number | undefined;
3429
+ readonly displayField?: string | undefined;
3430
+ readonly accept?: string[] | undefined;
3431
+ readonly requiredWhen?: string | {
3432
+ dialect: "cel" | "cron" | "template";
3433
+ source?: string | undefined;
3434
+ ast?: unknown;
3435
+ meta?: {
3436
+ rationale?: string | undefined;
3437
+ generatedBy?: string | undefined;
3438
+ } | undefined;
3439
+ } | undefined;
3440
+ readonly hidden?: boolean | undefined;
2752
3441
  readonly searchable?: boolean | undefined;
2753
3442
  readonly unique?: boolean | "global" | "organization" | undefined;
2754
3443
  readonly defaultValue?: unknown;
@@ -2757,16 +3446,55 @@ declare const SysWebhook: Omit<{
2757
3446
  readonly min?: number | undefined;
2758
3447
  readonly max?: number | undefined;
2759
3448
  readonly useGrouping?: boolean | undefined;
2760
- readonly accept?: string[] | undefined;
2761
3449
  readonly maxSize?: number | undefined;
2762
3450
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2763
3451
  readonly inlineTitle?: string | undefined;
2764
- readonly inlineColumns?: any[] | undefined;
3452
+ readonly inlineColumns?: {
3453
+ name: string;
3454
+ label?: string | undefined;
3455
+ type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
3456
+ width?: number | undefined;
3457
+ required?: boolean | undefined;
3458
+ options?: {
3459
+ label: string;
3460
+ value: string;
3461
+ }[] | undefined;
3462
+ prefix?: string | undefined;
3463
+ step?: number | undefined;
3464
+ reference?: string | undefined;
3465
+ displayField?: string | undefined;
3466
+ idField?: string | undefined;
3467
+ multiple?: boolean | undefined;
3468
+ accept?: string[] | undefined;
3469
+ defaultHidden?: boolean | undefined;
3470
+ computed?: boolean | undefined;
3471
+ expr?: string | undefined;
3472
+ scale?: number | undefined;
3473
+ autofill?: boolean | undefined;
3474
+ readonlyWhen?: string | {
3475
+ dialect: "cel" | "cron" | "template";
3476
+ source?: string | undefined;
3477
+ ast?: unknown;
3478
+ meta?: {
3479
+ rationale?: string | undefined;
3480
+ generatedBy?: string | undefined;
3481
+ } | undefined;
3482
+ } | undefined;
3483
+ requiredWhen?: string | {
3484
+ dialect: "cel" | "cron" | "template";
3485
+ source?: string | undefined;
3486
+ ast?: unknown;
3487
+ meta?: {
3488
+ rationale?: string | undefined;
3489
+ generatedBy?: string | undefined;
3490
+ } | undefined;
3491
+ } | undefined;
3492
+ }[] | undefined;
2765
3493
  readonly inlineAmountField?: string | undefined;
2766
3494
  readonly relatedList?: boolean | "primary" | undefined;
2767
3495
  readonly relatedListTitle?: string | undefined;
2768
- readonly relatedListColumns?: any[] | undefined;
2769
- readonly displayField?: string | undefined;
3496
+ readonly relatedListColumns?: string[] | undefined;
3497
+ readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
2770
3498
  readonly descriptionField?: string | undefined;
2771
3499
  readonly lookupColumns?: (string | {
2772
3500
  field: string;
@@ -2781,7 +3509,6 @@ declare const SysWebhook: Omit<{
2781
3509
  })[] | undefined;
2782
3510
  readonly allowCreate?: boolean | undefined;
2783
3511
  readonly language?: string | undefined;
2784
- readonly step?: number | undefined;
2785
3512
  readonly currencyConfig?: {
2786
3513
  precision?: number | undefined;
2787
3514
  currencyMode?: "fixed" | "dynamic" | undefined;
@@ -2790,23 +3517,18 @@ declare const SysWebhook: Omit<{
2790
3517
  readonly dimensions?: number | undefined;
2791
3518
  readonly trackHistory?: boolean | undefined;
2792
3519
  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
3520
  readonly conditionalRequired?: undefined;
2803
- readonly hidden?: boolean | undefined;
2804
3521
  readonly internal?: boolean | undefined;
2805
3522
  readonly requiredPermissions?: string[] | undefined;
3523
+ readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
3524
+ keepHead: number;
3525
+ keepTail: number;
3526
+ } | undefined;
2806
3527
  readonly ackPlaintextMasking?: boolean | undefined;
2807
3528
  readonly system?: boolean | undefined;
2808
3529
  readonly sortable?: boolean | undefined;
2809
3530
  readonly inlineHelpText?: string | undefined;
3531
+ readonly placeholder?: string | undefined;
2810
3532
  readonly externalId?: boolean | undefined;
2811
3533
  readonly type: "select";
2812
3534
  };
@@ -2889,6 +3611,19 @@ declare const SysWebhook: Omit<{
2889
3611
  } | undefined;
2890
3612
  readonly reference?: string | undefined;
2891
3613
  readonly scale?: number | undefined;
3614
+ readonly step?: number | undefined;
3615
+ readonly displayField?: string | undefined;
3616
+ readonly accept?: string[] | undefined;
3617
+ readonly requiredWhen?: string | {
3618
+ dialect: "cel" | "cron" | "template";
3619
+ source?: string | undefined;
3620
+ ast?: unknown;
3621
+ meta?: {
3622
+ rationale?: string | undefined;
3623
+ generatedBy?: string | undefined;
3624
+ } | undefined;
3625
+ } | undefined;
3626
+ readonly hidden?: boolean | undefined;
2892
3627
  readonly searchable?: boolean | undefined;
2893
3628
  readonly unique?: boolean | "global" | "organization" | undefined;
2894
3629
  readonly defaultValue?: unknown;
@@ -2897,16 +3632,55 @@ declare const SysWebhook: Omit<{
2897
3632
  readonly min?: number | undefined;
2898
3633
  readonly max?: number | undefined;
2899
3634
  readonly useGrouping?: boolean | undefined;
2900
- readonly accept?: string[] | undefined;
2901
3635
  readonly maxSize?: number | undefined;
2902
3636
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2903
3637
  readonly inlineTitle?: string | undefined;
2904
- readonly inlineColumns?: any[] | undefined;
3638
+ readonly inlineColumns?: {
3639
+ name: string;
3640
+ label?: string | undefined;
3641
+ type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
3642
+ width?: number | undefined;
3643
+ required?: boolean | undefined;
3644
+ options?: {
3645
+ label: string;
3646
+ value: string;
3647
+ }[] | undefined;
3648
+ prefix?: string | undefined;
3649
+ step?: number | undefined;
3650
+ reference?: string | undefined;
3651
+ displayField?: string | undefined;
3652
+ idField?: string | undefined;
3653
+ multiple?: boolean | undefined;
3654
+ accept?: string[] | undefined;
3655
+ defaultHidden?: boolean | undefined;
3656
+ computed?: boolean | undefined;
3657
+ expr?: string | undefined;
3658
+ scale?: number | undefined;
3659
+ autofill?: boolean | undefined;
3660
+ readonlyWhen?: string | {
3661
+ dialect: "cel" | "cron" | "template";
3662
+ source?: string | undefined;
3663
+ ast?: unknown;
3664
+ meta?: {
3665
+ rationale?: string | undefined;
3666
+ generatedBy?: string | undefined;
3667
+ } | undefined;
3668
+ } | undefined;
3669
+ requiredWhen?: string | {
3670
+ dialect: "cel" | "cron" | "template";
3671
+ source?: string | undefined;
3672
+ ast?: unknown;
3673
+ meta?: {
3674
+ rationale?: string | undefined;
3675
+ generatedBy?: string | undefined;
3676
+ } | undefined;
3677
+ } | undefined;
3678
+ }[] | undefined;
2905
3679
  readonly inlineAmountField?: string | undefined;
2906
3680
  readonly relatedList?: boolean | "primary" | undefined;
2907
3681
  readonly relatedListTitle?: string | undefined;
2908
- readonly relatedListColumns?: any[] | undefined;
2909
- readonly displayField?: string | undefined;
3682
+ readonly relatedListColumns?: string[] | undefined;
3683
+ readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
2910
3684
  readonly descriptionField?: string | undefined;
2911
3685
  readonly lookupColumns?: (string | {
2912
3686
  field: string;
@@ -2921,7 +3695,6 @@ declare const SysWebhook: Omit<{
2921
3695
  })[] | undefined;
2922
3696
  readonly allowCreate?: boolean | undefined;
2923
3697
  readonly language?: string | undefined;
2924
- readonly step?: number | undefined;
2925
3698
  readonly currencyConfig?: {
2926
3699
  precision?: number | undefined;
2927
3700
  currencyMode?: "fixed" | "dynamic" | undefined;
@@ -2930,23 +3703,18 @@ declare const SysWebhook: Omit<{
2930
3703
  readonly dimensions?: number | undefined;
2931
3704
  readonly trackHistory?: boolean | undefined;
2932
3705
  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
3706
  readonly conditionalRequired?: undefined;
2943
- readonly hidden?: boolean | undefined;
2944
3707
  readonly internal?: boolean | undefined;
2945
3708
  readonly requiredPermissions?: string[] | undefined;
3709
+ readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
3710
+ keepHead: number;
3711
+ keepTail: number;
3712
+ } | undefined;
2946
3713
  readonly ackPlaintextMasking?: boolean | undefined;
2947
3714
  readonly system?: boolean | undefined;
2948
3715
  readonly sortable?: boolean | undefined;
2949
3716
  readonly inlineHelpText?: string | undefined;
3717
+ readonly placeholder?: string | undefined;
2950
3718
  readonly externalId?: boolean | undefined;
2951
3719
  readonly type: "boolean";
2952
3720
  };
@@ -3029,6 +3797,19 @@ declare const SysWebhook: Omit<{
3029
3797
  } | undefined;
3030
3798
  readonly reference?: string | undefined;
3031
3799
  readonly scale?: number | undefined;
3800
+ readonly step?: number | undefined;
3801
+ readonly displayField?: string | undefined;
3802
+ readonly accept?: string[] | undefined;
3803
+ readonly requiredWhen?: string | {
3804
+ dialect: "cel" | "cron" | "template";
3805
+ source?: string | undefined;
3806
+ ast?: unknown;
3807
+ meta?: {
3808
+ rationale?: string | undefined;
3809
+ generatedBy?: string | undefined;
3810
+ } | undefined;
3811
+ } | undefined;
3812
+ readonly hidden?: boolean | undefined;
3032
3813
  readonly searchable?: boolean | undefined;
3033
3814
  readonly unique?: boolean | "global" | "organization" | undefined;
3034
3815
  readonly defaultValue?: unknown;
@@ -3037,16 +3818,55 @@ declare const SysWebhook: Omit<{
3037
3818
  readonly min?: number | undefined;
3038
3819
  readonly max?: number | undefined;
3039
3820
  readonly useGrouping?: boolean | undefined;
3040
- readonly accept?: string[] | undefined;
3041
3821
  readonly maxSize?: number | undefined;
3042
3822
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3043
3823
  readonly inlineTitle?: string | undefined;
3044
- readonly inlineColumns?: any[] | undefined;
3824
+ readonly inlineColumns?: {
3825
+ name: string;
3826
+ label?: string | undefined;
3827
+ type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
3828
+ width?: number | undefined;
3829
+ required?: boolean | undefined;
3830
+ options?: {
3831
+ label: string;
3832
+ value: string;
3833
+ }[] | undefined;
3834
+ prefix?: string | undefined;
3835
+ step?: number | undefined;
3836
+ reference?: string | undefined;
3837
+ displayField?: string | undefined;
3838
+ idField?: string | undefined;
3839
+ multiple?: boolean | undefined;
3840
+ accept?: string[] | undefined;
3841
+ defaultHidden?: boolean | undefined;
3842
+ computed?: boolean | undefined;
3843
+ expr?: string | undefined;
3844
+ scale?: number | undefined;
3845
+ autofill?: boolean | undefined;
3846
+ readonlyWhen?: string | {
3847
+ dialect: "cel" | "cron" | "template";
3848
+ source?: string | undefined;
3849
+ ast?: unknown;
3850
+ meta?: {
3851
+ rationale?: string | undefined;
3852
+ generatedBy?: string | undefined;
3853
+ } | undefined;
3854
+ } | undefined;
3855
+ requiredWhen?: string | {
3856
+ dialect: "cel" | "cron" | "template";
3857
+ source?: string | undefined;
3858
+ ast?: unknown;
3859
+ meta?: {
3860
+ rationale?: string | undefined;
3861
+ generatedBy?: string | undefined;
3862
+ } | undefined;
3863
+ } | undefined;
3864
+ }[] | undefined;
3045
3865
  readonly inlineAmountField?: string | undefined;
3046
3866
  readonly relatedList?: boolean | "primary" | undefined;
3047
3867
  readonly relatedListTitle?: string | undefined;
3048
- readonly relatedListColumns?: any[] | undefined;
3049
- readonly displayField?: string | undefined;
3868
+ readonly relatedListColumns?: string[] | undefined;
3869
+ readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
3050
3870
  readonly descriptionField?: string | undefined;
3051
3871
  readonly lookupColumns?: (string | {
3052
3872
  field: string;
@@ -3061,7 +3881,6 @@ declare const SysWebhook: Omit<{
3061
3881
  })[] | undefined;
3062
3882
  readonly allowCreate?: boolean | undefined;
3063
3883
  readonly language?: string | undefined;
3064
- readonly step?: number | undefined;
3065
3884
  readonly currencyConfig?: {
3066
3885
  precision?: number | undefined;
3067
3886
  currencyMode?: "fixed" | "dynamic" | undefined;
@@ -3070,23 +3889,18 @@ declare const SysWebhook: Omit<{
3070
3889
  readonly dimensions?: number | undefined;
3071
3890
  readonly trackHistory?: boolean | undefined;
3072
3891
  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
3892
  readonly conditionalRequired?: undefined;
3083
- readonly hidden?: boolean | undefined;
3084
3893
  readonly internal?: boolean | undefined;
3085
3894
  readonly requiredPermissions?: string[] | undefined;
3895
+ readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
3896
+ keepHead: number;
3897
+ keepTail: number;
3898
+ } | undefined;
3086
3899
  readonly ackPlaintextMasking?: boolean | undefined;
3087
3900
  readonly system?: boolean | undefined;
3088
3901
  readonly sortable?: boolean | undefined;
3089
3902
  readonly inlineHelpText?: string | undefined;
3903
+ readonly placeholder?: string | undefined;
3090
3904
  readonly externalId?: boolean | undefined;
3091
3905
  readonly type: "datetime";
3092
3906
  };
@@ -3169,6 +3983,19 @@ declare const SysWebhook: Omit<{
3169
3983
  } | undefined;
3170
3984
  readonly reference?: string | undefined;
3171
3985
  readonly scale?: number | undefined;
3986
+ readonly step?: number | undefined;
3987
+ readonly displayField?: string | undefined;
3988
+ readonly accept?: string[] | undefined;
3989
+ readonly requiredWhen?: string | {
3990
+ dialect: "cel" | "cron" | "template";
3991
+ source?: string | undefined;
3992
+ ast?: unknown;
3993
+ meta?: {
3994
+ rationale?: string | undefined;
3995
+ generatedBy?: string | undefined;
3996
+ } | undefined;
3997
+ } | undefined;
3998
+ readonly hidden?: boolean | undefined;
3172
3999
  readonly searchable?: boolean | undefined;
3173
4000
  readonly unique?: boolean | "global" | "organization" | undefined;
3174
4001
  readonly defaultValue?: unknown;
@@ -3177,16 +4004,55 @@ declare const SysWebhook: Omit<{
3177
4004
  readonly min?: number | undefined;
3178
4005
  readonly max?: number | undefined;
3179
4006
  readonly useGrouping?: boolean | undefined;
3180
- readonly accept?: string[] | undefined;
3181
4007
  readonly maxSize?: number | undefined;
3182
4008
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3183
4009
  readonly inlineTitle?: string | undefined;
3184
- readonly inlineColumns?: any[] | undefined;
4010
+ readonly inlineColumns?: {
4011
+ name: string;
4012
+ label?: string | undefined;
4013
+ type?: "number" | "date" | "file" | "datetime" | "time" | "text" | "currency" | "select" | "lookup" | undefined;
4014
+ width?: number | undefined;
4015
+ required?: boolean | undefined;
4016
+ options?: {
4017
+ label: string;
4018
+ value: string;
4019
+ }[] | undefined;
4020
+ prefix?: string | undefined;
4021
+ step?: number | undefined;
4022
+ reference?: string | undefined;
4023
+ displayField?: string | undefined;
4024
+ idField?: string | undefined;
4025
+ multiple?: boolean | undefined;
4026
+ accept?: string[] | undefined;
4027
+ defaultHidden?: boolean | undefined;
4028
+ computed?: boolean | undefined;
4029
+ expr?: string | undefined;
4030
+ scale?: number | undefined;
4031
+ autofill?: boolean | undefined;
4032
+ readonlyWhen?: string | {
4033
+ dialect: "cel" | "cron" | "template";
4034
+ source?: string | undefined;
4035
+ ast?: unknown;
4036
+ meta?: {
4037
+ rationale?: string | undefined;
4038
+ generatedBy?: string | undefined;
4039
+ } | undefined;
4040
+ } | undefined;
4041
+ requiredWhen?: string | {
4042
+ dialect: "cel" | "cron" | "template";
4043
+ source?: string | undefined;
4044
+ ast?: unknown;
4045
+ meta?: {
4046
+ rationale?: string | undefined;
4047
+ generatedBy?: string | undefined;
4048
+ } | undefined;
4049
+ } | undefined;
4050
+ }[] | undefined;
3185
4051
  readonly inlineAmountField?: string | undefined;
3186
4052
  readonly relatedList?: boolean | "primary" | undefined;
3187
4053
  readonly relatedListTitle?: string | undefined;
3188
- readonly relatedListColumns?: any[] | undefined;
3189
- readonly displayField?: string | undefined;
4054
+ readonly relatedListColumns?: string[] | undefined;
4055
+ readonly relatedListFilter?: _objectstack_spec_data.FilterCondition | undefined;
3190
4056
  readonly descriptionField?: string | undefined;
3191
4057
  readonly lookupColumns?: (string | {
3192
4058
  field: string;
@@ -3201,7 +4067,6 @@ declare const SysWebhook: Omit<{
3201
4067
  })[] | undefined;
3202
4068
  readonly allowCreate?: boolean | undefined;
3203
4069
  readonly language?: string | undefined;
3204
- readonly step?: number | undefined;
3205
4070
  readonly currencyConfig?: {
3206
4071
  precision?: number | undefined;
3207
4072
  currencyMode?: "fixed" | "dynamic" | undefined;
@@ -3210,23 +4075,18 @@ declare const SysWebhook: Omit<{
3210
4075
  readonly dimensions?: number | undefined;
3211
4076
  readonly trackHistory?: boolean | undefined;
3212
4077
  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
4078
  readonly conditionalRequired?: undefined;
3223
- readonly hidden?: boolean | undefined;
3224
4079
  readonly internal?: boolean | undefined;
3225
4080
  readonly requiredPermissions?: string[] | undefined;
4081
+ readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
4082
+ keepHead: number;
4083
+ keepTail: number;
4084
+ } | undefined;
3226
4085
  readonly ackPlaintextMasking?: boolean | undefined;
3227
4086
  readonly system?: boolean | undefined;
3228
4087
  readonly sortable?: boolean | undefined;
3229
4088
  readonly inlineHelpText?: string | undefined;
4089
+ readonly placeholder?: string | undefined;
3230
4090
  readonly externalId?: boolean | undefined;
3231
4091
  readonly type: "datetime";
3232
4092
  };
@@ -3239,6 +4099,65 @@ declare const SysWebhook: Omit<{
3239
4099
  }, {
3240
4100
  readonly fields: ["active", "object_name"];
3241
4101
  }];
4102
+ /**
4103
+ * [#9756] The data-API exposure of this object, declared EXPLICITLY.
4104
+ *
4105
+ * ## Why the block exists
4106
+ *
4107
+ * Three cards observed that `sys_webhook` declared no `enable` block at all
4108
+ * and each named narrowing its read surface as the next step — #7799 (the
4109
+ * signing secret), #7986 (the custom headers) and #8025 option 2 (the URL) —
4110
+ * and each assumed a later one would write the line. None did. The condition
4111
+ * held not because anyone judged the full default API correct here, but
4112
+ * because the omission was never anybody's deliverable. That is the standard
4113
+ * #8025 set and #9756 quotes back: *an omission is not a decision unless
4114
+ * someone wrote it down.* This block is that decision, written down.
4115
+ *
4116
+ * ## The census the set is derived from (#9756, measured before writing)
4117
+ *
4118
+ * | consumer | reaches this object through | needs |
4119
+ * |:---|:---|:---|
4120
+ * | Setup/Studio console — `nav_webhooks` (`webhook-outbox-plugin.ts`), the four list views above, `userActions` create/edit/delete | REST `/api/v1/data/sys_webhook` — the gated data API | `get` `list` `create` `update` `delete` |
4121
+ * | Operator predicate write — "deactivate every webhook on an object" (#4639, for which `AutoEnqueuer.handleSelfHealEvent` carries a `data.records.*` branch built expressly for this gesture) | REST `updateMany` / `deleteMany`, both gated on the `bulk` primitive | `bulk` |
4122
+ * | `AutoEnqueuer` cache refresh, `bootstrapDeclaredWebhooks`, `stampWebhookProvenance`, `redeliver-guard`, `migrateLegacyWebhookSecrets`, the `headers_secret` write gate | `engine.find/findOne/insert/update` and lifecycle hooks — ObjectQL directly, which never consults `enable.apiMethods` | ungated: unaffected by anything declared here |
4123
+ *
4124
+ * ⇒ every primitive is required by a real, measured consumer, so the set is
4125
+ * all six. No consumer outside the admin/operator surface was found.
4126
+ *
4127
+ * ## ⛔ This narrows NOTHING — do not read it as if it did
4128
+ *
4129
+ * `resolveEffectiveApiMethods` (`@objectstack/spec/data`) seeds the
4130
+ * `unrestricted` branch with the very same `API_PRIMITIVES` set, so the six
4131
+ * primitives resolve to the operation closure the *absent* block already
4132
+ * produced. The serialized effective set (`/me/permissions`, the 405
4133
+ * `allowed` array) is byte-identical, and no route or `callData` action
4134
+ * reaches an operation whose answer differs. Only `mode` changes,
4135
+ * `unrestricted` → `restricted`.
4136
+ *
4137
+ * So the presence of this block is NOT evidence that the reachable cleartext
4138
+ * on this object was reduced. It was not, and `apiMethods` is the wrong
4139
+ * instrument for it: `url` (#8025 — won't-fix on masking, because the URL is
4140
+ * the routing key an operator must be able to see, search, sort and edit) and
4141
+ * a legacy row's un-migrated `definition_json.headers` (#7986 —
4142
+ * `readLegacyHeaders` in `auto-enqueuer.ts` still reads them and warns) are
4143
+ * both served by `get`/`list`, which is exactly what the console requires.
4144
+ * Any set that removes them removes the admin surface with them. A survey
4145
+ * that greps this file for `enable:` and stops is measuring the wrong thing;
4146
+ * #9756's report carries the census that says so.
4147
+ *
4148
+ * Contrast the sibling `sys_http_delivery` (`['get','list']`,
4149
+ * `service-messaging`), whose narrowing is real: that table is engine-owned —
4150
+ * written only by `SqlHttpOutbox` through context-less raw-engine writes,
4151
+ * never authored — so closing its write surface costs nothing. `sys_webhook`
4152
+ * is a first-class admin authoring surface. That is the whole difference, and
4153
+ * it is why the sibling's shape could not simply be copied here.
4154
+ *
4155
+ * Pinned — the census, the no-narrowing equality, and the registration-time
4156
+ * survival of every write verb — in `sys-webhook-api-exposure.test.ts`.
4157
+ */
4158
+ readonly enable: {
4159
+ readonly apiMethods: ["get", "list", "create", "update", "delete", "bulk"];
4160
+ };
3242
4161
  }, "fields">;
3243
4162
 
3244
4163
  export { SysWebhook };