@objectstack/plugin-webhooks 17.0.0-rc.0 → 17.0.0-rc.2

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.
Files changed (43) hide show
  1. package/CHANGELOG.md +632 -0
  2. package/dist/{chunk-6EPMRZ7I.js → chunk-3QGZLM3T.js} +8 -3
  3. package/dist/chunk-3QGZLM3T.js.map +1 -0
  4. package/dist/{chunk-QUTQSOQC.cjs → chunk-JQUVS5KK.cjs} +8 -3
  5. package/dist/chunk-JQUVS5KK.cjs.map +1 -0
  6. package/dist/index.cjs +182 -63
  7. package/dist/index.cjs.map +1 -1
  8. package/dist/index.d.cts +37 -1
  9. package/dist/index.d.ts +37 -1
  10. package/dist/index.js +138 -19
  11. package/dist/index.js.map +1 -1
  12. package/dist/schema.cjs +2 -2
  13. package/dist/schema.d.cts +721 -548
  14. package/dist/schema.d.ts +721 -548
  15. package/dist/schema.js +1 -1
  16. package/dist/{translations-Y3CXWOTM.js → translations-2VGD4XRF.js} +17 -9
  17. package/dist/translations-2VGD4XRF.js.map +1 -0
  18. package/dist/{translations-CBQRUIS5.cjs → translations-BWS57U2V.cjs} +17 -9
  19. package/dist/translations-BWS57U2V.cjs.map +1 -0
  20. package/package.json +12 -6
  21. package/.turbo/turbo-build.log +0 -36
  22. package/dist/chunk-6EPMRZ7I.js.map +0 -1
  23. package/dist/chunk-QUTQSOQC.cjs.map +0 -1
  24. package/dist/translations-CBQRUIS5.cjs.map +0 -1
  25. package/dist/translations-Y3CXWOTM.js.map +0 -1
  26. package/scripts/i18n-extract.config.ts +0 -34
  27. package/src/auto-enqueuer.test.ts +0 -431
  28. package/src/auto-enqueuer.ts +0 -383
  29. package/src/bootstrap-declared-webhooks.test.ts +0 -283
  30. package/src/bootstrap-declared-webhooks.ts +0 -205
  31. package/src/index.ts +0 -29
  32. package/src/schema.ts +0 -21
  33. package/src/sys-webhook.object.ts +0 -231
  34. package/src/translations/bundle-ownership.test.ts +0 -41
  35. package/src/translations/en.objects.generated.ts +0 -101
  36. package/src/translations/es-ES.objects.generated.ts +0 -101
  37. package/src/translations/index.ts +0 -23
  38. package/src/translations/ja-JP.objects.generated.ts +0 -101
  39. package/src/translations/zh-CN.objects.generated.ts +0 -101
  40. package/src/webhook-outbox-plugin.ts +0 -305
  41. package/src/webhook-provenance.ts +0 -86
  42. package/tsconfig.json +0 -10
  43. package/tsup.config.ts +0 -14
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" | "password" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "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,10 +49,20 @@ 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;
55
62
  format?: string | undefined;
63
+ storage?: {
64
+ notNull?: boolean | undefined;
65
+ } | undefined;
56
66
  defaultValue?: unknown;
57
67
  maxLength?: number | undefined;
58
68
  minLength?: number | undefined;
@@ -104,7 +114,7 @@ declare const SysWebhook: Omit<{
104
114
  lookupPageSize?: number | undefined;
105
115
  lookupFilters?: {
106
116
  field: string;
107
- operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
117
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
108
118
  value: any;
109
119
  }[] | undefined;
110
120
  dependsOn?: (string | {
@@ -217,7 +227,7 @@ declare const SysWebhook: Omit<{
217
227
  pluralLabel?: string | undefined;
218
228
  description?: string | undefined;
219
229
  icon?: string | undefined;
220
- managedBy?: "system" | "platform" | "config" | "engine-owned" | "append-only" | "better-auth" | undefined;
230
+ managedBy?: "platform" | "config" | "system-data" | "engine-owned" | "append-only" | "better-auth" | undefined;
221
231
  ownership?: "none" | "org" | "user" | undefined;
222
232
  userActions?: {
223
233
  create?: boolean | undefined;
@@ -399,7 +409,7 @@ declare const SysWebhook: Omit<{
399
409
  field: string;
400
410
  label?: string | undefined;
401
411
  width?: number | undefined;
402
- align?: "left" | "center" | "right" | undefined;
412
+ align?: "left" | "right" | "center" | undefined;
403
413
  hidden?: boolean | undefined;
404
414
  sortable?: boolean | undefined;
405
415
  resizable?: boolean | undefined;
@@ -423,49 +433,20 @@ declare const SysWebhook: Omit<{
423
433
  }[] | undefined;
424
434
  filter?: {
425
435
  field: string;
426
- operator: "in" | "contains" | "after" | "starts_with" | "ends_with" | "not_in" | "not_contains" | "between" | "is_null" | "is_not_null" | "is_empty" | "is_not_empty" | "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "before";
436
+ operator: "in" | "contains" | "after" | "equals" | "not_equals" | "greater_than" | "greater_than_or_equal" | "less_than" | "less_than_or_equal" | "before" | "not_in" | "not_contains" | "starts_with" | "ends_with" | "between" | "is_null" | "is_not_null" | "is_empty" | "is_not_empty";
427
437
  value?: string | number | boolean | (string | number)[] | null | undefined;
428
438
  }[] | undefined;
429
439
  description?: string | undefined;
430
440
  label?: string | undefined;
431
441
  name?: string | undefined;
432
- responsive?: {
433
- breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
434
- hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
435
- columns?: {
436
- xs?: number | undefined;
437
- sm?: number | undefined;
438
- md?: number | undefined;
439
- lg?: number | undefined;
440
- xl?: number | undefined;
441
- '2xl'?: number | undefined;
442
- } | undefined;
443
- order?: {
444
- xs?: number | undefined;
445
- sm?: number | undefined;
446
- md?: number | undefined;
447
- lg?: number | undefined;
448
- xl?: number | undefined;
449
- '2xl'?: number | undefined;
450
- } | undefined;
451
- } | undefined;
452
- navigation?: {
453
- mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
454
- preventNavigation: boolean;
455
- openNewTab: boolean;
456
- size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
457
- view?: string | undefined;
458
- width?: string | number | undefined;
459
- } | undefined;
460
- sharing?: {
461
- type: "personal" | "collaborative";
462
- lockedBy?: string | undefined;
463
- } | undefined;
464
- aria?: {
465
- ariaLabel?: string | undefined;
466
- ariaDescribedBy?: string | undefined;
467
- role?: string | undefined;
442
+ tree?: {
443
+ [x: string]: unknown;
444
+ parentField?: string | undefined;
445
+ labelField?: string | undefined;
446
+ fields?: string[] | undefined;
447
+ defaultExpandedDepth?: number | undefined;
468
448
  } | undefined;
449
+ inlineEdit?: boolean | undefined;
469
450
  data?: {
470
451
  provider: "object";
471
452
  object: string;
@@ -493,20 +474,59 @@ declare const SysWebhook: Omit<{
493
474
  schemaId: string;
494
475
  schema?: Record<string, unknown> | undefined;
495
476
  } | undefined;
477
+ navigation?: {
478
+ mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
479
+ preventNavigation: boolean;
480
+ openNewTab: boolean;
481
+ size: "full" | "md" | "auto" | "sm" | "lg" | "xl";
482
+ view?: string | undefined;
483
+ width?: string | number | undefined;
484
+ } | undefined;
485
+ aria?: {
486
+ ariaLabel?: string | undefined;
487
+ ariaDescribedBy?: string | undefined;
488
+ role?: string | undefined;
489
+ } | undefined;
490
+ sharing?: {
491
+ type: "personal" | "collaborative";
492
+ lockedBy?: string | undefined;
493
+ } | undefined;
494
+ tabs?: {
495
+ name: string;
496
+ pinned: boolean;
497
+ isDefault: boolean;
498
+ visible: boolean;
499
+ label?: string | undefined;
500
+ icon?: string | undefined;
501
+ view?: string | undefined;
502
+ filter?: {
503
+ field: string;
504
+ operator: "in" | "contains" | "after" | "equals" | "not_equals" | "greater_than" | "greater_than_or_equal" | "less_than" | "less_than_or_equal" | "before" | "not_in" | "not_contains" | "starts_with" | "ends_with" | "between" | "is_null" | "is_not_null" | "is_empty" | "is_not_empty";
505
+ value?: string | number | boolean | (string | number)[] | null | undefined;
506
+ }[] | undefined;
507
+ order?: number | undefined;
508
+ }[] | undefined;
496
509
  emptyState?: {
497
510
  title?: string | undefined;
498
511
  message?: string | undefined;
499
512
  icon?: string | undefined;
500
513
  } | undefined;
501
- tree?: {
502
- [x: string]: unknown;
503
- parentField?: string | undefined;
504
- labelField?: string | undefined;
505
- fields?: string[] | undefined;
506
- defaultExpandedDepth?: number | 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;
524
+ responsive?: undefined;
525
+ performance?: undefined;
526
+ appearance?: {
527
+ showDescription: boolean;
528
+ allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
507
529
  } | undefined;
508
- inlineEdit?: boolean | undefined;
509
- virtualScroll?: boolean | undefined;
510
530
  resizable?: boolean | undefined;
511
531
  kanban?: {
512
532
  groupByField: string;
@@ -566,27 +586,12 @@ declare const SysWebhook: Omit<{
566
586
  autoZoomToFilter?: boolean | undefined;
567
587
  } | undefined;
568
588
  chart?: {
569
- chartType: "bar" | "line" | "pie" | "area" | "scatter";
589
+ chartType: "bar" | "line" | "area" | "pie" | "scatter";
570
590
  dataset: string;
571
591
  values: string[];
572
592
  dimensions?: string[] | undefined;
573
593
  } | undefined;
574
594
  rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
575
- tabs?: {
576
- name: string;
577
- pinned: boolean;
578
- isDefault: boolean;
579
- visible: boolean;
580
- label?: string | undefined;
581
- icon?: string | undefined;
582
- view?: string | undefined;
583
- filter?: {
584
- field: string;
585
- operator: "in" | "contains" | "after" | "starts_with" | "ends_with" | "not_in" | "not_contains" | "between" | "is_null" | "is_not_null" | "is_empty" | "is_not_empty" | "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "before";
586
- value?: string | number | boolean | (string | number)[] | null | undefined;
587
- }[] | undefined;
588
- order?: number | undefined;
589
- }[] | undefined;
590
595
  searchableFields?: string[] | undefined;
591
596
  filterableFields?: string[] | undefined;
592
597
  striped?: boolean | undefined;
@@ -614,7 +619,54 @@ declare const SysWebhook: Omit<{
614
619
  fieldOrder?: string[] | undefined;
615
620
  rowActions?: string[] | undefined;
616
621
  bulkActions?: string[] | undefined;
617
- 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
+ label: string;
640
+ value: string | number | boolean;
641
+ }[] | undefined;
642
+ object?: string | undefined;
643
+ labelField?: string | undefined;
644
+ multiple?: boolean | undefined;
645
+ placeholder?: string | undefined;
646
+ }[] | undefined;
647
+ confirmText?: string | undefined;
648
+ confirmLabel?: string | undefined;
649
+ visible?: {
650
+ dialect: "cel" | "cron" | "template";
651
+ source?: string | undefined;
652
+ ast?: unknown;
653
+ meta?: {
654
+ rationale?: string | undefined;
655
+ generatedBy?: string | undefined;
656
+ } | undefined;
657
+ } | {
658
+ dialect: "cel" | "cron" | "template";
659
+ source?: string | undefined;
660
+ ast?: unknown;
661
+ meta?: {
662
+ rationale?: string | undefined;
663
+ generatedBy?: string | undefined;
664
+ } | undefined;
665
+ } | undefined;
666
+ maxRecords?: number | undefined;
667
+ batchSize?: number | undefined;
668
+ }[] | undefined;
669
+ virtualScroll?: boolean | undefined;
618
670
  conditionalFormatting?: {
619
671
  condition: {
620
672
  dialect: "cel" | "cron" | "template";
@@ -636,20 +688,6 @@ declare const SysWebhook: Omit<{
636
688
  style: Record<string, string>;
637
689
  }[] | undefined;
638
690
  exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
639
- userActions?: {
640
- sort: boolean;
641
- search: boolean;
642
- filter: boolean;
643
- refresh: boolean;
644
- rowHeight: boolean;
645
- addRecordForm: boolean;
646
- editInline: boolean;
647
- buttons?: string[] | undefined;
648
- } | undefined;
649
- appearance?: {
650
- showDescription: boolean;
651
- allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
652
- } | undefined;
653
691
  addRecord?: {
654
692
  enabled: boolean;
655
693
  position: "top" | "bottom" | "both";
@@ -658,18 +696,6 @@ declare const SysWebhook: Omit<{
658
696
  } | undefined;
659
697
  showRecordCount?: boolean | undefined;
660
698
  allowPrinting?: boolean | undefined;
661
- performance?: {
662
- lazyLoad?: boolean | undefined;
663
- virtualScroll?: {
664
- enabled: boolean;
665
- itemHeight?: number | undefined;
666
- overscan?: number | undefined;
667
- } | undefined;
668
- cacheStrategy?: "none" | "cache-first" | "network-first" | "stale-while-revalidate" | undefined;
669
- prefetch?: boolean | undefined;
670
- pageSize?: number | undefined;
671
- debounceMs?: number | undefined;
672
- } | undefined;
673
699
  userFilters?: {
674
700
  element: "toggle" | "dropdown";
675
701
  fields?: {
@@ -695,7 +721,7 @@ declare const SysWebhook: Omit<{
695
721
  feeds: boolean;
696
722
  activities: boolean;
697
723
  clone: boolean;
698
- apiMethods?: ("create" | "update" | "delete" | "get" | "list" | "bulk")[] | undefined;
724
+ apiMethods?: ("delete" | "update" | "create" | "get" | "list" | "bulk")[] | undefined;
699
725
  } | undefined;
700
726
  sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
701
727
  externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
@@ -712,6 +738,13 @@ declare const SysWebhook: Omit<{
712
738
  label: string;
713
739
  type: "url" | "form" | "script" | "flow" | "api" | "modal";
714
740
  refreshAfter: boolean;
741
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
742
+ _lockReason?: string | undefined;
743
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
744
+ _provenance?: "package" | "env-forced" | "org" | undefined;
745
+ _packageId?: string | undefined;
746
+ _packageVersion?: string | undefined;
747
+ _lockDocsUrl?: string | undefined;
715
748
  objectName?: string | undefined;
716
749
  icon?: string | undefined;
717
750
  locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
@@ -724,7 +757,7 @@ declare const SysWebhook: Omit<{
724
757
  } | {
725
758
  language: "js";
726
759
  source: string;
727
- capabilities: ("api.read" | "api.write" | "api.transaction" | "crypto.uuid" | "crypto.hash" | "log")[];
760
+ capabilities: ("crypto.uuid" | "api.read" | "api.write" | "api.transaction" | "log")[];
728
761
  timeoutMs?: number | undefined;
729
762
  memoryMb?: number | undefined;
730
763
  } | undefined;
@@ -735,7 +768,7 @@ declare const SysWebhook: Omit<{
735
768
  field?: string | undefined;
736
769
  objectOverride?: string | undefined;
737
770
  label?: string | undefined;
738
- type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "email" | "time" | "secret" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
771
+ 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;
739
772
  options?: {
740
773
  label: string;
741
774
  value: string;
@@ -759,7 +792,7 @@ declare const SysWebhook: Omit<{
759
792
  } | undefined;
760
793
  requiresFeature?: "twoFactor" | "passkeys" | "magicLink" | "organization" | "multiOrgEnabled" | "degradedTenancy" | "oidcProvider" | "sso" | "ssoEnforced" | "deviceAuthorization" | "admin" | "phoneNumber" | "phoneNumberOtp" | undefined;
761
794
  }, "requiresFeature">[] | undefined;
762
- variant?: "link" | "secondary" | "primary" | "danger" | "ghost" | undefined;
795
+ variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
763
796
  order?: number | undefined;
764
797
  confirmText?: string | undefined;
765
798
  successMessage?: string | undefined;
@@ -769,11 +802,11 @@ declare const SysWebhook: Omit<{
769
802
  title?: string | undefined;
770
803
  description?: string | undefined;
771
804
  acknowledge?: string | undefined;
772
- format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
805
+ format?: "text" | "secret" | "json" | "qrcode" | "code-list" | undefined;
773
806
  fields?: {
774
807
  path: string;
775
808
  label?: string | undefined;
776
- format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
809
+ format?: "text" | "secret" | "json" | "qrcode" | "code-list" | undefined;
777
810
  }[] | undefined;
778
811
  } | undefined;
779
812
  visible?: {
@@ -796,8 +829,8 @@ declare const SysWebhook: Omit<{
796
829
  } | undefined;
797
830
  } | undefined;
798
831
  requiredPermissions?: string[] | undefined;
799
- shortcut?: string | undefined;
800
- bulkEnabled?: boolean | undefined;
832
+ shortcut?: undefined;
833
+ bulkEnabled?: undefined;
801
834
  ai?: {
802
835
  exposed: boolean;
803
836
  description?: string | undefined;
@@ -966,15 +999,40 @@ declare const SysWebhook: Omit<{
966
999
  readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
967
1000
  readonly widget?: string | undefined;
968
1001
  readonly multiple?: boolean | undefined;
1002
+ readonly storage?: {
1003
+ notNull?: boolean | undefined;
1004
+ } | undefined;
969
1005
  readonly maxSize?: number | undefined;
970
- readonly externalId?: boolean | undefined;
971
- readonly defaultValue?: unknown;
972
- readonly requiredPermissions?: string[] | undefined;
973
- readonly group?: string | undefined;
974
- readonly hidden?: boolean | undefined;
975
- readonly system?: boolean | undefined;
976
- readonly min?: number | undefined;
977
- readonly max?: number | undefined;
1006
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
1007
+ readonly _lockReason?: string | undefined;
1008
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
1009
+ readonly _lockDocsUrl?: string | undefined;
1010
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
1011
+ readonly _packageId?: string | undefined;
1012
+ readonly _packageVersion?: string | undefined;
1013
+ readonly lookupFilters?: {
1014
+ field: string;
1015
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1016
+ value: any;
1017
+ }[] | undefined;
1018
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1019
+ readonly expression?: {
1020
+ dialect: "cel" | "cron" | "template";
1021
+ source?: string | undefined;
1022
+ ast?: unknown;
1023
+ meta?: {
1024
+ rationale?: string | undefined;
1025
+ generatedBy?: string | undefined;
1026
+ } | undefined;
1027
+ } | undefined;
1028
+ readonly autonumberFormat?: string | undefined;
1029
+ readonly summaryOperations?: {
1030
+ object: string;
1031
+ field: string;
1032
+ function: "min" | "max" | "count" | "sum" | "avg";
1033
+ relationshipField?: string | undefined;
1034
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
1035
+ } | undefined;
978
1036
  readonly visibleWhen?: {
979
1037
  dialect: "cel" | "cron" | "template";
980
1038
  source?: string | undefined;
@@ -984,14 +1042,16 @@ declare const SysWebhook: Omit<{
984
1042
  generatedBy?: string | undefined;
985
1043
  } | undefined;
986
1044
  } | undefined;
1045
+ readonly scale?: number | undefined;
987
1046
  readonly searchable?: boolean | undefined;
988
1047
  readonly unique?: boolean | "global" | undefined;
1048
+ readonly defaultValue?: unknown;
989
1049
  readonly maxLength?: number | undefined;
990
1050
  readonly minLength?: number | undefined;
991
- readonly scale?: number | undefined;
1051
+ readonly min?: number | undefined;
1052
+ readonly max?: number | undefined;
992
1053
  readonly accept?: string[] | undefined;
993
1054
  readonly reference?: string | undefined;
994
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
995
1055
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
996
1056
  readonly inlineTitle?: string | undefined;
997
1057
  readonly inlineColumns?: any[] | undefined;
@@ -1008,32 +1068,11 @@ declare const SysWebhook: Omit<{
1008
1068
  type?: string | undefined;
1009
1069
  })[] | undefined;
1010
1070
  readonly lookupPageSize?: number | undefined;
1011
- readonly lookupFilters?: {
1012
- field: string;
1013
- operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
1014
- value: any;
1015
- }[] | undefined;
1016
1071
  readonly dependsOn?: (string | {
1017
1072
  field: string;
1018
1073
  param?: string | undefined;
1019
1074
  })[] | undefined;
1020
1075
  readonly allowCreate?: boolean | undefined;
1021
- readonly expression?: {
1022
- dialect: "cel" | "cron" | "template";
1023
- source?: string | undefined;
1024
- ast?: unknown;
1025
- meta?: {
1026
- rationale?: string | undefined;
1027
- generatedBy?: string | undefined;
1028
- } | undefined;
1029
- } | 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;
1037
1076
  readonly language?: string | undefined;
1038
1077
  readonly step?: number | undefined;
1039
1078
  readonly currencyConfig?: {
@@ -1043,6 +1082,7 @@ declare const SysWebhook: Omit<{
1043
1082
  } | undefined;
1044
1083
  readonly dimensions?: number | undefined;
1045
1084
  readonly trackHistory?: boolean | undefined;
1085
+ readonly group?: string | undefined;
1046
1086
  readonly readonlyWhen?: {
1047
1087
  dialect: "cel" | "cron" | "template";
1048
1088
  source?: string | undefined;
@@ -1062,10 +1102,13 @@ declare const SysWebhook: Omit<{
1062
1102
  } | undefined;
1063
1103
  } | undefined;
1064
1104
  readonly conditionalRequired?: undefined;
1105
+ readonly hidden?: boolean | undefined;
1106
+ readonly requiredPermissions?: string[] | undefined;
1065
1107
  readonly ackPlaintextMasking?: boolean | undefined;
1108
+ readonly system?: boolean | undefined;
1066
1109
  readonly sortable?: boolean | undefined;
1067
1110
  readonly inlineHelpText?: string | undefined;
1068
- readonly autonumberFormat?: string | undefined;
1111
+ readonly externalId?: boolean | undefined;
1069
1112
  readonly type: "text";
1070
1113
  };
1071
1114
  readonly name: {
@@ -1094,15 +1137,40 @@ declare const SysWebhook: Omit<{
1094
1137
  readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1095
1138
  readonly widget?: string | undefined;
1096
1139
  readonly multiple?: boolean | undefined;
1140
+ readonly storage?: {
1141
+ notNull?: boolean | undefined;
1142
+ } | undefined;
1097
1143
  readonly maxSize?: number | undefined;
1098
- readonly externalId?: boolean | undefined;
1099
- readonly defaultValue?: unknown;
1100
- readonly requiredPermissions?: string[] | undefined;
1101
- readonly group?: string | undefined;
1102
- readonly hidden?: boolean | undefined;
1103
- readonly system?: boolean | undefined;
1104
- readonly min?: number | undefined;
1105
- readonly max?: number | undefined;
1144
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
1145
+ readonly _lockReason?: string | undefined;
1146
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
1147
+ readonly _lockDocsUrl?: string | undefined;
1148
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
1149
+ readonly _packageId?: string | undefined;
1150
+ readonly _packageVersion?: string | undefined;
1151
+ readonly lookupFilters?: {
1152
+ field: string;
1153
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1154
+ value: any;
1155
+ }[] | undefined;
1156
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1157
+ readonly expression?: {
1158
+ dialect: "cel" | "cron" | "template";
1159
+ source?: string | undefined;
1160
+ ast?: unknown;
1161
+ meta?: {
1162
+ rationale?: string | undefined;
1163
+ generatedBy?: string | undefined;
1164
+ } | undefined;
1165
+ } | undefined;
1166
+ readonly autonumberFormat?: string | undefined;
1167
+ readonly summaryOperations?: {
1168
+ object: string;
1169
+ field: string;
1170
+ function: "min" | "max" | "count" | "sum" | "avg";
1171
+ relationshipField?: string | undefined;
1172
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
1173
+ } | undefined;
1106
1174
  readonly visibleWhen?: {
1107
1175
  dialect: "cel" | "cron" | "template";
1108
1176
  source?: string | undefined;
@@ -1112,14 +1180,16 @@ declare const SysWebhook: Omit<{
1112
1180
  generatedBy?: string | undefined;
1113
1181
  } | undefined;
1114
1182
  } | undefined;
1183
+ readonly scale?: number | undefined;
1115
1184
  readonly searchable?: boolean | undefined;
1116
1185
  readonly unique?: boolean | "global" | undefined;
1186
+ readonly defaultValue?: unknown;
1117
1187
  readonly maxLength?: number | undefined;
1118
1188
  readonly minLength?: number | undefined;
1119
- readonly scale?: number | undefined;
1189
+ readonly min?: number | undefined;
1190
+ readonly max?: number | undefined;
1120
1191
  readonly accept?: string[] | undefined;
1121
1192
  readonly reference?: string | undefined;
1122
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1123
1193
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1124
1194
  readonly inlineTitle?: string | undefined;
1125
1195
  readonly inlineColumns?: any[] | undefined;
@@ -1136,32 +1206,11 @@ declare const SysWebhook: Omit<{
1136
1206
  type?: string | undefined;
1137
1207
  })[] | undefined;
1138
1208
  readonly lookupPageSize?: number | undefined;
1139
- readonly lookupFilters?: {
1140
- field: string;
1141
- operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
1142
- value: any;
1143
- }[] | undefined;
1144
1209
  readonly dependsOn?: (string | {
1145
1210
  field: string;
1146
1211
  param?: string | undefined;
1147
1212
  })[] | undefined;
1148
1213
  readonly allowCreate?: boolean | undefined;
1149
- readonly expression?: {
1150
- dialect: "cel" | "cron" | "template";
1151
- source?: string | undefined;
1152
- ast?: unknown;
1153
- meta?: {
1154
- rationale?: string | undefined;
1155
- generatedBy?: string | undefined;
1156
- } | undefined;
1157
- } | undefined;
1158
- readonly summaryOperations?: {
1159
- object: string;
1160
- field: string;
1161
- function: "min" | "max" | "count" | "sum" | "avg";
1162
- relationshipField?: string | undefined;
1163
- filter?: _objectstack_spec_data.FilterCondition | undefined;
1164
- } | undefined;
1165
1214
  readonly language?: string | undefined;
1166
1215
  readonly step?: number | undefined;
1167
1216
  readonly currencyConfig?: {
@@ -1171,6 +1220,7 @@ declare const SysWebhook: Omit<{
1171
1220
  } | undefined;
1172
1221
  readonly dimensions?: number | undefined;
1173
1222
  readonly trackHistory?: boolean | undefined;
1223
+ readonly group?: string | undefined;
1174
1224
  readonly readonlyWhen?: {
1175
1225
  dialect: "cel" | "cron" | "template";
1176
1226
  source?: string | undefined;
@@ -1190,10 +1240,13 @@ declare const SysWebhook: Omit<{
1190
1240
  } | undefined;
1191
1241
  } | undefined;
1192
1242
  readonly conditionalRequired?: undefined;
1243
+ readonly hidden?: boolean | undefined;
1244
+ readonly requiredPermissions?: string[] | undefined;
1193
1245
  readonly ackPlaintextMasking?: boolean | undefined;
1246
+ readonly system?: boolean | undefined;
1194
1247
  readonly sortable?: boolean | undefined;
1195
1248
  readonly inlineHelpText?: string | undefined;
1196
- readonly autonumberFormat?: string | undefined;
1249
+ readonly externalId?: boolean | undefined;
1197
1250
  readonly type: "text";
1198
1251
  };
1199
1252
  readonly label: {
@@ -1222,15 +1275,40 @@ declare const SysWebhook: Omit<{
1222
1275
  readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1223
1276
  readonly widget?: string | undefined;
1224
1277
  readonly multiple?: boolean | undefined;
1278
+ readonly storage?: {
1279
+ notNull?: boolean | undefined;
1280
+ } | undefined;
1225
1281
  readonly maxSize?: number | undefined;
1226
- readonly externalId?: boolean | undefined;
1227
- readonly defaultValue?: unknown;
1228
- readonly requiredPermissions?: string[] | undefined;
1229
- readonly group?: string | undefined;
1230
- readonly hidden?: boolean | undefined;
1231
- readonly system?: boolean | undefined;
1232
- readonly min?: number | undefined;
1233
- readonly max?: number | undefined;
1282
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
1283
+ readonly _lockReason?: string | undefined;
1284
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
1285
+ readonly _lockDocsUrl?: string | undefined;
1286
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
1287
+ readonly _packageId?: string | undefined;
1288
+ readonly _packageVersion?: string | undefined;
1289
+ readonly lookupFilters?: {
1290
+ field: string;
1291
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1292
+ value: any;
1293
+ }[] | undefined;
1294
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1295
+ readonly expression?: {
1296
+ dialect: "cel" | "cron" | "template";
1297
+ source?: string | undefined;
1298
+ ast?: unknown;
1299
+ meta?: {
1300
+ rationale?: string | undefined;
1301
+ generatedBy?: string | undefined;
1302
+ } | undefined;
1303
+ } | undefined;
1304
+ readonly autonumberFormat?: string | undefined;
1305
+ readonly summaryOperations?: {
1306
+ object: string;
1307
+ field: string;
1308
+ function: "min" | "max" | "count" | "sum" | "avg";
1309
+ relationshipField?: string | undefined;
1310
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
1311
+ } | undefined;
1234
1312
  readonly visibleWhen?: {
1235
1313
  dialect: "cel" | "cron" | "template";
1236
1314
  source?: string | undefined;
@@ -1240,14 +1318,16 @@ declare const SysWebhook: Omit<{
1240
1318
  generatedBy?: string | undefined;
1241
1319
  } | undefined;
1242
1320
  } | undefined;
1321
+ readonly scale?: number | undefined;
1243
1322
  readonly searchable?: boolean | undefined;
1244
1323
  readonly unique?: boolean | "global" | undefined;
1324
+ readonly defaultValue?: unknown;
1245
1325
  readonly maxLength?: number | undefined;
1246
1326
  readonly minLength?: number | undefined;
1247
- readonly scale?: number | undefined;
1327
+ readonly min?: number | undefined;
1328
+ readonly max?: number | undefined;
1248
1329
  readonly accept?: string[] | undefined;
1249
1330
  readonly reference?: string | undefined;
1250
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1251
1331
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1252
1332
  readonly inlineTitle?: string | undefined;
1253
1333
  readonly inlineColumns?: any[] | undefined;
@@ -1264,32 +1344,11 @@ declare const SysWebhook: Omit<{
1264
1344
  type?: string | undefined;
1265
1345
  })[] | undefined;
1266
1346
  readonly lookupPageSize?: number | undefined;
1267
- readonly lookupFilters?: {
1268
- field: string;
1269
- operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
1270
- value: any;
1271
- }[] | undefined;
1272
1347
  readonly dependsOn?: (string | {
1273
1348
  field: string;
1274
1349
  param?: string | undefined;
1275
1350
  })[] | undefined;
1276
1351
  readonly allowCreate?: boolean | undefined;
1277
- readonly expression?: {
1278
- dialect: "cel" | "cron" | "template";
1279
- source?: string | undefined;
1280
- ast?: unknown;
1281
- meta?: {
1282
- rationale?: string | undefined;
1283
- generatedBy?: string | undefined;
1284
- } | undefined;
1285
- } | undefined;
1286
- readonly summaryOperations?: {
1287
- object: string;
1288
- field: string;
1289
- function: "min" | "max" | "count" | "sum" | "avg";
1290
- relationshipField?: string | undefined;
1291
- filter?: _objectstack_spec_data.FilterCondition | undefined;
1292
- } | undefined;
1293
1352
  readonly language?: string | undefined;
1294
1353
  readonly step?: number | undefined;
1295
1354
  readonly currencyConfig?: {
@@ -1299,6 +1358,7 @@ declare const SysWebhook: Omit<{
1299
1358
  } | undefined;
1300
1359
  readonly dimensions?: number | undefined;
1301
1360
  readonly trackHistory?: boolean | undefined;
1361
+ readonly group?: string | undefined;
1302
1362
  readonly readonlyWhen?: {
1303
1363
  dialect: "cel" | "cron" | "template";
1304
1364
  source?: string | undefined;
@@ -1318,10 +1378,13 @@ declare const SysWebhook: Omit<{
1318
1378
  } | undefined;
1319
1379
  } | undefined;
1320
1380
  readonly conditionalRequired?: undefined;
1381
+ readonly hidden?: boolean | undefined;
1382
+ readonly requiredPermissions?: string[] | undefined;
1321
1383
  readonly ackPlaintextMasking?: boolean | undefined;
1384
+ readonly system?: boolean | undefined;
1322
1385
  readonly sortable?: boolean | undefined;
1323
1386
  readonly inlineHelpText?: string | undefined;
1324
- readonly autonumberFormat?: string | undefined;
1387
+ readonly externalId?: boolean | undefined;
1325
1388
  readonly type: "text";
1326
1389
  };
1327
1390
  readonly object_name: {
@@ -1350,15 +1413,40 @@ declare const SysWebhook: Omit<{
1350
1413
  readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1351
1414
  readonly widget?: string | undefined;
1352
1415
  readonly multiple?: boolean | undefined;
1416
+ readonly storage?: {
1417
+ notNull?: boolean | undefined;
1418
+ } | undefined;
1353
1419
  readonly maxSize?: number | undefined;
1354
- readonly externalId?: boolean | undefined;
1355
- readonly defaultValue?: unknown;
1356
- readonly requiredPermissions?: string[] | undefined;
1357
- readonly group?: string | undefined;
1358
- readonly hidden?: boolean | undefined;
1359
- readonly system?: boolean | undefined;
1360
- readonly min?: number | undefined;
1361
- readonly max?: number | undefined;
1420
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
1421
+ readonly _lockReason?: string | undefined;
1422
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
1423
+ readonly _lockDocsUrl?: string | undefined;
1424
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
1425
+ readonly _packageId?: string | undefined;
1426
+ readonly _packageVersion?: string | undefined;
1427
+ readonly lookupFilters?: {
1428
+ field: string;
1429
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1430
+ value: any;
1431
+ }[] | undefined;
1432
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1433
+ readonly expression?: {
1434
+ dialect: "cel" | "cron" | "template";
1435
+ source?: string | undefined;
1436
+ ast?: unknown;
1437
+ meta?: {
1438
+ rationale?: string | undefined;
1439
+ generatedBy?: string | undefined;
1440
+ } | undefined;
1441
+ } | undefined;
1442
+ readonly autonumberFormat?: string | undefined;
1443
+ readonly summaryOperations?: {
1444
+ object: string;
1445
+ field: string;
1446
+ function: "min" | "max" | "count" | "sum" | "avg";
1447
+ relationshipField?: string | undefined;
1448
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
1449
+ } | undefined;
1362
1450
  readonly visibleWhen?: {
1363
1451
  dialect: "cel" | "cron" | "template";
1364
1452
  source?: string | undefined;
@@ -1368,14 +1456,16 @@ declare const SysWebhook: Omit<{
1368
1456
  generatedBy?: string | undefined;
1369
1457
  } | undefined;
1370
1458
  } | undefined;
1459
+ readonly scale?: number | undefined;
1371
1460
  readonly searchable?: boolean | undefined;
1372
1461
  readonly unique?: boolean | "global" | undefined;
1462
+ readonly defaultValue?: unknown;
1373
1463
  readonly maxLength?: number | undefined;
1374
1464
  readonly minLength?: number | undefined;
1375
- readonly scale?: number | undefined;
1465
+ readonly min?: number | undefined;
1466
+ readonly max?: number | undefined;
1376
1467
  readonly accept?: string[] | undefined;
1377
1468
  readonly reference?: string | undefined;
1378
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1379
1469
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1380
1470
  readonly inlineTitle?: string | undefined;
1381
1471
  readonly inlineColumns?: any[] | undefined;
@@ -1392,32 +1482,11 @@ declare const SysWebhook: Omit<{
1392
1482
  type?: string | undefined;
1393
1483
  })[] | undefined;
1394
1484
  readonly lookupPageSize?: number | undefined;
1395
- readonly lookupFilters?: {
1396
- field: string;
1397
- operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
1398
- value: any;
1399
- }[] | undefined;
1400
1485
  readonly dependsOn?: (string | {
1401
1486
  field: string;
1402
1487
  param?: string | undefined;
1403
1488
  })[] | undefined;
1404
1489
  readonly allowCreate?: boolean | undefined;
1405
- readonly expression?: {
1406
- dialect: "cel" | "cron" | "template";
1407
- source?: string | undefined;
1408
- ast?: unknown;
1409
- meta?: {
1410
- rationale?: string | undefined;
1411
- generatedBy?: string | undefined;
1412
- } | undefined;
1413
- } | undefined;
1414
- readonly summaryOperations?: {
1415
- object: string;
1416
- field: string;
1417
- function: "min" | "max" | "count" | "sum" | "avg";
1418
- relationshipField?: string | undefined;
1419
- filter?: _objectstack_spec_data.FilterCondition | undefined;
1420
- } | undefined;
1421
1490
  readonly language?: string | undefined;
1422
1491
  readonly step?: number | undefined;
1423
1492
  readonly currencyConfig?: {
@@ -1427,6 +1496,7 @@ declare const SysWebhook: Omit<{
1427
1496
  } | undefined;
1428
1497
  readonly dimensions?: number | undefined;
1429
1498
  readonly trackHistory?: boolean | undefined;
1499
+ readonly group?: string | undefined;
1430
1500
  readonly readonlyWhen?: {
1431
1501
  dialect: "cel" | "cron" | "template";
1432
1502
  source?: string | undefined;
@@ -1446,10 +1516,13 @@ declare const SysWebhook: Omit<{
1446
1516
  } | undefined;
1447
1517
  } | undefined;
1448
1518
  readonly conditionalRequired?: undefined;
1519
+ readonly hidden?: boolean | undefined;
1520
+ readonly requiredPermissions?: string[] | undefined;
1449
1521
  readonly ackPlaintextMasking?: boolean | undefined;
1522
+ readonly system?: boolean | undefined;
1450
1523
  readonly sortable?: boolean | undefined;
1451
1524
  readonly inlineHelpText?: string | undefined;
1452
- readonly autonumberFormat?: string | undefined;
1525
+ readonly externalId?: boolean | undefined;
1453
1526
  readonly type: "text";
1454
1527
  };
1455
1528
  readonly triggers: {
@@ -1478,15 +1551,40 @@ declare const SysWebhook: Omit<{
1478
1551
  readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1479
1552
  readonly widget?: string | undefined;
1480
1553
  readonly multiple?: boolean | undefined;
1554
+ readonly storage?: {
1555
+ notNull?: boolean | undefined;
1556
+ } | undefined;
1481
1557
  readonly maxSize?: number | undefined;
1482
- readonly externalId?: boolean | undefined;
1483
- readonly defaultValue?: unknown;
1484
- readonly requiredPermissions?: string[] | undefined;
1485
- readonly group?: string | undefined;
1486
- readonly hidden?: boolean | undefined;
1487
- readonly system?: boolean | undefined;
1488
- readonly min?: number | undefined;
1489
- readonly max?: number | undefined;
1558
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
1559
+ readonly _lockReason?: string | undefined;
1560
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
1561
+ readonly _lockDocsUrl?: string | undefined;
1562
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
1563
+ readonly _packageId?: string | undefined;
1564
+ readonly _packageVersion?: string | undefined;
1565
+ readonly lookupFilters?: {
1566
+ field: string;
1567
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1568
+ value: any;
1569
+ }[] | undefined;
1570
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1571
+ readonly expression?: {
1572
+ dialect: "cel" | "cron" | "template";
1573
+ source?: string | undefined;
1574
+ ast?: unknown;
1575
+ meta?: {
1576
+ rationale?: string | undefined;
1577
+ generatedBy?: string | undefined;
1578
+ } | undefined;
1579
+ } | undefined;
1580
+ readonly autonumberFormat?: string | undefined;
1581
+ readonly summaryOperations?: {
1582
+ object: string;
1583
+ field: string;
1584
+ function: "min" | "max" | "count" | "sum" | "avg";
1585
+ relationshipField?: string | undefined;
1586
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
1587
+ } | undefined;
1490
1588
  readonly visibleWhen?: {
1491
1589
  dialect: "cel" | "cron" | "template";
1492
1590
  source?: string | undefined;
@@ -1496,14 +1594,16 @@ declare const SysWebhook: Omit<{
1496
1594
  generatedBy?: string | undefined;
1497
1595
  } | undefined;
1498
1596
  } | undefined;
1597
+ readonly scale?: number | undefined;
1499
1598
  readonly searchable?: boolean | undefined;
1500
1599
  readonly unique?: boolean | "global" | undefined;
1600
+ readonly defaultValue?: unknown;
1501
1601
  readonly maxLength?: number | undefined;
1502
1602
  readonly minLength?: number | undefined;
1503
- readonly scale?: number | undefined;
1603
+ readonly min?: number | undefined;
1604
+ readonly max?: number | undefined;
1504
1605
  readonly accept?: string[] | undefined;
1505
1606
  readonly reference?: string | undefined;
1506
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1507
1607
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1508
1608
  readonly inlineTitle?: string | undefined;
1509
1609
  readonly inlineColumns?: any[] | undefined;
@@ -1520,32 +1620,11 @@ declare const SysWebhook: Omit<{
1520
1620
  type?: string | undefined;
1521
1621
  })[] | undefined;
1522
1622
  readonly lookupPageSize?: number | undefined;
1523
- readonly lookupFilters?: {
1524
- field: string;
1525
- operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
1526
- value: any;
1527
- }[] | undefined;
1528
1623
  readonly dependsOn?: (string | {
1529
1624
  field: string;
1530
1625
  param?: string | undefined;
1531
1626
  })[] | undefined;
1532
1627
  readonly allowCreate?: boolean | undefined;
1533
- readonly expression?: {
1534
- dialect: "cel" | "cron" | "template";
1535
- source?: string | undefined;
1536
- ast?: unknown;
1537
- meta?: {
1538
- rationale?: string | undefined;
1539
- generatedBy?: string | undefined;
1540
- } | undefined;
1541
- } | undefined;
1542
- readonly summaryOperations?: {
1543
- object: string;
1544
- field: string;
1545
- function: "min" | "max" | "count" | "sum" | "avg";
1546
- relationshipField?: string | undefined;
1547
- filter?: _objectstack_spec_data.FilterCondition | undefined;
1548
- } | undefined;
1549
1628
  readonly language?: string | undefined;
1550
1629
  readonly step?: number | undefined;
1551
1630
  readonly currencyConfig?: {
@@ -1555,6 +1634,7 @@ declare const SysWebhook: Omit<{
1555
1634
  } | undefined;
1556
1635
  readonly dimensions?: number | undefined;
1557
1636
  readonly trackHistory?: boolean | undefined;
1637
+ readonly group?: string | undefined;
1558
1638
  readonly readonlyWhen?: {
1559
1639
  dialect: "cel" | "cron" | "template";
1560
1640
  source?: string | undefined;
@@ -1574,10 +1654,13 @@ declare const SysWebhook: Omit<{
1574
1654
  } | undefined;
1575
1655
  } | undefined;
1576
1656
  readonly conditionalRequired?: undefined;
1657
+ readonly hidden?: boolean | undefined;
1658
+ readonly requiredPermissions?: string[] | undefined;
1577
1659
  readonly ackPlaintextMasking?: boolean | undefined;
1660
+ readonly system?: boolean | undefined;
1578
1661
  readonly sortable?: boolean | undefined;
1579
1662
  readonly inlineHelpText?: string | undefined;
1580
- readonly autonumberFormat?: string | undefined;
1663
+ readonly externalId?: boolean | undefined;
1581
1664
  readonly type: "select";
1582
1665
  };
1583
1666
  readonly url: {
@@ -1606,15 +1689,40 @@ declare const SysWebhook: Omit<{
1606
1689
  readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1607
1690
  readonly widget?: string | undefined;
1608
1691
  readonly multiple?: boolean | undefined;
1692
+ readonly storage?: {
1693
+ notNull?: boolean | undefined;
1694
+ } | undefined;
1609
1695
  readonly maxSize?: number | undefined;
1610
- readonly externalId?: boolean | undefined;
1611
- readonly defaultValue?: unknown;
1612
- readonly requiredPermissions?: string[] | undefined;
1613
- readonly group?: string | undefined;
1614
- readonly hidden?: boolean | undefined;
1615
- readonly system?: boolean | undefined;
1616
- readonly min?: number | undefined;
1617
- readonly max?: number | undefined;
1696
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
1697
+ readonly _lockReason?: string | undefined;
1698
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
1699
+ readonly _lockDocsUrl?: string | undefined;
1700
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
1701
+ readonly _packageId?: string | undefined;
1702
+ readonly _packageVersion?: string | undefined;
1703
+ readonly lookupFilters?: {
1704
+ field: string;
1705
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1706
+ value: any;
1707
+ }[] | undefined;
1708
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1709
+ readonly expression?: {
1710
+ dialect: "cel" | "cron" | "template";
1711
+ source?: string | undefined;
1712
+ ast?: unknown;
1713
+ meta?: {
1714
+ rationale?: string | undefined;
1715
+ generatedBy?: string | undefined;
1716
+ } | undefined;
1717
+ } | undefined;
1718
+ readonly autonumberFormat?: string | undefined;
1719
+ readonly summaryOperations?: {
1720
+ object: string;
1721
+ field: string;
1722
+ function: "min" | "max" | "count" | "sum" | "avg";
1723
+ relationshipField?: string | undefined;
1724
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
1725
+ } | undefined;
1618
1726
  readonly visibleWhen?: {
1619
1727
  dialect: "cel" | "cron" | "template";
1620
1728
  source?: string | undefined;
@@ -1624,14 +1732,16 @@ declare const SysWebhook: Omit<{
1624
1732
  generatedBy?: string | undefined;
1625
1733
  } | undefined;
1626
1734
  } | undefined;
1735
+ readonly scale?: number | undefined;
1627
1736
  readonly searchable?: boolean | undefined;
1628
1737
  readonly unique?: boolean | "global" | undefined;
1738
+ readonly defaultValue?: unknown;
1629
1739
  readonly maxLength?: number | undefined;
1630
1740
  readonly minLength?: number | undefined;
1631
- readonly scale?: number | undefined;
1741
+ readonly min?: number | undefined;
1742
+ readonly max?: number | undefined;
1632
1743
  readonly accept?: string[] | undefined;
1633
1744
  readonly reference?: string | undefined;
1634
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1635
1745
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1636
1746
  readonly inlineTitle?: string | undefined;
1637
1747
  readonly inlineColumns?: any[] | undefined;
@@ -1648,32 +1758,11 @@ declare const SysWebhook: Omit<{
1648
1758
  type?: string | undefined;
1649
1759
  })[] | undefined;
1650
1760
  readonly lookupPageSize?: number | undefined;
1651
- readonly lookupFilters?: {
1652
- field: string;
1653
- operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
1654
- value: any;
1655
- }[] | undefined;
1656
1761
  readonly dependsOn?: (string | {
1657
1762
  field: string;
1658
1763
  param?: string | undefined;
1659
1764
  })[] | undefined;
1660
1765
  readonly allowCreate?: boolean | undefined;
1661
- readonly expression?: {
1662
- dialect: "cel" | "cron" | "template";
1663
- source?: string | undefined;
1664
- ast?: unknown;
1665
- meta?: {
1666
- rationale?: string | undefined;
1667
- generatedBy?: string | undefined;
1668
- } | undefined;
1669
- } | undefined;
1670
- readonly summaryOperations?: {
1671
- object: string;
1672
- field: string;
1673
- function: "min" | "max" | "count" | "sum" | "avg";
1674
- relationshipField?: string | undefined;
1675
- filter?: _objectstack_spec_data.FilterCondition | undefined;
1676
- } | undefined;
1677
1766
  readonly language?: string | undefined;
1678
1767
  readonly step?: number | undefined;
1679
1768
  readonly currencyConfig?: {
@@ -1683,6 +1772,7 @@ declare const SysWebhook: Omit<{
1683
1772
  } | undefined;
1684
1773
  readonly dimensions?: number | undefined;
1685
1774
  readonly trackHistory?: boolean | undefined;
1775
+ readonly group?: string | undefined;
1686
1776
  readonly readonlyWhen?: {
1687
1777
  dialect: "cel" | "cron" | "template";
1688
1778
  source?: string | undefined;
@@ -1702,10 +1792,13 @@ declare const SysWebhook: Omit<{
1702
1792
  } | undefined;
1703
1793
  } | undefined;
1704
1794
  readonly conditionalRequired?: undefined;
1795
+ readonly hidden?: boolean | undefined;
1796
+ readonly requiredPermissions?: string[] | undefined;
1705
1797
  readonly ackPlaintextMasking?: boolean | undefined;
1798
+ readonly system?: boolean | undefined;
1706
1799
  readonly sortable?: boolean | undefined;
1707
1800
  readonly inlineHelpText?: string | undefined;
1708
- readonly autonumberFormat?: string | undefined;
1801
+ readonly externalId?: boolean | undefined;
1709
1802
  readonly type: "text";
1710
1803
  };
1711
1804
  readonly method: {
@@ -1734,15 +1827,40 @@ declare const SysWebhook: Omit<{
1734
1827
  readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1735
1828
  readonly widget?: string | undefined;
1736
1829
  readonly multiple?: boolean | undefined;
1830
+ readonly storage?: {
1831
+ notNull?: boolean | undefined;
1832
+ } | undefined;
1737
1833
  readonly maxSize?: number | undefined;
1738
- readonly externalId?: boolean | undefined;
1739
- readonly defaultValue?: unknown;
1740
- readonly requiredPermissions?: string[] | undefined;
1741
- readonly group?: string | undefined;
1742
- readonly hidden?: boolean | undefined;
1743
- readonly system?: boolean | undefined;
1744
- readonly min?: number | undefined;
1745
- readonly max?: number | undefined;
1834
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
1835
+ readonly _lockReason?: string | undefined;
1836
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
1837
+ readonly _lockDocsUrl?: string | undefined;
1838
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
1839
+ readonly _packageId?: string | undefined;
1840
+ readonly _packageVersion?: string | undefined;
1841
+ readonly lookupFilters?: {
1842
+ field: string;
1843
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1844
+ value: any;
1845
+ }[] | undefined;
1846
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1847
+ readonly expression?: {
1848
+ dialect: "cel" | "cron" | "template";
1849
+ source?: string | undefined;
1850
+ ast?: unknown;
1851
+ meta?: {
1852
+ rationale?: string | undefined;
1853
+ generatedBy?: string | undefined;
1854
+ } | undefined;
1855
+ } | undefined;
1856
+ readonly autonumberFormat?: string | undefined;
1857
+ readonly summaryOperations?: {
1858
+ object: string;
1859
+ field: string;
1860
+ function: "min" | "max" | "count" | "sum" | "avg";
1861
+ relationshipField?: string | undefined;
1862
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
1863
+ } | undefined;
1746
1864
  readonly visibleWhen?: {
1747
1865
  dialect: "cel" | "cron" | "template";
1748
1866
  source?: string | undefined;
@@ -1752,14 +1870,16 @@ declare const SysWebhook: Omit<{
1752
1870
  generatedBy?: string | undefined;
1753
1871
  } | undefined;
1754
1872
  } | undefined;
1873
+ readonly scale?: number | undefined;
1755
1874
  readonly searchable?: boolean | undefined;
1756
1875
  readonly unique?: boolean | "global" | undefined;
1876
+ readonly defaultValue?: unknown;
1757
1877
  readonly maxLength?: number | undefined;
1758
1878
  readonly minLength?: number | undefined;
1759
- readonly scale?: number | undefined;
1879
+ readonly min?: number | undefined;
1880
+ readonly max?: number | undefined;
1760
1881
  readonly accept?: string[] | undefined;
1761
1882
  readonly reference?: string | undefined;
1762
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1763
1883
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1764
1884
  readonly inlineTitle?: string | undefined;
1765
1885
  readonly inlineColumns?: any[] | undefined;
@@ -1776,32 +1896,11 @@ declare const SysWebhook: Omit<{
1776
1896
  type?: string | undefined;
1777
1897
  })[] | undefined;
1778
1898
  readonly lookupPageSize?: number | undefined;
1779
- readonly lookupFilters?: {
1780
- field: string;
1781
- operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
1782
- value: any;
1783
- }[] | undefined;
1784
1899
  readonly dependsOn?: (string | {
1785
1900
  field: string;
1786
1901
  param?: string | undefined;
1787
1902
  })[] | undefined;
1788
1903
  readonly allowCreate?: boolean | undefined;
1789
- readonly expression?: {
1790
- dialect: "cel" | "cron" | "template";
1791
- source?: string | undefined;
1792
- ast?: unknown;
1793
- meta?: {
1794
- rationale?: string | undefined;
1795
- generatedBy?: string | undefined;
1796
- } | undefined;
1797
- } | undefined;
1798
- readonly summaryOperations?: {
1799
- object: string;
1800
- field: string;
1801
- function: "min" | "max" | "count" | "sum" | "avg";
1802
- relationshipField?: string | undefined;
1803
- filter?: _objectstack_spec_data.FilterCondition | undefined;
1804
- } | undefined;
1805
1904
  readonly language?: string | undefined;
1806
1905
  readonly step?: number | undefined;
1807
1906
  readonly currencyConfig?: {
@@ -1811,6 +1910,7 @@ declare const SysWebhook: Omit<{
1811
1910
  } | undefined;
1812
1911
  readonly dimensions?: number | undefined;
1813
1912
  readonly trackHistory?: boolean | undefined;
1913
+ readonly group?: string | undefined;
1814
1914
  readonly readonlyWhen?: {
1815
1915
  dialect: "cel" | "cron" | "template";
1816
1916
  source?: string | undefined;
@@ -1830,10 +1930,13 @@ declare const SysWebhook: Omit<{
1830
1930
  } | undefined;
1831
1931
  } | undefined;
1832
1932
  readonly conditionalRequired?: undefined;
1933
+ readonly hidden?: boolean | undefined;
1934
+ readonly requiredPermissions?: string[] | undefined;
1833
1935
  readonly ackPlaintextMasking?: boolean | undefined;
1936
+ readonly system?: boolean | undefined;
1834
1937
  readonly sortable?: boolean | undefined;
1835
1938
  readonly inlineHelpText?: string | undefined;
1836
- readonly autonumberFormat?: string | undefined;
1939
+ readonly externalId?: boolean | undefined;
1837
1940
  readonly type: "select";
1838
1941
  };
1839
1942
  readonly description: {
@@ -1862,15 +1965,40 @@ declare const SysWebhook: Omit<{
1862
1965
  readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1863
1966
  readonly widget?: string | undefined;
1864
1967
  readonly multiple?: boolean | undefined;
1968
+ readonly storage?: {
1969
+ notNull?: boolean | undefined;
1970
+ } | undefined;
1865
1971
  readonly maxSize?: number | undefined;
1866
- readonly externalId?: boolean | undefined;
1867
- readonly defaultValue?: unknown;
1868
- readonly requiredPermissions?: string[] | undefined;
1869
- readonly group?: string | undefined;
1870
- readonly hidden?: boolean | undefined;
1871
- readonly system?: boolean | undefined;
1872
- readonly min?: number | undefined;
1873
- readonly max?: number | undefined;
1972
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
1973
+ readonly _lockReason?: string | undefined;
1974
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
1975
+ readonly _lockDocsUrl?: string | undefined;
1976
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
1977
+ readonly _packageId?: string | undefined;
1978
+ readonly _packageVersion?: string | undefined;
1979
+ readonly lookupFilters?: {
1980
+ field: string;
1981
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
1982
+ value: any;
1983
+ }[] | undefined;
1984
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1985
+ readonly expression?: {
1986
+ dialect: "cel" | "cron" | "template";
1987
+ source?: string | undefined;
1988
+ ast?: unknown;
1989
+ meta?: {
1990
+ rationale?: string | undefined;
1991
+ generatedBy?: string | undefined;
1992
+ } | undefined;
1993
+ } | undefined;
1994
+ readonly autonumberFormat?: string | undefined;
1995
+ readonly summaryOperations?: {
1996
+ object: string;
1997
+ field: string;
1998
+ function: "min" | "max" | "count" | "sum" | "avg";
1999
+ relationshipField?: string | undefined;
2000
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
2001
+ } | undefined;
1874
2002
  readonly visibleWhen?: {
1875
2003
  dialect: "cel" | "cron" | "template";
1876
2004
  source?: string | undefined;
@@ -1880,14 +2008,16 @@ declare const SysWebhook: Omit<{
1880
2008
  generatedBy?: string | undefined;
1881
2009
  } | undefined;
1882
2010
  } | undefined;
2011
+ readonly scale?: number | undefined;
1883
2012
  readonly searchable?: boolean | undefined;
1884
2013
  readonly unique?: boolean | "global" | undefined;
2014
+ readonly defaultValue?: unknown;
1885
2015
  readonly maxLength?: number | undefined;
1886
2016
  readonly minLength?: number | undefined;
1887
- readonly scale?: number | undefined;
2017
+ readonly min?: number | undefined;
2018
+ readonly max?: number | undefined;
1888
2019
  readonly accept?: string[] | undefined;
1889
2020
  readonly reference?: string | undefined;
1890
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1891
2021
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1892
2022
  readonly inlineTitle?: string | undefined;
1893
2023
  readonly inlineColumns?: any[] | undefined;
@@ -1904,32 +2034,11 @@ declare const SysWebhook: Omit<{
1904
2034
  type?: string | undefined;
1905
2035
  })[] | undefined;
1906
2036
  readonly lookupPageSize?: number | undefined;
1907
- readonly lookupFilters?: {
1908
- field: string;
1909
- operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
1910
- value: any;
1911
- }[] | undefined;
1912
2037
  readonly dependsOn?: (string | {
1913
2038
  field: string;
1914
2039
  param?: string | undefined;
1915
2040
  })[] | undefined;
1916
2041
  readonly allowCreate?: boolean | undefined;
1917
- readonly expression?: {
1918
- dialect: "cel" | "cron" | "template";
1919
- source?: string | undefined;
1920
- ast?: unknown;
1921
- meta?: {
1922
- rationale?: string | undefined;
1923
- generatedBy?: string | undefined;
1924
- } | undefined;
1925
- } | undefined;
1926
- readonly summaryOperations?: {
1927
- object: string;
1928
- field: string;
1929
- function: "min" | "max" | "count" | "sum" | "avg";
1930
- relationshipField?: string | undefined;
1931
- filter?: _objectstack_spec_data.FilterCondition | undefined;
1932
- } | undefined;
1933
2042
  readonly language?: string | undefined;
1934
2043
  readonly step?: number | undefined;
1935
2044
  readonly currencyConfig?: {
@@ -1939,6 +2048,7 @@ declare const SysWebhook: Omit<{
1939
2048
  } | undefined;
1940
2049
  readonly dimensions?: number | undefined;
1941
2050
  readonly trackHistory?: boolean | undefined;
2051
+ readonly group?: string | undefined;
1942
2052
  readonly readonlyWhen?: {
1943
2053
  dialect: "cel" | "cron" | "template";
1944
2054
  source?: string | undefined;
@@ -1958,10 +2068,13 @@ declare const SysWebhook: Omit<{
1958
2068
  } | undefined;
1959
2069
  } | undefined;
1960
2070
  readonly conditionalRequired?: undefined;
2071
+ readonly hidden?: boolean | undefined;
2072
+ readonly requiredPermissions?: string[] | undefined;
1961
2073
  readonly ackPlaintextMasking?: boolean | undefined;
2074
+ readonly system?: boolean | undefined;
1962
2075
  readonly sortable?: boolean | undefined;
1963
2076
  readonly inlineHelpText?: string | undefined;
1964
- readonly autonumberFormat?: string | undefined;
2077
+ readonly externalId?: boolean | undefined;
1965
2078
  readonly type: "textarea";
1966
2079
  };
1967
2080
  readonly active: {
@@ -1990,15 +2103,40 @@ declare const SysWebhook: Omit<{
1990
2103
  readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1991
2104
  readonly widget?: string | undefined;
1992
2105
  readonly multiple?: boolean | undefined;
2106
+ readonly storage?: {
2107
+ notNull?: boolean | undefined;
2108
+ } | undefined;
1993
2109
  readonly maxSize?: number | undefined;
1994
- readonly externalId?: boolean | undefined;
1995
- readonly defaultValue?: unknown;
1996
- readonly requiredPermissions?: string[] | undefined;
1997
- readonly group?: string | undefined;
1998
- readonly hidden?: boolean | undefined;
1999
- readonly system?: boolean | undefined;
2000
- readonly min?: number | undefined;
2001
- readonly max?: number | undefined;
2110
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
2111
+ readonly _lockReason?: string | undefined;
2112
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
2113
+ readonly _lockDocsUrl?: string | undefined;
2114
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
2115
+ readonly _packageId?: string | undefined;
2116
+ readonly _packageVersion?: string | undefined;
2117
+ readonly lookupFilters?: {
2118
+ field: string;
2119
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2120
+ value: any;
2121
+ }[] | undefined;
2122
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2123
+ readonly expression?: {
2124
+ dialect: "cel" | "cron" | "template";
2125
+ source?: string | undefined;
2126
+ ast?: unknown;
2127
+ meta?: {
2128
+ rationale?: string | undefined;
2129
+ generatedBy?: string | undefined;
2130
+ } | undefined;
2131
+ } | undefined;
2132
+ readonly autonumberFormat?: string | undefined;
2133
+ readonly summaryOperations?: {
2134
+ object: string;
2135
+ field: string;
2136
+ function: "min" | "max" | "count" | "sum" | "avg";
2137
+ relationshipField?: string | undefined;
2138
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
2139
+ } | undefined;
2002
2140
  readonly visibleWhen?: {
2003
2141
  dialect: "cel" | "cron" | "template";
2004
2142
  source?: string | undefined;
@@ -2008,14 +2146,16 @@ declare const SysWebhook: Omit<{
2008
2146
  generatedBy?: string | undefined;
2009
2147
  } | undefined;
2010
2148
  } | undefined;
2149
+ readonly scale?: number | undefined;
2011
2150
  readonly searchable?: boolean | undefined;
2012
2151
  readonly unique?: boolean | "global" | undefined;
2152
+ readonly defaultValue?: unknown;
2013
2153
  readonly maxLength?: number | undefined;
2014
2154
  readonly minLength?: number | undefined;
2015
- readonly scale?: number | undefined;
2155
+ readonly min?: number | undefined;
2156
+ readonly max?: number | undefined;
2016
2157
  readonly accept?: string[] | undefined;
2017
2158
  readonly reference?: string | undefined;
2018
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2019
2159
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2020
2160
  readonly inlineTitle?: string | undefined;
2021
2161
  readonly inlineColumns?: any[] | undefined;
@@ -2032,32 +2172,11 @@ declare const SysWebhook: Omit<{
2032
2172
  type?: string | undefined;
2033
2173
  })[] | undefined;
2034
2174
  readonly lookupPageSize?: number | undefined;
2035
- readonly lookupFilters?: {
2036
- field: string;
2037
- operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
2038
- value: any;
2039
- }[] | undefined;
2040
2175
  readonly dependsOn?: (string | {
2041
2176
  field: string;
2042
2177
  param?: string | undefined;
2043
2178
  })[] | undefined;
2044
2179
  readonly allowCreate?: boolean | undefined;
2045
- readonly expression?: {
2046
- dialect: "cel" | "cron" | "template";
2047
- source?: string | undefined;
2048
- ast?: unknown;
2049
- meta?: {
2050
- rationale?: string | undefined;
2051
- generatedBy?: string | undefined;
2052
- } | undefined;
2053
- } | undefined;
2054
- readonly summaryOperations?: {
2055
- object: string;
2056
- field: string;
2057
- function: "min" | "max" | "count" | "sum" | "avg";
2058
- relationshipField?: string | undefined;
2059
- filter?: _objectstack_spec_data.FilterCondition | undefined;
2060
- } | undefined;
2061
2180
  readonly language?: string | undefined;
2062
2181
  readonly step?: number | undefined;
2063
2182
  readonly currencyConfig?: {
@@ -2067,6 +2186,7 @@ declare const SysWebhook: Omit<{
2067
2186
  } | undefined;
2068
2187
  readonly dimensions?: number | undefined;
2069
2188
  readonly trackHistory?: boolean | undefined;
2189
+ readonly group?: string | undefined;
2070
2190
  readonly readonlyWhen?: {
2071
2191
  dialect: "cel" | "cron" | "template";
2072
2192
  source?: string | undefined;
@@ -2086,10 +2206,13 @@ declare const SysWebhook: Omit<{
2086
2206
  } | undefined;
2087
2207
  } | undefined;
2088
2208
  readonly conditionalRequired?: undefined;
2209
+ readonly hidden?: boolean | undefined;
2210
+ readonly requiredPermissions?: string[] | undefined;
2089
2211
  readonly ackPlaintextMasking?: boolean | undefined;
2212
+ readonly system?: boolean | undefined;
2090
2213
  readonly sortable?: boolean | undefined;
2091
2214
  readonly inlineHelpText?: string | undefined;
2092
- readonly autonumberFormat?: string | undefined;
2215
+ readonly externalId?: boolean | undefined;
2093
2216
  readonly type: "boolean";
2094
2217
  };
2095
2218
  readonly definition_json: {
@@ -2118,15 +2241,40 @@ declare const SysWebhook: Omit<{
2118
2241
  readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
2119
2242
  readonly widget?: string | undefined;
2120
2243
  readonly multiple?: boolean | undefined;
2244
+ readonly storage?: {
2245
+ notNull?: boolean | undefined;
2246
+ } | undefined;
2121
2247
  readonly maxSize?: number | undefined;
2122
- readonly externalId?: boolean | undefined;
2123
- readonly defaultValue?: unknown;
2124
- readonly requiredPermissions?: string[] | undefined;
2125
- readonly group?: string | undefined;
2126
- readonly hidden?: boolean | undefined;
2127
- readonly system?: boolean | undefined;
2128
- readonly min?: number | undefined;
2129
- readonly max?: number | undefined;
2248
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
2249
+ readonly _lockReason?: string | undefined;
2250
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
2251
+ readonly _lockDocsUrl?: string | undefined;
2252
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
2253
+ readonly _packageId?: string | undefined;
2254
+ readonly _packageVersion?: string | undefined;
2255
+ readonly lookupFilters?: {
2256
+ field: string;
2257
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2258
+ value: any;
2259
+ }[] | undefined;
2260
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2261
+ readonly expression?: {
2262
+ dialect: "cel" | "cron" | "template";
2263
+ source?: string | undefined;
2264
+ ast?: unknown;
2265
+ meta?: {
2266
+ rationale?: string | undefined;
2267
+ generatedBy?: string | undefined;
2268
+ } | undefined;
2269
+ } | undefined;
2270
+ readonly autonumberFormat?: string | undefined;
2271
+ readonly summaryOperations?: {
2272
+ object: string;
2273
+ field: string;
2274
+ function: "min" | "max" | "count" | "sum" | "avg";
2275
+ relationshipField?: string | undefined;
2276
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
2277
+ } | undefined;
2130
2278
  readonly visibleWhen?: {
2131
2279
  dialect: "cel" | "cron" | "template";
2132
2280
  source?: string | undefined;
@@ -2136,14 +2284,16 @@ declare const SysWebhook: Omit<{
2136
2284
  generatedBy?: string | undefined;
2137
2285
  } | undefined;
2138
2286
  } | undefined;
2287
+ readonly scale?: number | undefined;
2139
2288
  readonly searchable?: boolean | undefined;
2140
2289
  readonly unique?: boolean | "global" | undefined;
2290
+ readonly defaultValue?: unknown;
2141
2291
  readonly maxLength?: number | undefined;
2142
2292
  readonly minLength?: number | undefined;
2143
- readonly scale?: number | undefined;
2293
+ readonly min?: number | undefined;
2294
+ readonly max?: number | undefined;
2144
2295
  readonly accept?: string[] | undefined;
2145
2296
  readonly reference?: string | undefined;
2146
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2147
2297
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2148
2298
  readonly inlineTitle?: string | undefined;
2149
2299
  readonly inlineColumns?: any[] | undefined;
@@ -2160,32 +2310,11 @@ declare const SysWebhook: Omit<{
2160
2310
  type?: string | undefined;
2161
2311
  })[] | undefined;
2162
2312
  readonly lookupPageSize?: number | undefined;
2163
- readonly lookupFilters?: {
2164
- field: string;
2165
- operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
2166
- value: any;
2167
- }[] | undefined;
2168
2313
  readonly dependsOn?: (string | {
2169
2314
  field: string;
2170
2315
  param?: string | undefined;
2171
2316
  })[] | undefined;
2172
2317
  readonly allowCreate?: boolean | undefined;
2173
- readonly expression?: {
2174
- dialect: "cel" | "cron" | "template";
2175
- source?: string | undefined;
2176
- ast?: unknown;
2177
- meta?: {
2178
- rationale?: string | undefined;
2179
- generatedBy?: string | undefined;
2180
- } | undefined;
2181
- } | undefined;
2182
- readonly summaryOperations?: {
2183
- object: string;
2184
- field: string;
2185
- function: "min" | "max" | "count" | "sum" | "avg";
2186
- relationshipField?: string | undefined;
2187
- filter?: _objectstack_spec_data.FilterCondition | undefined;
2188
- } | undefined;
2189
2318
  readonly language?: string | undefined;
2190
2319
  readonly step?: number | undefined;
2191
2320
  readonly currencyConfig?: {
@@ -2195,6 +2324,7 @@ declare const SysWebhook: Omit<{
2195
2324
  } | undefined;
2196
2325
  readonly dimensions?: number | undefined;
2197
2326
  readonly trackHistory?: boolean | undefined;
2327
+ readonly group?: string | undefined;
2198
2328
  readonly readonlyWhen?: {
2199
2329
  dialect: "cel" | "cron" | "template";
2200
2330
  source?: string | undefined;
@@ -2214,10 +2344,13 @@ declare const SysWebhook: Omit<{
2214
2344
  } | undefined;
2215
2345
  } | undefined;
2216
2346
  readonly conditionalRequired?: undefined;
2347
+ readonly hidden?: boolean | undefined;
2348
+ readonly requiredPermissions?: string[] | undefined;
2217
2349
  readonly ackPlaintextMasking?: boolean | undefined;
2350
+ readonly system?: boolean | undefined;
2218
2351
  readonly sortable?: boolean | undefined;
2219
2352
  readonly inlineHelpText?: string | undefined;
2220
- readonly autonumberFormat?: string | undefined;
2353
+ readonly externalId?: boolean | undefined;
2221
2354
  readonly type: "textarea";
2222
2355
  };
2223
2356
  readonly managed_by: {
@@ -2246,15 +2379,40 @@ declare const SysWebhook: Omit<{
2246
2379
  readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
2247
2380
  readonly widget?: string | undefined;
2248
2381
  readonly multiple?: boolean | undefined;
2382
+ readonly storage?: {
2383
+ notNull?: boolean | undefined;
2384
+ } | undefined;
2249
2385
  readonly maxSize?: number | undefined;
2250
- readonly externalId?: boolean | undefined;
2251
- readonly defaultValue?: unknown;
2252
- readonly requiredPermissions?: string[] | undefined;
2253
- readonly group?: string | undefined;
2254
- readonly hidden?: boolean | undefined;
2255
- readonly system?: boolean | undefined;
2256
- readonly min?: number | undefined;
2257
- readonly max?: number | undefined;
2386
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
2387
+ readonly _lockReason?: string | undefined;
2388
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
2389
+ readonly _lockDocsUrl?: string | undefined;
2390
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
2391
+ readonly _packageId?: string | undefined;
2392
+ readonly _packageVersion?: string | undefined;
2393
+ readonly lookupFilters?: {
2394
+ field: string;
2395
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2396
+ value: any;
2397
+ }[] | undefined;
2398
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2399
+ readonly expression?: {
2400
+ dialect: "cel" | "cron" | "template";
2401
+ source?: string | undefined;
2402
+ ast?: unknown;
2403
+ meta?: {
2404
+ rationale?: string | undefined;
2405
+ generatedBy?: string | undefined;
2406
+ } | undefined;
2407
+ } | undefined;
2408
+ readonly autonumberFormat?: string | undefined;
2409
+ readonly summaryOperations?: {
2410
+ object: string;
2411
+ field: string;
2412
+ function: "min" | "max" | "count" | "sum" | "avg";
2413
+ relationshipField?: string | undefined;
2414
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
2415
+ } | undefined;
2258
2416
  readonly visibleWhen?: {
2259
2417
  dialect: "cel" | "cron" | "template";
2260
2418
  source?: string | undefined;
@@ -2264,14 +2422,16 @@ declare const SysWebhook: Omit<{
2264
2422
  generatedBy?: string | undefined;
2265
2423
  } | undefined;
2266
2424
  } | undefined;
2425
+ readonly scale?: number | undefined;
2267
2426
  readonly searchable?: boolean | undefined;
2268
2427
  readonly unique?: boolean | "global" | undefined;
2428
+ readonly defaultValue?: unknown;
2269
2429
  readonly maxLength?: number | undefined;
2270
2430
  readonly minLength?: number | undefined;
2271
- readonly scale?: number | undefined;
2431
+ readonly min?: number | undefined;
2432
+ readonly max?: number | undefined;
2272
2433
  readonly accept?: string[] | undefined;
2273
2434
  readonly reference?: string | undefined;
2274
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2275
2435
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2276
2436
  readonly inlineTitle?: string | undefined;
2277
2437
  readonly inlineColumns?: any[] | undefined;
@@ -2288,32 +2448,11 @@ declare const SysWebhook: Omit<{
2288
2448
  type?: string | undefined;
2289
2449
  })[] | undefined;
2290
2450
  readonly lookupPageSize?: number | undefined;
2291
- readonly lookupFilters?: {
2292
- field: string;
2293
- operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
2294
- value: any;
2295
- }[] | undefined;
2296
2451
  readonly dependsOn?: (string | {
2297
2452
  field: string;
2298
2453
  param?: string | undefined;
2299
2454
  })[] | undefined;
2300
2455
  readonly allowCreate?: boolean | undefined;
2301
- readonly expression?: {
2302
- dialect: "cel" | "cron" | "template";
2303
- source?: string | undefined;
2304
- ast?: unknown;
2305
- meta?: {
2306
- rationale?: string | undefined;
2307
- generatedBy?: string | undefined;
2308
- } | undefined;
2309
- } | undefined;
2310
- readonly summaryOperations?: {
2311
- object: string;
2312
- field: string;
2313
- function: "min" | "max" | "count" | "sum" | "avg";
2314
- relationshipField?: string | undefined;
2315
- filter?: _objectstack_spec_data.FilterCondition | undefined;
2316
- } | undefined;
2317
2456
  readonly language?: string | undefined;
2318
2457
  readonly step?: number | undefined;
2319
2458
  readonly currencyConfig?: {
@@ -2323,6 +2462,7 @@ declare const SysWebhook: Omit<{
2323
2462
  } | undefined;
2324
2463
  readonly dimensions?: number | undefined;
2325
2464
  readonly trackHistory?: boolean | undefined;
2465
+ readonly group?: string | undefined;
2326
2466
  readonly readonlyWhen?: {
2327
2467
  dialect: "cel" | "cron" | "template";
2328
2468
  source?: string | undefined;
@@ -2342,10 +2482,13 @@ declare const SysWebhook: Omit<{
2342
2482
  } | undefined;
2343
2483
  } | undefined;
2344
2484
  readonly conditionalRequired?: undefined;
2485
+ readonly hidden?: boolean | undefined;
2486
+ readonly requiredPermissions?: string[] | undefined;
2345
2487
  readonly ackPlaintextMasking?: boolean | undefined;
2488
+ readonly system?: boolean | undefined;
2346
2489
  readonly sortable?: boolean | undefined;
2347
2490
  readonly inlineHelpText?: string | undefined;
2348
- readonly autonumberFormat?: string | undefined;
2491
+ readonly externalId?: boolean | undefined;
2349
2492
  readonly type: "select";
2350
2493
  };
2351
2494
  readonly customized: {
@@ -2374,15 +2517,40 @@ declare const SysWebhook: Omit<{
2374
2517
  readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
2375
2518
  readonly widget?: string | undefined;
2376
2519
  readonly multiple?: boolean | undefined;
2520
+ readonly storage?: {
2521
+ notNull?: boolean | undefined;
2522
+ } | undefined;
2377
2523
  readonly maxSize?: number | undefined;
2378
- readonly externalId?: boolean | undefined;
2379
- readonly defaultValue?: unknown;
2380
- readonly requiredPermissions?: string[] | undefined;
2381
- readonly group?: string | undefined;
2382
- readonly hidden?: boolean | undefined;
2383
- readonly system?: boolean | undefined;
2384
- readonly min?: number | undefined;
2385
- readonly max?: number | undefined;
2524
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
2525
+ readonly _lockReason?: string | undefined;
2526
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
2527
+ readonly _lockDocsUrl?: string | undefined;
2528
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
2529
+ readonly _packageId?: string | undefined;
2530
+ readonly _packageVersion?: string | undefined;
2531
+ readonly lookupFilters?: {
2532
+ field: string;
2533
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2534
+ value: any;
2535
+ }[] | undefined;
2536
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2537
+ readonly expression?: {
2538
+ dialect: "cel" | "cron" | "template";
2539
+ source?: string | undefined;
2540
+ ast?: unknown;
2541
+ meta?: {
2542
+ rationale?: string | undefined;
2543
+ generatedBy?: string | undefined;
2544
+ } | undefined;
2545
+ } | undefined;
2546
+ readonly autonumberFormat?: string | undefined;
2547
+ readonly summaryOperations?: {
2548
+ object: string;
2549
+ field: string;
2550
+ function: "min" | "max" | "count" | "sum" | "avg";
2551
+ relationshipField?: string | undefined;
2552
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
2553
+ } | undefined;
2386
2554
  readonly visibleWhen?: {
2387
2555
  dialect: "cel" | "cron" | "template";
2388
2556
  source?: string | undefined;
@@ -2392,14 +2560,16 @@ declare const SysWebhook: Omit<{
2392
2560
  generatedBy?: string | undefined;
2393
2561
  } | undefined;
2394
2562
  } | undefined;
2563
+ readonly scale?: number | undefined;
2395
2564
  readonly searchable?: boolean | undefined;
2396
2565
  readonly unique?: boolean | "global" | undefined;
2566
+ readonly defaultValue?: unknown;
2397
2567
  readonly maxLength?: number | undefined;
2398
2568
  readonly minLength?: number | undefined;
2399
- readonly scale?: number | undefined;
2569
+ readonly min?: number | undefined;
2570
+ readonly max?: number | undefined;
2400
2571
  readonly accept?: string[] | undefined;
2401
2572
  readonly reference?: string | undefined;
2402
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2403
2573
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2404
2574
  readonly inlineTitle?: string | undefined;
2405
2575
  readonly inlineColumns?: any[] | undefined;
@@ -2416,32 +2586,11 @@ declare const SysWebhook: Omit<{
2416
2586
  type?: string | undefined;
2417
2587
  })[] | undefined;
2418
2588
  readonly lookupPageSize?: number | undefined;
2419
- readonly lookupFilters?: {
2420
- field: string;
2421
- operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
2422
- value: any;
2423
- }[] | undefined;
2424
2589
  readonly dependsOn?: (string | {
2425
2590
  field: string;
2426
2591
  param?: string | undefined;
2427
2592
  })[] | undefined;
2428
2593
  readonly allowCreate?: boolean | undefined;
2429
- readonly expression?: {
2430
- dialect: "cel" | "cron" | "template";
2431
- source?: string | undefined;
2432
- ast?: unknown;
2433
- meta?: {
2434
- rationale?: string | undefined;
2435
- generatedBy?: string | undefined;
2436
- } | undefined;
2437
- } | undefined;
2438
- readonly summaryOperations?: {
2439
- object: string;
2440
- field: string;
2441
- function: "min" | "max" | "count" | "sum" | "avg";
2442
- relationshipField?: string | undefined;
2443
- filter?: _objectstack_spec_data.FilterCondition | undefined;
2444
- } | undefined;
2445
2594
  readonly language?: string | undefined;
2446
2595
  readonly step?: number | undefined;
2447
2596
  readonly currencyConfig?: {
@@ -2451,6 +2600,7 @@ declare const SysWebhook: Omit<{
2451
2600
  } | undefined;
2452
2601
  readonly dimensions?: number | undefined;
2453
2602
  readonly trackHistory?: boolean | undefined;
2603
+ readonly group?: string | undefined;
2454
2604
  readonly readonlyWhen?: {
2455
2605
  dialect: "cel" | "cron" | "template";
2456
2606
  source?: string | undefined;
@@ -2470,10 +2620,13 @@ declare const SysWebhook: Omit<{
2470
2620
  } | undefined;
2471
2621
  } | undefined;
2472
2622
  readonly conditionalRequired?: undefined;
2623
+ readonly hidden?: boolean | undefined;
2624
+ readonly requiredPermissions?: string[] | undefined;
2473
2625
  readonly ackPlaintextMasking?: boolean | undefined;
2626
+ readonly system?: boolean | undefined;
2474
2627
  readonly sortable?: boolean | undefined;
2475
2628
  readonly inlineHelpText?: string | undefined;
2476
- readonly autonumberFormat?: string | undefined;
2629
+ readonly externalId?: boolean | undefined;
2477
2630
  readonly type: "boolean";
2478
2631
  };
2479
2632
  readonly created_at: {
@@ -2502,15 +2655,40 @@ declare const SysWebhook: Omit<{
2502
2655
  readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
2503
2656
  readonly widget?: string | undefined;
2504
2657
  readonly multiple?: boolean | undefined;
2658
+ readonly storage?: {
2659
+ notNull?: boolean | undefined;
2660
+ } | undefined;
2505
2661
  readonly maxSize?: number | undefined;
2506
- readonly externalId?: boolean | undefined;
2507
- readonly defaultValue?: unknown;
2508
- readonly requiredPermissions?: string[] | undefined;
2509
- readonly group?: string | undefined;
2510
- readonly hidden?: boolean | undefined;
2511
- readonly system?: boolean | undefined;
2512
- readonly min?: number | undefined;
2513
- readonly max?: number | undefined;
2662
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
2663
+ readonly _lockReason?: string | undefined;
2664
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
2665
+ readonly _lockDocsUrl?: string | undefined;
2666
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
2667
+ readonly _packageId?: string | undefined;
2668
+ readonly _packageVersion?: string | undefined;
2669
+ readonly lookupFilters?: {
2670
+ field: string;
2671
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2672
+ value: any;
2673
+ }[] | undefined;
2674
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2675
+ readonly expression?: {
2676
+ dialect: "cel" | "cron" | "template";
2677
+ source?: string | undefined;
2678
+ ast?: unknown;
2679
+ meta?: {
2680
+ rationale?: string | undefined;
2681
+ generatedBy?: string | undefined;
2682
+ } | undefined;
2683
+ } | undefined;
2684
+ readonly autonumberFormat?: string | undefined;
2685
+ readonly summaryOperations?: {
2686
+ object: string;
2687
+ field: string;
2688
+ function: "min" | "max" | "count" | "sum" | "avg";
2689
+ relationshipField?: string | undefined;
2690
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
2691
+ } | undefined;
2514
2692
  readonly visibleWhen?: {
2515
2693
  dialect: "cel" | "cron" | "template";
2516
2694
  source?: string | undefined;
@@ -2520,14 +2698,16 @@ declare const SysWebhook: Omit<{
2520
2698
  generatedBy?: string | undefined;
2521
2699
  } | undefined;
2522
2700
  } | undefined;
2701
+ readonly scale?: number | undefined;
2523
2702
  readonly searchable?: boolean | undefined;
2524
2703
  readonly unique?: boolean | "global" | undefined;
2704
+ readonly defaultValue?: unknown;
2525
2705
  readonly maxLength?: number | undefined;
2526
2706
  readonly minLength?: number | undefined;
2527
- readonly scale?: number | undefined;
2707
+ readonly min?: number | undefined;
2708
+ readonly max?: number | undefined;
2528
2709
  readonly accept?: string[] | undefined;
2529
2710
  readonly reference?: string | undefined;
2530
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2531
2711
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2532
2712
  readonly inlineTitle?: string | undefined;
2533
2713
  readonly inlineColumns?: any[] | undefined;
@@ -2544,32 +2724,11 @@ declare const SysWebhook: Omit<{
2544
2724
  type?: string | undefined;
2545
2725
  })[] | undefined;
2546
2726
  readonly lookupPageSize?: number | undefined;
2547
- readonly lookupFilters?: {
2548
- field: string;
2549
- operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
2550
- value: any;
2551
- }[] | undefined;
2552
2727
  readonly dependsOn?: (string | {
2553
2728
  field: string;
2554
2729
  param?: string | undefined;
2555
2730
  })[] | undefined;
2556
2731
  readonly allowCreate?: boolean | undefined;
2557
- readonly expression?: {
2558
- dialect: "cel" | "cron" | "template";
2559
- source?: string | undefined;
2560
- ast?: unknown;
2561
- meta?: {
2562
- rationale?: string | undefined;
2563
- generatedBy?: string | undefined;
2564
- } | undefined;
2565
- } | undefined;
2566
- readonly summaryOperations?: {
2567
- object: string;
2568
- field: string;
2569
- function: "min" | "max" | "count" | "sum" | "avg";
2570
- relationshipField?: string | undefined;
2571
- filter?: _objectstack_spec_data.FilterCondition | undefined;
2572
- } | undefined;
2573
2732
  readonly language?: string | undefined;
2574
2733
  readonly step?: number | undefined;
2575
2734
  readonly currencyConfig?: {
@@ -2579,6 +2738,7 @@ declare const SysWebhook: Omit<{
2579
2738
  } | undefined;
2580
2739
  readonly dimensions?: number | undefined;
2581
2740
  readonly trackHistory?: boolean | undefined;
2741
+ readonly group?: string | undefined;
2582
2742
  readonly readonlyWhen?: {
2583
2743
  dialect: "cel" | "cron" | "template";
2584
2744
  source?: string | undefined;
@@ -2598,10 +2758,13 @@ declare const SysWebhook: Omit<{
2598
2758
  } | undefined;
2599
2759
  } | undefined;
2600
2760
  readonly conditionalRequired?: undefined;
2761
+ readonly hidden?: boolean | undefined;
2762
+ readonly requiredPermissions?: string[] | undefined;
2601
2763
  readonly ackPlaintextMasking?: boolean | undefined;
2764
+ readonly system?: boolean | undefined;
2602
2765
  readonly sortable?: boolean | undefined;
2603
2766
  readonly inlineHelpText?: string | undefined;
2604
- readonly autonumberFormat?: string | undefined;
2767
+ readonly externalId?: boolean | undefined;
2605
2768
  readonly type: "datetime";
2606
2769
  };
2607
2770
  readonly updated_at: {
@@ -2630,15 +2793,40 @@ declare const SysWebhook: Omit<{
2630
2793
  readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
2631
2794
  readonly widget?: string | undefined;
2632
2795
  readonly multiple?: boolean | undefined;
2796
+ readonly storage?: {
2797
+ notNull?: boolean | undefined;
2798
+ } | undefined;
2633
2799
  readonly maxSize?: number | undefined;
2634
- readonly externalId?: boolean | undefined;
2635
- readonly defaultValue?: unknown;
2636
- readonly requiredPermissions?: string[] | undefined;
2637
- readonly group?: string | undefined;
2638
- readonly hidden?: boolean | undefined;
2639
- readonly system?: boolean | undefined;
2640
- readonly min?: number | undefined;
2641
- readonly max?: number | undefined;
2800
+ readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
2801
+ readonly _lockReason?: string | undefined;
2802
+ readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
2803
+ readonly _lockDocsUrl?: string | undefined;
2804
+ readonly _provenance?: "package" | "env-forced" | "org" | undefined;
2805
+ readonly _packageId?: string | undefined;
2806
+ readonly _packageVersion?: string | undefined;
2807
+ readonly lookupFilters?: {
2808
+ field: string;
2809
+ operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
2810
+ value: any;
2811
+ }[] | undefined;
2812
+ readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2813
+ readonly expression?: {
2814
+ dialect: "cel" | "cron" | "template";
2815
+ source?: string | undefined;
2816
+ ast?: unknown;
2817
+ meta?: {
2818
+ rationale?: string | undefined;
2819
+ generatedBy?: string | undefined;
2820
+ } | undefined;
2821
+ } | undefined;
2822
+ readonly autonumberFormat?: string | undefined;
2823
+ readonly summaryOperations?: {
2824
+ object: string;
2825
+ field: string;
2826
+ function: "min" | "max" | "count" | "sum" | "avg";
2827
+ relationshipField?: string | undefined;
2828
+ filter?: _objectstack_spec_data.FilterCondition | undefined;
2829
+ } | undefined;
2642
2830
  readonly visibleWhen?: {
2643
2831
  dialect: "cel" | "cron" | "template";
2644
2832
  source?: string | undefined;
@@ -2648,14 +2836,16 @@ declare const SysWebhook: Omit<{
2648
2836
  generatedBy?: string | undefined;
2649
2837
  } | undefined;
2650
2838
  } | undefined;
2839
+ readonly scale?: number | undefined;
2651
2840
  readonly searchable?: boolean | undefined;
2652
2841
  readonly unique?: boolean | "global" | undefined;
2842
+ readonly defaultValue?: unknown;
2653
2843
  readonly maxLength?: number | undefined;
2654
2844
  readonly minLength?: number | undefined;
2655
- readonly scale?: number | undefined;
2845
+ readonly min?: number | undefined;
2846
+ readonly max?: number | undefined;
2656
2847
  readonly accept?: string[] | undefined;
2657
2848
  readonly reference?: string | undefined;
2658
- readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2659
2849
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2660
2850
  readonly inlineTitle?: string | undefined;
2661
2851
  readonly inlineColumns?: any[] | undefined;
@@ -2672,32 +2862,11 @@ declare const SysWebhook: Omit<{
2672
2862
  type?: string | undefined;
2673
2863
  })[] | undefined;
2674
2864
  readonly lookupPageSize?: number | undefined;
2675
- readonly lookupFilters?: {
2676
- field: string;
2677
- operator: "in" | "eq" | "ne" | "contains" | "gt" | "lt" | "gte" | "lte" | "notIn";
2678
- value: any;
2679
- }[] | undefined;
2680
2865
  readonly dependsOn?: (string | {
2681
2866
  field: string;
2682
2867
  param?: string | undefined;
2683
2868
  })[] | undefined;
2684
2869
  readonly allowCreate?: boolean | undefined;
2685
- readonly expression?: {
2686
- dialect: "cel" | "cron" | "template";
2687
- source?: string | undefined;
2688
- ast?: unknown;
2689
- meta?: {
2690
- rationale?: string | undefined;
2691
- generatedBy?: string | undefined;
2692
- } | undefined;
2693
- } | undefined;
2694
- readonly summaryOperations?: {
2695
- object: string;
2696
- field: string;
2697
- function: "min" | "max" | "count" | "sum" | "avg";
2698
- relationshipField?: string | undefined;
2699
- filter?: _objectstack_spec_data.FilterCondition | undefined;
2700
- } | undefined;
2701
2870
  readonly language?: string | undefined;
2702
2871
  readonly step?: number | undefined;
2703
2872
  readonly currencyConfig?: {
@@ -2707,6 +2876,7 @@ declare const SysWebhook: Omit<{
2707
2876
  } | undefined;
2708
2877
  readonly dimensions?: number | undefined;
2709
2878
  readonly trackHistory?: boolean | undefined;
2879
+ readonly group?: string | undefined;
2710
2880
  readonly readonlyWhen?: {
2711
2881
  dialect: "cel" | "cron" | "template";
2712
2882
  source?: string | undefined;
@@ -2726,10 +2896,13 @@ declare const SysWebhook: Omit<{
2726
2896
  } | undefined;
2727
2897
  } | undefined;
2728
2898
  readonly conditionalRequired?: undefined;
2899
+ readonly hidden?: boolean | undefined;
2900
+ readonly requiredPermissions?: string[] | undefined;
2729
2901
  readonly ackPlaintextMasking?: boolean | undefined;
2902
+ readonly system?: boolean | undefined;
2730
2903
  readonly sortable?: boolean | undefined;
2731
2904
  readonly inlineHelpText?: string | undefined;
2732
- readonly autonumberFormat?: string | undefined;
2905
+ readonly externalId?: boolean | undefined;
2733
2906
  readonly type: "datetime";
2734
2907
  };
2735
2908
  };