@objectstack/platform-objects 7.0.0 → 7.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/dist/apps/index.js +25 -29
  2. package/dist/apps/index.js.map +1 -1
  3. package/dist/apps/index.mjs +25 -29
  4. package/dist/apps/index.mjs.map +1 -1
  5. package/dist/audit/index.d.mts +192 -96
  6. package/dist/audit/index.d.ts +192 -96
  7. package/dist/identity/index.d.mts +244 -122
  8. package/dist/identity/index.d.ts +244 -122
  9. package/dist/identity/index.js +5 -2
  10. package/dist/identity/index.js.map +1 -1
  11. package/dist/identity/index.mjs +5 -2
  12. package/dist/identity/index.mjs.map +1 -1
  13. package/dist/index.d.mts +1 -1
  14. package/dist/index.d.ts +1 -1
  15. package/dist/index.js +180 -31
  16. package/dist/index.js.map +1 -1
  17. package/dist/index.mjs +180 -32
  18. package/dist/index.mjs.map +1 -1
  19. package/dist/integration/index.d.mts +12 -6
  20. package/dist/integration/index.d.ts +12 -6
  21. package/dist/metadata/index.d.mts +3252 -13
  22. package/dist/metadata/index.d.ts +3252 -13
  23. package/dist/metadata/index.js +130 -0
  24. package/dist/metadata/index.js.map +1 -1
  25. package/dist/metadata/index.mjs +130 -1
  26. package/dist/metadata/index.mjs.map +1 -1
  27. package/dist/pages/index.d.mts +8 -3
  28. package/dist/pages/index.d.ts +8 -3
  29. package/dist/pages/index.js.map +1 -1
  30. package/dist/pages/index.mjs.map +1 -1
  31. package/dist/plugin.js +4 -8
  32. package/dist/plugin.js.map +1 -1
  33. package/dist/plugin.mjs +4 -8
  34. package/dist/plugin.mjs.map +1 -1
  35. package/dist/security/index.d.mts +84 -42
  36. package/dist/security/index.d.ts +84 -42
  37. package/dist/security/index.js +20 -0
  38. package/dist/security/index.js.map +1 -1
  39. package/dist/security/index.mjs +20 -0
  40. package/dist/security/index.mjs.map +1 -1
  41. package/dist/system/index.d.mts +36 -18
  42. package/dist/system/index.d.ts +36 -18
  43. package/package.json +2 -2
@@ -20,7 +20,7 @@ declare const SysAuditLog: Omit<{
20
20
  abstract: boolean;
21
21
  datasource: string;
22
22
  fields: Record<string, {
23
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
23
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
24
24
  required: boolean;
25
25
  searchable: boolean;
26
26
  multiple: boolean;
@@ -159,7 +159,7 @@ declare const SysAuditLog: Omit<{
159
159
  autoRotate: boolean;
160
160
  } | undefined;
161
161
  };
162
- scope: "field" | "record" | "table" | "database";
162
+ scope: "record" | "field" | "table" | "database";
163
163
  deterministicEncryption: boolean;
164
164
  searchableEncryption: boolean;
165
165
  } | undefined;
@@ -210,6 +210,12 @@ declare const SysAuditLog: Omit<{
210
210
  caseSensitive?: boolean | undefined;
211
211
  autonumberFormat?: string | undefined;
212
212
  }>;
213
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
214
+ _lockReason?: string | undefined;
215
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
216
+ _provenance?: "package" | "env-forced" | "org" | undefined;
217
+ _packageId?: string | undefined;
218
+ _packageVersion?: string | undefined;
213
219
  label?: string | undefined;
214
220
  pluralLabel?: string | undefined;
215
221
  description?: string | undefined;
@@ -355,7 +361,7 @@ declare const SysAuditLog: Omit<{
355
361
  wrap?: boolean | undefined;
356
362
  type?: string | undefined;
357
363
  pinned?: "left" | "right" | undefined;
358
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
364
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
359
365
  link?: boolean | undefined;
360
366
  action?: string | undefined;
361
367
  }[];
@@ -404,7 +410,7 @@ declare const SysAuditLog: Omit<{
404
410
  bordered?: boolean | undefined;
405
411
  compactToolbar?: boolean | undefined;
406
412
  selection?: {
407
- type: "multiple" | "single" | "none";
413
+ type: "none" | "multiple" | "single";
408
414
  } | undefined;
409
415
  navigation?: {
410
416
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -599,7 +605,7 @@ declare const SysAuditLog: Omit<{
599
605
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
600
606
  } | undefined;
601
607
  recordTypes?: string[] | undefined;
602
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
608
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
603
609
  publicSharing?: {
604
610
  enabled: boolean;
605
611
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -642,7 +648,7 @@ declare const SysAuditLog: Omit<{
642
648
  field?: string | undefined;
643
649
  objectOverride?: string | undefined;
644
650
  label?: string | undefined;
645
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
651
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
646
652
  options?: {
647
653
  label: string;
648
654
  value: string;
@@ -2962,7 +2968,7 @@ declare const SysPresence: Omit<{
2962
2968
  abstract: boolean;
2963
2969
  datasource: string;
2964
2970
  fields: Record<string, {
2965
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
2971
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
2966
2972
  required: boolean;
2967
2973
  searchable: boolean;
2968
2974
  multiple: boolean;
@@ -3101,7 +3107,7 @@ declare const SysPresence: Omit<{
3101
3107
  autoRotate: boolean;
3102
3108
  } | undefined;
3103
3109
  };
3104
- scope: "field" | "record" | "table" | "database";
3110
+ scope: "record" | "field" | "table" | "database";
3105
3111
  deterministicEncryption: boolean;
3106
3112
  searchableEncryption: boolean;
3107
3113
  } | undefined;
@@ -3152,6 +3158,12 @@ declare const SysPresence: Omit<{
3152
3158
  caseSensitive?: boolean | undefined;
3153
3159
  autonumberFormat?: string | undefined;
3154
3160
  }>;
3161
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
3162
+ _lockReason?: string | undefined;
3163
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
3164
+ _provenance?: "package" | "env-forced" | "org" | undefined;
3165
+ _packageId?: string | undefined;
3166
+ _packageVersion?: string | undefined;
3155
3167
  label?: string | undefined;
3156
3168
  pluralLabel?: string | undefined;
3157
3169
  description?: string | undefined;
@@ -3297,7 +3309,7 @@ declare const SysPresence: Omit<{
3297
3309
  wrap?: boolean | undefined;
3298
3310
  type?: string | undefined;
3299
3311
  pinned?: "left" | "right" | undefined;
3300
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
3312
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
3301
3313
  link?: boolean | undefined;
3302
3314
  action?: string | undefined;
3303
3315
  }[];
@@ -3346,7 +3358,7 @@ declare const SysPresence: Omit<{
3346
3358
  bordered?: boolean | undefined;
3347
3359
  compactToolbar?: boolean | undefined;
3348
3360
  selection?: {
3349
- type: "multiple" | "single" | "none";
3361
+ type: "none" | "multiple" | "single";
3350
3362
  } | undefined;
3351
3363
  navigation?: {
3352
3364
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -3541,7 +3553,7 @@ declare const SysPresence: Omit<{
3541
3553
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
3542
3554
  } | undefined;
3543
3555
  recordTypes?: string[] | undefined;
3544
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
3556
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
3545
3557
  publicSharing?: {
3546
3558
  enabled: boolean;
3547
3559
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -3584,7 +3596,7 @@ declare const SysPresence: Omit<{
3584
3596
  field?: string | undefined;
3585
3597
  objectOverride?: string | undefined;
3586
3598
  label?: string | undefined;
3587
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
3599
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
3588
3600
  options?: {
3589
3601
  label: string;
3590
3602
  value: string;
@@ -5622,7 +5634,7 @@ declare const SysActivity: Omit<{
5622
5634
  abstract: boolean;
5623
5635
  datasource: string;
5624
5636
  fields: Record<string, {
5625
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
5637
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
5626
5638
  required: boolean;
5627
5639
  searchable: boolean;
5628
5640
  multiple: boolean;
@@ -5761,7 +5773,7 @@ declare const SysActivity: Omit<{
5761
5773
  autoRotate: boolean;
5762
5774
  } | undefined;
5763
5775
  };
5764
- scope: "field" | "record" | "table" | "database";
5776
+ scope: "record" | "field" | "table" | "database";
5765
5777
  deterministicEncryption: boolean;
5766
5778
  searchableEncryption: boolean;
5767
5779
  } | undefined;
@@ -5812,6 +5824,12 @@ declare const SysActivity: Omit<{
5812
5824
  caseSensitive?: boolean | undefined;
5813
5825
  autonumberFormat?: string | undefined;
5814
5826
  }>;
5827
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
5828
+ _lockReason?: string | undefined;
5829
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
5830
+ _provenance?: "package" | "env-forced" | "org" | undefined;
5831
+ _packageId?: string | undefined;
5832
+ _packageVersion?: string | undefined;
5815
5833
  label?: string | undefined;
5816
5834
  pluralLabel?: string | undefined;
5817
5835
  description?: string | undefined;
@@ -5957,7 +5975,7 @@ declare const SysActivity: Omit<{
5957
5975
  wrap?: boolean | undefined;
5958
5976
  type?: string | undefined;
5959
5977
  pinned?: "left" | "right" | undefined;
5960
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
5978
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
5961
5979
  link?: boolean | undefined;
5962
5980
  action?: string | undefined;
5963
5981
  }[];
@@ -6006,7 +6024,7 @@ declare const SysActivity: Omit<{
6006
6024
  bordered?: boolean | undefined;
6007
6025
  compactToolbar?: boolean | undefined;
6008
6026
  selection?: {
6009
- type: "multiple" | "single" | "none";
6027
+ type: "none" | "multiple" | "single";
6010
6028
  } | undefined;
6011
6029
  navigation?: {
6012
6030
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -6201,7 +6219,7 @@ declare const SysActivity: Omit<{
6201
6219
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
6202
6220
  } | undefined;
6203
6221
  recordTypes?: string[] | undefined;
6204
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
6222
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
6205
6223
  publicSharing?: {
6206
6224
  enabled: boolean;
6207
6225
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -6244,7 +6262,7 @@ declare const SysActivity: Omit<{
6244
6262
  field?: string | undefined;
6245
6263
  objectOverride?: string | undefined;
6246
6264
  label?: string | undefined;
6247
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
6265
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
6248
6266
  options?: {
6249
6267
  label: string;
6250
6268
  value: string;
@@ -8636,7 +8654,7 @@ declare const SysComment: Omit<{
8636
8654
  abstract: boolean;
8637
8655
  datasource: string;
8638
8656
  fields: Record<string, {
8639
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
8657
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
8640
8658
  required: boolean;
8641
8659
  searchable: boolean;
8642
8660
  multiple: boolean;
@@ -8775,7 +8793,7 @@ declare const SysComment: Omit<{
8775
8793
  autoRotate: boolean;
8776
8794
  } | undefined;
8777
8795
  };
8778
- scope: "field" | "record" | "table" | "database";
8796
+ scope: "record" | "field" | "table" | "database";
8779
8797
  deterministicEncryption: boolean;
8780
8798
  searchableEncryption: boolean;
8781
8799
  } | undefined;
@@ -8826,6 +8844,12 @@ declare const SysComment: Omit<{
8826
8844
  caseSensitive?: boolean | undefined;
8827
8845
  autonumberFormat?: string | undefined;
8828
8846
  }>;
8847
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
8848
+ _lockReason?: string | undefined;
8849
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
8850
+ _provenance?: "package" | "env-forced" | "org" | undefined;
8851
+ _packageId?: string | undefined;
8852
+ _packageVersion?: string | undefined;
8829
8853
  label?: string | undefined;
8830
8854
  pluralLabel?: string | undefined;
8831
8855
  description?: string | undefined;
@@ -8971,7 +8995,7 @@ declare const SysComment: Omit<{
8971
8995
  wrap?: boolean | undefined;
8972
8996
  type?: string | undefined;
8973
8997
  pinned?: "left" | "right" | undefined;
8974
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
8998
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
8975
8999
  link?: boolean | undefined;
8976
9000
  action?: string | undefined;
8977
9001
  }[];
@@ -9020,7 +9044,7 @@ declare const SysComment: Omit<{
9020
9044
  bordered?: boolean | undefined;
9021
9045
  compactToolbar?: boolean | undefined;
9022
9046
  selection?: {
9023
- type: "multiple" | "single" | "none";
9047
+ type: "none" | "multiple" | "single";
9024
9048
  } | undefined;
9025
9049
  navigation?: {
9026
9050
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -9215,7 +9239,7 @@ declare const SysComment: Omit<{
9215
9239
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
9216
9240
  } | undefined;
9217
9241
  recordTypes?: string[] | undefined;
9218
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
9242
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
9219
9243
  publicSharing?: {
9220
9244
  enabled: boolean;
9221
9245
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -9258,7 +9282,7 @@ declare const SysComment: Omit<{
9258
9282
  field?: string | undefined;
9259
9283
  objectOverride?: string | undefined;
9260
9284
  label?: string | undefined;
9261
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
9285
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
9262
9286
  options?: {
9263
9287
  label: string;
9264
9288
  value: string;
@@ -12000,7 +12024,7 @@ declare const SysAttachment: Omit<{
12000
12024
  abstract: boolean;
12001
12025
  datasource: string;
12002
12026
  fields: Record<string, {
12003
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
12027
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
12004
12028
  required: boolean;
12005
12029
  searchable: boolean;
12006
12030
  multiple: boolean;
@@ -12139,7 +12163,7 @@ declare const SysAttachment: Omit<{
12139
12163
  autoRotate: boolean;
12140
12164
  } | undefined;
12141
12165
  };
12142
- scope: "field" | "record" | "table" | "database";
12166
+ scope: "record" | "field" | "table" | "database";
12143
12167
  deterministicEncryption: boolean;
12144
12168
  searchableEncryption: boolean;
12145
12169
  } | undefined;
@@ -12190,6 +12214,12 @@ declare const SysAttachment: Omit<{
12190
12214
  caseSensitive?: boolean | undefined;
12191
12215
  autonumberFormat?: string | undefined;
12192
12216
  }>;
12217
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
12218
+ _lockReason?: string | undefined;
12219
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
12220
+ _provenance?: "package" | "env-forced" | "org" | undefined;
12221
+ _packageId?: string | undefined;
12222
+ _packageVersion?: string | undefined;
12193
12223
  label?: string | undefined;
12194
12224
  pluralLabel?: string | undefined;
12195
12225
  description?: string | undefined;
@@ -12335,7 +12365,7 @@ declare const SysAttachment: Omit<{
12335
12365
  wrap?: boolean | undefined;
12336
12366
  type?: string | undefined;
12337
12367
  pinned?: "left" | "right" | undefined;
12338
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
12368
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
12339
12369
  link?: boolean | undefined;
12340
12370
  action?: string | undefined;
12341
12371
  }[];
@@ -12384,7 +12414,7 @@ declare const SysAttachment: Omit<{
12384
12414
  bordered?: boolean | undefined;
12385
12415
  compactToolbar?: boolean | undefined;
12386
12416
  selection?: {
12387
- type: "multiple" | "single" | "none";
12417
+ type: "none" | "multiple" | "single";
12388
12418
  } | undefined;
12389
12419
  navigation?: {
12390
12420
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -12579,7 +12609,7 @@ declare const SysAttachment: Omit<{
12579
12609
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
12580
12610
  } | undefined;
12581
12611
  recordTypes?: string[] | undefined;
12582
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
12612
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
12583
12613
  publicSharing?: {
12584
12614
  enabled: boolean;
12585
12615
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -12622,7 +12652,7 @@ declare const SysAttachment: Omit<{
12622
12652
  field?: string | undefined;
12623
12653
  objectOverride?: string | undefined;
12624
12654
  label?: string | undefined;
12625
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
12655
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
12626
12656
  options?: {
12627
12657
  label: string;
12628
12658
  value: string;
@@ -15008,7 +15038,7 @@ declare const SysNotification: Omit<{
15008
15038
  abstract: boolean;
15009
15039
  datasource: string;
15010
15040
  fields: Record<string, {
15011
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
15041
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
15012
15042
  required: boolean;
15013
15043
  searchable: boolean;
15014
15044
  multiple: boolean;
@@ -15147,7 +15177,7 @@ declare const SysNotification: Omit<{
15147
15177
  autoRotate: boolean;
15148
15178
  } | undefined;
15149
15179
  };
15150
- scope: "field" | "record" | "table" | "database";
15180
+ scope: "record" | "field" | "table" | "database";
15151
15181
  deterministicEncryption: boolean;
15152
15182
  searchableEncryption: boolean;
15153
15183
  } | undefined;
@@ -15198,6 +15228,12 @@ declare const SysNotification: Omit<{
15198
15228
  caseSensitive?: boolean | undefined;
15199
15229
  autonumberFormat?: string | undefined;
15200
15230
  }>;
15231
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
15232
+ _lockReason?: string | undefined;
15233
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
15234
+ _provenance?: "package" | "env-forced" | "org" | undefined;
15235
+ _packageId?: string | undefined;
15236
+ _packageVersion?: string | undefined;
15201
15237
  label?: string | undefined;
15202
15238
  pluralLabel?: string | undefined;
15203
15239
  description?: string | undefined;
@@ -15343,7 +15379,7 @@ declare const SysNotification: Omit<{
15343
15379
  wrap?: boolean | undefined;
15344
15380
  type?: string | undefined;
15345
15381
  pinned?: "left" | "right" | undefined;
15346
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
15382
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
15347
15383
  link?: boolean | undefined;
15348
15384
  action?: string | undefined;
15349
15385
  }[];
@@ -15392,7 +15428,7 @@ declare const SysNotification: Omit<{
15392
15428
  bordered?: boolean | undefined;
15393
15429
  compactToolbar?: boolean | undefined;
15394
15430
  selection?: {
15395
- type: "multiple" | "single" | "none";
15431
+ type: "none" | "multiple" | "single";
15396
15432
  } | undefined;
15397
15433
  navigation?: {
15398
15434
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -15587,7 +15623,7 @@ declare const SysNotification: Omit<{
15587
15623
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
15588
15624
  } | undefined;
15589
15625
  recordTypes?: string[] | undefined;
15590
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
15626
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
15591
15627
  publicSharing?: {
15592
15628
  enabled: boolean;
15593
15629
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -15630,7 +15666,7 @@ declare const SysNotification: Omit<{
15630
15666
  field?: string | undefined;
15631
15667
  objectOverride?: string | undefined;
15632
15668
  label?: string | undefined;
15633
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
15669
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
15634
15670
  options?: {
15635
15671
  label: string;
15636
15672
  value: string;
@@ -18306,7 +18342,7 @@ declare const SysEmail: Omit<{
18306
18342
  abstract: boolean;
18307
18343
  datasource: string;
18308
18344
  fields: Record<string, {
18309
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
18345
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
18310
18346
  required: boolean;
18311
18347
  searchable: boolean;
18312
18348
  multiple: boolean;
@@ -18445,7 +18481,7 @@ declare const SysEmail: Omit<{
18445
18481
  autoRotate: boolean;
18446
18482
  } | undefined;
18447
18483
  };
18448
- scope: "field" | "record" | "table" | "database";
18484
+ scope: "record" | "field" | "table" | "database";
18449
18485
  deterministicEncryption: boolean;
18450
18486
  searchableEncryption: boolean;
18451
18487
  } | undefined;
@@ -18496,6 +18532,12 @@ declare const SysEmail: Omit<{
18496
18532
  caseSensitive?: boolean | undefined;
18497
18533
  autonumberFormat?: string | undefined;
18498
18534
  }>;
18535
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
18536
+ _lockReason?: string | undefined;
18537
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
18538
+ _provenance?: "package" | "env-forced" | "org" | undefined;
18539
+ _packageId?: string | undefined;
18540
+ _packageVersion?: string | undefined;
18499
18541
  label?: string | undefined;
18500
18542
  pluralLabel?: string | undefined;
18501
18543
  description?: string | undefined;
@@ -18641,7 +18683,7 @@ declare const SysEmail: Omit<{
18641
18683
  wrap?: boolean | undefined;
18642
18684
  type?: string | undefined;
18643
18685
  pinned?: "left" | "right" | undefined;
18644
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
18686
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
18645
18687
  link?: boolean | undefined;
18646
18688
  action?: string | undefined;
18647
18689
  }[];
@@ -18690,7 +18732,7 @@ declare const SysEmail: Omit<{
18690
18732
  bordered?: boolean | undefined;
18691
18733
  compactToolbar?: boolean | undefined;
18692
18734
  selection?: {
18693
- type: "multiple" | "single" | "none";
18735
+ type: "none" | "multiple" | "single";
18694
18736
  } | undefined;
18695
18737
  navigation?: {
18696
18738
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -18885,7 +18927,7 @@ declare const SysEmail: Omit<{
18885
18927
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
18886
18928
  } | undefined;
18887
18929
  recordTypes?: string[] | undefined;
18888
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
18930
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
18889
18931
  publicSharing?: {
18890
18932
  enabled: boolean;
18891
18933
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -18928,7 +18970,7 @@ declare const SysEmail: Omit<{
18928
18970
  field?: string | undefined;
18929
18971
  objectOverride?: string | undefined;
18930
18972
  label?: string | undefined;
18931
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
18973
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
18932
18974
  options?: {
18933
18975
  label: string;
18934
18976
  value: string;
@@ -22356,7 +22398,7 @@ declare const SysEmailTemplate: Omit<{
22356
22398
  abstract: boolean;
22357
22399
  datasource: string;
22358
22400
  fields: Record<string, {
22359
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
22401
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
22360
22402
  required: boolean;
22361
22403
  searchable: boolean;
22362
22404
  multiple: boolean;
@@ -22495,7 +22537,7 @@ declare const SysEmailTemplate: Omit<{
22495
22537
  autoRotate: boolean;
22496
22538
  } | undefined;
22497
22539
  };
22498
- scope: "field" | "record" | "table" | "database";
22540
+ scope: "record" | "field" | "table" | "database";
22499
22541
  deterministicEncryption: boolean;
22500
22542
  searchableEncryption: boolean;
22501
22543
  } | undefined;
@@ -22546,6 +22588,12 @@ declare const SysEmailTemplate: Omit<{
22546
22588
  caseSensitive?: boolean | undefined;
22547
22589
  autonumberFormat?: string | undefined;
22548
22590
  }>;
22591
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
22592
+ _lockReason?: string | undefined;
22593
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
22594
+ _provenance?: "package" | "env-forced" | "org" | undefined;
22595
+ _packageId?: string | undefined;
22596
+ _packageVersion?: string | undefined;
22549
22597
  label?: string | undefined;
22550
22598
  pluralLabel?: string | undefined;
22551
22599
  description?: string | undefined;
@@ -22691,7 +22739,7 @@ declare const SysEmailTemplate: Omit<{
22691
22739
  wrap?: boolean | undefined;
22692
22740
  type?: string | undefined;
22693
22741
  pinned?: "left" | "right" | undefined;
22694
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
22742
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
22695
22743
  link?: boolean | undefined;
22696
22744
  action?: string | undefined;
22697
22745
  }[];
@@ -22740,7 +22788,7 @@ declare const SysEmailTemplate: Omit<{
22740
22788
  bordered?: boolean | undefined;
22741
22789
  compactToolbar?: boolean | undefined;
22742
22790
  selection?: {
22743
- type: "multiple" | "single" | "none";
22791
+ type: "none" | "multiple" | "single";
22744
22792
  } | undefined;
22745
22793
  navigation?: {
22746
22794
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -22935,7 +22983,7 @@ declare const SysEmailTemplate: Omit<{
22935
22983
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
22936
22984
  } | undefined;
22937
22985
  recordTypes?: string[] | undefined;
22938
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
22986
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
22939
22987
  publicSharing?: {
22940
22988
  enabled: boolean;
22941
22989
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -22978,7 +23026,7 @@ declare const SysEmailTemplate: Omit<{
22978
23026
  field?: string | undefined;
22979
23027
  objectOverride?: string | undefined;
22980
23028
  label?: string | undefined;
22981
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
23029
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
22982
23030
  options?: {
22983
23031
  label: string;
22984
23032
  value: string;
@@ -26070,7 +26118,7 @@ declare const SysSavedReport: Omit<{
26070
26118
  abstract: boolean;
26071
26119
  datasource: string;
26072
26120
  fields: Record<string, {
26073
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
26121
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
26074
26122
  required: boolean;
26075
26123
  searchable: boolean;
26076
26124
  multiple: boolean;
@@ -26209,7 +26257,7 @@ declare const SysSavedReport: Omit<{
26209
26257
  autoRotate: boolean;
26210
26258
  } | undefined;
26211
26259
  };
26212
- scope: "field" | "record" | "table" | "database";
26260
+ scope: "record" | "field" | "table" | "database";
26213
26261
  deterministicEncryption: boolean;
26214
26262
  searchableEncryption: boolean;
26215
26263
  } | undefined;
@@ -26260,6 +26308,12 @@ declare const SysSavedReport: Omit<{
26260
26308
  caseSensitive?: boolean | undefined;
26261
26309
  autonumberFormat?: string | undefined;
26262
26310
  }>;
26311
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
26312
+ _lockReason?: string | undefined;
26313
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
26314
+ _provenance?: "package" | "env-forced" | "org" | undefined;
26315
+ _packageId?: string | undefined;
26316
+ _packageVersion?: string | undefined;
26263
26317
  label?: string | undefined;
26264
26318
  pluralLabel?: string | undefined;
26265
26319
  description?: string | undefined;
@@ -26405,7 +26459,7 @@ declare const SysSavedReport: Omit<{
26405
26459
  wrap?: boolean | undefined;
26406
26460
  type?: string | undefined;
26407
26461
  pinned?: "left" | "right" | undefined;
26408
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
26462
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
26409
26463
  link?: boolean | undefined;
26410
26464
  action?: string | undefined;
26411
26465
  }[];
@@ -26454,7 +26508,7 @@ declare const SysSavedReport: Omit<{
26454
26508
  bordered?: boolean | undefined;
26455
26509
  compactToolbar?: boolean | undefined;
26456
26510
  selection?: {
26457
- type: "multiple" | "single" | "none";
26511
+ type: "none" | "multiple" | "single";
26458
26512
  } | undefined;
26459
26513
  navigation?: {
26460
26514
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -26649,7 +26703,7 @@ declare const SysSavedReport: Omit<{
26649
26703
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
26650
26704
  } | undefined;
26651
26705
  recordTypes?: string[] | undefined;
26652
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
26706
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
26653
26707
  publicSharing?: {
26654
26708
  enabled: boolean;
26655
26709
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -26692,7 +26746,7 @@ declare const SysSavedReport: Omit<{
26692
26746
  field?: string | undefined;
26693
26747
  objectOverride?: string | undefined;
26694
26748
  label?: string | undefined;
26695
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
26749
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
26696
26750
  options?: {
26697
26751
  label: string;
26698
26752
  value: string;
@@ -28732,7 +28786,7 @@ declare const SysReportSchedule: Omit<{
28732
28786
  abstract: boolean;
28733
28787
  datasource: string;
28734
28788
  fields: Record<string, {
28735
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
28789
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
28736
28790
  required: boolean;
28737
28791
  searchable: boolean;
28738
28792
  multiple: boolean;
@@ -28871,7 +28925,7 @@ declare const SysReportSchedule: Omit<{
28871
28925
  autoRotate: boolean;
28872
28926
  } | undefined;
28873
28927
  };
28874
- scope: "field" | "record" | "table" | "database";
28928
+ scope: "record" | "field" | "table" | "database";
28875
28929
  deterministicEncryption: boolean;
28876
28930
  searchableEncryption: boolean;
28877
28931
  } | undefined;
@@ -28922,6 +28976,12 @@ declare const SysReportSchedule: Omit<{
28922
28976
  caseSensitive?: boolean | undefined;
28923
28977
  autonumberFormat?: string | undefined;
28924
28978
  }>;
28979
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
28980
+ _lockReason?: string | undefined;
28981
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
28982
+ _provenance?: "package" | "env-forced" | "org" | undefined;
28983
+ _packageId?: string | undefined;
28984
+ _packageVersion?: string | undefined;
28925
28985
  label?: string | undefined;
28926
28986
  pluralLabel?: string | undefined;
28927
28987
  description?: string | undefined;
@@ -29067,7 +29127,7 @@ declare const SysReportSchedule: Omit<{
29067
29127
  wrap?: boolean | undefined;
29068
29128
  type?: string | undefined;
29069
29129
  pinned?: "left" | "right" | undefined;
29070
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
29130
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
29071
29131
  link?: boolean | undefined;
29072
29132
  action?: string | undefined;
29073
29133
  }[];
@@ -29116,7 +29176,7 @@ declare const SysReportSchedule: Omit<{
29116
29176
  bordered?: boolean | undefined;
29117
29177
  compactToolbar?: boolean | undefined;
29118
29178
  selection?: {
29119
- type: "multiple" | "single" | "none";
29179
+ type: "none" | "multiple" | "single";
29120
29180
  } | undefined;
29121
29181
  navigation?: {
29122
29182
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -29311,7 +29371,7 @@ declare const SysReportSchedule: Omit<{
29311
29371
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
29312
29372
  } | undefined;
29313
29373
  recordTypes?: string[] | undefined;
29314
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
29374
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
29315
29375
  publicSharing?: {
29316
29376
  enabled: boolean;
29317
29377
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -29354,7 +29414,7 @@ declare const SysReportSchedule: Omit<{
29354
29414
  field?: string | undefined;
29355
29415
  objectOverride?: string | undefined;
29356
29416
  label?: string | undefined;
29357
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
29417
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
29358
29418
  options?: {
29359
29419
  label: string;
29360
29420
  value: string;
@@ -32433,7 +32493,7 @@ declare const SysApprovalProcess: Omit<{
32433
32493
  abstract: boolean;
32434
32494
  datasource: string;
32435
32495
  fields: Record<string, {
32436
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
32496
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
32437
32497
  required: boolean;
32438
32498
  searchable: boolean;
32439
32499
  multiple: boolean;
@@ -32572,7 +32632,7 @@ declare const SysApprovalProcess: Omit<{
32572
32632
  autoRotate: boolean;
32573
32633
  } | undefined;
32574
32634
  };
32575
- scope: "field" | "record" | "table" | "database";
32635
+ scope: "record" | "field" | "table" | "database";
32576
32636
  deterministicEncryption: boolean;
32577
32637
  searchableEncryption: boolean;
32578
32638
  } | undefined;
@@ -32623,6 +32683,12 @@ declare const SysApprovalProcess: Omit<{
32623
32683
  caseSensitive?: boolean | undefined;
32624
32684
  autonumberFormat?: string | undefined;
32625
32685
  }>;
32686
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
32687
+ _lockReason?: string | undefined;
32688
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
32689
+ _provenance?: "package" | "env-forced" | "org" | undefined;
32690
+ _packageId?: string | undefined;
32691
+ _packageVersion?: string | undefined;
32626
32692
  label?: string | undefined;
32627
32693
  pluralLabel?: string | undefined;
32628
32694
  description?: string | undefined;
@@ -32768,7 +32834,7 @@ declare const SysApprovalProcess: Omit<{
32768
32834
  wrap?: boolean | undefined;
32769
32835
  type?: string | undefined;
32770
32836
  pinned?: "left" | "right" | undefined;
32771
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
32837
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
32772
32838
  link?: boolean | undefined;
32773
32839
  action?: string | undefined;
32774
32840
  }[];
@@ -32817,7 +32883,7 @@ declare const SysApprovalProcess: Omit<{
32817
32883
  bordered?: boolean | undefined;
32818
32884
  compactToolbar?: boolean | undefined;
32819
32885
  selection?: {
32820
- type: "multiple" | "single" | "none";
32886
+ type: "none" | "multiple" | "single";
32821
32887
  } | undefined;
32822
32888
  navigation?: {
32823
32889
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -33012,7 +33078,7 @@ declare const SysApprovalProcess: Omit<{
33012
33078
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
33013
33079
  } | undefined;
33014
33080
  recordTypes?: string[] | undefined;
33015
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
33081
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
33016
33082
  publicSharing?: {
33017
33083
  enabled: boolean;
33018
33084
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -33055,7 +33121,7 @@ declare const SysApprovalProcess: Omit<{
33055
33121
  field?: string | undefined;
33056
33122
  objectOverride?: string | undefined;
33057
33123
  label?: string | undefined;
33058
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
33124
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
33059
33125
  options?: {
33060
33126
  label: string;
33061
33127
  value: string;
@@ -34835,7 +34901,7 @@ declare const SysApprovalRequest: Omit<{
34835
34901
  abstract: boolean;
34836
34902
  datasource: string;
34837
34903
  fields: Record<string, {
34838
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
34904
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
34839
34905
  required: boolean;
34840
34906
  searchable: boolean;
34841
34907
  multiple: boolean;
@@ -34974,7 +35040,7 @@ declare const SysApprovalRequest: Omit<{
34974
35040
  autoRotate: boolean;
34975
35041
  } | undefined;
34976
35042
  };
34977
- scope: "field" | "record" | "table" | "database";
35043
+ scope: "record" | "field" | "table" | "database";
34978
35044
  deterministicEncryption: boolean;
34979
35045
  searchableEncryption: boolean;
34980
35046
  } | undefined;
@@ -35025,6 +35091,12 @@ declare const SysApprovalRequest: Omit<{
35025
35091
  caseSensitive?: boolean | undefined;
35026
35092
  autonumberFormat?: string | undefined;
35027
35093
  }>;
35094
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
35095
+ _lockReason?: string | undefined;
35096
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
35097
+ _provenance?: "package" | "env-forced" | "org" | undefined;
35098
+ _packageId?: string | undefined;
35099
+ _packageVersion?: string | undefined;
35028
35100
  label?: string | undefined;
35029
35101
  pluralLabel?: string | undefined;
35030
35102
  description?: string | undefined;
@@ -35170,7 +35242,7 @@ declare const SysApprovalRequest: Omit<{
35170
35242
  wrap?: boolean | undefined;
35171
35243
  type?: string | undefined;
35172
35244
  pinned?: "left" | "right" | undefined;
35173
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
35245
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
35174
35246
  link?: boolean | undefined;
35175
35247
  action?: string | undefined;
35176
35248
  }[];
@@ -35219,7 +35291,7 @@ declare const SysApprovalRequest: Omit<{
35219
35291
  bordered?: boolean | undefined;
35220
35292
  compactToolbar?: boolean | undefined;
35221
35293
  selection?: {
35222
- type: "multiple" | "single" | "none";
35294
+ type: "none" | "multiple" | "single";
35223
35295
  } | undefined;
35224
35296
  navigation?: {
35225
35297
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -35414,7 +35486,7 @@ declare const SysApprovalRequest: Omit<{
35414
35486
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
35415
35487
  } | undefined;
35416
35488
  recordTypes?: string[] | undefined;
35417
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
35489
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
35418
35490
  publicSharing?: {
35419
35491
  enabled: boolean;
35420
35492
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -35457,7 +35529,7 @@ declare const SysApprovalRequest: Omit<{
35457
35529
  field?: string | undefined;
35458
35530
  objectOverride?: string | undefined;
35459
35531
  label?: string | undefined;
35460
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
35532
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
35461
35533
  options?: {
35462
35534
  label: string;
35463
35535
  value: string;
@@ -38452,7 +38524,7 @@ declare const SysApprovalAction: Omit<{
38452
38524
  abstract: boolean;
38453
38525
  datasource: string;
38454
38526
  fields: Record<string, {
38455
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
38527
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
38456
38528
  required: boolean;
38457
38529
  searchable: boolean;
38458
38530
  multiple: boolean;
@@ -38591,7 +38663,7 @@ declare const SysApprovalAction: Omit<{
38591
38663
  autoRotate: boolean;
38592
38664
  } | undefined;
38593
38665
  };
38594
- scope: "field" | "record" | "table" | "database";
38666
+ scope: "record" | "field" | "table" | "database";
38595
38667
  deterministicEncryption: boolean;
38596
38668
  searchableEncryption: boolean;
38597
38669
  } | undefined;
@@ -38642,6 +38714,12 @@ declare const SysApprovalAction: Omit<{
38642
38714
  caseSensitive?: boolean | undefined;
38643
38715
  autonumberFormat?: string | undefined;
38644
38716
  }>;
38717
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
38718
+ _lockReason?: string | undefined;
38719
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
38720
+ _provenance?: "package" | "env-forced" | "org" | undefined;
38721
+ _packageId?: string | undefined;
38722
+ _packageVersion?: string | undefined;
38645
38723
  label?: string | undefined;
38646
38724
  pluralLabel?: string | undefined;
38647
38725
  description?: string | undefined;
@@ -38787,7 +38865,7 @@ declare const SysApprovalAction: Omit<{
38787
38865
  wrap?: boolean | undefined;
38788
38866
  type?: string | undefined;
38789
38867
  pinned?: "left" | "right" | undefined;
38790
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
38868
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
38791
38869
  link?: boolean | undefined;
38792
38870
  action?: string | undefined;
38793
38871
  }[];
@@ -38836,7 +38914,7 @@ declare const SysApprovalAction: Omit<{
38836
38914
  bordered?: boolean | undefined;
38837
38915
  compactToolbar?: boolean | undefined;
38838
38916
  selection?: {
38839
- type: "multiple" | "single" | "none";
38917
+ type: "none" | "multiple" | "single";
38840
38918
  } | undefined;
38841
38919
  navigation?: {
38842
38920
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -39031,7 +39109,7 @@ declare const SysApprovalAction: Omit<{
39031
39109
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
39032
39110
  } | undefined;
39033
39111
  recordTypes?: string[] | undefined;
39034
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
39112
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
39035
39113
  publicSharing?: {
39036
39114
  enabled: boolean;
39037
39115
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -39074,7 +39152,7 @@ declare const SysApprovalAction: Omit<{
39074
39152
  field?: string | undefined;
39075
39153
  objectOverride?: string | undefined;
39076
39154
  label?: string | undefined;
39077
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
39155
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
39078
39156
  options?: {
39079
39157
  label: string;
39080
39158
  value: string;
@@ -40816,7 +40894,7 @@ declare const SysJob: Omit<{
40816
40894
  abstract: boolean;
40817
40895
  datasource: string;
40818
40896
  fields: Record<string, {
40819
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
40897
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
40820
40898
  required: boolean;
40821
40899
  searchable: boolean;
40822
40900
  multiple: boolean;
@@ -40955,7 +41033,7 @@ declare const SysJob: Omit<{
40955
41033
  autoRotate: boolean;
40956
41034
  } | undefined;
40957
41035
  };
40958
- scope: "field" | "record" | "table" | "database";
41036
+ scope: "record" | "field" | "table" | "database";
40959
41037
  deterministicEncryption: boolean;
40960
41038
  searchableEncryption: boolean;
40961
41039
  } | undefined;
@@ -41006,6 +41084,12 @@ declare const SysJob: Omit<{
41006
41084
  caseSensitive?: boolean | undefined;
41007
41085
  autonumberFormat?: string | undefined;
41008
41086
  }>;
41087
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
41088
+ _lockReason?: string | undefined;
41089
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
41090
+ _provenance?: "package" | "env-forced" | "org" | undefined;
41091
+ _packageId?: string | undefined;
41092
+ _packageVersion?: string | undefined;
41009
41093
  label?: string | undefined;
41010
41094
  pluralLabel?: string | undefined;
41011
41095
  description?: string | undefined;
@@ -41151,7 +41235,7 @@ declare const SysJob: Omit<{
41151
41235
  wrap?: boolean | undefined;
41152
41236
  type?: string | undefined;
41153
41237
  pinned?: "left" | "right" | undefined;
41154
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
41238
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
41155
41239
  link?: boolean | undefined;
41156
41240
  action?: string | undefined;
41157
41241
  }[];
@@ -41200,7 +41284,7 @@ declare const SysJob: Omit<{
41200
41284
  bordered?: boolean | undefined;
41201
41285
  compactToolbar?: boolean | undefined;
41202
41286
  selection?: {
41203
- type: "multiple" | "single" | "none";
41287
+ type: "none" | "multiple" | "single";
41204
41288
  } | undefined;
41205
41289
  navigation?: {
41206
41290
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -41395,7 +41479,7 @@ declare const SysJob: Omit<{
41395
41479
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
41396
41480
  } | undefined;
41397
41481
  recordTypes?: string[] | undefined;
41398
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
41482
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
41399
41483
  publicSharing?: {
41400
41484
  enabled: boolean;
41401
41485
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -41438,7 +41522,7 @@ declare const SysJob: Omit<{
41438
41522
  field?: string | undefined;
41439
41523
  objectOverride?: string | undefined;
41440
41524
  label?: string | undefined;
41441
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
41525
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
41442
41526
  options?: {
41443
41527
  label: string;
41444
41528
  value: string;
@@ -43814,7 +43898,7 @@ declare const SysJobRun: Omit<{
43814
43898
  abstract: boolean;
43815
43899
  datasource: string;
43816
43900
  fields: Record<string, {
43817
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
43901
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
43818
43902
  required: boolean;
43819
43903
  searchable: boolean;
43820
43904
  multiple: boolean;
@@ -43953,7 +44037,7 @@ declare const SysJobRun: Omit<{
43953
44037
  autoRotate: boolean;
43954
44038
  } | undefined;
43955
44039
  };
43956
- scope: "field" | "record" | "table" | "database";
44040
+ scope: "record" | "field" | "table" | "database";
43957
44041
  deterministicEncryption: boolean;
43958
44042
  searchableEncryption: boolean;
43959
44043
  } | undefined;
@@ -44004,6 +44088,12 @@ declare const SysJobRun: Omit<{
44004
44088
  caseSensitive?: boolean | undefined;
44005
44089
  autonumberFormat?: string | undefined;
44006
44090
  }>;
44091
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
44092
+ _lockReason?: string | undefined;
44093
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
44094
+ _provenance?: "package" | "env-forced" | "org" | undefined;
44095
+ _packageId?: string | undefined;
44096
+ _packageVersion?: string | undefined;
44007
44097
  label?: string | undefined;
44008
44098
  pluralLabel?: string | undefined;
44009
44099
  description?: string | undefined;
@@ -44149,7 +44239,7 @@ declare const SysJobRun: Omit<{
44149
44239
  wrap?: boolean | undefined;
44150
44240
  type?: string | undefined;
44151
44241
  pinned?: "left" | "right" | undefined;
44152
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
44242
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
44153
44243
  link?: boolean | undefined;
44154
44244
  action?: string | undefined;
44155
44245
  }[];
@@ -44198,7 +44288,7 @@ declare const SysJobRun: Omit<{
44198
44288
  bordered?: boolean | undefined;
44199
44289
  compactToolbar?: boolean | undefined;
44200
44290
  selection?: {
44201
- type: "multiple" | "single" | "none";
44291
+ type: "none" | "multiple" | "single";
44202
44292
  } | undefined;
44203
44293
  navigation?: {
44204
44294
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -44393,7 +44483,7 @@ declare const SysJobRun: Omit<{
44393
44483
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
44394
44484
  } | undefined;
44395
44485
  recordTypes?: string[] | undefined;
44396
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
44486
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
44397
44487
  publicSharing?: {
44398
44488
  enabled: boolean;
44399
44489
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -44436,7 +44526,7 @@ declare const SysJobRun: Omit<{
44436
44526
  field?: string | undefined;
44437
44527
  objectOverride?: string | undefined;
44438
44528
  label?: string | undefined;
44439
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
44529
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
44440
44530
  options?: {
44441
44531
  label: string;
44442
44532
  value: string;
@@ -46295,7 +46385,7 @@ declare const SysJobQueue: Omit<{
46295
46385
  abstract: boolean;
46296
46386
  datasource: string;
46297
46387
  fields: Record<string, {
46298
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
46388
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
46299
46389
  required: boolean;
46300
46390
  searchable: boolean;
46301
46391
  multiple: boolean;
@@ -46434,7 +46524,7 @@ declare const SysJobQueue: Omit<{
46434
46524
  autoRotate: boolean;
46435
46525
  } | undefined;
46436
46526
  };
46437
- scope: "field" | "record" | "table" | "database";
46527
+ scope: "record" | "field" | "table" | "database";
46438
46528
  deterministicEncryption: boolean;
46439
46529
  searchableEncryption: boolean;
46440
46530
  } | undefined;
@@ -46485,6 +46575,12 @@ declare const SysJobQueue: Omit<{
46485
46575
  caseSensitive?: boolean | undefined;
46486
46576
  autonumberFormat?: string | undefined;
46487
46577
  }>;
46578
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
46579
+ _lockReason?: string | undefined;
46580
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
46581
+ _provenance?: "package" | "env-forced" | "org" | undefined;
46582
+ _packageId?: string | undefined;
46583
+ _packageVersion?: string | undefined;
46488
46584
  label?: string | undefined;
46489
46585
  pluralLabel?: string | undefined;
46490
46586
  description?: string | undefined;
@@ -46630,7 +46726,7 @@ declare const SysJobQueue: Omit<{
46630
46726
  wrap?: boolean | undefined;
46631
46727
  type?: string | undefined;
46632
46728
  pinned?: "left" | "right" | undefined;
46633
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
46729
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
46634
46730
  link?: boolean | undefined;
46635
46731
  action?: string | undefined;
46636
46732
  }[];
@@ -46679,7 +46775,7 @@ declare const SysJobQueue: Omit<{
46679
46775
  bordered?: boolean | undefined;
46680
46776
  compactToolbar?: boolean | undefined;
46681
46777
  selection?: {
46682
- type: "multiple" | "single" | "none";
46778
+ type: "none" | "multiple" | "single";
46683
46779
  } | undefined;
46684
46780
  navigation?: {
46685
46781
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -46874,7 +46970,7 @@ declare const SysJobQueue: Omit<{
46874
46970
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
46875
46971
  } | undefined;
46876
46972
  recordTypes?: string[] | undefined;
46877
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
46973
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
46878
46974
  publicSharing?: {
46879
46975
  enabled: boolean;
46880
46976
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -46917,7 +47013,7 @@ declare const SysJobQueue: Omit<{
46917
47013
  field?: string | undefined;
46918
47014
  objectOverride?: string | undefined;
46919
47015
  label?: string | undefined;
46920
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
47016
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
46921
47017
  options?: {
46922
47018
  label: string;
46923
47019
  value: string;