@objectstack/plugin-webhooks 17.2.0 → 17.3.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.cts CHANGED
@@ -37,8 +37,8 @@ import * as _objectstack_spec_data from '@objectstack/spec/data';
37
37
  declare const SysWebhook: Omit<{
38
38
  name: string;
39
39
  fields: Record<string, {
40
- type: "number" | "boolean" | "secret" | "email" | "currency" | "code" | "date" | "record" | "file" | "user" | "datetime" | "signature" | "url" | "time" | "formula" | "text" | "textarea" | "phone" | "password" | "markdown" | "html" | "richtext" | "percent" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "progress" | "tags" | "vector";
41
- _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
40
+ type: "number" | "boolean" | "secret" | "email" | "currency" | "code" | "date" | "record" | "file" | "user" | "url" | "datetime" | "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" | "signature" | "qrcode" | "progress" | "tags" | "vector";
41
+ _lock?: "none" | "no-overlay" | "no-delete" | "full" | undefined;
42
42
  _lockReason?: string | undefined;
43
43
  _lockSource?: "artifact" | "package" | "env-forced" | undefined;
44
44
  _provenance?: "package" | "env-forced" | "org" | undefined;
@@ -59,6 +59,8 @@ declare const SysWebhook: Omit<{
59
59
  defaultValue?: unknown;
60
60
  maxLength?: number | undefined;
61
61
  minLength?: number | undefined;
62
+ valueDomain?: "iana_time_zone" | "iso_4217_currency" | "iso_3166_alpha2" | undefined;
63
+ rows?: number | undefined;
62
64
  precision?: number | undefined;
63
65
  scale?: number | undefined;
64
66
  min?: number | undefined;
@@ -69,6 +71,7 @@ declare const SysWebhook: Omit<{
69
71
  options?: {
70
72
  label: string;
71
73
  value: string;
74
+ description?: string | undefined;
72
75
  color?: string | undefined;
73
76
  default?: boolean | undefined;
74
77
  visibleWhen?: string | {
@@ -82,6 +85,7 @@ declare const SysWebhook: Omit<{
82
85
  } | undefined;
83
86
  }[] | undefined;
84
87
  reference?: string | undefined;
88
+ referenceVia?: string | undefined;
85
89
  deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
86
90
  inlineEdit?: boolean | "grid" | "form" | undefined;
87
91
  inlineTitle?: string | undefined;
@@ -142,7 +146,7 @@ declare const SysWebhook: Omit<{
142
146
  lookupPageSize?: number | undefined;
143
147
  lookupFilters?: {
144
148
  field: string;
145
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
149
+ operator: "in" | "gt" | "gte" | "lt" | "lte" | "eq" | "ne" | "contains" | "notIn";
146
150
  value: any;
147
151
  }[] | undefined;
148
152
  dependsOn?: (string | {
@@ -222,7 +226,7 @@ declare const SysWebhook: Omit<{
222
226
  autonumberFormat?: string | undefined;
223
227
  externalId?: boolean | undefined;
224
228
  }>;
225
- _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
229
+ _lock?: "none" | "no-overlay" | "no-delete" | "full" | undefined;
226
230
  _lockReason?: string | undefined;
227
231
  _lockSource?: "artifact" | "package" | "env-forced" | undefined;
228
232
  _provenance?: "package" | "env-forced" | "org" | undefined;
@@ -348,6 +352,15 @@ declare const SysWebhook: Omit<{
348
352
  label: string;
349
353
  icon?: string | undefined;
350
354
  description?: string | undefined;
355
+ visibleWhen?: string | {
356
+ dialect: "cel" | "cron" | "template";
357
+ source?: string | undefined;
358
+ ast?: unknown;
359
+ meta?: {
360
+ rationale?: string | undefined;
361
+ generatedBy?: string | undefined;
362
+ } | undefined;
363
+ } | undefined;
351
364
  collapse?: "none" | "collapsed" | "expanded" | undefined;
352
365
  defaultExpanded?: boolean | undefined;
353
366
  collapsible?: boolean | undefined;
@@ -419,6 +432,7 @@ declare const SysWebhook: Omit<{
419
432
  } | undefined;
420
433
  highlightFields?: string[] | undefined;
421
434
  stageField?: string | false | undefined;
435
+ editMode?: "page" | "modal" | undefined;
422
436
  listViews?: Record<string, {
423
437
  columns: string[] | {
424
438
  field: string;
@@ -454,7 +468,7 @@ declare const SysWebhook: Omit<{
454
468
  zoom?: number | undefined;
455
469
  center?: [number, number] | undefined;
456
470
  } | undefined;
457
- type?: "map" | "tree" | "grid" | "gallery" | "kanban" | "calendar" | "timeline" | "gantt" | "chart" | undefined;
471
+ type?: "map" | "tree" | "grid" | "page" | "gallery" | "kanban" | "calendar" | "timeline" | "gantt" | "chart" | undefined;
458
472
  sort?: string | {
459
473
  field: string;
460
474
  order: "desc" | "asc";
@@ -468,10 +482,6 @@ declare const SysWebhook: Omit<{
468
482
  key?: never;
469
483
  defaultValue?: never;
470
484
  }) | undefined;
471
- label?: string | (Record<string, string> & {
472
- key?: never;
473
- defaultValue?: never;
474
- }) | undefined;
475
485
  name?: string | undefined;
476
486
  tree?: {
477
487
  [x: string]: unknown;
@@ -480,6 +490,10 @@ declare const SysWebhook: Omit<{
480
490
  fields?: string[] | undefined;
481
491
  defaultExpandedDepth?: number | undefined;
482
492
  } | undefined;
493
+ label?: string | (Record<string, string> & {
494
+ key?: never;
495
+ defaultValue?: never;
496
+ }) | undefined;
483
497
  inlineEdit?: boolean | undefined;
484
498
  data?: {
485
499
  provider: "object";
@@ -508,8 +522,9 @@ declare const SysWebhook: Omit<{
508
522
  schemaId: string;
509
523
  schema?: Record<string, unknown> | undefined;
510
524
  } | undefined;
525
+ pageName?: string | undefined;
511
526
  navigation?: {
512
- mode?: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window" | undefined;
527
+ mode?: "none" | "page" | "modal" | "split" | "drawer" | "popover" | "new_window" | undefined;
513
528
  view?: string | undefined;
514
529
  preventNavigation?: boolean | undefined;
515
530
  openNewTab?: boolean | undefined;
@@ -557,14 +572,65 @@ declare const SysWebhook: Omit<{
557
572
  }) | undefined;
558
573
  icon?: string | undefined;
559
574
  } | undefined;
575
+ bulkActions?: string[] | undefined;
576
+ bulkActionDefs?: {
577
+ name: string;
578
+ operation: "delete" | "update" | "custom";
579
+ label?: string | undefined;
580
+ icon?: string | undefined;
581
+ variant?: "primary" | "secondary" | "outline" | "danger" | "ghost" | undefined;
582
+ execution?: "aggregate" | "perRecord" | undefined;
583
+ patch?: Record<string, unknown> | undefined;
584
+ params?: {
585
+ [x: string]: unknown;
586
+ name: string;
587
+ type: "number" | "boolean" | "secret" | "email" | "currency" | "code" | "date" | "record" | "file" | "user" | "url" | "datetime" | "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" | "signature" | "qrcode" | "progress" | "tags" | "vector";
588
+ label?: string | undefined;
589
+ help?: string | undefined;
590
+ required?: boolean | undefined;
591
+ default?: unknown;
592
+ options?: {
593
+ [x: string]: unknown;
594
+ label: string;
595
+ value: string | number | boolean;
596
+ }[] | undefined;
597
+ object?: string | undefined;
598
+ labelField?: string | undefined;
599
+ multiple?: boolean | undefined;
600
+ placeholder?: string | undefined;
601
+ }[] | undefined;
602
+ confirmText?: string | undefined;
603
+ confirmLabel?: string | undefined;
604
+ visible?: string | {
605
+ dialect: "cel" | "cron" | "template";
606
+ source?: string | undefined;
607
+ ast?: unknown;
608
+ meta?: {
609
+ rationale?: string | undefined;
610
+ generatedBy?: string | undefined;
611
+ } | undefined;
612
+ } | undefined;
613
+ requiredPermissions?: string[] | undefined;
614
+ maxRecords?: number | undefined;
615
+ batchSize?: number | undefined;
616
+ }[] | undefined;
617
+ rowActions?: string[] | undefined;
618
+ responsive?: undefined;
619
+ performance?: undefined;
620
+ striped?: undefined;
621
+ bordered?: undefined;
622
+ virtualScroll?: undefined;
560
623
  userActions?: {
561
624
  sort?: boolean | undefined;
562
625
  search?: boolean | undefined;
563
626
  filter?: boolean | undefined;
564
627
  refresh?: boolean | undefined;
565
628
  rowHeight?: boolean | undefined;
629
+ group?: boolean | undefined;
566
630
  addRecordForm?: boolean | undefined;
567
631
  editInline?: boolean | undefined;
632
+ hideFields?: boolean | undefined;
633
+ rowColor?: boolean | undefined;
568
634
  buttons?: string[] | undefined;
569
635
  } | undefined;
570
636
  gallery?: {
@@ -574,11 +640,6 @@ declare const SysWebhook: Omit<{
574
640
  titleField?: string | undefined;
575
641
  visibleFields?: string[] | undefined;
576
642
  } | undefined;
577
- responsive?: undefined;
578
- performance?: undefined;
579
- striped?: undefined;
580
- bordered?: undefined;
581
- virtualScroll?: undefined;
582
643
  exportOptions?: ("json" | "xlsx" | "csv")[] | {
583
644
  formats?: ("json" | "xlsx" | "csv")[] | undefined;
584
645
  maxRecords?: number | undefined;
@@ -598,8 +659,8 @@ declare const SysWebhook: Omit<{
598
659
  } | undefined;
599
660
  calendar?: {
600
661
  startDateField: string;
601
- titleField: string;
602
662
  endDateField?: string | undefined;
663
+ titleField?: string | undefined;
603
664
  colorField?: string | undefined;
604
665
  } | undefined;
605
666
  timeline?: {
@@ -649,6 +710,10 @@ declare const SysWebhook: Omit<{
649
710
  dimensions?: string[] | undefined;
650
711
  } | undefined;
651
712
  rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
713
+ rowColor?: {
714
+ field: string;
715
+ colors?: Record<string, string> | undefined;
716
+ } | undefined;
652
717
  searchableFields?: string[] | undefined;
653
718
  filterableFields?: string[] | undefined;
654
719
  compactToolbar?: boolean | undefined;
@@ -666,55 +731,8 @@ declare const SysWebhook: Omit<{
666
731
  collapsed?: boolean | undefined;
667
732
  }[];
668
733
  } | undefined;
669
- rowColor?: {
670
- field: string;
671
- colors?: Record<string, string> | undefined;
672
- } | undefined;
673
734
  hiddenFields?: string[] | undefined;
674
735
  fieldOrder?: string[] | undefined;
675
- rowActions?: string[] | undefined;
676
- bulkActions?: string[] | undefined;
677
- bulkActionDefs?: {
678
- name: string;
679
- operation: "delete" | "update" | "custom";
680
- label?: string | undefined;
681
- icon?: string | undefined;
682
- variant?: "primary" | "secondary" | "outline" | "danger" | "ghost" | undefined;
683
- execution?: "aggregate" | "perRecord" | undefined;
684
- patch?: Record<string, unknown> | undefined;
685
- params?: {
686
- [x: string]: unknown;
687
- name: string;
688
- 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";
689
- label?: string | undefined;
690
- help?: string | undefined;
691
- required?: boolean | undefined;
692
- default?: unknown;
693
- options?: {
694
- [x: string]: unknown;
695
- label: string;
696
- value: string | number | boolean;
697
- }[] | undefined;
698
- object?: string | undefined;
699
- labelField?: string | undefined;
700
- multiple?: boolean | undefined;
701
- placeholder?: string | undefined;
702
- }[] | undefined;
703
- confirmText?: string | undefined;
704
- confirmLabel?: string | undefined;
705
- visible?: string | {
706
- dialect: "cel" | "cron" | "template";
707
- source?: string | undefined;
708
- ast?: unknown;
709
- meta?: {
710
- rationale?: string | undefined;
711
- generatedBy?: string | undefined;
712
- } | undefined;
713
- } | undefined;
714
- requiredPermissions?: string[] | undefined;
715
- maxRecords?: number | undefined;
716
- batchSize?: number | undefined;
717
- }[] | undefined;
718
736
  conditionalFormatting?: {
719
737
  condition: string | {
720
738
  dialect: "cel" | "cron" | "template";
@@ -762,7 +780,7 @@ declare const SysWebhook: Omit<{
762
780
  trackHistory?: boolean | undefined;
763
781
  searchable?: boolean | undefined;
764
782
  apiEnabled?: boolean | undefined;
765
- apiMethods?: ("delete" | "update" | "create" | "get" | "list" | "bulk")[] | undefined;
783
+ apiMethods?: ("delete" | "update" | "create" | "get" | "bulk" | "list")[] | undefined;
766
784
  files?: boolean | undefined;
767
785
  feeds?: boolean | undefined;
768
786
  activities?: boolean | undefined;
@@ -784,7 +802,7 @@ declare const SysWebhook: Omit<{
784
802
  key?: never;
785
803
  defaultValue?: never;
786
804
  });
787
- _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
805
+ _lock?: "none" | "no-overlay" | "no-delete" | "full" | undefined;
788
806
  _lockReason?: string | undefined;
789
807
  _lockSource?: "artifact" | "package" | "env-forced" | undefined;
790
808
  _provenance?: "package" | "env-forced" | "org" | undefined;
@@ -799,7 +817,7 @@ declare const SysWebhook: Omit<{
799
817
  icon?: string | undefined;
800
818
  locations?: ("record_header" | "list_toolbar" | "list_item" | "record_more" | "record_related" | "record_section")[] | undefined;
801
819
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
802
- type?: "url" | "form" | "api" | "modal" | "flow" | "script" | undefined;
820
+ type?: "url" | "form" | "modal" | "api" | "flow" | "script" | undefined;
803
821
  target?: string | undefined;
804
822
  openIn?: "self" | "new-tab" | undefined;
805
823
  body?: {
@@ -812,6 +830,8 @@ declare const SysWebhook: Omit<{
812
830
  timeoutMs?: number | undefined;
813
831
  memoryMb?: number | undefined;
814
832
  } | undefined;
833
+ operation?: "update" | undefined;
834
+ patch?: Record<string, unknown> | undefined;
815
835
  execute?: undefined;
816
836
  params?: {
817
837
  name?: string | undefined;
@@ -821,7 +841,7 @@ declare const SysWebhook: Omit<{
821
841
  key?: never;
822
842
  defaultValue?: never;
823
843
  }) | undefined;
824
- type?: "number" | "boolean" | "secret" | "email" | "currency" | "code" | "date" | "record" | "file" | "user" | "datetime" | "signature" | "url" | "time" | "formula" | "text" | "textarea" | "phone" | "password" | "markdown" | "html" | "richtext" | "percent" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "progress" | "tags" | "vector" | undefined;
844
+ type?: "number" | "boolean" | "secret" | "email" | "currency" | "code" | "date" | "record" | "file" | "user" | "url" | "datetime" | "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" | "signature" | "qrcode" | "progress" | "tags" | "vector" | undefined;
825
845
  required?: boolean | undefined;
826
846
  options?: {
827
847
  label: string | (Record<string, string> & {
@@ -847,6 +867,7 @@ declare const SysWebhook: Omit<{
847
867
  maxSize?: number | undefined;
848
868
  reference?: string | undefined;
849
869
  defaultFromRow?: boolean | undefined;
870
+ carryOver?: boolean | undefined;
850
871
  visible?: string | {
851
872
  dialect: "cel" | "cron" | "template";
852
873
  source?: string | undefined;
@@ -955,7 +976,7 @@ declare const SysWebhook: Omit<{
955
976
  } | undefined;
956
977
  }[] | undefined;
957
978
  protection?: {
958
- lock: "full" | "none" | "no-overlay" | "no-delete";
979
+ lock: "none" | "no-overlay" | "no-delete" | "full";
959
980
  reason: string;
960
981
  docsUrl?: string | undefined;
961
982
  } | undefined;
@@ -1074,6 +1095,7 @@ declare const SysWebhook: Omit<{
1074
1095
  readonly options?: {
1075
1096
  label: string;
1076
1097
  value: string;
1098
+ description?: string | undefined;
1077
1099
  color?: string | undefined;
1078
1100
  default?: boolean | undefined;
1079
1101
  visibleWhen?: string | {
@@ -1087,16 +1109,10 @@ declare const SysWebhook: Omit<{
1087
1109
  } | undefined;
1088
1110
  }[] | undefined;
1089
1111
  readonly description?: string | undefined;
1090
- readonly label?: string | undefined;
1091
- readonly name?: string | undefined;
1092
- readonly precision?: number | undefined;
1093
- readonly required?: boolean | undefined;
1094
- readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1095
- readonly widget?: string | undefined;
1096
- readonly multiple?: boolean | undefined;
1097
1112
  readonly storage?: {
1098
1113
  notNull?: boolean | undefined;
1099
1114
  } | undefined;
1115
+ readonly required?: boolean | undefined;
1100
1116
  readonly visibleWhen?: string | {
1101
1117
  dialect: "cel" | "cron" | "template";
1102
1118
  source?: string | undefined;
@@ -1115,16 +1131,17 @@ declare const SysWebhook: Omit<{
1115
1131
  generatedBy?: string | undefined;
1116
1132
  } | undefined;
1117
1133
  } | undefined;
1118
- readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
1134
+ readonly _lock?: "none" | "no-overlay" | "no-delete" | "full" | undefined;
1119
1135
  readonly _lockReason?: string | undefined;
1120
1136
  readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
1121
1137
  readonly _lockDocsUrl?: string | undefined;
1122
1138
  readonly _provenance?: "package" | "env-forced" | "org" | undefined;
1123
1139
  readonly _packageId?: string | undefined;
1124
1140
  readonly _packageVersion?: string | undefined;
1141
+ readonly name?: string | undefined;
1125
1142
  readonly lookupFilters?: {
1126
1143
  field: string;
1127
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1144
+ operator: "in" | "gt" | "gte" | "lt" | "lte" | "eq" | "ne" | "contains" | "notIn";
1128
1145
  value: any;
1129
1146
  }[] | undefined;
1130
1147
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
@@ -1146,9 +1163,12 @@ declare const SysWebhook: Omit<{
1146
1163
  filter?: _objectstack_spec_data.FilterCondition | undefined;
1147
1164
  } | undefined;
1148
1165
  readonly reference?: string | undefined;
1166
+ readonly label?: string | undefined;
1167
+ readonly precision?: number | undefined;
1149
1168
  readonly scale?: number | undefined;
1150
1169
  readonly step?: number | undefined;
1151
1170
  readonly displayField?: string | undefined;
1171
+ readonly multiple?: boolean | undefined;
1152
1172
  readonly accept?: string[] | undefined;
1153
1173
  readonly requiredWhen?: string | {
1154
1174
  dialect: "cel" | "cron" | "template";
@@ -1165,10 +1185,13 @@ declare const SysWebhook: Omit<{
1165
1185
  readonly defaultValue?: unknown;
1166
1186
  readonly maxLength?: number | undefined;
1167
1187
  readonly minLength?: number | undefined;
1188
+ readonly valueDomain?: "iana_time_zone" | "iso_4217_currency" | "iso_3166_alpha2" | undefined;
1189
+ readonly rows?: number | undefined;
1168
1190
  readonly min?: number | undefined;
1169
1191
  readonly max?: number | undefined;
1170
1192
  readonly useGrouping?: boolean | undefined;
1171
1193
  readonly maxSize?: number | undefined;
1194
+ readonly referenceVia?: string | undefined;
1172
1195
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1173
1196
  readonly inlineTitle?: string | undefined;
1174
1197
  readonly inlineColumns?: {
@@ -1230,6 +1253,7 @@ declare const SysWebhook: Omit<{
1230
1253
  param?: string | undefined;
1231
1254
  })[] | undefined;
1232
1255
  readonly allowCreate?: boolean | undefined;
1256
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1233
1257
  readonly language?: string | undefined;
1234
1258
  readonly currencyConfig?: {
1235
1259
  precision?: number | undefined;
@@ -1240,6 +1264,7 @@ declare const SysWebhook: Omit<{
1240
1264
  readonly trackHistory?: boolean | undefined;
1241
1265
  readonly group?: string | undefined;
1242
1266
  readonly conditionalRequired?: undefined;
1267
+ readonly widget?: string | undefined;
1243
1268
  readonly internal?: boolean | undefined;
1244
1269
  readonly requiredPermissions?: string[] | undefined;
1245
1270
  readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
@@ -1260,6 +1285,7 @@ declare const SysWebhook: Omit<{
1260
1285
  readonly options?: {
1261
1286
  label: string;
1262
1287
  value: string;
1288
+ description?: string | undefined;
1263
1289
  color?: string | undefined;
1264
1290
  default?: boolean | undefined;
1265
1291
  visibleWhen?: string | {
@@ -1273,16 +1299,10 @@ declare const SysWebhook: Omit<{
1273
1299
  } | undefined;
1274
1300
  }[] | undefined;
1275
1301
  readonly description?: string | undefined;
1276
- readonly label?: string | undefined;
1277
- readonly name?: string | undefined;
1278
- readonly precision?: number | undefined;
1279
- readonly required?: boolean | undefined;
1280
- readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1281
- readonly widget?: string | undefined;
1282
- readonly multiple?: boolean | undefined;
1283
1302
  readonly storage?: {
1284
1303
  notNull?: boolean | undefined;
1285
1304
  } | undefined;
1305
+ readonly required?: boolean | undefined;
1286
1306
  readonly visibleWhen?: string | {
1287
1307
  dialect: "cel" | "cron" | "template";
1288
1308
  source?: string | undefined;
@@ -1301,16 +1321,17 @@ declare const SysWebhook: Omit<{
1301
1321
  generatedBy?: string | undefined;
1302
1322
  } | undefined;
1303
1323
  } | undefined;
1304
- readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
1324
+ readonly _lock?: "none" | "no-overlay" | "no-delete" | "full" | undefined;
1305
1325
  readonly _lockReason?: string | undefined;
1306
1326
  readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
1307
1327
  readonly _lockDocsUrl?: string | undefined;
1308
1328
  readonly _provenance?: "package" | "env-forced" | "org" | undefined;
1309
1329
  readonly _packageId?: string | undefined;
1310
1330
  readonly _packageVersion?: string | undefined;
1331
+ readonly name?: string | undefined;
1311
1332
  readonly lookupFilters?: {
1312
1333
  field: string;
1313
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1334
+ operator: "in" | "gt" | "gte" | "lt" | "lte" | "eq" | "ne" | "contains" | "notIn";
1314
1335
  value: any;
1315
1336
  }[] | undefined;
1316
1337
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
@@ -1332,9 +1353,12 @@ declare const SysWebhook: Omit<{
1332
1353
  filter?: _objectstack_spec_data.FilterCondition | undefined;
1333
1354
  } | undefined;
1334
1355
  readonly reference?: string | undefined;
1356
+ readonly label?: string | undefined;
1357
+ readonly precision?: number | undefined;
1335
1358
  readonly scale?: number | undefined;
1336
1359
  readonly step?: number | undefined;
1337
1360
  readonly displayField?: string | undefined;
1361
+ readonly multiple?: boolean | undefined;
1338
1362
  readonly accept?: string[] | undefined;
1339
1363
  readonly requiredWhen?: string | {
1340
1364
  dialect: "cel" | "cron" | "template";
@@ -1351,10 +1375,13 @@ declare const SysWebhook: Omit<{
1351
1375
  readonly defaultValue?: unknown;
1352
1376
  readonly maxLength?: number | undefined;
1353
1377
  readonly minLength?: number | undefined;
1378
+ readonly valueDomain?: "iana_time_zone" | "iso_4217_currency" | "iso_3166_alpha2" | undefined;
1379
+ readonly rows?: number | undefined;
1354
1380
  readonly min?: number | undefined;
1355
1381
  readonly max?: number | undefined;
1356
1382
  readonly useGrouping?: boolean | undefined;
1357
1383
  readonly maxSize?: number | undefined;
1384
+ readonly referenceVia?: string | undefined;
1358
1385
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1359
1386
  readonly inlineTitle?: string | undefined;
1360
1387
  readonly inlineColumns?: {
@@ -1416,6 +1443,7 @@ declare const SysWebhook: Omit<{
1416
1443
  param?: string | undefined;
1417
1444
  })[] | undefined;
1418
1445
  readonly allowCreate?: boolean | undefined;
1446
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1419
1447
  readonly language?: string | undefined;
1420
1448
  readonly currencyConfig?: {
1421
1449
  precision?: number | undefined;
@@ -1426,6 +1454,7 @@ declare const SysWebhook: Omit<{
1426
1454
  readonly trackHistory?: boolean | undefined;
1427
1455
  readonly group?: string | undefined;
1428
1456
  readonly conditionalRequired?: undefined;
1457
+ readonly widget?: string | undefined;
1429
1458
  readonly internal?: boolean | undefined;
1430
1459
  readonly requiredPermissions?: string[] | undefined;
1431
1460
  readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
@@ -1446,6 +1475,7 @@ declare const SysWebhook: Omit<{
1446
1475
  readonly options?: {
1447
1476
  label: string;
1448
1477
  value: string;
1478
+ description?: string | undefined;
1449
1479
  color?: string | undefined;
1450
1480
  default?: boolean | undefined;
1451
1481
  visibleWhen?: string | {
@@ -1459,16 +1489,10 @@ declare const SysWebhook: Omit<{
1459
1489
  } | undefined;
1460
1490
  }[] | undefined;
1461
1491
  readonly description?: string | undefined;
1462
- readonly label?: string | undefined;
1463
- readonly name?: string | undefined;
1464
- readonly precision?: number | undefined;
1465
- readonly required?: boolean | undefined;
1466
- readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1467
- readonly widget?: string | undefined;
1468
- readonly multiple?: boolean | undefined;
1469
1492
  readonly storage?: {
1470
1493
  notNull?: boolean | undefined;
1471
1494
  } | undefined;
1495
+ readonly required?: boolean | undefined;
1472
1496
  readonly visibleWhen?: string | {
1473
1497
  dialect: "cel" | "cron" | "template";
1474
1498
  source?: string | undefined;
@@ -1487,16 +1511,17 @@ declare const SysWebhook: Omit<{
1487
1511
  generatedBy?: string | undefined;
1488
1512
  } | undefined;
1489
1513
  } | undefined;
1490
- readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
1514
+ readonly _lock?: "none" | "no-overlay" | "no-delete" | "full" | undefined;
1491
1515
  readonly _lockReason?: string | undefined;
1492
1516
  readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
1493
1517
  readonly _lockDocsUrl?: string | undefined;
1494
1518
  readonly _provenance?: "package" | "env-forced" | "org" | undefined;
1495
1519
  readonly _packageId?: string | undefined;
1496
1520
  readonly _packageVersion?: string | undefined;
1521
+ readonly name?: string | undefined;
1497
1522
  readonly lookupFilters?: {
1498
1523
  field: string;
1499
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1524
+ operator: "in" | "gt" | "gte" | "lt" | "lte" | "eq" | "ne" | "contains" | "notIn";
1500
1525
  value: any;
1501
1526
  }[] | undefined;
1502
1527
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
@@ -1518,9 +1543,12 @@ declare const SysWebhook: Omit<{
1518
1543
  filter?: _objectstack_spec_data.FilterCondition | undefined;
1519
1544
  } | undefined;
1520
1545
  readonly reference?: string | undefined;
1546
+ readonly label?: string | undefined;
1547
+ readonly precision?: number | undefined;
1521
1548
  readonly scale?: number | undefined;
1522
1549
  readonly step?: number | undefined;
1523
1550
  readonly displayField?: string | undefined;
1551
+ readonly multiple?: boolean | undefined;
1524
1552
  readonly accept?: string[] | undefined;
1525
1553
  readonly requiredWhen?: string | {
1526
1554
  dialect: "cel" | "cron" | "template";
@@ -1537,10 +1565,13 @@ declare const SysWebhook: Omit<{
1537
1565
  readonly defaultValue?: unknown;
1538
1566
  readonly maxLength?: number | undefined;
1539
1567
  readonly minLength?: number | undefined;
1568
+ readonly valueDomain?: "iana_time_zone" | "iso_4217_currency" | "iso_3166_alpha2" | undefined;
1569
+ readonly rows?: number | undefined;
1540
1570
  readonly min?: number | undefined;
1541
1571
  readonly max?: number | undefined;
1542
1572
  readonly useGrouping?: boolean | undefined;
1543
1573
  readonly maxSize?: number | undefined;
1574
+ readonly referenceVia?: string | undefined;
1544
1575
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1545
1576
  readonly inlineTitle?: string | undefined;
1546
1577
  readonly inlineColumns?: {
@@ -1602,6 +1633,7 @@ declare const SysWebhook: Omit<{
1602
1633
  param?: string | undefined;
1603
1634
  })[] | undefined;
1604
1635
  readonly allowCreate?: boolean | undefined;
1636
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1605
1637
  readonly language?: string | undefined;
1606
1638
  readonly currencyConfig?: {
1607
1639
  precision?: number | undefined;
@@ -1612,6 +1644,7 @@ declare const SysWebhook: Omit<{
1612
1644
  readonly trackHistory?: boolean | undefined;
1613
1645
  readonly group?: string | undefined;
1614
1646
  readonly conditionalRequired?: undefined;
1647
+ readonly widget?: string | undefined;
1615
1648
  readonly internal?: boolean | undefined;
1616
1649
  readonly requiredPermissions?: string[] | undefined;
1617
1650
  readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
@@ -1632,6 +1665,7 @@ declare const SysWebhook: Omit<{
1632
1665
  readonly options?: {
1633
1666
  label: string;
1634
1667
  value: string;
1668
+ description?: string | undefined;
1635
1669
  color?: string | undefined;
1636
1670
  default?: boolean | undefined;
1637
1671
  visibleWhen?: string | {
@@ -1645,16 +1679,10 @@ declare const SysWebhook: Omit<{
1645
1679
  } | undefined;
1646
1680
  }[] | undefined;
1647
1681
  readonly description?: string | undefined;
1648
- readonly label?: string | undefined;
1649
- readonly name?: string | undefined;
1650
- readonly precision?: number | undefined;
1651
- readonly required?: boolean | undefined;
1652
- readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1653
- readonly widget?: string | undefined;
1654
- readonly multiple?: boolean | undefined;
1655
1682
  readonly storage?: {
1656
1683
  notNull?: boolean | undefined;
1657
1684
  } | undefined;
1685
+ readonly required?: boolean | undefined;
1658
1686
  readonly visibleWhen?: string | {
1659
1687
  dialect: "cel" | "cron" | "template";
1660
1688
  source?: string | undefined;
@@ -1673,16 +1701,17 @@ declare const SysWebhook: Omit<{
1673
1701
  generatedBy?: string | undefined;
1674
1702
  } | undefined;
1675
1703
  } | undefined;
1676
- readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
1704
+ readonly _lock?: "none" | "no-overlay" | "no-delete" | "full" | undefined;
1677
1705
  readonly _lockReason?: string | undefined;
1678
1706
  readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
1679
1707
  readonly _lockDocsUrl?: string | undefined;
1680
1708
  readonly _provenance?: "package" | "env-forced" | "org" | undefined;
1681
1709
  readonly _packageId?: string | undefined;
1682
1710
  readonly _packageVersion?: string | undefined;
1711
+ readonly name?: string | undefined;
1683
1712
  readonly lookupFilters?: {
1684
1713
  field: string;
1685
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1714
+ operator: "in" | "gt" | "gte" | "lt" | "lte" | "eq" | "ne" | "contains" | "notIn";
1686
1715
  value: any;
1687
1716
  }[] | undefined;
1688
1717
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
@@ -1704,9 +1733,12 @@ declare const SysWebhook: Omit<{
1704
1733
  filter?: _objectstack_spec_data.FilterCondition | undefined;
1705
1734
  } | undefined;
1706
1735
  readonly reference?: string | undefined;
1736
+ readonly label?: string | undefined;
1737
+ readonly precision?: number | undefined;
1707
1738
  readonly scale?: number | undefined;
1708
1739
  readonly step?: number | undefined;
1709
1740
  readonly displayField?: string | undefined;
1741
+ readonly multiple?: boolean | undefined;
1710
1742
  readonly accept?: string[] | undefined;
1711
1743
  readonly requiredWhen?: string | {
1712
1744
  dialect: "cel" | "cron" | "template";
@@ -1723,10 +1755,13 @@ declare const SysWebhook: Omit<{
1723
1755
  readonly defaultValue?: unknown;
1724
1756
  readonly maxLength?: number | undefined;
1725
1757
  readonly minLength?: number | undefined;
1758
+ readonly valueDomain?: "iana_time_zone" | "iso_4217_currency" | "iso_3166_alpha2" | undefined;
1759
+ readonly rows?: number | undefined;
1726
1760
  readonly min?: number | undefined;
1727
1761
  readonly max?: number | undefined;
1728
1762
  readonly useGrouping?: boolean | undefined;
1729
1763
  readonly maxSize?: number | undefined;
1764
+ readonly referenceVia?: string | undefined;
1730
1765
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1731
1766
  readonly inlineTitle?: string | undefined;
1732
1767
  readonly inlineColumns?: {
@@ -1788,6 +1823,7 @@ declare const SysWebhook: Omit<{
1788
1823
  param?: string | undefined;
1789
1824
  })[] | undefined;
1790
1825
  readonly allowCreate?: boolean | undefined;
1826
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1791
1827
  readonly language?: string | undefined;
1792
1828
  readonly currencyConfig?: {
1793
1829
  precision?: number | undefined;
@@ -1798,6 +1834,7 @@ declare const SysWebhook: Omit<{
1798
1834
  readonly trackHistory?: boolean | undefined;
1799
1835
  readonly group?: string | undefined;
1800
1836
  readonly conditionalRequired?: undefined;
1837
+ readonly widget?: string | undefined;
1801
1838
  readonly internal?: boolean | undefined;
1802
1839
  readonly requiredPermissions?: string[] | undefined;
1803
1840
  readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
@@ -1818,6 +1855,7 @@ declare const SysWebhook: Omit<{
1818
1855
  options: {
1819
1856
  label: string;
1820
1857
  value: string;
1858
+ description?: string | undefined;
1821
1859
  color?: string | undefined;
1822
1860
  default?: boolean | undefined;
1823
1861
  visibleWhen?: string | {
@@ -1831,16 +1869,10 @@ declare const SysWebhook: Omit<{
1831
1869
  } | undefined;
1832
1870
  }[];
1833
1871
  readonly description?: string | undefined;
1834
- readonly label?: string | undefined;
1835
- readonly name?: string | undefined;
1836
- readonly precision?: number | undefined;
1837
- readonly required?: boolean | undefined;
1838
- readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1839
- readonly widget?: string | undefined;
1840
- readonly multiple?: boolean | undefined;
1841
1872
  readonly storage?: {
1842
1873
  notNull?: boolean | undefined;
1843
1874
  } | undefined;
1875
+ readonly required?: boolean | undefined;
1844
1876
  readonly visibleWhen?: string | {
1845
1877
  dialect: "cel" | "cron" | "template";
1846
1878
  source?: string | undefined;
@@ -1859,16 +1891,17 @@ declare const SysWebhook: Omit<{
1859
1891
  generatedBy?: string | undefined;
1860
1892
  } | undefined;
1861
1893
  } | undefined;
1862
- readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
1894
+ readonly _lock?: "none" | "no-overlay" | "no-delete" | "full" | undefined;
1863
1895
  readonly _lockReason?: string | undefined;
1864
1896
  readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
1865
1897
  readonly _lockDocsUrl?: string | undefined;
1866
1898
  readonly _provenance?: "package" | "env-forced" | "org" | undefined;
1867
1899
  readonly _packageId?: string | undefined;
1868
1900
  readonly _packageVersion?: string | undefined;
1901
+ readonly name?: string | undefined;
1869
1902
  readonly lookupFilters?: {
1870
1903
  field: string;
1871
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1904
+ operator: "in" | "gt" | "gte" | "lt" | "lte" | "eq" | "ne" | "contains" | "notIn";
1872
1905
  value: any;
1873
1906
  }[] | undefined;
1874
1907
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
@@ -1890,9 +1923,12 @@ declare const SysWebhook: Omit<{
1890
1923
  filter?: _objectstack_spec_data.FilterCondition | undefined;
1891
1924
  } | undefined;
1892
1925
  readonly reference?: string | undefined;
1926
+ readonly label?: string | undefined;
1927
+ readonly precision?: number | undefined;
1893
1928
  readonly scale?: number | undefined;
1894
1929
  readonly step?: number | undefined;
1895
1930
  readonly displayField?: string | undefined;
1931
+ readonly multiple?: boolean | undefined;
1896
1932
  readonly accept?: string[] | undefined;
1897
1933
  readonly requiredWhen?: string | {
1898
1934
  dialect: "cel" | "cron" | "template";
@@ -1909,10 +1945,13 @@ declare const SysWebhook: Omit<{
1909
1945
  readonly defaultValue?: unknown;
1910
1946
  readonly maxLength?: number | undefined;
1911
1947
  readonly minLength?: number | undefined;
1948
+ readonly valueDomain?: "iana_time_zone" | "iso_4217_currency" | "iso_3166_alpha2" | undefined;
1949
+ readonly rows?: number | undefined;
1912
1950
  readonly min?: number | undefined;
1913
1951
  readonly max?: number | undefined;
1914
1952
  readonly useGrouping?: boolean | undefined;
1915
1953
  readonly maxSize?: number | undefined;
1954
+ readonly referenceVia?: string | undefined;
1916
1955
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1917
1956
  readonly inlineTitle?: string | undefined;
1918
1957
  readonly inlineColumns?: {
@@ -1974,6 +2013,7 @@ declare const SysWebhook: Omit<{
1974
2013
  param?: string | undefined;
1975
2014
  })[] | undefined;
1976
2015
  readonly allowCreate?: boolean | undefined;
2016
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1977
2017
  readonly language?: string | undefined;
1978
2018
  readonly currencyConfig?: {
1979
2019
  precision?: number | undefined;
@@ -1984,6 +2024,7 @@ declare const SysWebhook: Omit<{
1984
2024
  readonly trackHistory?: boolean | undefined;
1985
2025
  readonly group?: string | undefined;
1986
2026
  readonly conditionalRequired?: undefined;
2027
+ readonly widget?: string | undefined;
1987
2028
  readonly internal?: boolean | undefined;
1988
2029
  readonly requiredPermissions?: string[] | undefined;
1989
2030
  readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
@@ -2004,6 +2045,7 @@ declare const SysWebhook: Omit<{
2004
2045
  readonly options?: {
2005
2046
  label: string;
2006
2047
  value: string;
2048
+ description?: string | undefined;
2007
2049
  color?: string | undefined;
2008
2050
  default?: boolean | undefined;
2009
2051
  visibleWhen?: string | {
@@ -2017,16 +2059,10 @@ declare const SysWebhook: Omit<{
2017
2059
  } | undefined;
2018
2060
  }[] | undefined;
2019
2061
  readonly description?: string | undefined;
2020
- readonly label?: string | undefined;
2021
- readonly name?: string | undefined;
2022
- readonly precision?: number | undefined;
2023
- readonly required?: boolean | undefined;
2024
- readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
2025
- readonly widget?: string | undefined;
2026
- readonly multiple?: boolean | undefined;
2027
2062
  readonly storage?: {
2028
2063
  notNull?: boolean | undefined;
2029
2064
  } | undefined;
2065
+ readonly required?: boolean | undefined;
2030
2066
  readonly visibleWhen?: string | {
2031
2067
  dialect: "cel" | "cron" | "template";
2032
2068
  source?: string | undefined;
@@ -2045,16 +2081,17 @@ declare const SysWebhook: Omit<{
2045
2081
  generatedBy?: string | undefined;
2046
2082
  } | undefined;
2047
2083
  } | undefined;
2048
- readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
2084
+ readonly _lock?: "none" | "no-overlay" | "no-delete" | "full" | undefined;
2049
2085
  readonly _lockReason?: string | undefined;
2050
2086
  readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
2051
2087
  readonly _lockDocsUrl?: string | undefined;
2052
2088
  readonly _provenance?: "package" | "env-forced" | "org" | undefined;
2053
2089
  readonly _packageId?: string | undefined;
2054
2090
  readonly _packageVersion?: string | undefined;
2091
+ readonly name?: string | undefined;
2055
2092
  readonly lookupFilters?: {
2056
2093
  field: string;
2057
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2094
+ operator: "in" | "gt" | "gte" | "lt" | "lte" | "eq" | "ne" | "contains" | "notIn";
2058
2095
  value: any;
2059
2096
  }[] | undefined;
2060
2097
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
@@ -2076,9 +2113,12 @@ declare const SysWebhook: Omit<{
2076
2113
  filter?: _objectstack_spec_data.FilterCondition | undefined;
2077
2114
  } | undefined;
2078
2115
  readonly reference?: string | undefined;
2116
+ readonly label?: string | undefined;
2117
+ readonly precision?: number | undefined;
2079
2118
  readonly scale?: number | undefined;
2080
2119
  readonly step?: number | undefined;
2081
2120
  readonly displayField?: string | undefined;
2121
+ readonly multiple?: boolean | undefined;
2082
2122
  readonly accept?: string[] | undefined;
2083
2123
  readonly requiredWhen?: string | {
2084
2124
  dialect: "cel" | "cron" | "template";
@@ -2095,10 +2135,13 @@ declare const SysWebhook: Omit<{
2095
2135
  readonly defaultValue?: unknown;
2096
2136
  readonly maxLength?: number | undefined;
2097
2137
  readonly minLength?: number | undefined;
2138
+ readonly valueDomain?: "iana_time_zone" | "iso_4217_currency" | "iso_3166_alpha2" | undefined;
2139
+ readonly rows?: number | undefined;
2098
2140
  readonly min?: number | undefined;
2099
2141
  readonly max?: number | undefined;
2100
2142
  readonly useGrouping?: boolean | undefined;
2101
2143
  readonly maxSize?: number | undefined;
2144
+ readonly referenceVia?: string | undefined;
2102
2145
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2103
2146
  readonly inlineTitle?: string | undefined;
2104
2147
  readonly inlineColumns?: {
@@ -2160,6 +2203,7 @@ declare const SysWebhook: Omit<{
2160
2203
  param?: string | undefined;
2161
2204
  })[] | undefined;
2162
2205
  readonly allowCreate?: boolean | undefined;
2206
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
2163
2207
  readonly language?: string | undefined;
2164
2208
  readonly currencyConfig?: {
2165
2209
  precision?: number | undefined;
@@ -2170,6 +2214,7 @@ declare const SysWebhook: Omit<{
2170
2214
  readonly trackHistory?: boolean | undefined;
2171
2215
  readonly group?: string | undefined;
2172
2216
  readonly conditionalRequired?: undefined;
2217
+ readonly widget?: string | undefined;
2173
2218
  readonly internal?: boolean | undefined;
2174
2219
  readonly requiredPermissions?: string[] | undefined;
2175
2220
  readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
@@ -2190,6 +2235,7 @@ declare const SysWebhook: Omit<{
2190
2235
  options: {
2191
2236
  label: string;
2192
2237
  value: string;
2238
+ description?: string | undefined;
2193
2239
  color?: string | undefined;
2194
2240
  default?: boolean | undefined;
2195
2241
  visibleWhen?: string | {
@@ -2203,16 +2249,10 @@ declare const SysWebhook: Omit<{
2203
2249
  } | undefined;
2204
2250
  }[];
2205
2251
  readonly description?: string | undefined;
2206
- readonly label?: string | undefined;
2207
- readonly name?: string | undefined;
2208
- readonly precision?: number | undefined;
2209
- readonly required?: boolean | undefined;
2210
- readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
2211
- readonly widget?: string | undefined;
2212
- readonly multiple?: boolean | undefined;
2213
2252
  readonly storage?: {
2214
2253
  notNull?: boolean | undefined;
2215
2254
  } | undefined;
2255
+ readonly required?: boolean | undefined;
2216
2256
  readonly visibleWhen?: string | {
2217
2257
  dialect: "cel" | "cron" | "template";
2218
2258
  source?: string | undefined;
@@ -2231,16 +2271,17 @@ declare const SysWebhook: Omit<{
2231
2271
  generatedBy?: string | undefined;
2232
2272
  } | undefined;
2233
2273
  } | undefined;
2234
- readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
2274
+ readonly _lock?: "none" | "no-overlay" | "no-delete" | "full" | undefined;
2235
2275
  readonly _lockReason?: string | undefined;
2236
2276
  readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
2237
2277
  readonly _lockDocsUrl?: string | undefined;
2238
2278
  readonly _provenance?: "package" | "env-forced" | "org" | undefined;
2239
2279
  readonly _packageId?: string | undefined;
2240
2280
  readonly _packageVersion?: string | undefined;
2281
+ readonly name?: string | undefined;
2241
2282
  readonly lookupFilters?: {
2242
2283
  field: string;
2243
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2284
+ operator: "in" | "gt" | "gte" | "lt" | "lte" | "eq" | "ne" | "contains" | "notIn";
2244
2285
  value: any;
2245
2286
  }[] | undefined;
2246
2287
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
@@ -2262,9 +2303,12 @@ declare const SysWebhook: Omit<{
2262
2303
  filter?: _objectstack_spec_data.FilterCondition | undefined;
2263
2304
  } | undefined;
2264
2305
  readonly reference?: string | undefined;
2306
+ readonly label?: string | undefined;
2307
+ readonly precision?: number | undefined;
2265
2308
  readonly scale?: number | undefined;
2266
2309
  readonly step?: number | undefined;
2267
2310
  readonly displayField?: string | undefined;
2311
+ readonly multiple?: boolean | undefined;
2268
2312
  readonly accept?: string[] | undefined;
2269
2313
  readonly requiredWhen?: string | {
2270
2314
  dialect: "cel" | "cron" | "template";
@@ -2281,10 +2325,13 @@ declare const SysWebhook: Omit<{
2281
2325
  readonly defaultValue?: unknown;
2282
2326
  readonly maxLength?: number | undefined;
2283
2327
  readonly minLength?: number | undefined;
2328
+ readonly valueDomain?: "iana_time_zone" | "iso_4217_currency" | "iso_3166_alpha2" | undefined;
2329
+ readonly rows?: number | undefined;
2284
2330
  readonly min?: number | undefined;
2285
2331
  readonly max?: number | undefined;
2286
2332
  readonly useGrouping?: boolean | undefined;
2287
2333
  readonly maxSize?: number | undefined;
2334
+ readonly referenceVia?: string | undefined;
2288
2335
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2289
2336
  readonly inlineTitle?: string | undefined;
2290
2337
  readonly inlineColumns?: {
@@ -2346,6 +2393,7 @@ declare const SysWebhook: Omit<{
2346
2393
  param?: string | undefined;
2347
2394
  })[] | undefined;
2348
2395
  readonly allowCreate?: boolean | undefined;
2396
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
2349
2397
  readonly language?: string | undefined;
2350
2398
  readonly currencyConfig?: {
2351
2399
  precision?: number | undefined;
@@ -2356,6 +2404,7 @@ declare const SysWebhook: Omit<{
2356
2404
  readonly trackHistory?: boolean | undefined;
2357
2405
  readonly group?: string | undefined;
2358
2406
  readonly conditionalRequired?: undefined;
2407
+ readonly widget?: string | undefined;
2359
2408
  readonly internal?: boolean | undefined;
2360
2409
  readonly requiredPermissions?: string[] | undefined;
2361
2410
  readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
@@ -2376,6 +2425,7 @@ declare const SysWebhook: Omit<{
2376
2425
  readonly options?: {
2377
2426
  label: string;
2378
2427
  value: string;
2428
+ description?: string | undefined;
2379
2429
  color?: string | undefined;
2380
2430
  default?: boolean | undefined;
2381
2431
  visibleWhen?: string | {
@@ -2389,16 +2439,10 @@ declare const SysWebhook: Omit<{
2389
2439
  } | undefined;
2390
2440
  }[] | undefined;
2391
2441
  readonly description?: string | undefined;
2392
- readonly label?: string | undefined;
2393
- readonly name?: string | undefined;
2394
- readonly precision?: number | undefined;
2395
- readonly required?: boolean | undefined;
2396
- readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
2397
- readonly widget?: string | undefined;
2398
- readonly multiple?: boolean | undefined;
2399
2442
  readonly storage?: {
2400
2443
  notNull?: boolean | undefined;
2401
2444
  } | undefined;
2445
+ readonly required?: boolean | undefined;
2402
2446
  readonly visibleWhen?: string | {
2403
2447
  dialect: "cel" | "cron" | "template";
2404
2448
  source?: string | undefined;
@@ -2417,16 +2461,17 @@ declare const SysWebhook: Omit<{
2417
2461
  generatedBy?: string | undefined;
2418
2462
  } | undefined;
2419
2463
  } | undefined;
2420
- readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
2464
+ readonly _lock?: "none" | "no-overlay" | "no-delete" | "full" | undefined;
2421
2465
  readonly _lockReason?: string | undefined;
2422
2466
  readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
2423
2467
  readonly _lockDocsUrl?: string | undefined;
2424
2468
  readonly _provenance?: "package" | "env-forced" | "org" | undefined;
2425
2469
  readonly _packageId?: string | undefined;
2426
2470
  readonly _packageVersion?: string | undefined;
2471
+ readonly name?: string | undefined;
2427
2472
  readonly lookupFilters?: {
2428
2473
  field: string;
2429
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2474
+ operator: "in" | "gt" | "gte" | "lt" | "lte" | "eq" | "ne" | "contains" | "notIn";
2430
2475
  value: any;
2431
2476
  }[] | undefined;
2432
2477
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
@@ -2448,9 +2493,12 @@ declare const SysWebhook: Omit<{
2448
2493
  filter?: _objectstack_spec_data.FilterCondition | undefined;
2449
2494
  } | undefined;
2450
2495
  readonly reference?: string | undefined;
2496
+ readonly label?: string | undefined;
2497
+ readonly precision?: number | undefined;
2451
2498
  readonly scale?: number | undefined;
2452
2499
  readonly step?: number | undefined;
2453
2500
  readonly displayField?: string | undefined;
2501
+ readonly multiple?: boolean | undefined;
2454
2502
  readonly accept?: string[] | undefined;
2455
2503
  readonly requiredWhen?: string | {
2456
2504
  dialect: "cel" | "cron" | "template";
@@ -2467,10 +2515,13 @@ declare const SysWebhook: Omit<{
2467
2515
  readonly defaultValue?: unknown;
2468
2516
  readonly maxLength?: number | undefined;
2469
2517
  readonly minLength?: number | undefined;
2518
+ readonly valueDomain?: "iana_time_zone" | "iso_4217_currency" | "iso_3166_alpha2" | undefined;
2519
+ readonly rows?: number | undefined;
2470
2520
  readonly min?: number | undefined;
2471
2521
  readonly max?: number | undefined;
2472
2522
  readonly useGrouping?: boolean | undefined;
2473
2523
  readonly maxSize?: number | undefined;
2524
+ readonly referenceVia?: string | undefined;
2474
2525
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2475
2526
  readonly inlineTitle?: string | undefined;
2476
2527
  readonly inlineColumns?: {
@@ -2532,6 +2583,7 @@ declare const SysWebhook: Omit<{
2532
2583
  param?: string | undefined;
2533
2584
  })[] | undefined;
2534
2585
  readonly allowCreate?: boolean | undefined;
2586
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
2535
2587
  readonly language?: string | undefined;
2536
2588
  readonly currencyConfig?: {
2537
2589
  precision?: number | undefined;
@@ -2542,6 +2594,7 @@ declare const SysWebhook: Omit<{
2542
2594
  readonly trackHistory?: boolean | undefined;
2543
2595
  readonly group?: string | undefined;
2544
2596
  readonly conditionalRequired?: undefined;
2597
+ readonly widget?: string | undefined;
2545
2598
  readonly internal?: boolean | undefined;
2546
2599
  readonly requiredPermissions?: string[] | undefined;
2547
2600
  readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
@@ -2562,6 +2615,7 @@ declare const SysWebhook: Omit<{
2562
2615
  readonly options?: {
2563
2616
  label: string;
2564
2617
  value: string;
2618
+ description?: string | undefined;
2565
2619
  color?: string | undefined;
2566
2620
  default?: boolean | undefined;
2567
2621
  visibleWhen?: string | {
@@ -2575,16 +2629,10 @@ declare const SysWebhook: Omit<{
2575
2629
  } | undefined;
2576
2630
  }[] | undefined;
2577
2631
  readonly description?: string | undefined;
2578
- readonly label?: string | undefined;
2579
- readonly name?: string | undefined;
2580
- readonly precision?: number | undefined;
2581
- readonly required?: boolean | undefined;
2582
- readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
2583
- readonly widget?: string | undefined;
2584
- readonly multiple?: boolean | undefined;
2585
2632
  readonly storage?: {
2586
2633
  notNull?: boolean | undefined;
2587
2634
  } | undefined;
2635
+ readonly required?: boolean | undefined;
2588
2636
  readonly visibleWhen?: string | {
2589
2637
  dialect: "cel" | "cron" | "template";
2590
2638
  source?: string | undefined;
@@ -2603,16 +2651,17 @@ declare const SysWebhook: Omit<{
2603
2651
  generatedBy?: string | undefined;
2604
2652
  } | undefined;
2605
2653
  } | undefined;
2606
- readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
2654
+ readonly _lock?: "none" | "no-overlay" | "no-delete" | "full" | undefined;
2607
2655
  readonly _lockReason?: string | undefined;
2608
2656
  readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
2609
2657
  readonly _lockDocsUrl?: string | undefined;
2610
2658
  readonly _provenance?: "package" | "env-forced" | "org" | undefined;
2611
2659
  readonly _packageId?: string | undefined;
2612
2660
  readonly _packageVersion?: string | undefined;
2661
+ readonly name?: string | undefined;
2613
2662
  readonly lookupFilters?: {
2614
2663
  field: string;
2615
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2664
+ operator: "in" | "gt" | "gte" | "lt" | "lte" | "eq" | "ne" | "contains" | "notIn";
2616
2665
  value: any;
2617
2666
  }[] | undefined;
2618
2667
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
@@ -2634,9 +2683,12 @@ declare const SysWebhook: Omit<{
2634
2683
  filter?: _objectstack_spec_data.FilterCondition | undefined;
2635
2684
  } | undefined;
2636
2685
  readonly reference?: string | undefined;
2686
+ readonly label?: string | undefined;
2687
+ readonly precision?: number | undefined;
2637
2688
  readonly scale?: number | undefined;
2638
2689
  readonly step?: number | undefined;
2639
2690
  readonly displayField?: string | undefined;
2691
+ readonly multiple?: boolean | undefined;
2640
2692
  readonly accept?: string[] | undefined;
2641
2693
  readonly requiredWhen?: string | {
2642
2694
  dialect: "cel" | "cron" | "template";
@@ -2653,10 +2705,13 @@ declare const SysWebhook: Omit<{
2653
2705
  readonly defaultValue?: unknown;
2654
2706
  readonly maxLength?: number | undefined;
2655
2707
  readonly minLength?: number | undefined;
2708
+ readonly valueDomain?: "iana_time_zone" | "iso_4217_currency" | "iso_3166_alpha2" | undefined;
2709
+ readonly rows?: number | undefined;
2656
2710
  readonly min?: number | undefined;
2657
2711
  readonly max?: number | undefined;
2658
2712
  readonly useGrouping?: boolean | undefined;
2659
2713
  readonly maxSize?: number | undefined;
2714
+ readonly referenceVia?: string | undefined;
2660
2715
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2661
2716
  readonly inlineTitle?: string | undefined;
2662
2717
  readonly inlineColumns?: {
@@ -2718,6 +2773,7 @@ declare const SysWebhook: Omit<{
2718
2773
  param?: string | undefined;
2719
2774
  })[] | undefined;
2720
2775
  readonly allowCreate?: boolean | undefined;
2776
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
2721
2777
  readonly language?: string | undefined;
2722
2778
  readonly currencyConfig?: {
2723
2779
  precision?: number | undefined;
@@ -2728,6 +2784,7 @@ declare const SysWebhook: Omit<{
2728
2784
  readonly trackHistory?: boolean | undefined;
2729
2785
  readonly group?: string | undefined;
2730
2786
  readonly conditionalRequired?: undefined;
2787
+ readonly widget?: string | undefined;
2731
2788
  readonly internal?: boolean | undefined;
2732
2789
  readonly requiredPermissions?: string[] | undefined;
2733
2790
  readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
@@ -2748,6 +2805,7 @@ declare const SysWebhook: Omit<{
2748
2805
  readonly options?: {
2749
2806
  label: string;
2750
2807
  value: string;
2808
+ description?: string | undefined;
2751
2809
  color?: string | undefined;
2752
2810
  default?: boolean | undefined;
2753
2811
  visibleWhen?: string | {
@@ -2761,16 +2819,10 @@ declare const SysWebhook: Omit<{
2761
2819
  } | undefined;
2762
2820
  }[] | undefined;
2763
2821
  readonly description?: string | undefined;
2764
- readonly label?: string | undefined;
2765
- readonly name?: string | undefined;
2766
- readonly precision?: number | undefined;
2767
- readonly required?: boolean | undefined;
2768
- readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
2769
- readonly widget?: string | undefined;
2770
- readonly multiple?: boolean | undefined;
2771
2822
  readonly storage?: {
2772
2823
  notNull?: boolean | undefined;
2773
2824
  } | undefined;
2825
+ readonly required?: boolean | undefined;
2774
2826
  readonly visibleWhen?: string | {
2775
2827
  dialect: "cel" | "cron" | "template";
2776
2828
  source?: string | undefined;
@@ -2789,16 +2841,17 @@ declare const SysWebhook: Omit<{
2789
2841
  generatedBy?: string | undefined;
2790
2842
  } | undefined;
2791
2843
  } | undefined;
2792
- readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
2844
+ readonly _lock?: "none" | "no-overlay" | "no-delete" | "full" | undefined;
2793
2845
  readonly _lockReason?: string | undefined;
2794
2846
  readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
2795
2847
  readonly _lockDocsUrl?: string | undefined;
2796
2848
  readonly _provenance?: "package" | "env-forced" | "org" | undefined;
2797
2849
  readonly _packageId?: string | undefined;
2798
2850
  readonly _packageVersion?: string | undefined;
2851
+ readonly name?: string | undefined;
2799
2852
  readonly lookupFilters?: {
2800
2853
  field: string;
2801
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2854
+ operator: "in" | "gt" | "gte" | "lt" | "lte" | "eq" | "ne" | "contains" | "notIn";
2802
2855
  value: any;
2803
2856
  }[] | undefined;
2804
2857
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
@@ -2820,9 +2873,12 @@ declare const SysWebhook: Omit<{
2820
2873
  filter?: _objectstack_spec_data.FilterCondition | undefined;
2821
2874
  } | undefined;
2822
2875
  readonly reference?: string | undefined;
2876
+ readonly label?: string | undefined;
2877
+ readonly precision?: number | undefined;
2823
2878
  readonly scale?: number | undefined;
2824
2879
  readonly step?: number | undefined;
2825
2880
  readonly displayField?: string | undefined;
2881
+ readonly multiple?: boolean | undefined;
2826
2882
  readonly accept?: string[] | undefined;
2827
2883
  readonly requiredWhen?: string | {
2828
2884
  dialect: "cel" | "cron" | "template";
@@ -2839,10 +2895,13 @@ declare const SysWebhook: Omit<{
2839
2895
  readonly defaultValue?: unknown;
2840
2896
  readonly maxLength?: number | undefined;
2841
2897
  readonly minLength?: number | undefined;
2898
+ readonly valueDomain?: "iana_time_zone" | "iso_4217_currency" | "iso_3166_alpha2" | undefined;
2899
+ readonly rows?: number | undefined;
2842
2900
  readonly min?: number | undefined;
2843
2901
  readonly max?: number | undefined;
2844
2902
  readonly useGrouping?: boolean | undefined;
2845
2903
  readonly maxSize?: number | undefined;
2904
+ readonly referenceVia?: string | undefined;
2846
2905
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2847
2906
  readonly inlineTitle?: string | undefined;
2848
2907
  readonly inlineColumns?: {
@@ -2904,6 +2963,7 @@ declare const SysWebhook: Omit<{
2904
2963
  param?: string | undefined;
2905
2964
  })[] | undefined;
2906
2965
  readonly allowCreate?: boolean | undefined;
2966
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
2907
2967
  readonly language?: string | undefined;
2908
2968
  readonly currencyConfig?: {
2909
2969
  precision?: number | undefined;
@@ -2914,6 +2974,7 @@ declare const SysWebhook: Omit<{
2914
2974
  readonly trackHistory?: boolean | undefined;
2915
2975
  readonly group?: string | undefined;
2916
2976
  readonly conditionalRequired?: undefined;
2977
+ readonly widget?: string | undefined;
2917
2978
  readonly internal?: boolean | undefined;
2918
2979
  readonly requiredPermissions?: string[] | undefined;
2919
2980
  readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
@@ -2964,6 +3025,7 @@ declare const SysWebhook: Omit<{
2964
3025
  readonly options?: {
2965
3026
  label: string;
2966
3027
  value: string;
3028
+ description?: string | undefined;
2967
3029
  color?: string | undefined;
2968
3030
  default?: boolean | undefined;
2969
3031
  visibleWhen?: string | {
@@ -2977,16 +3039,10 @@ declare const SysWebhook: Omit<{
2977
3039
  } | undefined;
2978
3040
  }[] | undefined;
2979
3041
  readonly description?: string | undefined;
2980
- readonly label?: string | undefined;
2981
- readonly name?: string | undefined;
2982
- readonly precision?: number | undefined;
2983
- readonly required?: boolean | undefined;
2984
- readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
2985
- readonly widget?: string | undefined;
2986
- readonly multiple?: boolean | undefined;
2987
3042
  readonly storage?: {
2988
3043
  notNull?: boolean | undefined;
2989
3044
  } | undefined;
3045
+ readonly required?: boolean | undefined;
2990
3046
  readonly visibleWhen?: string | {
2991
3047
  dialect: "cel" | "cron" | "template";
2992
3048
  source?: string | undefined;
@@ -3005,16 +3061,17 @@ declare const SysWebhook: Omit<{
3005
3061
  generatedBy?: string | undefined;
3006
3062
  } | undefined;
3007
3063
  } | undefined;
3008
- readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
3064
+ readonly _lock?: "none" | "no-overlay" | "no-delete" | "full" | undefined;
3009
3065
  readonly _lockReason?: string | undefined;
3010
3066
  readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
3011
3067
  readonly _lockDocsUrl?: string | undefined;
3012
3068
  readonly _provenance?: "package" | "env-forced" | "org" | undefined;
3013
3069
  readonly _packageId?: string | undefined;
3014
3070
  readonly _packageVersion?: string | undefined;
3071
+ readonly name?: string | undefined;
3015
3072
  readonly lookupFilters?: {
3016
3073
  field: string;
3017
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
3074
+ operator: "in" | "gt" | "gte" | "lt" | "lte" | "eq" | "ne" | "contains" | "notIn";
3018
3075
  value: any;
3019
3076
  }[] | undefined;
3020
3077
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
@@ -3036,9 +3093,12 @@ declare const SysWebhook: Omit<{
3036
3093
  filter?: _objectstack_spec_data.FilterCondition | undefined;
3037
3094
  } | undefined;
3038
3095
  readonly reference?: string | undefined;
3096
+ readonly label?: string | undefined;
3097
+ readonly precision?: number | undefined;
3039
3098
  readonly scale?: number | undefined;
3040
3099
  readonly step?: number | undefined;
3041
3100
  readonly displayField?: string | undefined;
3101
+ readonly multiple?: boolean | undefined;
3042
3102
  readonly accept?: string[] | undefined;
3043
3103
  readonly requiredWhen?: string | {
3044
3104
  dialect: "cel" | "cron" | "template";
@@ -3055,10 +3115,13 @@ declare const SysWebhook: Omit<{
3055
3115
  readonly defaultValue?: unknown;
3056
3116
  readonly maxLength?: number | undefined;
3057
3117
  readonly minLength?: number | undefined;
3118
+ readonly valueDomain?: "iana_time_zone" | "iso_4217_currency" | "iso_3166_alpha2" | undefined;
3119
+ readonly rows?: number | undefined;
3058
3120
  readonly min?: number | undefined;
3059
3121
  readonly max?: number | undefined;
3060
3122
  readonly useGrouping?: boolean | undefined;
3061
3123
  readonly maxSize?: number | undefined;
3124
+ readonly referenceVia?: string | undefined;
3062
3125
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3063
3126
  readonly inlineTitle?: string | undefined;
3064
3127
  readonly inlineColumns?: {
@@ -3120,6 +3183,7 @@ declare const SysWebhook: Omit<{
3120
3183
  param?: string | undefined;
3121
3184
  })[] | undefined;
3122
3185
  readonly allowCreate?: boolean | undefined;
3186
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
3123
3187
  readonly language?: string | undefined;
3124
3188
  readonly currencyConfig?: {
3125
3189
  precision?: number | undefined;
@@ -3130,6 +3194,7 @@ declare const SysWebhook: Omit<{
3130
3194
  readonly trackHistory?: boolean | undefined;
3131
3195
  readonly group?: string | undefined;
3132
3196
  readonly conditionalRequired?: undefined;
3197
+ readonly widget?: string | undefined;
3133
3198
  readonly internal?: boolean | undefined;
3134
3199
  readonly requiredPermissions?: string[] | undefined;
3135
3200
  readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
@@ -3173,6 +3238,7 @@ declare const SysWebhook: Omit<{
3173
3238
  readonly options?: {
3174
3239
  label: string;
3175
3240
  value: string;
3241
+ description?: string | undefined;
3176
3242
  color?: string | undefined;
3177
3243
  default?: boolean | undefined;
3178
3244
  visibleWhen?: string | {
@@ -3186,16 +3252,10 @@ declare const SysWebhook: Omit<{
3186
3252
  } | undefined;
3187
3253
  }[] | undefined;
3188
3254
  readonly description?: string | undefined;
3189
- readonly label?: string | undefined;
3190
- readonly name?: string | undefined;
3191
- readonly precision?: number | undefined;
3192
- readonly required?: boolean | undefined;
3193
- readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
3194
- readonly widget?: string | undefined;
3195
- readonly multiple?: boolean | undefined;
3196
3255
  readonly storage?: {
3197
3256
  notNull?: boolean | undefined;
3198
3257
  } | undefined;
3258
+ readonly required?: boolean | undefined;
3199
3259
  readonly visibleWhen?: string | {
3200
3260
  dialect: "cel" | "cron" | "template";
3201
3261
  source?: string | undefined;
@@ -3214,16 +3274,17 @@ declare const SysWebhook: Omit<{
3214
3274
  generatedBy?: string | undefined;
3215
3275
  } | undefined;
3216
3276
  } | undefined;
3217
- readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
3277
+ readonly _lock?: "none" | "no-overlay" | "no-delete" | "full" | undefined;
3218
3278
  readonly _lockReason?: string | undefined;
3219
3279
  readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
3220
3280
  readonly _lockDocsUrl?: string | undefined;
3221
3281
  readonly _provenance?: "package" | "env-forced" | "org" | undefined;
3222
3282
  readonly _packageId?: string | undefined;
3223
3283
  readonly _packageVersion?: string | undefined;
3284
+ readonly name?: string | undefined;
3224
3285
  readonly lookupFilters?: {
3225
3286
  field: string;
3226
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
3287
+ operator: "in" | "gt" | "gte" | "lt" | "lte" | "eq" | "ne" | "contains" | "notIn";
3227
3288
  value: any;
3228
3289
  }[] | undefined;
3229
3290
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
@@ -3245,9 +3306,12 @@ declare const SysWebhook: Omit<{
3245
3306
  filter?: _objectstack_spec_data.FilterCondition | undefined;
3246
3307
  } | undefined;
3247
3308
  readonly reference?: string | undefined;
3309
+ readonly label?: string | undefined;
3310
+ readonly precision?: number | undefined;
3248
3311
  readonly scale?: number | undefined;
3249
3312
  readonly step?: number | undefined;
3250
3313
  readonly displayField?: string | undefined;
3314
+ readonly multiple?: boolean | undefined;
3251
3315
  readonly accept?: string[] | undefined;
3252
3316
  readonly requiredWhen?: string | {
3253
3317
  dialect: "cel" | "cron" | "template";
@@ -3264,10 +3328,13 @@ declare const SysWebhook: Omit<{
3264
3328
  readonly defaultValue?: unknown;
3265
3329
  readonly maxLength?: number | undefined;
3266
3330
  readonly minLength?: number | undefined;
3331
+ readonly valueDomain?: "iana_time_zone" | "iso_4217_currency" | "iso_3166_alpha2" | undefined;
3332
+ readonly rows?: number | undefined;
3267
3333
  readonly min?: number | undefined;
3268
3334
  readonly max?: number | undefined;
3269
3335
  readonly useGrouping?: boolean | undefined;
3270
3336
  readonly maxSize?: number | undefined;
3337
+ readonly referenceVia?: string | undefined;
3271
3338
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3272
3339
  readonly inlineTitle?: string | undefined;
3273
3340
  readonly inlineColumns?: {
@@ -3329,6 +3396,7 @@ declare const SysWebhook: Omit<{
3329
3396
  param?: string | undefined;
3330
3397
  })[] | undefined;
3331
3398
  readonly allowCreate?: boolean | undefined;
3399
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
3332
3400
  readonly language?: string | undefined;
3333
3401
  readonly currencyConfig?: {
3334
3402
  precision?: number | undefined;
@@ -3339,6 +3407,7 @@ declare const SysWebhook: Omit<{
3339
3407
  readonly trackHistory?: boolean | undefined;
3340
3408
  readonly group?: string | undefined;
3341
3409
  readonly conditionalRequired?: undefined;
3410
+ readonly widget?: string | undefined;
3342
3411
  readonly internal?: boolean | undefined;
3343
3412
  readonly requiredPermissions?: string[] | undefined;
3344
3413
  readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
@@ -3359,6 +3428,7 @@ declare const SysWebhook: Omit<{
3359
3428
  options: {
3360
3429
  label: string;
3361
3430
  value: string;
3431
+ description?: string | undefined;
3362
3432
  color?: string | undefined;
3363
3433
  default?: boolean | undefined;
3364
3434
  visibleWhen?: string | {
@@ -3372,16 +3442,10 @@ declare const SysWebhook: Omit<{
3372
3442
  } | undefined;
3373
3443
  }[];
3374
3444
  readonly description?: string | undefined;
3375
- readonly label?: string | undefined;
3376
- readonly name?: string | undefined;
3377
- readonly precision?: number | undefined;
3378
- readonly required?: boolean | undefined;
3379
- readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
3380
- readonly widget?: string | undefined;
3381
- readonly multiple?: boolean | undefined;
3382
3445
  readonly storage?: {
3383
3446
  notNull?: boolean | undefined;
3384
3447
  } | undefined;
3448
+ readonly required?: boolean | undefined;
3385
3449
  readonly visibleWhen?: string | {
3386
3450
  dialect: "cel" | "cron" | "template";
3387
3451
  source?: string | undefined;
@@ -3400,16 +3464,17 @@ declare const SysWebhook: Omit<{
3400
3464
  generatedBy?: string | undefined;
3401
3465
  } | undefined;
3402
3466
  } | undefined;
3403
- readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
3467
+ readonly _lock?: "none" | "no-overlay" | "no-delete" | "full" | undefined;
3404
3468
  readonly _lockReason?: string | undefined;
3405
3469
  readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
3406
3470
  readonly _lockDocsUrl?: string | undefined;
3407
3471
  readonly _provenance?: "package" | "env-forced" | "org" | undefined;
3408
3472
  readonly _packageId?: string | undefined;
3409
3473
  readonly _packageVersion?: string | undefined;
3474
+ readonly name?: string | undefined;
3410
3475
  readonly lookupFilters?: {
3411
3476
  field: string;
3412
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
3477
+ operator: "in" | "gt" | "gte" | "lt" | "lte" | "eq" | "ne" | "contains" | "notIn";
3413
3478
  value: any;
3414
3479
  }[] | undefined;
3415
3480
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
@@ -3431,9 +3496,12 @@ declare const SysWebhook: Omit<{
3431
3496
  filter?: _objectstack_spec_data.FilterCondition | undefined;
3432
3497
  } | undefined;
3433
3498
  readonly reference?: string | undefined;
3499
+ readonly label?: string | undefined;
3500
+ readonly precision?: number | undefined;
3434
3501
  readonly scale?: number | undefined;
3435
3502
  readonly step?: number | undefined;
3436
3503
  readonly displayField?: string | undefined;
3504
+ readonly multiple?: boolean | undefined;
3437
3505
  readonly accept?: string[] | undefined;
3438
3506
  readonly requiredWhen?: string | {
3439
3507
  dialect: "cel" | "cron" | "template";
@@ -3450,10 +3518,13 @@ declare const SysWebhook: Omit<{
3450
3518
  readonly defaultValue?: unknown;
3451
3519
  readonly maxLength?: number | undefined;
3452
3520
  readonly minLength?: number | undefined;
3521
+ readonly valueDomain?: "iana_time_zone" | "iso_4217_currency" | "iso_3166_alpha2" | undefined;
3522
+ readonly rows?: number | undefined;
3453
3523
  readonly min?: number | undefined;
3454
3524
  readonly max?: number | undefined;
3455
3525
  readonly useGrouping?: boolean | undefined;
3456
3526
  readonly maxSize?: number | undefined;
3527
+ readonly referenceVia?: string | undefined;
3457
3528
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3458
3529
  readonly inlineTitle?: string | undefined;
3459
3530
  readonly inlineColumns?: {
@@ -3515,6 +3586,7 @@ declare const SysWebhook: Omit<{
3515
3586
  param?: string | undefined;
3516
3587
  })[] | undefined;
3517
3588
  readonly allowCreate?: boolean | undefined;
3589
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
3518
3590
  readonly language?: string | undefined;
3519
3591
  readonly currencyConfig?: {
3520
3592
  precision?: number | undefined;
@@ -3525,6 +3597,7 @@ declare const SysWebhook: Omit<{
3525
3597
  readonly trackHistory?: boolean | undefined;
3526
3598
  readonly group?: string | undefined;
3527
3599
  readonly conditionalRequired?: undefined;
3600
+ readonly widget?: string | undefined;
3528
3601
  readonly internal?: boolean | undefined;
3529
3602
  readonly requiredPermissions?: string[] | undefined;
3530
3603
  readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
@@ -3545,6 +3618,7 @@ declare const SysWebhook: Omit<{
3545
3618
  readonly options?: {
3546
3619
  label: string;
3547
3620
  value: string;
3621
+ description?: string | undefined;
3548
3622
  color?: string | undefined;
3549
3623
  default?: boolean | undefined;
3550
3624
  visibleWhen?: string | {
@@ -3558,16 +3632,10 @@ declare const SysWebhook: Omit<{
3558
3632
  } | undefined;
3559
3633
  }[] | undefined;
3560
3634
  readonly description?: string | undefined;
3561
- readonly label?: string | undefined;
3562
- readonly name?: string | undefined;
3563
- readonly precision?: number | undefined;
3564
- readonly required?: boolean | undefined;
3565
- readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
3566
- readonly widget?: string | undefined;
3567
- readonly multiple?: boolean | undefined;
3568
3635
  readonly storage?: {
3569
3636
  notNull?: boolean | undefined;
3570
3637
  } | undefined;
3638
+ readonly required?: boolean | undefined;
3571
3639
  readonly visibleWhen?: string | {
3572
3640
  dialect: "cel" | "cron" | "template";
3573
3641
  source?: string | undefined;
@@ -3586,16 +3654,17 @@ declare const SysWebhook: Omit<{
3586
3654
  generatedBy?: string | undefined;
3587
3655
  } | undefined;
3588
3656
  } | undefined;
3589
- readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
3657
+ readonly _lock?: "none" | "no-overlay" | "no-delete" | "full" | undefined;
3590
3658
  readonly _lockReason?: string | undefined;
3591
3659
  readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
3592
3660
  readonly _lockDocsUrl?: string | undefined;
3593
3661
  readonly _provenance?: "package" | "env-forced" | "org" | undefined;
3594
3662
  readonly _packageId?: string | undefined;
3595
3663
  readonly _packageVersion?: string | undefined;
3664
+ readonly name?: string | undefined;
3596
3665
  readonly lookupFilters?: {
3597
3666
  field: string;
3598
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
3667
+ operator: "in" | "gt" | "gte" | "lt" | "lte" | "eq" | "ne" | "contains" | "notIn";
3599
3668
  value: any;
3600
3669
  }[] | undefined;
3601
3670
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
@@ -3617,9 +3686,12 @@ declare const SysWebhook: Omit<{
3617
3686
  filter?: _objectstack_spec_data.FilterCondition | undefined;
3618
3687
  } | undefined;
3619
3688
  readonly reference?: string | undefined;
3689
+ readonly label?: string | undefined;
3690
+ readonly precision?: number | undefined;
3620
3691
  readonly scale?: number | undefined;
3621
3692
  readonly step?: number | undefined;
3622
3693
  readonly displayField?: string | undefined;
3694
+ readonly multiple?: boolean | undefined;
3623
3695
  readonly accept?: string[] | undefined;
3624
3696
  readonly requiredWhen?: string | {
3625
3697
  dialect: "cel" | "cron" | "template";
@@ -3636,10 +3708,13 @@ declare const SysWebhook: Omit<{
3636
3708
  readonly defaultValue?: unknown;
3637
3709
  readonly maxLength?: number | undefined;
3638
3710
  readonly minLength?: number | undefined;
3711
+ readonly valueDomain?: "iana_time_zone" | "iso_4217_currency" | "iso_3166_alpha2" | undefined;
3712
+ readonly rows?: number | undefined;
3639
3713
  readonly min?: number | undefined;
3640
3714
  readonly max?: number | undefined;
3641
3715
  readonly useGrouping?: boolean | undefined;
3642
3716
  readonly maxSize?: number | undefined;
3717
+ readonly referenceVia?: string | undefined;
3643
3718
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3644
3719
  readonly inlineTitle?: string | undefined;
3645
3720
  readonly inlineColumns?: {
@@ -3701,6 +3776,7 @@ declare const SysWebhook: Omit<{
3701
3776
  param?: string | undefined;
3702
3777
  })[] | undefined;
3703
3778
  readonly allowCreate?: boolean | undefined;
3779
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
3704
3780
  readonly language?: string | undefined;
3705
3781
  readonly currencyConfig?: {
3706
3782
  precision?: number | undefined;
@@ -3711,6 +3787,7 @@ declare const SysWebhook: Omit<{
3711
3787
  readonly trackHistory?: boolean | undefined;
3712
3788
  readonly group?: string | undefined;
3713
3789
  readonly conditionalRequired?: undefined;
3790
+ readonly widget?: string | undefined;
3714
3791
  readonly internal?: boolean | undefined;
3715
3792
  readonly requiredPermissions?: string[] | undefined;
3716
3793
  readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
@@ -3731,6 +3808,7 @@ declare const SysWebhook: Omit<{
3731
3808
  readonly options?: {
3732
3809
  label: string;
3733
3810
  value: string;
3811
+ description?: string | undefined;
3734
3812
  color?: string | undefined;
3735
3813
  default?: boolean | undefined;
3736
3814
  visibleWhen?: string | {
@@ -3744,16 +3822,10 @@ declare const SysWebhook: Omit<{
3744
3822
  } | undefined;
3745
3823
  }[] | undefined;
3746
3824
  readonly description?: string | undefined;
3747
- readonly label?: string | undefined;
3748
- readonly name?: string | undefined;
3749
- readonly precision?: number | undefined;
3750
- readonly required?: boolean | undefined;
3751
- readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
3752
- readonly widget?: string | undefined;
3753
- readonly multiple?: boolean | undefined;
3754
3825
  readonly storage?: {
3755
3826
  notNull?: boolean | undefined;
3756
3827
  } | undefined;
3828
+ readonly required?: boolean | undefined;
3757
3829
  readonly visibleWhen?: string | {
3758
3830
  dialect: "cel" | "cron" | "template";
3759
3831
  source?: string | undefined;
@@ -3772,16 +3844,17 @@ declare const SysWebhook: Omit<{
3772
3844
  generatedBy?: string | undefined;
3773
3845
  } | undefined;
3774
3846
  } | undefined;
3775
- readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
3847
+ readonly _lock?: "none" | "no-overlay" | "no-delete" | "full" | undefined;
3776
3848
  readonly _lockReason?: string | undefined;
3777
3849
  readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
3778
3850
  readonly _lockDocsUrl?: string | undefined;
3779
3851
  readonly _provenance?: "package" | "env-forced" | "org" | undefined;
3780
3852
  readonly _packageId?: string | undefined;
3781
3853
  readonly _packageVersion?: string | undefined;
3854
+ readonly name?: string | undefined;
3782
3855
  readonly lookupFilters?: {
3783
3856
  field: string;
3784
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
3857
+ operator: "in" | "gt" | "gte" | "lt" | "lte" | "eq" | "ne" | "contains" | "notIn";
3785
3858
  value: any;
3786
3859
  }[] | undefined;
3787
3860
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
@@ -3803,9 +3876,12 @@ declare const SysWebhook: Omit<{
3803
3876
  filter?: _objectstack_spec_data.FilterCondition | undefined;
3804
3877
  } | undefined;
3805
3878
  readonly reference?: string | undefined;
3879
+ readonly label?: string | undefined;
3880
+ readonly precision?: number | undefined;
3806
3881
  readonly scale?: number | undefined;
3807
3882
  readonly step?: number | undefined;
3808
3883
  readonly displayField?: string | undefined;
3884
+ readonly multiple?: boolean | undefined;
3809
3885
  readonly accept?: string[] | undefined;
3810
3886
  readonly requiredWhen?: string | {
3811
3887
  dialect: "cel" | "cron" | "template";
@@ -3822,10 +3898,13 @@ declare const SysWebhook: Omit<{
3822
3898
  readonly defaultValue?: unknown;
3823
3899
  readonly maxLength?: number | undefined;
3824
3900
  readonly minLength?: number | undefined;
3901
+ readonly valueDomain?: "iana_time_zone" | "iso_4217_currency" | "iso_3166_alpha2" | undefined;
3902
+ readonly rows?: number | undefined;
3825
3903
  readonly min?: number | undefined;
3826
3904
  readonly max?: number | undefined;
3827
3905
  readonly useGrouping?: boolean | undefined;
3828
3906
  readonly maxSize?: number | undefined;
3907
+ readonly referenceVia?: string | undefined;
3829
3908
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3830
3909
  readonly inlineTitle?: string | undefined;
3831
3910
  readonly inlineColumns?: {
@@ -3887,6 +3966,7 @@ declare const SysWebhook: Omit<{
3887
3966
  param?: string | undefined;
3888
3967
  })[] | undefined;
3889
3968
  readonly allowCreate?: boolean | undefined;
3969
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
3890
3970
  readonly language?: string | undefined;
3891
3971
  readonly currencyConfig?: {
3892
3972
  precision?: number | undefined;
@@ -3897,6 +3977,7 @@ declare const SysWebhook: Omit<{
3897
3977
  readonly trackHistory?: boolean | undefined;
3898
3978
  readonly group?: string | undefined;
3899
3979
  readonly conditionalRequired?: undefined;
3980
+ readonly widget?: string | undefined;
3900
3981
  readonly internal?: boolean | undefined;
3901
3982
  readonly requiredPermissions?: string[] | undefined;
3902
3983
  readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {
@@ -3917,6 +3998,7 @@ declare const SysWebhook: Omit<{
3917
3998
  readonly options?: {
3918
3999
  label: string;
3919
4000
  value: string;
4001
+ description?: string | undefined;
3920
4002
  color?: string | undefined;
3921
4003
  default?: boolean | undefined;
3922
4004
  visibleWhen?: string | {
@@ -3930,16 +4012,10 @@ declare const SysWebhook: Omit<{
3930
4012
  } | undefined;
3931
4013
  }[] | undefined;
3932
4014
  readonly description?: string | undefined;
3933
- readonly label?: string | undefined;
3934
- readonly name?: string | undefined;
3935
- readonly precision?: number | undefined;
3936
- readonly required?: boolean | undefined;
3937
- readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
3938
- readonly widget?: string | undefined;
3939
- readonly multiple?: boolean | undefined;
3940
4015
  readonly storage?: {
3941
4016
  notNull?: boolean | undefined;
3942
4017
  } | undefined;
4018
+ readonly required?: boolean | undefined;
3943
4019
  readonly visibleWhen?: string | {
3944
4020
  dialect: "cel" | "cron" | "template";
3945
4021
  source?: string | undefined;
@@ -3958,16 +4034,17 @@ declare const SysWebhook: Omit<{
3958
4034
  generatedBy?: string | undefined;
3959
4035
  } | undefined;
3960
4036
  } | undefined;
3961
- readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
4037
+ readonly _lock?: "none" | "no-overlay" | "no-delete" | "full" | undefined;
3962
4038
  readonly _lockReason?: string | undefined;
3963
4039
  readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
3964
4040
  readonly _lockDocsUrl?: string | undefined;
3965
4041
  readonly _provenance?: "package" | "env-forced" | "org" | undefined;
3966
4042
  readonly _packageId?: string | undefined;
3967
4043
  readonly _packageVersion?: string | undefined;
4044
+ readonly name?: string | undefined;
3968
4045
  readonly lookupFilters?: {
3969
4046
  field: string;
3970
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
4047
+ operator: "in" | "gt" | "gte" | "lt" | "lte" | "eq" | "ne" | "contains" | "notIn";
3971
4048
  value: any;
3972
4049
  }[] | undefined;
3973
4050
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
@@ -3989,9 +4066,12 @@ declare const SysWebhook: Omit<{
3989
4066
  filter?: _objectstack_spec_data.FilterCondition | undefined;
3990
4067
  } | undefined;
3991
4068
  readonly reference?: string | undefined;
4069
+ readonly label?: string | undefined;
4070
+ readonly precision?: number | undefined;
3992
4071
  readonly scale?: number | undefined;
3993
4072
  readonly step?: number | undefined;
3994
4073
  readonly displayField?: string | undefined;
4074
+ readonly multiple?: boolean | undefined;
3995
4075
  readonly accept?: string[] | undefined;
3996
4076
  readonly requiredWhen?: string | {
3997
4077
  dialect: "cel" | "cron" | "template";
@@ -4008,10 +4088,13 @@ declare const SysWebhook: Omit<{
4008
4088
  readonly defaultValue?: unknown;
4009
4089
  readonly maxLength?: number | undefined;
4010
4090
  readonly minLength?: number | undefined;
4091
+ readonly valueDomain?: "iana_time_zone" | "iso_4217_currency" | "iso_3166_alpha2" | undefined;
4092
+ readonly rows?: number | undefined;
4011
4093
  readonly min?: number | undefined;
4012
4094
  readonly max?: number | undefined;
4013
4095
  readonly useGrouping?: boolean | undefined;
4014
4096
  readonly maxSize?: number | undefined;
4097
+ readonly referenceVia?: string | undefined;
4015
4098
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
4016
4099
  readonly inlineTitle?: string | undefined;
4017
4100
  readonly inlineColumns?: {
@@ -4073,6 +4156,7 @@ declare const SysWebhook: Omit<{
4073
4156
  param?: string | undefined;
4074
4157
  })[] | undefined;
4075
4158
  readonly allowCreate?: boolean | undefined;
4159
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
4076
4160
  readonly language?: string | undefined;
4077
4161
  readonly currencyConfig?: {
4078
4162
  precision?: number | undefined;
@@ -4083,6 +4167,7 @@ declare const SysWebhook: Omit<{
4083
4167
  readonly trackHistory?: boolean | undefined;
4084
4168
  readonly group?: string | undefined;
4085
4169
  readonly conditionalRequired?: undefined;
4170
+ readonly widget?: string | undefined;
4086
4171
  readonly internal?: boolean | undefined;
4087
4172
  readonly requiredPermissions?: string[] | undefined;
4088
4173
  readonly maskingRule?: "name" | "email" | "phone" | "id_card" | "bank_account" | {