@objectstack/plugin-webhooks 17.0.0-rc.1 → 17.0.0-rc.3

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
@@ -39,7 +39,7 @@ declare const SysWebhook: Omit<{
39
39
  isSystem: boolean;
40
40
  datasource: string;
41
41
  fields: Record<string, {
42
- type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "secret" | "user" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "percent" | "text" | "textarea" | "phone" | "password" | "markdown" | "html" | "richtext" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector";
42
+ type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "secret" | "user" | "code" | "datetime" | "signature" | "progress" | "url" | "formula" | "text" | "textarea" | "phone" | "password" | "markdown" | "html" | "richtext" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector";
43
43
  required: boolean;
44
44
  searchable: boolean;
45
45
  multiple: boolean;
@@ -49,6 +49,13 @@ declare const SysWebhook: Omit<{
49
49
  readonly: boolean;
50
50
  sortable: boolean;
51
51
  externalId: boolean;
52
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
53
+ _lockReason?: string | undefined;
54
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
55
+ _provenance?: "package" | "env-forced" | "org" | undefined;
56
+ _packageId?: string | undefined;
57
+ _packageVersion?: string | undefined;
58
+ _lockDocsUrl?: string | undefined;
52
59
  name?: string | undefined;
53
60
  label?: string | undefined;
54
61
  description?: string | undefined;
@@ -220,7 +227,7 @@ declare const SysWebhook: Omit<{
220
227
  pluralLabel?: string | undefined;
221
228
  description?: string | undefined;
222
229
  icon?: string | undefined;
223
- managedBy?: "system" | "platform" | "config" | "engine-owned" | "append-only" | "better-auth" | undefined;
230
+ managedBy?: "platform" | "config" | "system-data" | "engine-owned" | "append-only" | "better-auth" | undefined;
224
231
  ownership?: "none" | "org" | "user" | undefined;
225
232
  userActions?: {
226
233
  create?: boolean | undefined;
@@ -315,7 +322,7 @@ declare const SysWebhook: Omit<{
315
322
  } | undefined;
316
323
  indexes?: {
317
324
  fields: string[];
318
- type: "hash" | "fulltext" | "btree" | "gin" | "gist";
325
+ type: "hash" | "btree" | "gin" | "gist" | "fulltext";
319
326
  unique: boolean | "global";
320
327
  name?: string | undefined;
321
328
  partial?: string | undefined;
@@ -440,6 +447,33 @@ declare const SysWebhook: Omit<{
440
447
  defaultExpandedDepth?: number | undefined;
441
448
  } | undefined;
442
449
  inlineEdit?: boolean | undefined;
450
+ data?: {
451
+ provider: "object";
452
+ object: string;
453
+ } | {
454
+ provider: "api";
455
+ read?: {
456
+ url: string;
457
+ method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
458
+ headers?: Record<string, string> | undefined;
459
+ params?: Record<string, unknown> | undefined;
460
+ body?: unknown;
461
+ } | undefined;
462
+ write?: {
463
+ url: string;
464
+ method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
465
+ headers?: Record<string, string> | undefined;
466
+ params?: Record<string, unknown> | undefined;
467
+ body?: unknown;
468
+ } | undefined;
469
+ } | {
470
+ provider: "value";
471
+ items: unknown[];
472
+ } | {
473
+ provider: "schema";
474
+ schemaId: string;
475
+ schema?: Record<string, unknown> | undefined;
476
+ } | undefined;
443
477
  navigation?: {
444
478
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
445
479
  preventNavigation: boolean;
@@ -472,44 +506,27 @@ declare const SysWebhook: Omit<{
472
506
  }[] | undefined;
473
507
  order?: number | undefined;
474
508
  }[] | undefined;
475
- data?: {
476
- provider: "object";
477
- object: string;
478
- } | {
479
- provider: "api";
480
- read?: {
481
- url: string;
482
- method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
483
- headers?: Record<string, string> | undefined;
484
- params?: Record<string, unknown> | undefined;
485
- body?: unknown;
486
- } | undefined;
487
- write?: {
488
- url: string;
489
- method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
490
- headers?: Record<string, string> | undefined;
491
- params?: Record<string, unknown> | undefined;
492
- body?: unknown;
493
- } | undefined;
494
- } | {
495
- provider: "value";
496
- items: unknown[];
497
- } | {
498
- provider: "schema";
499
- schemaId: string;
500
- schema?: Record<string, unknown> | undefined;
501
- } | undefined;
502
- pagination?: {
503
- pageSize: number;
504
- pageSizeOptions?: number[] | undefined;
505
- } | undefined;
506
509
  emptyState?: {
507
510
  title?: string | undefined;
508
511
  message?: string | undefined;
509
512
  icon?: string | undefined;
510
513
  } | undefined;
514
+ userActions?: {
515
+ sort: boolean;
516
+ search: boolean;
517
+ filter: boolean;
518
+ refresh: boolean;
519
+ rowHeight: boolean;
520
+ addRecordForm: boolean;
521
+ editInline: boolean;
522
+ buttons?: string[] | undefined;
523
+ } | undefined;
511
524
  responsive?: undefined;
512
525
  performance?: undefined;
526
+ appearance?: {
527
+ showDescription: boolean;
528
+ allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
529
+ } | undefined;
513
530
  resizable?: boolean | undefined;
514
531
  kanban?: {
515
532
  groupByField: string;
@@ -583,6 +600,10 @@ declare const SysWebhook: Omit<{
583
600
  selection?: {
584
601
  type: "none" | "multiple" | "single";
585
602
  } | undefined;
603
+ pagination?: {
604
+ pageSize: number;
605
+ pageSizeOptions?: number[] | undefined;
606
+ } | undefined;
586
607
  grouping?: {
587
608
  fields: {
588
609
  field: string;
@@ -598,7 +619,54 @@ declare const SysWebhook: Omit<{
598
619
  fieldOrder?: string[] | undefined;
599
620
  rowActions?: string[] | undefined;
600
621
  bulkActions?: string[] | undefined;
601
- bulkActionDefs?: Record<string, any>[] | undefined;
622
+ bulkActionDefs?: {
623
+ name: string;
624
+ operation: "delete" | "update" | "custom";
625
+ label?: string | undefined;
626
+ icon?: string | undefined;
627
+ variant?: "primary" | "secondary" | "outline" | "danger" | "ghost" | undefined;
628
+ execution?: "aggregate" | "perRecord" | undefined;
629
+ patch?: Record<string, unknown> | undefined;
630
+ params?: {
631
+ [x: string]: unknown;
632
+ name: string;
633
+ type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "secret" | "user" | "code" | "datetime" | "signature" | "progress" | "url" | "formula" | "text" | "textarea" | "phone" | "password" | "markdown" | "html" | "richtext" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector";
634
+ label?: string | undefined;
635
+ help?: string | undefined;
636
+ required?: boolean | undefined;
637
+ default?: unknown;
638
+ options?: {
639
+ [x: string]: unknown;
640
+ label: string;
641
+ value: string | number | boolean;
642
+ }[] | undefined;
643
+ object?: string | undefined;
644
+ labelField?: string | undefined;
645
+ multiple?: boolean | undefined;
646
+ placeholder?: string | undefined;
647
+ }[] | undefined;
648
+ confirmText?: string | undefined;
649
+ confirmLabel?: string | undefined;
650
+ visible?: {
651
+ dialect: "cel" | "cron" | "template";
652
+ source?: string | undefined;
653
+ ast?: unknown;
654
+ meta?: {
655
+ rationale?: string | undefined;
656
+ generatedBy?: string | undefined;
657
+ } | undefined;
658
+ } | {
659
+ dialect: "cel" | "cron" | "template";
660
+ source?: string | undefined;
661
+ ast?: unknown;
662
+ meta?: {
663
+ rationale?: string | undefined;
664
+ generatedBy?: string | undefined;
665
+ } | undefined;
666
+ } | undefined;
667
+ maxRecords?: number | undefined;
668
+ batchSize?: number | undefined;
669
+ }[] | undefined;
602
670
  virtualScroll?: boolean | undefined;
603
671
  conditionalFormatting?: {
604
672
  condition: {
@@ -621,20 +689,6 @@ declare const SysWebhook: Omit<{
621
689
  style: Record<string, string>;
622
690
  }[] | undefined;
623
691
  exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
624
- userActions?: {
625
- sort: boolean;
626
- search: boolean;
627
- filter: boolean;
628
- refresh: boolean;
629
- rowHeight: boolean;
630
- addRecordForm: boolean;
631
- editInline: boolean;
632
- buttons?: string[] | undefined;
633
- } | undefined;
634
- appearance?: {
635
- showDescription: boolean;
636
- allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
637
- } | undefined;
638
692
  addRecord?: {
639
693
  enabled: boolean;
640
694
  position: "top" | "bottom" | "both";
@@ -668,7 +722,7 @@ declare const SysWebhook: Omit<{
668
722
  feeds: boolean;
669
723
  activities: boolean;
670
724
  clone: boolean;
671
- apiMethods?: ("create" | "update" | "delete" | "get" | "list" | "bulk")[] | undefined;
725
+ apiMethods?: ("delete" | "update" | "create" | "get" | "list" | "bulk")[] | undefined;
672
726
  } | undefined;
673
727
  sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
674
728
  externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
@@ -685,6 +739,13 @@ declare const SysWebhook: Omit<{
685
739
  label: string;
686
740
  type: "url" | "form" | "script" | "flow" | "api" | "modal";
687
741
  refreshAfter: boolean;
742
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
743
+ _lockReason?: string | undefined;
744
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
745
+ _provenance?: "package" | "env-forced" | "org" | undefined;
746
+ _packageId?: string | undefined;
747
+ _packageVersion?: string | undefined;
748
+ _lockDocsUrl?: string | undefined;
688
749
  objectName?: string | undefined;
689
750
  icon?: string | undefined;
690
751
  locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
@@ -697,7 +758,7 @@ declare const SysWebhook: Omit<{
697
758
  } | {
698
759
  language: "js";
699
760
  source: string;
700
- capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
761
+ capabilities: ("crypto.uuid" | "api.read" | "api.write" | "api.transaction" | "log")[];
701
762
  timeoutMs?: number | undefined;
702
763
  memoryMb?: number | undefined;
703
764
  } | undefined;
@@ -708,7 +769,7 @@ declare const SysWebhook: Omit<{
708
769
  field?: string | undefined;
709
770
  objectOverride?: string | undefined;
710
771
  label?: string | undefined;
711
- type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "text" | "textarea" | "email" | "phone" | "password" | "secret" | "markdown" | "html" | "richtext" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "user" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
772
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "formula" | "text" | "textarea" | "email" | "phone" | "password" | "secret" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "user" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
712
773
  options?: {
713
774
  label: string;
714
775
  value: string;
@@ -943,8 +1004,36 @@ declare const SysWebhook: Omit<{
943
1004
  notNull?: boolean | undefined;
944
1005
  } | undefined;
945
1006
  readonly maxSize?: number | undefined;
946
- readonly externalId?: boolean | undefined;
947
- readonly defaultValue?: unknown;
1007
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
1008
+ readonly _lockReason?: string | undefined;
1009
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
1010
+ readonly _lockDocsUrl?: string | undefined;
1011
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
1012
+ readonly _packageId?: string | undefined;
1013
+ readonly _packageVersion?: string | undefined;
1014
+ readonly lookupFilters?: {
1015
+ field: string;
1016
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1017
+ value: any;
1018
+ }[] | undefined;
1019
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1020
+ readonly expression?: {
1021
+ dialect: "cel" | "cron" | "template";
1022
+ source?: string | undefined;
1023
+ ast?: unknown;
1024
+ meta?: {
1025
+ rationale?: string | undefined;
1026
+ generatedBy?: string | undefined;
1027
+ } | undefined;
1028
+ } | undefined;
1029
+ readonly autonumberFormat?: string | undefined;
1030
+ readonly summaryOperations?: {
1031
+ object: string;
1032
+ field: string;
1033
+ function: "min" | "max" | "count" | "sum" | "avg";
1034
+ relationshipField?: string | undefined;
1035
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
1036
+ } | undefined;
948
1037
  readonly visibleWhen?: {
949
1038
  dialect: "cel" | "cron" | "template";
950
1039
  source?: string | undefined;
@@ -954,16 +1043,16 @@ declare const SysWebhook: Omit<{
954
1043
  generatedBy?: string | undefined;
955
1044
  } | undefined;
956
1045
  } | undefined;
1046
+ readonly scale?: number | undefined;
957
1047
  readonly searchable?: boolean | undefined;
958
1048
  readonly unique?: boolean | "global" | undefined;
1049
+ readonly defaultValue?: unknown;
959
1050
  readonly maxLength?: number | undefined;
960
1051
  readonly minLength?: number | undefined;
961
- readonly scale?: number | undefined;
962
1052
  readonly min?: number | undefined;
963
1053
  readonly max?: number | undefined;
964
1054
  readonly accept?: string[] | undefined;
965
1055
  readonly reference?: string | undefined;
966
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
967
1056
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
968
1057
  readonly inlineTitle?: string | undefined;
969
1058
  readonly inlineColumns?: any[] | undefined;
@@ -980,32 +1069,11 @@ declare const SysWebhook: Omit<{
980
1069
  type?: string | undefined;
981
1070
  })[] | undefined;
982
1071
  readonly lookupPageSize?: number | undefined;
983
- readonly lookupFilters?: {
984
- field: string;
985
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
986
- value: any;
987
- }[] | undefined;
988
1072
  readonly dependsOn?: (string | {
989
1073
  field: string;
990
1074
  param?: string | undefined;
991
1075
  })[] | undefined;
992
1076
  readonly allowCreate?: boolean | undefined;
993
- readonly expression?: {
994
- dialect: "cel" | "cron" | "template";
995
- source?: string | undefined;
996
- ast?: unknown;
997
- meta?: {
998
- rationale?: string | undefined;
999
- generatedBy?: string | undefined;
1000
- } | undefined;
1001
- } | undefined;
1002
- readonly summaryOperations?: {
1003
- object: string;
1004
- field: string;
1005
- function: "min" | "max" | "count" | "sum" | "avg";
1006
- relationshipField?: string | undefined;
1007
- filter?: _objectstack_spec_data.FilterCondition | undefined;
1008
- } | undefined;
1009
1077
  readonly language?: string | undefined;
1010
1078
  readonly step?: number | undefined;
1011
1079
  readonly currencyConfig?: {
@@ -1041,7 +1109,7 @@ declare const SysWebhook: Omit<{
1041
1109
  readonly system?: boolean | undefined;
1042
1110
  readonly sortable?: boolean | undefined;
1043
1111
  readonly inlineHelpText?: string | undefined;
1044
- readonly autonumberFormat?: string | undefined;
1112
+ readonly externalId?: boolean | undefined;
1045
1113
  readonly type: "text";
1046
1114
  };
1047
1115
  readonly name: {
@@ -1074,8 +1142,36 @@ declare const SysWebhook: Omit<{
1074
1142
  notNull?: boolean | undefined;
1075
1143
  } | undefined;
1076
1144
  readonly maxSize?: number | undefined;
1077
- readonly externalId?: boolean | undefined;
1078
- readonly defaultValue?: unknown;
1145
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
1146
+ readonly _lockReason?: string | undefined;
1147
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
1148
+ readonly _lockDocsUrl?: string | undefined;
1149
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
1150
+ readonly _packageId?: string | undefined;
1151
+ readonly _packageVersion?: string | undefined;
1152
+ readonly lookupFilters?: {
1153
+ field: string;
1154
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1155
+ value: any;
1156
+ }[] | undefined;
1157
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1158
+ readonly expression?: {
1159
+ dialect: "cel" | "cron" | "template";
1160
+ source?: string | undefined;
1161
+ ast?: unknown;
1162
+ meta?: {
1163
+ rationale?: string | undefined;
1164
+ generatedBy?: string | undefined;
1165
+ } | undefined;
1166
+ } | undefined;
1167
+ readonly autonumberFormat?: string | undefined;
1168
+ readonly summaryOperations?: {
1169
+ object: string;
1170
+ field: string;
1171
+ function: "min" | "max" | "count" | "sum" | "avg";
1172
+ relationshipField?: string | undefined;
1173
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
1174
+ } | undefined;
1079
1175
  readonly visibleWhen?: {
1080
1176
  dialect: "cel" | "cron" | "template";
1081
1177
  source?: string | undefined;
@@ -1085,16 +1181,16 @@ declare const SysWebhook: Omit<{
1085
1181
  generatedBy?: string | undefined;
1086
1182
  } | undefined;
1087
1183
  } | undefined;
1184
+ readonly scale?: number | undefined;
1088
1185
  readonly searchable?: boolean | undefined;
1089
1186
  readonly unique?: boolean | "global" | undefined;
1187
+ readonly defaultValue?: unknown;
1090
1188
  readonly maxLength?: number | undefined;
1091
1189
  readonly minLength?: number | undefined;
1092
- readonly scale?: number | undefined;
1093
1190
  readonly min?: number | undefined;
1094
1191
  readonly max?: number | undefined;
1095
1192
  readonly accept?: string[] | undefined;
1096
1193
  readonly reference?: string | undefined;
1097
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1098
1194
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1099
1195
  readonly inlineTitle?: string | undefined;
1100
1196
  readonly inlineColumns?: any[] | undefined;
@@ -1111,32 +1207,11 @@ declare const SysWebhook: Omit<{
1111
1207
  type?: string | undefined;
1112
1208
  })[] | undefined;
1113
1209
  readonly lookupPageSize?: number | undefined;
1114
- readonly lookupFilters?: {
1115
- field: string;
1116
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1117
- value: any;
1118
- }[] | undefined;
1119
1210
  readonly dependsOn?: (string | {
1120
1211
  field: string;
1121
1212
  param?: string | undefined;
1122
1213
  })[] | undefined;
1123
1214
  readonly allowCreate?: boolean | undefined;
1124
- readonly expression?: {
1125
- dialect: "cel" | "cron" | "template";
1126
- source?: string | undefined;
1127
- ast?: unknown;
1128
- meta?: {
1129
- rationale?: string | undefined;
1130
- generatedBy?: string | undefined;
1131
- } | undefined;
1132
- } | undefined;
1133
- readonly summaryOperations?: {
1134
- object: string;
1135
- field: string;
1136
- function: "min" | "max" | "count" | "sum" | "avg";
1137
- relationshipField?: string | undefined;
1138
- filter?: _objectstack_spec_data.FilterCondition | undefined;
1139
- } | undefined;
1140
1215
  readonly language?: string | undefined;
1141
1216
  readonly step?: number | undefined;
1142
1217
  readonly currencyConfig?: {
@@ -1172,7 +1247,7 @@ declare const SysWebhook: Omit<{
1172
1247
  readonly system?: boolean | undefined;
1173
1248
  readonly sortable?: boolean | undefined;
1174
1249
  readonly inlineHelpText?: string | undefined;
1175
- readonly autonumberFormat?: string | undefined;
1250
+ readonly externalId?: boolean | undefined;
1176
1251
  readonly type: "text";
1177
1252
  };
1178
1253
  readonly label: {
@@ -1205,8 +1280,36 @@ declare const SysWebhook: Omit<{
1205
1280
  notNull?: boolean | undefined;
1206
1281
  } | undefined;
1207
1282
  readonly maxSize?: number | undefined;
1208
- readonly externalId?: boolean | undefined;
1209
- readonly defaultValue?: unknown;
1283
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
1284
+ readonly _lockReason?: string | undefined;
1285
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
1286
+ readonly _lockDocsUrl?: string | undefined;
1287
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
1288
+ readonly _packageId?: string | undefined;
1289
+ readonly _packageVersion?: string | undefined;
1290
+ readonly lookupFilters?: {
1291
+ field: string;
1292
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1293
+ value: any;
1294
+ }[] | undefined;
1295
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1296
+ readonly expression?: {
1297
+ dialect: "cel" | "cron" | "template";
1298
+ source?: string | undefined;
1299
+ ast?: unknown;
1300
+ meta?: {
1301
+ rationale?: string | undefined;
1302
+ generatedBy?: string | undefined;
1303
+ } | undefined;
1304
+ } | undefined;
1305
+ readonly autonumberFormat?: string | undefined;
1306
+ readonly summaryOperations?: {
1307
+ object: string;
1308
+ field: string;
1309
+ function: "min" | "max" | "count" | "sum" | "avg";
1310
+ relationshipField?: string | undefined;
1311
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
1312
+ } | undefined;
1210
1313
  readonly visibleWhen?: {
1211
1314
  dialect: "cel" | "cron" | "template";
1212
1315
  source?: string | undefined;
@@ -1216,16 +1319,16 @@ declare const SysWebhook: Omit<{
1216
1319
  generatedBy?: string | undefined;
1217
1320
  } | undefined;
1218
1321
  } | undefined;
1322
+ readonly scale?: number | undefined;
1219
1323
  readonly searchable?: boolean | undefined;
1220
1324
  readonly unique?: boolean | "global" | undefined;
1325
+ readonly defaultValue?: unknown;
1221
1326
  readonly maxLength?: number | undefined;
1222
1327
  readonly minLength?: number | undefined;
1223
- readonly scale?: number | undefined;
1224
1328
  readonly min?: number | undefined;
1225
1329
  readonly max?: number | undefined;
1226
1330
  readonly accept?: string[] | undefined;
1227
1331
  readonly reference?: string | undefined;
1228
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1229
1332
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1230
1333
  readonly inlineTitle?: string | undefined;
1231
1334
  readonly inlineColumns?: any[] | undefined;
@@ -1242,32 +1345,11 @@ declare const SysWebhook: Omit<{
1242
1345
  type?: string | undefined;
1243
1346
  })[] | undefined;
1244
1347
  readonly lookupPageSize?: number | undefined;
1245
- readonly lookupFilters?: {
1246
- field: string;
1247
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1248
- value: any;
1249
- }[] | undefined;
1250
1348
  readonly dependsOn?: (string | {
1251
1349
  field: string;
1252
1350
  param?: string | undefined;
1253
1351
  })[] | undefined;
1254
1352
  readonly allowCreate?: boolean | undefined;
1255
- readonly expression?: {
1256
- dialect: "cel" | "cron" | "template";
1257
- source?: string | undefined;
1258
- ast?: unknown;
1259
- meta?: {
1260
- rationale?: string | undefined;
1261
- generatedBy?: string | undefined;
1262
- } | undefined;
1263
- } | undefined;
1264
- readonly summaryOperations?: {
1265
- object: string;
1266
- field: string;
1267
- function: "min" | "max" | "count" | "sum" | "avg";
1268
- relationshipField?: string | undefined;
1269
- filter?: _objectstack_spec_data.FilterCondition | undefined;
1270
- } | undefined;
1271
1353
  readonly language?: string | undefined;
1272
1354
  readonly step?: number | undefined;
1273
1355
  readonly currencyConfig?: {
@@ -1303,7 +1385,7 @@ declare const SysWebhook: Omit<{
1303
1385
  readonly system?: boolean | undefined;
1304
1386
  readonly sortable?: boolean | undefined;
1305
1387
  readonly inlineHelpText?: string | undefined;
1306
- readonly autonumberFormat?: string | undefined;
1388
+ readonly externalId?: boolean | undefined;
1307
1389
  readonly type: "text";
1308
1390
  };
1309
1391
  readonly object_name: {
@@ -1336,8 +1418,36 @@ declare const SysWebhook: Omit<{
1336
1418
  notNull?: boolean | undefined;
1337
1419
  } | undefined;
1338
1420
  readonly maxSize?: number | undefined;
1339
- readonly externalId?: boolean | undefined;
1340
- readonly defaultValue?: unknown;
1421
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
1422
+ readonly _lockReason?: string | undefined;
1423
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
1424
+ readonly _lockDocsUrl?: string | undefined;
1425
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
1426
+ readonly _packageId?: string | undefined;
1427
+ readonly _packageVersion?: string | undefined;
1428
+ readonly lookupFilters?: {
1429
+ field: string;
1430
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1431
+ value: any;
1432
+ }[] | undefined;
1433
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1434
+ readonly expression?: {
1435
+ dialect: "cel" | "cron" | "template";
1436
+ source?: string | undefined;
1437
+ ast?: unknown;
1438
+ meta?: {
1439
+ rationale?: string | undefined;
1440
+ generatedBy?: string | undefined;
1441
+ } | undefined;
1442
+ } | undefined;
1443
+ readonly autonumberFormat?: string | undefined;
1444
+ readonly summaryOperations?: {
1445
+ object: string;
1446
+ field: string;
1447
+ function: "min" | "max" | "count" | "sum" | "avg";
1448
+ relationshipField?: string | undefined;
1449
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
1450
+ } | undefined;
1341
1451
  readonly visibleWhen?: {
1342
1452
  dialect: "cel" | "cron" | "template";
1343
1453
  source?: string | undefined;
@@ -1347,16 +1457,16 @@ declare const SysWebhook: Omit<{
1347
1457
  generatedBy?: string | undefined;
1348
1458
  } | undefined;
1349
1459
  } | undefined;
1460
+ readonly scale?: number | undefined;
1350
1461
  readonly searchable?: boolean | undefined;
1351
1462
  readonly unique?: boolean | "global" | undefined;
1463
+ readonly defaultValue?: unknown;
1352
1464
  readonly maxLength?: number | undefined;
1353
1465
  readonly minLength?: number | undefined;
1354
- readonly scale?: number | undefined;
1355
1466
  readonly min?: number | undefined;
1356
1467
  readonly max?: number | undefined;
1357
1468
  readonly accept?: string[] | undefined;
1358
1469
  readonly reference?: string | undefined;
1359
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1360
1470
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1361
1471
  readonly inlineTitle?: string | undefined;
1362
1472
  readonly inlineColumns?: any[] | undefined;
@@ -1373,32 +1483,11 @@ declare const SysWebhook: Omit<{
1373
1483
  type?: string | undefined;
1374
1484
  })[] | undefined;
1375
1485
  readonly lookupPageSize?: number | undefined;
1376
- readonly lookupFilters?: {
1377
- field: string;
1378
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1379
- value: any;
1380
- }[] | undefined;
1381
1486
  readonly dependsOn?: (string | {
1382
1487
  field: string;
1383
1488
  param?: string | undefined;
1384
1489
  })[] | undefined;
1385
1490
  readonly allowCreate?: boolean | undefined;
1386
- readonly expression?: {
1387
- dialect: "cel" | "cron" | "template";
1388
- source?: string | undefined;
1389
- ast?: unknown;
1390
- meta?: {
1391
- rationale?: string | undefined;
1392
- generatedBy?: string | undefined;
1393
- } | undefined;
1394
- } | undefined;
1395
- readonly summaryOperations?: {
1396
- object: string;
1397
- field: string;
1398
- function: "min" | "max" | "count" | "sum" | "avg";
1399
- relationshipField?: string | undefined;
1400
- filter?: _objectstack_spec_data.FilterCondition | undefined;
1401
- } | undefined;
1402
1491
  readonly language?: string | undefined;
1403
1492
  readonly step?: number | undefined;
1404
1493
  readonly currencyConfig?: {
@@ -1434,7 +1523,7 @@ declare const SysWebhook: Omit<{
1434
1523
  readonly system?: boolean | undefined;
1435
1524
  readonly sortable?: boolean | undefined;
1436
1525
  readonly inlineHelpText?: string | undefined;
1437
- readonly autonumberFormat?: string | undefined;
1526
+ readonly externalId?: boolean | undefined;
1438
1527
  readonly type: "text";
1439
1528
  };
1440
1529
  readonly triggers: {
@@ -1467,8 +1556,36 @@ declare const SysWebhook: Omit<{
1467
1556
  notNull?: boolean | undefined;
1468
1557
  } | undefined;
1469
1558
  readonly maxSize?: number | undefined;
1470
- readonly externalId?: boolean | undefined;
1471
- readonly defaultValue?: unknown;
1559
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
1560
+ readonly _lockReason?: string | undefined;
1561
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
1562
+ readonly _lockDocsUrl?: string | undefined;
1563
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
1564
+ readonly _packageId?: string | undefined;
1565
+ readonly _packageVersion?: string | undefined;
1566
+ readonly lookupFilters?: {
1567
+ field: string;
1568
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1569
+ value: any;
1570
+ }[] | undefined;
1571
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1572
+ readonly expression?: {
1573
+ dialect: "cel" | "cron" | "template";
1574
+ source?: string | undefined;
1575
+ ast?: unknown;
1576
+ meta?: {
1577
+ rationale?: string | undefined;
1578
+ generatedBy?: string | undefined;
1579
+ } | undefined;
1580
+ } | undefined;
1581
+ readonly autonumberFormat?: string | undefined;
1582
+ readonly summaryOperations?: {
1583
+ object: string;
1584
+ field: string;
1585
+ function: "min" | "max" | "count" | "sum" | "avg";
1586
+ relationshipField?: string | undefined;
1587
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
1588
+ } | undefined;
1472
1589
  readonly visibleWhen?: {
1473
1590
  dialect: "cel" | "cron" | "template";
1474
1591
  source?: string | undefined;
@@ -1478,16 +1595,16 @@ declare const SysWebhook: Omit<{
1478
1595
  generatedBy?: string | undefined;
1479
1596
  } | undefined;
1480
1597
  } | undefined;
1598
+ readonly scale?: number | undefined;
1481
1599
  readonly searchable?: boolean | undefined;
1482
1600
  readonly unique?: boolean | "global" | undefined;
1601
+ readonly defaultValue?: unknown;
1483
1602
  readonly maxLength?: number | undefined;
1484
1603
  readonly minLength?: number | undefined;
1485
- readonly scale?: number | undefined;
1486
1604
  readonly min?: number | undefined;
1487
1605
  readonly max?: number | undefined;
1488
1606
  readonly accept?: string[] | undefined;
1489
1607
  readonly reference?: string | undefined;
1490
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1491
1608
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1492
1609
  readonly inlineTitle?: string | undefined;
1493
1610
  readonly inlineColumns?: any[] | undefined;
@@ -1504,32 +1621,11 @@ declare const SysWebhook: Omit<{
1504
1621
  type?: string | undefined;
1505
1622
  })[] | undefined;
1506
1623
  readonly lookupPageSize?: number | undefined;
1507
- readonly lookupFilters?: {
1508
- field: string;
1509
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1510
- value: any;
1511
- }[] | undefined;
1512
1624
  readonly dependsOn?: (string | {
1513
1625
  field: string;
1514
1626
  param?: string | undefined;
1515
1627
  })[] | undefined;
1516
1628
  readonly allowCreate?: boolean | undefined;
1517
- readonly expression?: {
1518
- dialect: "cel" | "cron" | "template";
1519
- source?: string | undefined;
1520
- ast?: unknown;
1521
- meta?: {
1522
- rationale?: string | undefined;
1523
- generatedBy?: string | undefined;
1524
- } | undefined;
1525
- } | undefined;
1526
- readonly summaryOperations?: {
1527
- object: string;
1528
- field: string;
1529
- function: "min" | "max" | "count" | "sum" | "avg";
1530
- relationshipField?: string | undefined;
1531
- filter?: _objectstack_spec_data.FilterCondition | undefined;
1532
- } | undefined;
1533
1629
  readonly language?: string | undefined;
1534
1630
  readonly step?: number | undefined;
1535
1631
  readonly currencyConfig?: {
@@ -1565,7 +1661,7 @@ declare const SysWebhook: Omit<{
1565
1661
  readonly system?: boolean | undefined;
1566
1662
  readonly sortable?: boolean | undefined;
1567
1663
  readonly inlineHelpText?: string | undefined;
1568
- readonly autonumberFormat?: string | undefined;
1664
+ readonly externalId?: boolean | undefined;
1569
1665
  readonly type: "select";
1570
1666
  };
1571
1667
  readonly url: {
@@ -1598,8 +1694,36 @@ declare const SysWebhook: Omit<{
1598
1694
  notNull?: boolean | undefined;
1599
1695
  } | undefined;
1600
1696
  readonly maxSize?: number | undefined;
1601
- readonly externalId?: boolean | undefined;
1602
- readonly defaultValue?: unknown;
1697
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
1698
+ readonly _lockReason?: string | undefined;
1699
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
1700
+ readonly _lockDocsUrl?: string | undefined;
1701
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
1702
+ readonly _packageId?: string | undefined;
1703
+ readonly _packageVersion?: string | undefined;
1704
+ readonly lookupFilters?: {
1705
+ field: string;
1706
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1707
+ value: any;
1708
+ }[] | undefined;
1709
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1710
+ readonly expression?: {
1711
+ dialect: "cel" | "cron" | "template";
1712
+ source?: string | undefined;
1713
+ ast?: unknown;
1714
+ meta?: {
1715
+ rationale?: string | undefined;
1716
+ generatedBy?: string | undefined;
1717
+ } | undefined;
1718
+ } | undefined;
1719
+ readonly autonumberFormat?: string | undefined;
1720
+ readonly summaryOperations?: {
1721
+ object: string;
1722
+ field: string;
1723
+ function: "min" | "max" | "count" | "sum" | "avg";
1724
+ relationshipField?: string | undefined;
1725
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
1726
+ } | undefined;
1603
1727
  readonly visibleWhen?: {
1604
1728
  dialect: "cel" | "cron" | "template";
1605
1729
  source?: string | undefined;
@@ -1609,16 +1733,16 @@ declare const SysWebhook: Omit<{
1609
1733
  generatedBy?: string | undefined;
1610
1734
  } | undefined;
1611
1735
  } | undefined;
1736
+ readonly scale?: number | undefined;
1612
1737
  readonly searchable?: boolean | undefined;
1613
1738
  readonly unique?: boolean | "global" | undefined;
1739
+ readonly defaultValue?: unknown;
1614
1740
  readonly maxLength?: number | undefined;
1615
1741
  readonly minLength?: number | undefined;
1616
- readonly scale?: number | undefined;
1617
1742
  readonly min?: number | undefined;
1618
1743
  readonly max?: number | undefined;
1619
1744
  readonly accept?: string[] | undefined;
1620
1745
  readonly reference?: string | undefined;
1621
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1622
1746
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1623
1747
  readonly inlineTitle?: string | undefined;
1624
1748
  readonly inlineColumns?: any[] | undefined;
@@ -1635,32 +1759,11 @@ declare const SysWebhook: Omit<{
1635
1759
  type?: string | undefined;
1636
1760
  })[] | undefined;
1637
1761
  readonly lookupPageSize?: number | undefined;
1638
- readonly lookupFilters?: {
1639
- field: string;
1640
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1641
- value: any;
1642
- }[] | undefined;
1643
1762
  readonly dependsOn?: (string | {
1644
1763
  field: string;
1645
1764
  param?: string | undefined;
1646
1765
  })[] | undefined;
1647
1766
  readonly allowCreate?: boolean | undefined;
1648
- readonly expression?: {
1649
- dialect: "cel" | "cron" | "template";
1650
- source?: string | undefined;
1651
- ast?: unknown;
1652
- meta?: {
1653
- rationale?: string | undefined;
1654
- generatedBy?: string | undefined;
1655
- } | undefined;
1656
- } | undefined;
1657
- readonly summaryOperations?: {
1658
- object: string;
1659
- field: string;
1660
- function: "min" | "max" | "count" | "sum" | "avg";
1661
- relationshipField?: string | undefined;
1662
- filter?: _objectstack_spec_data.FilterCondition | undefined;
1663
- } | undefined;
1664
1767
  readonly language?: string | undefined;
1665
1768
  readonly step?: number | undefined;
1666
1769
  readonly currencyConfig?: {
@@ -1696,7 +1799,7 @@ declare const SysWebhook: Omit<{
1696
1799
  readonly system?: boolean | undefined;
1697
1800
  readonly sortable?: boolean | undefined;
1698
1801
  readonly inlineHelpText?: string | undefined;
1699
- readonly autonumberFormat?: string | undefined;
1802
+ readonly externalId?: boolean | undefined;
1700
1803
  readonly type: "text";
1701
1804
  };
1702
1805
  readonly method: {
@@ -1729,8 +1832,36 @@ declare const SysWebhook: Omit<{
1729
1832
  notNull?: boolean | undefined;
1730
1833
  } | undefined;
1731
1834
  readonly maxSize?: number | undefined;
1732
- readonly externalId?: boolean | undefined;
1733
- readonly defaultValue?: unknown;
1835
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
1836
+ readonly _lockReason?: string | undefined;
1837
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
1838
+ readonly _lockDocsUrl?: string | undefined;
1839
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
1840
+ readonly _packageId?: string | undefined;
1841
+ readonly _packageVersion?: string | undefined;
1842
+ readonly lookupFilters?: {
1843
+ field: string;
1844
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1845
+ value: any;
1846
+ }[] | undefined;
1847
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1848
+ readonly expression?: {
1849
+ dialect: "cel" | "cron" | "template";
1850
+ source?: string | undefined;
1851
+ ast?: unknown;
1852
+ meta?: {
1853
+ rationale?: string | undefined;
1854
+ generatedBy?: string | undefined;
1855
+ } | undefined;
1856
+ } | undefined;
1857
+ readonly autonumberFormat?: string | undefined;
1858
+ readonly summaryOperations?: {
1859
+ object: string;
1860
+ field: string;
1861
+ function: "min" | "max" | "count" | "sum" | "avg";
1862
+ relationshipField?: string | undefined;
1863
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
1864
+ } | undefined;
1734
1865
  readonly visibleWhen?: {
1735
1866
  dialect: "cel" | "cron" | "template";
1736
1867
  source?: string | undefined;
@@ -1740,16 +1871,16 @@ declare const SysWebhook: Omit<{
1740
1871
  generatedBy?: string | undefined;
1741
1872
  } | undefined;
1742
1873
  } | undefined;
1874
+ readonly scale?: number | undefined;
1743
1875
  readonly searchable?: boolean | undefined;
1744
1876
  readonly unique?: boolean | "global" | undefined;
1877
+ readonly defaultValue?: unknown;
1745
1878
  readonly maxLength?: number | undefined;
1746
1879
  readonly minLength?: number | undefined;
1747
- readonly scale?: number | undefined;
1748
1880
  readonly min?: number | undefined;
1749
1881
  readonly max?: number | undefined;
1750
1882
  readonly accept?: string[] | undefined;
1751
1883
  readonly reference?: string | undefined;
1752
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1753
1884
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1754
1885
  readonly inlineTitle?: string | undefined;
1755
1886
  readonly inlineColumns?: any[] | undefined;
@@ -1766,32 +1897,11 @@ declare const SysWebhook: Omit<{
1766
1897
  type?: string | undefined;
1767
1898
  })[] | undefined;
1768
1899
  readonly lookupPageSize?: number | undefined;
1769
- readonly lookupFilters?: {
1770
- field: string;
1771
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1772
- value: any;
1773
- }[] | undefined;
1774
1900
  readonly dependsOn?: (string | {
1775
1901
  field: string;
1776
1902
  param?: string | undefined;
1777
1903
  })[] | undefined;
1778
1904
  readonly allowCreate?: boolean | undefined;
1779
- readonly expression?: {
1780
- dialect: "cel" | "cron" | "template";
1781
- source?: string | undefined;
1782
- ast?: unknown;
1783
- meta?: {
1784
- rationale?: string | undefined;
1785
- generatedBy?: string | undefined;
1786
- } | undefined;
1787
- } | undefined;
1788
- readonly summaryOperations?: {
1789
- object: string;
1790
- field: string;
1791
- function: "min" | "max" | "count" | "sum" | "avg";
1792
- relationshipField?: string | undefined;
1793
- filter?: _objectstack_spec_data.FilterCondition | undefined;
1794
- } | undefined;
1795
1905
  readonly language?: string | undefined;
1796
1906
  readonly step?: number | undefined;
1797
1907
  readonly currencyConfig?: {
@@ -1827,7 +1937,7 @@ declare const SysWebhook: Omit<{
1827
1937
  readonly system?: boolean | undefined;
1828
1938
  readonly sortable?: boolean | undefined;
1829
1939
  readonly inlineHelpText?: string | undefined;
1830
- readonly autonumberFormat?: string | undefined;
1940
+ readonly externalId?: boolean | undefined;
1831
1941
  readonly type: "select";
1832
1942
  };
1833
1943
  readonly description: {
@@ -1860,8 +1970,36 @@ declare const SysWebhook: Omit<{
1860
1970
  notNull?: boolean | undefined;
1861
1971
  } | undefined;
1862
1972
  readonly maxSize?: number | undefined;
1863
- readonly externalId?: boolean | undefined;
1864
- readonly defaultValue?: unknown;
1973
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
1974
+ readonly _lockReason?: string | undefined;
1975
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
1976
+ readonly _lockDocsUrl?: string | undefined;
1977
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
1978
+ readonly _packageId?: string | undefined;
1979
+ readonly _packageVersion?: string | undefined;
1980
+ readonly lookupFilters?: {
1981
+ field: string;
1982
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1983
+ value: any;
1984
+ }[] | undefined;
1985
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1986
+ readonly expression?: {
1987
+ dialect: "cel" | "cron" | "template";
1988
+ source?: string | undefined;
1989
+ ast?: unknown;
1990
+ meta?: {
1991
+ rationale?: string | undefined;
1992
+ generatedBy?: string | undefined;
1993
+ } | undefined;
1994
+ } | undefined;
1995
+ readonly autonumberFormat?: string | undefined;
1996
+ readonly summaryOperations?: {
1997
+ object: string;
1998
+ field: string;
1999
+ function: "min" | "max" | "count" | "sum" | "avg";
2000
+ relationshipField?: string | undefined;
2001
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
2002
+ } | undefined;
1865
2003
  readonly visibleWhen?: {
1866
2004
  dialect: "cel" | "cron" | "template";
1867
2005
  source?: string | undefined;
@@ -1871,16 +2009,16 @@ declare const SysWebhook: Omit<{
1871
2009
  generatedBy?: string | undefined;
1872
2010
  } | undefined;
1873
2011
  } | undefined;
2012
+ readonly scale?: number | undefined;
1874
2013
  readonly searchable?: boolean | undefined;
1875
2014
  readonly unique?: boolean | "global" | undefined;
2015
+ readonly defaultValue?: unknown;
1876
2016
  readonly maxLength?: number | undefined;
1877
2017
  readonly minLength?: number | undefined;
1878
- readonly scale?: number | undefined;
1879
2018
  readonly min?: number | undefined;
1880
2019
  readonly max?: number | undefined;
1881
2020
  readonly accept?: string[] | undefined;
1882
2021
  readonly reference?: string | undefined;
1883
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1884
2022
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1885
2023
  readonly inlineTitle?: string | undefined;
1886
2024
  readonly inlineColumns?: any[] | undefined;
@@ -1897,32 +2035,11 @@ declare const SysWebhook: Omit<{
1897
2035
  type?: string | undefined;
1898
2036
  })[] | undefined;
1899
2037
  readonly lookupPageSize?: number | undefined;
1900
- readonly lookupFilters?: {
1901
- field: string;
1902
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1903
- value: any;
1904
- }[] | undefined;
1905
- readonly dependsOn?: (string | {
2038
+ readonly dependsOn?: (string | {
1906
2039
  field: string;
1907
2040
  param?: string | undefined;
1908
2041
  })[] | undefined;
1909
2042
  readonly allowCreate?: boolean | undefined;
1910
- readonly expression?: {
1911
- dialect: "cel" | "cron" | "template";
1912
- source?: string | undefined;
1913
- ast?: unknown;
1914
- meta?: {
1915
- rationale?: string | undefined;
1916
- generatedBy?: string | undefined;
1917
- } | undefined;
1918
- } | undefined;
1919
- readonly summaryOperations?: {
1920
- object: string;
1921
- field: string;
1922
- function: "min" | "max" | "count" | "sum" | "avg";
1923
- relationshipField?: string | undefined;
1924
- filter?: _objectstack_spec_data.FilterCondition | undefined;
1925
- } | undefined;
1926
2043
  readonly language?: string | undefined;
1927
2044
  readonly step?: number | undefined;
1928
2045
  readonly currencyConfig?: {
@@ -1958,7 +2075,7 @@ declare const SysWebhook: Omit<{
1958
2075
  readonly system?: boolean | undefined;
1959
2076
  readonly sortable?: boolean | undefined;
1960
2077
  readonly inlineHelpText?: string | undefined;
1961
- readonly autonumberFormat?: string | undefined;
2078
+ readonly externalId?: boolean | undefined;
1962
2079
  readonly type: "textarea";
1963
2080
  };
1964
2081
  readonly active: {
@@ -1991,8 +2108,36 @@ declare const SysWebhook: Omit<{
1991
2108
  notNull?: boolean | undefined;
1992
2109
  } | undefined;
1993
2110
  readonly maxSize?: number | undefined;
1994
- readonly externalId?: boolean | undefined;
1995
- readonly defaultValue?: unknown;
2111
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
2112
+ readonly _lockReason?: string | undefined;
2113
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
2114
+ readonly _lockDocsUrl?: string | undefined;
2115
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
2116
+ readonly _packageId?: string | undefined;
2117
+ readonly _packageVersion?: string | undefined;
2118
+ readonly lookupFilters?: {
2119
+ field: string;
2120
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2121
+ value: any;
2122
+ }[] | undefined;
2123
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2124
+ readonly expression?: {
2125
+ dialect: "cel" | "cron" | "template";
2126
+ source?: string | undefined;
2127
+ ast?: unknown;
2128
+ meta?: {
2129
+ rationale?: string | undefined;
2130
+ generatedBy?: string | undefined;
2131
+ } | undefined;
2132
+ } | undefined;
2133
+ readonly autonumberFormat?: string | undefined;
2134
+ readonly summaryOperations?: {
2135
+ object: string;
2136
+ field: string;
2137
+ function: "min" | "max" | "count" | "sum" | "avg";
2138
+ relationshipField?: string | undefined;
2139
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
2140
+ } | undefined;
1996
2141
  readonly visibleWhen?: {
1997
2142
  dialect: "cel" | "cron" | "template";
1998
2143
  source?: string | undefined;
@@ -2002,16 +2147,16 @@ declare const SysWebhook: Omit<{
2002
2147
  generatedBy?: string | undefined;
2003
2148
  } | undefined;
2004
2149
  } | undefined;
2150
+ readonly scale?: number | undefined;
2005
2151
  readonly searchable?: boolean | undefined;
2006
2152
  readonly unique?: boolean | "global" | undefined;
2153
+ readonly defaultValue?: unknown;
2007
2154
  readonly maxLength?: number | undefined;
2008
2155
  readonly minLength?: number | undefined;
2009
- readonly scale?: number | undefined;
2010
2156
  readonly min?: number | undefined;
2011
2157
  readonly max?: number | undefined;
2012
2158
  readonly accept?: string[] | undefined;
2013
2159
  readonly reference?: string | undefined;
2014
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2015
2160
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2016
2161
  readonly inlineTitle?: string | undefined;
2017
2162
  readonly inlineColumns?: any[] | undefined;
@@ -2028,32 +2173,11 @@ declare const SysWebhook: Omit<{
2028
2173
  type?: string | undefined;
2029
2174
  })[] | undefined;
2030
2175
  readonly lookupPageSize?: number | undefined;
2031
- readonly lookupFilters?: {
2032
- field: string;
2033
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2034
- value: any;
2035
- }[] | undefined;
2036
2176
  readonly dependsOn?: (string | {
2037
2177
  field: string;
2038
2178
  param?: string | undefined;
2039
2179
  })[] | undefined;
2040
2180
  readonly allowCreate?: boolean | undefined;
2041
- readonly expression?: {
2042
- dialect: "cel" | "cron" | "template";
2043
- source?: string | undefined;
2044
- ast?: unknown;
2045
- meta?: {
2046
- rationale?: string | undefined;
2047
- generatedBy?: string | undefined;
2048
- } | undefined;
2049
- } | undefined;
2050
- readonly summaryOperations?: {
2051
- object: string;
2052
- field: string;
2053
- function: "min" | "max" | "count" | "sum" | "avg";
2054
- relationshipField?: string | undefined;
2055
- filter?: _objectstack_spec_data.FilterCondition | undefined;
2056
- } | undefined;
2057
2181
  readonly language?: string | undefined;
2058
2182
  readonly step?: number | undefined;
2059
2183
  readonly currencyConfig?: {
@@ -2089,7 +2213,7 @@ declare const SysWebhook: Omit<{
2089
2213
  readonly system?: boolean | undefined;
2090
2214
  readonly sortable?: boolean | undefined;
2091
2215
  readonly inlineHelpText?: string | undefined;
2092
- readonly autonumberFormat?: string | undefined;
2216
+ readonly externalId?: boolean | undefined;
2093
2217
  readonly type: "boolean";
2094
2218
  };
2095
2219
  readonly definition_json: {
@@ -2122,8 +2246,36 @@ declare const SysWebhook: Omit<{
2122
2246
  notNull?: boolean | undefined;
2123
2247
  } | undefined;
2124
2248
  readonly maxSize?: number | undefined;
2125
- readonly externalId?: boolean | undefined;
2126
- readonly defaultValue?: unknown;
2249
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
2250
+ readonly _lockReason?: string | undefined;
2251
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
2252
+ readonly _lockDocsUrl?: string | undefined;
2253
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
2254
+ readonly _packageId?: string | undefined;
2255
+ readonly _packageVersion?: string | undefined;
2256
+ readonly lookupFilters?: {
2257
+ field: string;
2258
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2259
+ value: any;
2260
+ }[] | undefined;
2261
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2262
+ readonly expression?: {
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 autonumberFormat?: string | undefined;
2272
+ readonly summaryOperations?: {
2273
+ object: string;
2274
+ field: string;
2275
+ function: "min" | "max" | "count" | "sum" | "avg";
2276
+ relationshipField?: string | undefined;
2277
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
2278
+ } | undefined;
2127
2279
  readonly visibleWhen?: {
2128
2280
  dialect: "cel" | "cron" | "template";
2129
2281
  source?: string | undefined;
@@ -2133,16 +2285,16 @@ declare const SysWebhook: Omit<{
2133
2285
  generatedBy?: string | undefined;
2134
2286
  } | undefined;
2135
2287
  } | undefined;
2288
+ readonly scale?: number | undefined;
2136
2289
  readonly searchable?: boolean | undefined;
2137
2290
  readonly unique?: boolean | "global" | undefined;
2291
+ readonly defaultValue?: unknown;
2138
2292
  readonly maxLength?: number | undefined;
2139
2293
  readonly minLength?: number | undefined;
2140
- readonly scale?: number | undefined;
2141
2294
  readonly min?: number | undefined;
2142
2295
  readonly max?: number | undefined;
2143
2296
  readonly accept?: string[] | undefined;
2144
2297
  readonly reference?: string | undefined;
2145
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2146
2298
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2147
2299
  readonly inlineTitle?: string | undefined;
2148
2300
  readonly inlineColumns?: any[] | undefined;
@@ -2159,32 +2311,11 @@ declare const SysWebhook: Omit<{
2159
2311
  type?: string | undefined;
2160
2312
  })[] | undefined;
2161
2313
  readonly lookupPageSize?: number | undefined;
2162
- readonly lookupFilters?: {
2163
- field: string;
2164
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2165
- value: any;
2166
- }[] | undefined;
2167
2314
  readonly dependsOn?: (string | {
2168
2315
  field: string;
2169
2316
  param?: string | undefined;
2170
2317
  })[] | undefined;
2171
2318
  readonly allowCreate?: boolean | undefined;
2172
- readonly expression?: {
2173
- dialect: "cel" | "cron" | "template";
2174
- source?: string | undefined;
2175
- ast?: unknown;
2176
- meta?: {
2177
- rationale?: string | undefined;
2178
- generatedBy?: string | undefined;
2179
- } | undefined;
2180
- } | undefined;
2181
- readonly summaryOperations?: {
2182
- object: string;
2183
- field: string;
2184
- function: "min" | "max" | "count" | "sum" | "avg";
2185
- relationshipField?: string | undefined;
2186
- filter?: _objectstack_spec_data.FilterCondition | undefined;
2187
- } | undefined;
2188
2319
  readonly language?: string | undefined;
2189
2320
  readonly step?: number | undefined;
2190
2321
  readonly currencyConfig?: {
@@ -2220,7 +2351,7 @@ declare const SysWebhook: Omit<{
2220
2351
  readonly system?: boolean | undefined;
2221
2352
  readonly sortable?: boolean | undefined;
2222
2353
  readonly inlineHelpText?: string | undefined;
2223
- readonly autonumberFormat?: string | undefined;
2354
+ readonly externalId?: boolean | undefined;
2224
2355
  readonly type: "textarea";
2225
2356
  };
2226
2357
  readonly managed_by: {
@@ -2253,8 +2384,36 @@ declare const SysWebhook: Omit<{
2253
2384
  notNull?: boolean | undefined;
2254
2385
  } | undefined;
2255
2386
  readonly maxSize?: number | undefined;
2256
- readonly externalId?: boolean | undefined;
2257
- readonly defaultValue?: unknown;
2387
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
2388
+ readonly _lockReason?: string | undefined;
2389
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
2390
+ readonly _lockDocsUrl?: string | undefined;
2391
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
2392
+ readonly _packageId?: string | undefined;
2393
+ readonly _packageVersion?: string | undefined;
2394
+ readonly lookupFilters?: {
2395
+ field: string;
2396
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2397
+ value: any;
2398
+ }[] | undefined;
2399
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2400
+ readonly expression?: {
2401
+ dialect: "cel" | "cron" | "template";
2402
+ source?: string | undefined;
2403
+ ast?: unknown;
2404
+ meta?: {
2405
+ rationale?: string | undefined;
2406
+ generatedBy?: string | undefined;
2407
+ } | undefined;
2408
+ } | undefined;
2409
+ readonly autonumberFormat?: string | undefined;
2410
+ readonly summaryOperations?: {
2411
+ object: string;
2412
+ field: string;
2413
+ function: "min" | "max" | "count" | "sum" | "avg";
2414
+ relationshipField?: string | undefined;
2415
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
2416
+ } | undefined;
2258
2417
  readonly visibleWhen?: {
2259
2418
  dialect: "cel" | "cron" | "template";
2260
2419
  source?: string | undefined;
@@ -2264,16 +2423,16 @@ declare const SysWebhook: Omit<{
2264
2423
  generatedBy?: string | undefined;
2265
2424
  } | undefined;
2266
2425
  } | undefined;
2426
+ readonly scale?: number | undefined;
2267
2427
  readonly searchable?: boolean | undefined;
2268
2428
  readonly unique?: boolean | "global" | undefined;
2429
+ readonly defaultValue?: unknown;
2269
2430
  readonly maxLength?: number | undefined;
2270
2431
  readonly minLength?: number | undefined;
2271
- readonly scale?: number | undefined;
2272
2432
  readonly min?: number | undefined;
2273
2433
  readonly max?: number | undefined;
2274
2434
  readonly accept?: string[] | undefined;
2275
2435
  readonly reference?: string | undefined;
2276
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2277
2436
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2278
2437
  readonly inlineTitle?: string | undefined;
2279
2438
  readonly inlineColumns?: any[] | undefined;
@@ -2290,32 +2449,11 @@ declare const SysWebhook: Omit<{
2290
2449
  type?: string | undefined;
2291
2450
  })[] | undefined;
2292
2451
  readonly lookupPageSize?: number | undefined;
2293
- readonly lookupFilters?: {
2294
- field: string;
2295
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2296
- value: any;
2297
- }[] | undefined;
2298
2452
  readonly dependsOn?: (string | {
2299
2453
  field: string;
2300
2454
  param?: string | undefined;
2301
2455
  })[] | undefined;
2302
2456
  readonly allowCreate?: boolean | undefined;
2303
- readonly expression?: {
2304
- dialect: "cel" | "cron" | "template";
2305
- source?: string | undefined;
2306
- ast?: unknown;
2307
- meta?: {
2308
- rationale?: string | undefined;
2309
- generatedBy?: string | undefined;
2310
- } | undefined;
2311
- } | undefined;
2312
- readonly summaryOperations?: {
2313
- object: string;
2314
- field: string;
2315
- function: "min" | "max" | "count" | "sum" | "avg";
2316
- relationshipField?: string | undefined;
2317
- filter?: _objectstack_spec_data.FilterCondition | undefined;
2318
- } | undefined;
2319
2457
  readonly language?: string | undefined;
2320
2458
  readonly step?: number | undefined;
2321
2459
  readonly currencyConfig?: {
@@ -2351,7 +2489,7 @@ declare const SysWebhook: Omit<{
2351
2489
  readonly system?: boolean | undefined;
2352
2490
  readonly sortable?: boolean | undefined;
2353
2491
  readonly inlineHelpText?: string | undefined;
2354
- readonly autonumberFormat?: string | undefined;
2492
+ readonly externalId?: boolean | undefined;
2355
2493
  readonly type: "select";
2356
2494
  };
2357
2495
  readonly customized: {
@@ -2384,8 +2522,36 @@ declare const SysWebhook: Omit<{
2384
2522
  notNull?: boolean | undefined;
2385
2523
  } | undefined;
2386
2524
  readonly maxSize?: number | undefined;
2387
- readonly externalId?: boolean | undefined;
2388
- readonly defaultValue?: unknown;
2525
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
2526
+ readonly _lockReason?: string | undefined;
2527
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
2528
+ readonly _lockDocsUrl?: string | undefined;
2529
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
2530
+ readonly _packageId?: string | undefined;
2531
+ readonly _packageVersion?: string | undefined;
2532
+ readonly lookupFilters?: {
2533
+ field: string;
2534
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2535
+ value: any;
2536
+ }[] | undefined;
2537
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2538
+ readonly expression?: {
2539
+ dialect: "cel" | "cron" | "template";
2540
+ source?: string | undefined;
2541
+ ast?: unknown;
2542
+ meta?: {
2543
+ rationale?: string | undefined;
2544
+ generatedBy?: string | undefined;
2545
+ } | undefined;
2546
+ } | undefined;
2547
+ readonly autonumberFormat?: string | undefined;
2548
+ readonly summaryOperations?: {
2549
+ object: string;
2550
+ field: string;
2551
+ function: "min" | "max" | "count" | "sum" | "avg";
2552
+ relationshipField?: string | undefined;
2553
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
2554
+ } | undefined;
2389
2555
  readonly visibleWhen?: {
2390
2556
  dialect: "cel" | "cron" | "template";
2391
2557
  source?: string | undefined;
@@ -2395,16 +2561,16 @@ declare const SysWebhook: Omit<{
2395
2561
  generatedBy?: string | undefined;
2396
2562
  } | undefined;
2397
2563
  } | undefined;
2564
+ readonly scale?: number | undefined;
2398
2565
  readonly searchable?: boolean | undefined;
2399
2566
  readonly unique?: boolean | "global" | undefined;
2567
+ readonly defaultValue?: unknown;
2400
2568
  readonly maxLength?: number | undefined;
2401
2569
  readonly minLength?: number | undefined;
2402
- readonly scale?: number | undefined;
2403
2570
  readonly min?: number | undefined;
2404
2571
  readonly max?: number | undefined;
2405
2572
  readonly accept?: string[] | undefined;
2406
2573
  readonly reference?: string | undefined;
2407
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2408
2574
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2409
2575
  readonly inlineTitle?: string | undefined;
2410
2576
  readonly inlineColumns?: any[] | undefined;
@@ -2421,32 +2587,11 @@ declare const SysWebhook: Omit<{
2421
2587
  type?: string | undefined;
2422
2588
  })[] | undefined;
2423
2589
  readonly lookupPageSize?: number | undefined;
2424
- readonly lookupFilters?: {
2425
- field: string;
2426
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2427
- value: any;
2428
- }[] | undefined;
2429
2590
  readonly dependsOn?: (string | {
2430
2591
  field: string;
2431
2592
  param?: string | undefined;
2432
2593
  })[] | undefined;
2433
2594
  readonly allowCreate?: boolean | undefined;
2434
- readonly expression?: {
2435
- dialect: "cel" | "cron" | "template";
2436
- source?: string | undefined;
2437
- ast?: unknown;
2438
- meta?: {
2439
- rationale?: string | undefined;
2440
- generatedBy?: string | undefined;
2441
- } | undefined;
2442
- } | undefined;
2443
- readonly summaryOperations?: {
2444
- object: string;
2445
- field: string;
2446
- function: "min" | "max" | "count" | "sum" | "avg";
2447
- relationshipField?: string | undefined;
2448
- filter?: _objectstack_spec_data.FilterCondition | undefined;
2449
- } | undefined;
2450
2595
  readonly language?: string | undefined;
2451
2596
  readonly step?: number | undefined;
2452
2597
  readonly currencyConfig?: {
@@ -2482,7 +2627,7 @@ declare const SysWebhook: Omit<{
2482
2627
  readonly system?: boolean | undefined;
2483
2628
  readonly sortable?: boolean | undefined;
2484
2629
  readonly inlineHelpText?: string | undefined;
2485
- readonly autonumberFormat?: string | undefined;
2630
+ readonly externalId?: boolean | undefined;
2486
2631
  readonly type: "boolean";
2487
2632
  };
2488
2633
  readonly created_at: {
@@ -2515,8 +2660,36 @@ declare const SysWebhook: Omit<{
2515
2660
  notNull?: boolean | undefined;
2516
2661
  } | undefined;
2517
2662
  readonly maxSize?: number | undefined;
2518
- readonly externalId?: boolean | undefined;
2519
- readonly defaultValue?: unknown;
2663
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
2664
+ readonly _lockReason?: string | undefined;
2665
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
2666
+ readonly _lockDocsUrl?: string | undefined;
2667
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
2668
+ readonly _packageId?: string | undefined;
2669
+ readonly _packageVersion?: string | undefined;
2670
+ readonly lookupFilters?: {
2671
+ field: string;
2672
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2673
+ value: any;
2674
+ }[] | undefined;
2675
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2676
+ readonly expression?: {
2677
+ dialect: "cel" | "cron" | "template";
2678
+ source?: string | undefined;
2679
+ ast?: unknown;
2680
+ meta?: {
2681
+ rationale?: string | undefined;
2682
+ generatedBy?: string | undefined;
2683
+ } | undefined;
2684
+ } | undefined;
2685
+ readonly autonumberFormat?: string | undefined;
2686
+ readonly summaryOperations?: {
2687
+ object: string;
2688
+ field: string;
2689
+ function: "min" | "max" | "count" | "sum" | "avg";
2690
+ relationshipField?: string | undefined;
2691
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
2692
+ } | undefined;
2520
2693
  readonly visibleWhen?: {
2521
2694
  dialect: "cel" | "cron" | "template";
2522
2695
  source?: string | undefined;
@@ -2526,16 +2699,16 @@ declare const SysWebhook: Omit<{
2526
2699
  generatedBy?: string | undefined;
2527
2700
  } | undefined;
2528
2701
  } | undefined;
2702
+ readonly scale?: number | undefined;
2529
2703
  readonly searchable?: boolean | undefined;
2530
2704
  readonly unique?: boolean | "global" | undefined;
2705
+ readonly defaultValue?: unknown;
2531
2706
  readonly maxLength?: number | undefined;
2532
2707
  readonly minLength?: number | undefined;
2533
- readonly scale?: number | undefined;
2534
2708
  readonly min?: number | undefined;
2535
2709
  readonly max?: number | undefined;
2536
2710
  readonly accept?: string[] | undefined;
2537
2711
  readonly reference?: string | undefined;
2538
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2539
2712
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2540
2713
  readonly inlineTitle?: string | undefined;
2541
2714
  readonly inlineColumns?: any[] | undefined;
@@ -2552,32 +2725,11 @@ declare const SysWebhook: Omit<{
2552
2725
  type?: string | undefined;
2553
2726
  })[] | undefined;
2554
2727
  readonly lookupPageSize?: number | undefined;
2555
- readonly lookupFilters?: {
2556
- field: string;
2557
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2558
- value: any;
2559
- }[] | undefined;
2560
2728
  readonly dependsOn?: (string | {
2561
2729
  field: string;
2562
2730
  param?: string | undefined;
2563
2731
  })[] | undefined;
2564
2732
  readonly allowCreate?: boolean | undefined;
2565
- readonly expression?: {
2566
- dialect: "cel" | "cron" | "template";
2567
- source?: string | undefined;
2568
- ast?: unknown;
2569
- meta?: {
2570
- rationale?: string | undefined;
2571
- generatedBy?: string | undefined;
2572
- } | undefined;
2573
- } | undefined;
2574
- readonly summaryOperations?: {
2575
- object: string;
2576
- field: string;
2577
- function: "min" | "max" | "count" | "sum" | "avg";
2578
- relationshipField?: string | undefined;
2579
- filter?: _objectstack_spec_data.FilterCondition | undefined;
2580
- } | undefined;
2581
2733
  readonly language?: string | undefined;
2582
2734
  readonly step?: number | undefined;
2583
2735
  readonly currencyConfig?: {
@@ -2613,7 +2765,7 @@ declare const SysWebhook: Omit<{
2613
2765
  readonly system?: boolean | undefined;
2614
2766
  readonly sortable?: boolean | undefined;
2615
2767
  readonly inlineHelpText?: string | undefined;
2616
- readonly autonumberFormat?: string | undefined;
2768
+ readonly externalId?: boolean | undefined;
2617
2769
  readonly type: "datetime";
2618
2770
  };
2619
2771
  readonly updated_at: {
@@ -2646,8 +2798,36 @@ declare const SysWebhook: Omit<{
2646
2798
  notNull?: boolean | undefined;
2647
2799
  } | undefined;
2648
2800
  readonly maxSize?: number | undefined;
2649
- readonly externalId?: boolean | undefined;
2650
- readonly defaultValue?: unknown;
2801
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
2802
+ readonly _lockReason?: string | undefined;
2803
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
2804
+ readonly _lockDocsUrl?: string | undefined;
2805
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
2806
+ readonly _packageId?: string | undefined;
2807
+ readonly _packageVersion?: string | undefined;
2808
+ readonly lookupFilters?: {
2809
+ field: string;
2810
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2811
+ value: any;
2812
+ }[] | undefined;
2813
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2814
+ readonly expression?: {
2815
+ dialect: "cel" | "cron" | "template";
2816
+ source?: string | undefined;
2817
+ ast?: unknown;
2818
+ meta?: {
2819
+ rationale?: string | undefined;
2820
+ generatedBy?: string | undefined;
2821
+ } | undefined;
2822
+ } | undefined;
2823
+ readonly autonumberFormat?: string | undefined;
2824
+ readonly summaryOperations?: {
2825
+ object: string;
2826
+ field: string;
2827
+ function: "min" | "max" | "count" | "sum" | "avg";
2828
+ relationshipField?: string | undefined;
2829
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
2830
+ } | undefined;
2651
2831
  readonly visibleWhen?: {
2652
2832
  dialect: "cel" | "cron" | "template";
2653
2833
  source?: string | undefined;
@@ -2657,16 +2837,16 @@ declare const SysWebhook: Omit<{
2657
2837
  generatedBy?: string | undefined;
2658
2838
  } | undefined;
2659
2839
  } | undefined;
2840
+ readonly scale?: number | undefined;
2660
2841
  readonly searchable?: boolean | undefined;
2661
2842
  readonly unique?: boolean | "global" | undefined;
2843
+ readonly defaultValue?: unknown;
2662
2844
  readonly maxLength?: number | undefined;
2663
2845
  readonly minLength?: number | undefined;
2664
- readonly scale?: number | undefined;
2665
2846
  readonly min?: number | undefined;
2666
2847
  readonly max?: number | undefined;
2667
2848
  readonly accept?: string[] | undefined;
2668
2849
  readonly reference?: string | undefined;
2669
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2670
2850
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2671
2851
  readonly inlineTitle?: string | undefined;
2672
2852
  readonly inlineColumns?: any[] | undefined;
@@ -2683,32 +2863,11 @@ declare const SysWebhook: Omit<{
2683
2863
  type?: string | undefined;
2684
2864
  })[] | undefined;
2685
2865
  readonly lookupPageSize?: number | undefined;
2686
- readonly lookupFilters?: {
2687
- field: string;
2688
- operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2689
- value: any;
2690
- }[] | undefined;
2691
2866
  readonly dependsOn?: (string | {
2692
2867
  field: string;
2693
2868
  param?: string | undefined;
2694
2869
  })[] | undefined;
2695
2870
  readonly allowCreate?: boolean | undefined;
2696
- readonly expression?: {
2697
- dialect: "cel" | "cron" | "template";
2698
- source?: string | undefined;
2699
- ast?: unknown;
2700
- meta?: {
2701
- rationale?: string | undefined;
2702
- generatedBy?: string | undefined;
2703
- } | undefined;
2704
- } | undefined;
2705
- readonly summaryOperations?: {
2706
- object: string;
2707
- field: string;
2708
- function: "min" | "max" | "count" | "sum" | "avg";
2709
- relationshipField?: string | undefined;
2710
- filter?: _objectstack_spec_data.FilterCondition | undefined;
2711
- } | undefined;
2712
2871
  readonly language?: string | undefined;
2713
2872
  readonly step?: number | undefined;
2714
2873
  readonly currencyConfig?: {
@@ -2744,7 +2903,7 @@ declare const SysWebhook: Omit<{
2744
2903
  readonly system?: boolean | undefined;
2745
2904
  readonly sortable?: boolean | undefined;
2746
2905
  readonly inlineHelpText?: string | undefined;
2747
- readonly autonumberFormat?: string | undefined;
2906
+ readonly externalId?: boolean | undefined;
2748
2907
  readonly type: "datetime";
2749
2908
  };
2750
2909
  };