@objectstack/platform-objects 7.1.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.
@@ -210,6 +210,12 @@ declare const SysUser: 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 SysUser: 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 SysUser: 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 SysUser: 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;
@@ -709,6 +715,8 @@ declare const SysUser: Omit<{
709
715
  readonly icon: "user";
710
716
  readonly isSystem: true;
711
717
  readonly managedBy: "better-auth";
718
+ readonly _lock: "full";
719
+ readonly _lockReason: "Identity table managed by better-auth — see ADR-0010.";
712
720
  readonly description: "User accounts for authentication";
713
721
  readonly displayNameField: "name";
714
722
  readonly titleFormat: "{name}";
@@ -3400,6 +3408,12 @@ declare const SysSession: Omit<{
3400
3408
  caseSensitive?: boolean | undefined;
3401
3409
  autonumberFormat?: string | undefined;
3402
3410
  }>;
3411
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
3412
+ _lockReason?: string | undefined;
3413
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
3414
+ _provenance?: "package" | "env-forced" | "org" | undefined;
3415
+ _packageId?: string | undefined;
3416
+ _packageVersion?: string | undefined;
3403
3417
  label?: string | undefined;
3404
3418
  pluralLabel?: string | undefined;
3405
3419
  description?: string | undefined;
@@ -3545,7 +3559,7 @@ declare const SysSession: Omit<{
3545
3559
  wrap?: boolean | undefined;
3546
3560
  type?: string | undefined;
3547
3561
  pinned?: "left" | "right" | undefined;
3548
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
3562
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
3549
3563
  link?: boolean | undefined;
3550
3564
  action?: string | undefined;
3551
3565
  }[];
@@ -3594,7 +3608,7 @@ declare const SysSession: Omit<{
3594
3608
  bordered?: boolean | undefined;
3595
3609
  compactToolbar?: boolean | undefined;
3596
3610
  selection?: {
3597
- type: "multiple" | "single" | "none";
3611
+ type: "none" | "multiple" | "single";
3598
3612
  } | undefined;
3599
3613
  navigation?: {
3600
3614
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -3789,7 +3803,7 @@ declare const SysSession: Omit<{
3789
3803
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
3790
3804
  } | undefined;
3791
3805
  recordTypes?: string[] | undefined;
3792
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
3806
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
3793
3807
  publicSharing?: {
3794
3808
  enabled: boolean;
3795
3809
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -6123,6 +6137,12 @@ declare const SysAccount: Omit<{
6123
6137
  caseSensitive?: boolean | undefined;
6124
6138
  autonumberFormat?: string | undefined;
6125
6139
  }>;
6140
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
6141
+ _lockReason?: string | undefined;
6142
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
6143
+ _provenance?: "package" | "env-forced" | "org" | undefined;
6144
+ _packageId?: string | undefined;
6145
+ _packageVersion?: string | undefined;
6126
6146
  label?: string | undefined;
6127
6147
  pluralLabel?: string | undefined;
6128
6148
  description?: string | undefined;
@@ -6268,7 +6288,7 @@ declare const SysAccount: Omit<{
6268
6288
  wrap?: boolean | undefined;
6269
6289
  type?: string | undefined;
6270
6290
  pinned?: "left" | "right" | undefined;
6271
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
6291
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
6272
6292
  link?: boolean | undefined;
6273
6293
  action?: string | undefined;
6274
6294
  }[];
@@ -6317,7 +6337,7 @@ declare const SysAccount: Omit<{
6317
6337
  bordered?: boolean | undefined;
6318
6338
  compactToolbar?: boolean | undefined;
6319
6339
  selection?: {
6320
- type: "multiple" | "single" | "none";
6340
+ type: "none" | "multiple" | "single";
6321
6341
  } | undefined;
6322
6342
  navigation?: {
6323
6343
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -6512,7 +6532,7 @@ declare const SysAccount: Omit<{
6512
6532
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
6513
6533
  } | undefined;
6514
6534
  recordTypes?: string[] | undefined;
6515
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
6535
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
6516
6536
  publicSharing?: {
6517
6537
  enabled: boolean;
6518
6538
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -6633,7 +6653,7 @@ declare const SysAccount: Omit<{
6633
6653
  readonly mode: "create";
6634
6654
  readonly locations: ["list_toolbar"];
6635
6655
  readonly type: "url";
6636
- readonly target: "/api/v1/auth/sign-in/social?provider=${param.provider}&callbackURL=${ctx.origin}/apps/account/sys_account";
6656
+ readonly target: "/api/v1/auth/sign-in/social?provider=${param.provider}&callbackURL=${ctx.origin}/_console/apps/account/sys_account";
6637
6657
  readonly params: [{
6638
6658
  readonly name: "provider";
6639
6659
  readonly label: "Provider";
@@ -9253,6 +9273,12 @@ declare const SysVerification: Omit<{
9253
9273
  caseSensitive?: boolean | undefined;
9254
9274
  autonumberFormat?: string | undefined;
9255
9275
  }>;
9276
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
9277
+ _lockReason?: string | undefined;
9278
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
9279
+ _provenance?: "package" | "env-forced" | "org" | undefined;
9280
+ _packageId?: string | undefined;
9281
+ _packageVersion?: string | undefined;
9256
9282
  label?: string | undefined;
9257
9283
  pluralLabel?: string | undefined;
9258
9284
  description?: string | undefined;
@@ -9398,7 +9424,7 @@ declare const SysVerification: Omit<{
9398
9424
  wrap?: boolean | undefined;
9399
9425
  type?: string | undefined;
9400
9426
  pinned?: "left" | "right" | undefined;
9401
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
9427
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
9402
9428
  link?: boolean | undefined;
9403
9429
  action?: string | undefined;
9404
9430
  }[];
@@ -9447,7 +9473,7 @@ declare const SysVerification: Omit<{
9447
9473
  bordered?: boolean | undefined;
9448
9474
  compactToolbar?: boolean | undefined;
9449
9475
  selection?: {
9450
- type: "multiple" | "single" | "none";
9476
+ type: "none" | "multiple" | "single";
9451
9477
  } | undefined;
9452
9478
  navigation?: {
9453
9479
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -9642,7 +9668,7 @@ declare const SysVerification: Omit<{
9642
9668
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
9643
9669
  } | undefined;
9644
9670
  recordTypes?: string[] | undefined;
9645
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
9671
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
9646
9672
  publicSharing?: {
9647
9673
  enabled: boolean;
9648
9674
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -11032,6 +11058,12 @@ declare const SysOrganization: Omit<{
11032
11058
  caseSensitive?: boolean | undefined;
11033
11059
  autonumberFormat?: string | undefined;
11034
11060
  }>;
11061
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
11062
+ _lockReason?: string | undefined;
11063
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
11064
+ _provenance?: "package" | "env-forced" | "org" | undefined;
11065
+ _packageId?: string | undefined;
11066
+ _packageVersion?: string | undefined;
11035
11067
  label?: string | undefined;
11036
11068
  pluralLabel?: string | undefined;
11037
11069
  description?: string | undefined;
@@ -11177,7 +11209,7 @@ declare const SysOrganization: Omit<{
11177
11209
  wrap?: boolean | undefined;
11178
11210
  type?: string | undefined;
11179
11211
  pinned?: "left" | "right" | undefined;
11180
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
11212
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
11181
11213
  link?: boolean | undefined;
11182
11214
  action?: string | undefined;
11183
11215
  }[];
@@ -11226,7 +11258,7 @@ declare const SysOrganization: Omit<{
11226
11258
  bordered?: boolean | undefined;
11227
11259
  compactToolbar?: boolean | undefined;
11228
11260
  selection?: {
11229
- type: "multiple" | "single" | "none";
11261
+ type: "none" | "multiple" | "single";
11230
11262
  } | undefined;
11231
11263
  navigation?: {
11232
11264
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -11421,7 +11453,7 @@ declare const SysOrganization: Omit<{
11421
11453
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
11422
11454
  } | undefined;
11423
11455
  recordTypes?: string[] | undefined;
11424
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
11456
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
11425
11457
  publicSharing?: {
11426
11458
  enabled: boolean;
11427
11459
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -13105,6 +13137,12 @@ declare const SysMember: Omit<{
13105
13137
  caseSensitive?: boolean | undefined;
13106
13138
  autonumberFormat?: string | undefined;
13107
13139
  }>;
13140
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
13141
+ _lockReason?: string | undefined;
13142
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
13143
+ _provenance?: "package" | "env-forced" | "org" | undefined;
13144
+ _packageId?: string | undefined;
13145
+ _packageVersion?: string | undefined;
13108
13146
  label?: string | undefined;
13109
13147
  pluralLabel?: string | undefined;
13110
13148
  description?: string | undefined;
@@ -13250,7 +13288,7 @@ declare const SysMember: Omit<{
13250
13288
  wrap?: boolean | undefined;
13251
13289
  type?: string | undefined;
13252
13290
  pinned?: "left" | "right" | undefined;
13253
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
13291
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
13254
13292
  link?: boolean | undefined;
13255
13293
  action?: string | undefined;
13256
13294
  }[];
@@ -13299,7 +13337,7 @@ declare const SysMember: Omit<{
13299
13337
  bordered?: boolean | undefined;
13300
13338
  compactToolbar?: boolean | undefined;
13301
13339
  selection?: {
13302
- type: "multiple" | "single" | "none";
13340
+ type: "none" | "multiple" | "single";
13303
13341
  } | undefined;
13304
13342
  navigation?: {
13305
13343
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -13494,7 +13532,7 @@ declare const SysMember: Omit<{
13494
13532
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
13495
13533
  } | undefined;
13496
13534
  recordTypes?: string[] | undefined;
13497
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
13535
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
13498
13536
  publicSharing?: {
13499
13537
  enabled: boolean;
13500
13538
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -14801,6 +14839,12 @@ declare const SysInvitation: Omit<{
14801
14839
  caseSensitive?: boolean | undefined;
14802
14840
  autonumberFormat?: string | undefined;
14803
14841
  }>;
14842
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
14843
+ _lockReason?: string | undefined;
14844
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
14845
+ _provenance?: "package" | "env-forced" | "org" | undefined;
14846
+ _packageId?: string | undefined;
14847
+ _packageVersion?: string | undefined;
14804
14848
  label?: string | undefined;
14805
14849
  pluralLabel?: string | undefined;
14806
14850
  description?: string | undefined;
@@ -14946,7 +14990,7 @@ declare const SysInvitation: Omit<{
14946
14990
  wrap?: boolean | undefined;
14947
14991
  type?: string | undefined;
14948
14992
  pinned?: "left" | "right" | undefined;
14949
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
14993
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
14950
14994
  link?: boolean | undefined;
14951
14995
  action?: string | undefined;
14952
14996
  }[];
@@ -14995,7 +15039,7 @@ declare const SysInvitation: Omit<{
14995
15039
  bordered?: boolean | undefined;
14996
15040
  compactToolbar?: boolean | undefined;
14997
15041
  selection?: {
14998
- type: "multiple" | "single" | "none";
15042
+ type: "none" | "multiple" | "single";
14999
15043
  } | undefined;
15000
15044
  navigation?: {
15001
15045
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -15190,7 +15234,7 @@ declare const SysInvitation: Omit<{
15190
15234
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
15191
15235
  } | undefined;
15192
15236
  recordTypes?: string[] | undefined;
15193
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
15237
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
15194
15238
  publicSharing?: {
15195
15239
  enabled: boolean;
15196
15240
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -17265,6 +17309,12 @@ declare const SysTeam: Omit<{
17265
17309
  caseSensitive?: boolean | undefined;
17266
17310
  autonumberFormat?: string | undefined;
17267
17311
  }>;
17312
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
17313
+ _lockReason?: string | undefined;
17314
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
17315
+ _provenance?: "package" | "env-forced" | "org" | undefined;
17316
+ _packageId?: string | undefined;
17317
+ _packageVersion?: string | undefined;
17268
17318
  label?: string | undefined;
17269
17319
  pluralLabel?: string | undefined;
17270
17320
  description?: string | undefined;
@@ -17410,7 +17460,7 @@ declare const SysTeam: Omit<{
17410
17460
  wrap?: boolean | undefined;
17411
17461
  type?: string | undefined;
17412
17462
  pinned?: "left" | "right" | undefined;
17413
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
17463
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
17414
17464
  link?: boolean | undefined;
17415
17465
  action?: string | undefined;
17416
17466
  }[];
@@ -17459,7 +17509,7 @@ declare const SysTeam: Omit<{
17459
17509
  bordered?: boolean | undefined;
17460
17510
  compactToolbar?: boolean | undefined;
17461
17511
  selection?: {
17462
- type: "multiple" | "single" | "none";
17512
+ type: "none" | "multiple" | "single";
17463
17513
  } | undefined;
17464
17514
  navigation?: {
17465
17515
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -17654,7 +17704,7 @@ declare const SysTeam: Omit<{
17654
17704
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
17655
17705
  } | undefined;
17656
17706
  recordTypes?: string[] | undefined;
17657
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
17707
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
17658
17708
  publicSharing?: {
17659
17709
  enabled: boolean;
17660
17710
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -18962,6 +19012,12 @@ declare const SysTeamMember: Omit<{
18962
19012
  caseSensitive?: boolean | undefined;
18963
19013
  autonumberFormat?: string | undefined;
18964
19014
  }>;
19015
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
19016
+ _lockReason?: string | undefined;
19017
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
19018
+ _provenance?: "package" | "env-forced" | "org" | undefined;
19019
+ _packageId?: string | undefined;
19020
+ _packageVersion?: string | undefined;
18965
19021
  label?: string | undefined;
18966
19022
  pluralLabel?: string | undefined;
18967
19023
  description?: string | undefined;
@@ -19107,7 +19163,7 @@ declare const SysTeamMember: Omit<{
19107
19163
  wrap?: boolean | undefined;
19108
19164
  type?: string | undefined;
19109
19165
  pinned?: "left" | "right" | undefined;
19110
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
19166
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
19111
19167
  link?: boolean | undefined;
19112
19168
  action?: string | undefined;
19113
19169
  }[];
@@ -19156,7 +19212,7 @@ declare const SysTeamMember: Omit<{
19156
19212
  bordered?: boolean | undefined;
19157
19213
  compactToolbar?: boolean | undefined;
19158
19214
  selection?: {
19159
- type: "multiple" | "single" | "none";
19215
+ type: "none" | "multiple" | "single";
19160
19216
  } | undefined;
19161
19217
  navigation?: {
19162
19218
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -19351,7 +19407,7 @@ declare const SysTeamMember: Omit<{
19351
19407
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
19352
19408
  } | undefined;
19353
19409
  recordTypes?: string[] | undefined;
19354
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
19410
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
19355
19411
  publicSharing?: {
19356
19412
  enabled: boolean;
19357
19413
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -20440,6 +20496,12 @@ declare const SysDepartment: Omit<{
20440
20496
  caseSensitive?: boolean | undefined;
20441
20497
  autonumberFormat?: string | undefined;
20442
20498
  }>;
20499
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
20500
+ _lockReason?: string | undefined;
20501
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
20502
+ _provenance?: "package" | "env-forced" | "org" | undefined;
20503
+ _packageId?: string | undefined;
20504
+ _packageVersion?: string | undefined;
20443
20505
  label?: string | undefined;
20444
20506
  pluralLabel?: string | undefined;
20445
20507
  description?: string | undefined;
@@ -20585,7 +20647,7 @@ declare const SysDepartment: Omit<{
20585
20647
  wrap?: boolean | undefined;
20586
20648
  type?: string | undefined;
20587
20649
  pinned?: "left" | "right" | undefined;
20588
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
20650
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
20589
20651
  link?: boolean | undefined;
20590
20652
  action?: string | undefined;
20591
20653
  }[];
@@ -20634,7 +20696,7 @@ declare const SysDepartment: Omit<{
20634
20696
  bordered?: boolean | undefined;
20635
20697
  compactToolbar?: boolean | undefined;
20636
20698
  selection?: {
20637
- type: "multiple" | "single" | "none";
20699
+ type: "none" | "multiple" | "single";
20638
20700
  } | undefined;
20639
20701
  navigation?: {
20640
20702
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -20829,7 +20891,7 @@ declare const SysDepartment: Omit<{
20829
20891
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
20830
20892
  } | undefined;
20831
20893
  recordTypes?: string[] | undefined;
20832
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
20894
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
20833
20895
  publicSharing?: {
20834
20896
  enabled: boolean;
20835
20897
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -23539,6 +23601,12 @@ declare const SysDepartmentMember: Omit<{
23539
23601
  caseSensitive?: boolean | undefined;
23540
23602
  autonumberFormat?: string | undefined;
23541
23603
  }>;
23604
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
23605
+ _lockReason?: string | undefined;
23606
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
23607
+ _provenance?: "package" | "env-forced" | "org" | undefined;
23608
+ _packageId?: string | undefined;
23609
+ _packageVersion?: string | undefined;
23542
23610
  label?: string | undefined;
23543
23611
  pluralLabel?: string | undefined;
23544
23612
  description?: string | undefined;
@@ -23684,7 +23752,7 @@ declare const SysDepartmentMember: Omit<{
23684
23752
  wrap?: boolean | undefined;
23685
23753
  type?: string | undefined;
23686
23754
  pinned?: "left" | "right" | undefined;
23687
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
23755
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
23688
23756
  link?: boolean | undefined;
23689
23757
  action?: string | undefined;
23690
23758
  }[];
@@ -23733,7 +23801,7 @@ declare const SysDepartmentMember: Omit<{
23733
23801
  bordered?: boolean | undefined;
23734
23802
  compactToolbar?: boolean | undefined;
23735
23803
  selection?: {
23736
- type: "multiple" | "single" | "none";
23804
+ type: "none" | "multiple" | "single";
23737
23805
  } | undefined;
23738
23806
  navigation?: {
23739
23807
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -23928,7 +23996,7 @@ declare const SysDepartmentMember: Omit<{
23928
23996
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
23929
23997
  } | undefined;
23930
23998
  recordTypes?: string[] | undefined;
23931
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
23999
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
23932
24000
  publicSharing?: {
23933
24001
  enabled: boolean;
23934
24002
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -25844,6 +25912,12 @@ declare const SysApiKey: Omit<{
25844
25912
  caseSensitive?: boolean | undefined;
25845
25913
  autonumberFormat?: string | undefined;
25846
25914
  }>;
25915
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
25916
+ _lockReason?: string | undefined;
25917
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
25918
+ _provenance?: "package" | "env-forced" | "org" | undefined;
25919
+ _packageId?: string | undefined;
25920
+ _packageVersion?: string | undefined;
25847
25921
  label?: string | undefined;
25848
25922
  pluralLabel?: string | undefined;
25849
25923
  description?: string | undefined;
@@ -25989,7 +26063,7 @@ declare const SysApiKey: Omit<{
25989
26063
  wrap?: boolean | undefined;
25990
26064
  type?: string | undefined;
25991
26065
  pinned?: "left" | "right" | undefined;
25992
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
26066
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
25993
26067
  link?: boolean | undefined;
25994
26068
  action?: string | undefined;
25995
26069
  }[];
@@ -26038,7 +26112,7 @@ declare const SysApiKey: Omit<{
26038
26112
  bordered?: boolean | undefined;
26039
26113
  compactToolbar?: boolean | undefined;
26040
26114
  selection?: {
26041
- type: "multiple" | "single" | "none";
26115
+ type: "none" | "multiple" | "single";
26042
26116
  } | undefined;
26043
26117
  navigation?: {
26044
26118
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -26233,7 +26307,7 @@ declare const SysApiKey: Omit<{
26233
26307
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
26234
26308
  } | undefined;
26235
26309
  recordTypes?: string[] | undefined;
26236
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
26310
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
26237
26311
  publicSharing?: {
26238
26312
  enabled: boolean;
26239
26313
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -28617,6 +28691,12 @@ declare const SysTwoFactor: Omit<{
28617
28691
  caseSensitive?: boolean | undefined;
28618
28692
  autonumberFormat?: string | undefined;
28619
28693
  }>;
28694
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
28695
+ _lockReason?: string | undefined;
28696
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
28697
+ _provenance?: "package" | "env-forced" | "org" | undefined;
28698
+ _packageId?: string | undefined;
28699
+ _packageVersion?: string | undefined;
28620
28700
  label?: string | undefined;
28621
28701
  pluralLabel?: string | undefined;
28622
28702
  description?: string | undefined;
@@ -28762,7 +28842,7 @@ declare const SysTwoFactor: Omit<{
28762
28842
  wrap?: boolean | undefined;
28763
28843
  type?: string | undefined;
28764
28844
  pinned?: "left" | "right" | undefined;
28765
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
28845
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
28766
28846
  link?: boolean | undefined;
28767
28847
  action?: string | undefined;
28768
28848
  }[];
@@ -28811,7 +28891,7 @@ declare const SysTwoFactor: Omit<{
28811
28891
  bordered?: boolean | undefined;
28812
28892
  compactToolbar?: boolean | undefined;
28813
28893
  selection?: {
28814
- type: "multiple" | "single" | "none";
28894
+ type: "none" | "multiple" | "single";
28815
28895
  } | undefined;
28816
28896
  navigation?: {
28817
28897
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -29006,7 +29086,7 @@ declare const SysTwoFactor: Omit<{
29006
29086
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
29007
29087
  } | undefined;
29008
29088
  recordTypes?: string[] | undefined;
29009
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
29089
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
29010
29090
  publicSharing?: {
29011
29091
  enabled: boolean;
29012
29092
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -30688,6 +30768,12 @@ declare const SysDeviceCode: Omit<{
30688
30768
  caseSensitive?: boolean | undefined;
30689
30769
  autonumberFormat?: string | undefined;
30690
30770
  }>;
30771
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
30772
+ _lockReason?: string | undefined;
30773
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
30774
+ _provenance?: "package" | "env-forced" | "org" | undefined;
30775
+ _packageId?: string | undefined;
30776
+ _packageVersion?: string | undefined;
30691
30777
  label?: string | undefined;
30692
30778
  pluralLabel?: string | undefined;
30693
30779
  description?: string | undefined;
@@ -30833,7 +30919,7 @@ declare const SysDeviceCode: Omit<{
30833
30919
  wrap?: boolean | undefined;
30834
30920
  type?: string | undefined;
30835
30921
  pinned?: "left" | "right" | undefined;
30836
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
30922
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
30837
30923
  link?: boolean | undefined;
30838
30924
  action?: string | undefined;
30839
30925
  }[];
@@ -30882,7 +30968,7 @@ declare const SysDeviceCode: Omit<{
30882
30968
  bordered?: boolean | undefined;
30883
30969
  compactToolbar?: boolean | undefined;
30884
30970
  selection?: {
30885
- type: "multiple" | "single" | "none";
30971
+ type: "none" | "multiple" | "single";
30886
30972
  } | undefined;
30887
30973
  navigation?: {
30888
30974
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -31077,7 +31163,7 @@ declare const SysDeviceCode: Omit<{
31077
31163
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
31078
31164
  } | undefined;
31079
31165
  recordTypes?: string[] | undefined;
31080
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
31166
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
31081
31167
  publicSharing?: {
31082
31168
  enabled: boolean;
31083
31169
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -33527,6 +33613,12 @@ declare const SysUserPreference: Omit<{
33527
33613
  caseSensitive?: boolean | undefined;
33528
33614
  autonumberFormat?: string | undefined;
33529
33615
  }>;
33616
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
33617
+ _lockReason?: string | undefined;
33618
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
33619
+ _provenance?: "package" | "env-forced" | "org" | undefined;
33620
+ _packageId?: string | undefined;
33621
+ _packageVersion?: string | undefined;
33530
33622
  label?: string | undefined;
33531
33623
  pluralLabel?: string | undefined;
33532
33624
  description?: string | undefined;
@@ -33672,7 +33764,7 @@ declare const SysUserPreference: Omit<{
33672
33764
  wrap?: boolean | undefined;
33673
33765
  type?: string | undefined;
33674
33766
  pinned?: "left" | "right" | undefined;
33675
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
33767
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
33676
33768
  link?: boolean | undefined;
33677
33769
  action?: string | undefined;
33678
33770
  }[];
@@ -33721,7 +33813,7 @@ declare const SysUserPreference: Omit<{
33721
33813
  bordered?: boolean | undefined;
33722
33814
  compactToolbar?: boolean | undefined;
33723
33815
  selection?: {
33724
- type: "multiple" | "single" | "none";
33816
+ type: "none" | "multiple" | "single";
33725
33817
  } | undefined;
33726
33818
  navigation?: {
33727
33819
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -33916,7 +34008,7 @@ declare const SysUserPreference: Omit<{
33916
34008
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
33917
34009
  } | undefined;
33918
34010
  recordTypes?: string[] | undefined;
33919
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
34011
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
33920
34012
  publicSharing?: {
33921
34013
  enabled: boolean;
33922
34014
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -35378,6 +35470,12 @@ declare const SysOauthApplication: Omit<{
35378
35470
  caseSensitive?: boolean | undefined;
35379
35471
  autonumberFormat?: string | undefined;
35380
35472
  }>;
35473
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
35474
+ _lockReason?: string | undefined;
35475
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
35476
+ _provenance?: "package" | "env-forced" | "org" | undefined;
35477
+ _packageId?: string | undefined;
35478
+ _packageVersion?: string | undefined;
35381
35479
  label?: string | undefined;
35382
35480
  pluralLabel?: string | undefined;
35383
35481
  description?: string | undefined;
@@ -35523,7 +35621,7 @@ declare const SysOauthApplication: Omit<{
35523
35621
  wrap?: boolean | undefined;
35524
35622
  type?: string | undefined;
35525
35623
  pinned?: "left" | "right" | undefined;
35526
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
35624
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
35527
35625
  link?: boolean | undefined;
35528
35626
  action?: string | undefined;
35529
35627
  }[];
@@ -35572,7 +35670,7 @@ declare const SysOauthApplication: Omit<{
35572
35670
  bordered?: boolean | undefined;
35573
35671
  compactToolbar?: boolean | undefined;
35574
35672
  selection?: {
35575
- type: "multiple" | "single" | "none";
35673
+ type: "none" | "multiple" | "single";
35576
35674
  } | undefined;
35577
35675
  navigation?: {
35578
35676
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -35767,7 +35865,7 @@ declare const SysOauthApplication: Omit<{
35767
35865
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
35768
35866
  } | undefined;
35769
35867
  recordTypes?: string[] | undefined;
35770
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
35868
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
35771
35869
  publicSharing?: {
35772
35870
  enabled: boolean;
35773
35871
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -41596,6 +41694,12 @@ declare const SysOauthAccessToken: Omit<{
41596
41694
  caseSensitive?: boolean | undefined;
41597
41695
  autonumberFormat?: string | undefined;
41598
41696
  }>;
41697
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
41698
+ _lockReason?: string | undefined;
41699
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
41700
+ _provenance?: "package" | "env-forced" | "org" | undefined;
41701
+ _packageId?: string | undefined;
41702
+ _packageVersion?: string | undefined;
41599
41703
  label?: string | undefined;
41600
41704
  pluralLabel?: string | undefined;
41601
41705
  description?: string | undefined;
@@ -41741,7 +41845,7 @@ declare const SysOauthAccessToken: Omit<{
41741
41845
  wrap?: boolean | undefined;
41742
41846
  type?: string | undefined;
41743
41847
  pinned?: "left" | "right" | undefined;
41744
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
41848
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
41745
41849
  link?: boolean | undefined;
41746
41850
  action?: string | undefined;
41747
41851
  }[];
@@ -41790,7 +41894,7 @@ declare const SysOauthAccessToken: Omit<{
41790
41894
  bordered?: boolean | undefined;
41791
41895
  compactToolbar?: boolean | undefined;
41792
41896
  selection?: {
41793
- type: "multiple" | "single" | "none";
41897
+ type: "none" | "multiple" | "single";
41794
41898
  } | undefined;
41795
41899
  navigation?: {
41796
41900
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -41985,7 +42089,7 @@ declare const SysOauthAccessToken: Omit<{
41985
42089
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
41986
42090
  } | undefined;
41987
42091
  recordTypes?: string[] | undefined;
41988
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
42092
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
41989
42093
  publicSharing?: {
41990
42094
  enabled: boolean;
41991
42095
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -44080,6 +44184,12 @@ declare const SysOauthRefreshToken: Omit<{
44080
44184
  caseSensitive?: boolean | undefined;
44081
44185
  autonumberFormat?: string | undefined;
44082
44186
  }>;
44187
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
44188
+ _lockReason?: string | undefined;
44189
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
44190
+ _provenance?: "package" | "env-forced" | "org" | undefined;
44191
+ _packageId?: string | undefined;
44192
+ _packageVersion?: string | undefined;
44083
44193
  label?: string | undefined;
44084
44194
  pluralLabel?: string | undefined;
44085
44195
  description?: string | undefined;
@@ -44225,7 +44335,7 @@ declare const SysOauthRefreshToken: Omit<{
44225
44335
  wrap?: boolean | undefined;
44226
44336
  type?: string | undefined;
44227
44337
  pinned?: "left" | "right" | undefined;
44228
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
44338
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
44229
44339
  link?: boolean | undefined;
44230
44340
  action?: string | undefined;
44231
44341
  }[];
@@ -44274,7 +44384,7 @@ declare const SysOauthRefreshToken: Omit<{
44274
44384
  bordered?: boolean | undefined;
44275
44385
  compactToolbar?: boolean | undefined;
44276
44386
  selection?: {
44277
- type: "multiple" | "single" | "none";
44387
+ type: "none" | "multiple" | "single";
44278
44388
  } | undefined;
44279
44389
  navigation?: {
44280
44390
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -44469,7 +44579,7 @@ declare const SysOauthRefreshToken: Omit<{
44469
44579
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
44470
44580
  } | undefined;
44471
44581
  recordTypes?: string[] | undefined;
44472
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
44582
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
44473
44583
  publicSharing?: {
44474
44584
  enabled: boolean;
44475
44585
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -46739,6 +46849,12 @@ declare const SysOauthConsent: Omit<{
46739
46849
  caseSensitive?: boolean | undefined;
46740
46850
  autonumberFormat?: string | undefined;
46741
46851
  }>;
46852
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
46853
+ _lockReason?: string | undefined;
46854
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
46855
+ _provenance?: "package" | "env-forced" | "org" | undefined;
46856
+ _packageId?: string | undefined;
46857
+ _packageVersion?: string | undefined;
46742
46858
  label?: string | undefined;
46743
46859
  pluralLabel?: string | undefined;
46744
46860
  description?: string | undefined;
@@ -46884,7 +47000,7 @@ declare const SysOauthConsent: Omit<{
46884
47000
  wrap?: boolean | undefined;
46885
47001
  type?: string | undefined;
46886
47002
  pinned?: "left" | "right" | undefined;
46887
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
47003
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
46888
47004
  link?: boolean | undefined;
46889
47005
  action?: string | undefined;
46890
47006
  }[];
@@ -46933,7 +47049,7 @@ declare const SysOauthConsent: Omit<{
46933
47049
  bordered?: boolean | undefined;
46934
47050
  compactToolbar?: boolean | undefined;
46935
47051
  selection?: {
46936
- type: "multiple" | "single" | "none";
47052
+ type: "none" | "multiple" | "single";
46937
47053
  } | undefined;
46938
47054
  navigation?: {
46939
47055
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -47128,7 +47244,7 @@ declare const SysOauthConsent: Omit<{
47128
47244
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
47129
47245
  } | undefined;
47130
47246
  recordTypes?: string[] | undefined;
47131
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
47247
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
47132
47248
  publicSharing?: {
47133
47249
  enabled: boolean;
47134
47250
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -48691,6 +48807,12 @@ declare const SysJwks: Omit<{
48691
48807
  caseSensitive?: boolean | undefined;
48692
48808
  autonumberFormat?: string | undefined;
48693
48809
  }>;
48810
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
48811
+ _lockReason?: string | undefined;
48812
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
48813
+ _provenance?: "package" | "env-forced" | "org" | undefined;
48814
+ _packageId?: string | undefined;
48815
+ _packageVersion?: string | undefined;
48694
48816
  label?: string | undefined;
48695
48817
  pluralLabel?: string | undefined;
48696
48818
  description?: string | undefined;
@@ -48836,7 +48958,7 @@ declare const SysJwks: Omit<{
48836
48958
  wrap?: boolean | undefined;
48837
48959
  type?: string | undefined;
48838
48960
  pinned?: "left" | "right" | undefined;
48839
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
48961
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
48840
48962
  link?: boolean | undefined;
48841
48963
  action?: string | undefined;
48842
48964
  }[];
@@ -48885,7 +49007,7 @@ declare const SysJwks: Omit<{
48885
49007
  bordered?: boolean | undefined;
48886
49008
  compactToolbar?: boolean | undefined;
48887
49009
  selection?: {
48888
- type: "multiple" | "single" | "none";
49010
+ type: "none" | "multiple" | "single";
48889
49011
  } | undefined;
48890
49012
  navigation?: {
48891
49013
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -49080,7 +49202,7 @@ declare const SysJwks: Omit<{
49080
49202
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
49081
49203
  } | undefined;
49082
49204
  recordTypes?: string[] | undefined;
49083
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
49205
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
49084
49206
  publicSharing?: {
49085
49207
  enabled: boolean;
49086
49208
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;