@objectstack/platform-objects 7.2.0 → 7.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -216,6 +216,7 @@ declare const SysUser: Omit<{
216
216
  _provenance?: "package" | "env-forced" | "org" | undefined;
217
217
  _packageId?: string | undefined;
218
218
  _packageVersion?: string | undefined;
219
+ _lockDocsUrl?: string | undefined;
219
220
  label?: string | undefined;
220
221
  pluralLabel?: string | undefined;
221
222
  description?: string | undefined;
@@ -708,6 +709,11 @@ declare const SysUser: Omit<{
708
709
  role?: string | undefined;
709
710
  } | undefined;
710
711
  }[] | undefined;
712
+ protection?: {
713
+ lock: "full" | "none" | "no-overlay" | "no-delete";
714
+ reason: string;
715
+ docsUrl?: string | undefined;
716
+ } | undefined;
711
717
  }, "fields"> & Pick<{
712
718
  readonly name: "sys_user";
713
719
  readonly label: "User";
@@ -715,8 +721,11 @@ declare const SysUser: Omit<{
715
721
  readonly icon: "user";
716
722
  readonly isSystem: true;
717
723
  readonly managedBy: "better-auth";
718
- readonly _lock: "full";
719
- readonly _lockReason: "Identity table managed by better-auth — see ADR-0010.";
724
+ readonly protection: {
725
+ readonly lock: "full";
726
+ readonly reason: "Identity table managed by better-auth — see ADR-0010.";
727
+ readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
728
+ };
720
729
  readonly description: "User accounts for authentication";
721
730
  readonly displayNameField: "name";
722
731
  readonly titleFormat: "{name}";
@@ -3414,6 +3423,7 @@ declare const SysSession: Omit<{
3414
3423
  _provenance?: "package" | "env-forced" | "org" | undefined;
3415
3424
  _packageId?: string | undefined;
3416
3425
  _packageVersion?: string | undefined;
3426
+ _lockDocsUrl?: string | undefined;
3417
3427
  label?: string | undefined;
3418
3428
  pluralLabel?: string | undefined;
3419
3429
  description?: string | undefined;
@@ -3906,6 +3916,11 @@ declare const SysSession: Omit<{
3906
3916
  role?: string | undefined;
3907
3917
  } | undefined;
3908
3918
  }[] | undefined;
3919
+ protection?: {
3920
+ lock: "full" | "none" | "no-overlay" | "no-delete";
3921
+ reason: string;
3922
+ docsUrl?: string | undefined;
3923
+ } | undefined;
3909
3924
  }, "fields"> & Pick<{
3910
3925
  readonly name: "sys_session";
3911
3926
  readonly label: "Session";
@@ -3913,6 +3928,11 @@ declare const SysSession: Omit<{
3913
3928
  readonly icon: "key";
3914
3929
  readonly isSystem: true;
3915
3930
  readonly managedBy: "better-auth";
3931
+ readonly protection: {
3932
+ readonly lock: "full";
3933
+ readonly reason: "Identity table managed by better-auth — see ADR-0010.";
3934
+ readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
3935
+ };
3916
3936
  readonly description: "Active user sessions";
3917
3937
  readonly displayNameField: "user_id";
3918
3938
  readonly titleFormat: "Session — {user_id}";
@@ -6143,6 +6163,7 @@ declare const SysAccount: Omit<{
6143
6163
  _provenance?: "package" | "env-forced" | "org" | undefined;
6144
6164
  _packageId?: string | undefined;
6145
6165
  _packageVersion?: string | undefined;
6166
+ _lockDocsUrl?: string | undefined;
6146
6167
  label?: string | undefined;
6147
6168
  pluralLabel?: string | undefined;
6148
6169
  description?: string | undefined;
@@ -6635,6 +6656,11 @@ declare const SysAccount: Omit<{
6635
6656
  role?: string | undefined;
6636
6657
  } | undefined;
6637
6658
  }[] | undefined;
6659
+ protection?: {
6660
+ lock: "full" | "none" | "no-overlay" | "no-delete";
6661
+ reason: string;
6662
+ docsUrl?: string | undefined;
6663
+ } | undefined;
6638
6664
  }, "fields"> & Pick<{
6639
6665
  readonly name: "sys_account";
6640
6666
  readonly label: "Account";
@@ -6642,6 +6668,11 @@ declare const SysAccount: Omit<{
6642
6668
  readonly icon: "link";
6643
6669
  readonly isSystem: true;
6644
6670
  readonly managedBy: "better-auth";
6671
+ readonly protection: {
6672
+ readonly lock: "full";
6673
+ readonly reason: "Identity table managed by better-auth — see ADR-0010.";
6674
+ readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
6675
+ };
6645
6676
  readonly description: "OAuth and authentication provider accounts";
6646
6677
  readonly titleFormat: "{provider_id} - {account_id}";
6647
6678
  readonly compactLayout: ["provider_id", "user_id", "account_id"];
@@ -9279,6 +9310,7 @@ declare const SysVerification: Omit<{
9279
9310
  _provenance?: "package" | "env-forced" | "org" | undefined;
9280
9311
  _packageId?: string | undefined;
9281
9312
  _packageVersion?: string | undefined;
9313
+ _lockDocsUrl?: string | undefined;
9282
9314
  label?: string | undefined;
9283
9315
  pluralLabel?: string | undefined;
9284
9316
  description?: string | undefined;
@@ -9771,6 +9803,11 @@ declare const SysVerification: Omit<{
9771
9803
  role?: string | undefined;
9772
9804
  } | undefined;
9773
9805
  }[] | undefined;
9806
+ protection?: {
9807
+ lock: "full" | "none" | "no-overlay" | "no-delete";
9808
+ reason: string;
9809
+ docsUrl?: string | undefined;
9810
+ } | undefined;
9774
9811
  }, "fields"> & Pick<{
9775
9812
  readonly name: "sys_verification";
9776
9813
  readonly label: "Verification";
@@ -9778,6 +9815,11 @@ declare const SysVerification: Omit<{
9778
9815
  readonly icon: "shield-check";
9779
9816
  readonly isSystem: true;
9780
9817
  readonly managedBy: "better-auth";
9818
+ readonly protection: {
9819
+ readonly lock: "full";
9820
+ readonly reason: "Identity table managed by better-auth — see ADR-0010.";
9821
+ readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
9822
+ };
9781
9823
  readonly description: "Email and phone verification tokens";
9782
9824
  readonly titleFormat: "Verification for {identifier}";
9783
9825
  readonly compactLayout: ["identifier", "expires_at", "created_at"];
@@ -11064,6 +11106,7 @@ declare const SysOrganization: Omit<{
11064
11106
  _provenance?: "package" | "env-forced" | "org" | undefined;
11065
11107
  _packageId?: string | undefined;
11066
11108
  _packageVersion?: string | undefined;
11109
+ _lockDocsUrl?: string | undefined;
11067
11110
  label?: string | undefined;
11068
11111
  pluralLabel?: string | undefined;
11069
11112
  description?: string | undefined;
@@ -11556,6 +11599,11 @@ declare const SysOrganization: Omit<{
11556
11599
  role?: string | undefined;
11557
11600
  } | undefined;
11558
11601
  }[] | undefined;
11602
+ protection?: {
11603
+ lock: "full" | "none" | "no-overlay" | "no-delete";
11604
+ reason: string;
11605
+ docsUrl?: string | undefined;
11606
+ } | undefined;
11559
11607
  }, "fields"> & Pick<{
11560
11608
  readonly name: "sys_organization";
11561
11609
  readonly label: "Organization";
@@ -11563,6 +11611,11 @@ declare const SysOrganization: Omit<{
11563
11611
  readonly icon: "building-2";
11564
11612
  readonly isSystem: true;
11565
11613
  readonly managedBy: "better-auth";
11614
+ readonly protection: {
11615
+ readonly lock: "full";
11616
+ readonly reason: "Identity table managed by better-auth — see ADR-0010.";
11617
+ readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
11618
+ };
11566
11619
  readonly description: "Organizations for multi-tenant grouping";
11567
11620
  readonly displayNameField: "name";
11568
11621
  readonly titleFormat: "{name}";
@@ -13143,6 +13196,7 @@ declare const SysMember: Omit<{
13143
13196
  _provenance?: "package" | "env-forced" | "org" | undefined;
13144
13197
  _packageId?: string | undefined;
13145
13198
  _packageVersion?: string | undefined;
13199
+ _lockDocsUrl?: string | undefined;
13146
13200
  label?: string | undefined;
13147
13201
  pluralLabel?: string | undefined;
13148
13202
  description?: string | undefined;
@@ -13635,6 +13689,11 @@ declare const SysMember: Omit<{
13635
13689
  role?: string | undefined;
13636
13690
  } | undefined;
13637
13691
  }[] | undefined;
13692
+ protection?: {
13693
+ lock: "full" | "none" | "no-overlay" | "no-delete";
13694
+ reason: string;
13695
+ docsUrl?: string | undefined;
13696
+ } | undefined;
13638
13697
  }, "fields"> & Pick<{
13639
13698
  readonly name: "sys_member";
13640
13699
  readonly label: "Member";
@@ -13642,6 +13701,11 @@ declare const SysMember: Omit<{
13642
13701
  readonly icon: "user-check";
13643
13702
  readonly isSystem: true;
13644
13703
  readonly managedBy: "better-auth";
13704
+ readonly protection: {
13705
+ readonly lock: "full";
13706
+ readonly reason: "Identity table managed by better-auth — see ADR-0010.";
13707
+ readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
13708
+ };
13645
13709
  readonly description: "Organization membership records";
13646
13710
  readonly titleFormat: "{user_id} in {organization_id}";
13647
13711
  readonly compactLayout: ["user_id", "organization_id", "role"];
@@ -14845,6 +14909,7 @@ declare const SysInvitation: Omit<{
14845
14909
  _provenance?: "package" | "env-forced" | "org" | undefined;
14846
14910
  _packageId?: string | undefined;
14847
14911
  _packageVersion?: string | undefined;
14912
+ _lockDocsUrl?: string | undefined;
14848
14913
  label?: string | undefined;
14849
14914
  pluralLabel?: string | undefined;
14850
14915
  description?: string | undefined;
@@ -15337,6 +15402,11 @@ declare const SysInvitation: Omit<{
15337
15402
  role?: string | undefined;
15338
15403
  } | undefined;
15339
15404
  }[] | undefined;
15405
+ protection?: {
15406
+ lock: "full" | "none" | "no-overlay" | "no-delete";
15407
+ reason: string;
15408
+ docsUrl?: string | undefined;
15409
+ } | undefined;
15340
15410
  }, "fields"> & Pick<{
15341
15411
  readonly name: "sys_invitation";
15342
15412
  readonly label: "Invitation";
@@ -15344,6 +15414,11 @@ declare const SysInvitation: Omit<{
15344
15414
  readonly icon: "mail";
15345
15415
  readonly isSystem: true;
15346
15416
  readonly managedBy: "better-auth";
15417
+ readonly protection: {
15418
+ readonly lock: "full";
15419
+ readonly reason: "Identity table managed by better-auth — see ADR-0010.";
15420
+ readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
15421
+ };
15347
15422
  readonly description: "Organization invitations for user onboarding";
15348
15423
  readonly titleFormat: "Invitation to {organization_id}";
15349
15424
  readonly compactLayout: ["email", "organization_id", "status"];
@@ -17315,6 +17390,7 @@ declare const SysTeam: Omit<{
17315
17390
  _provenance?: "package" | "env-forced" | "org" | undefined;
17316
17391
  _packageId?: string | undefined;
17317
17392
  _packageVersion?: string | undefined;
17393
+ _lockDocsUrl?: string | undefined;
17318
17394
  label?: string | undefined;
17319
17395
  pluralLabel?: string | undefined;
17320
17396
  description?: string | undefined;
@@ -17807,6 +17883,11 @@ declare const SysTeam: Omit<{
17807
17883
  role?: string | undefined;
17808
17884
  } | undefined;
17809
17885
  }[] | undefined;
17886
+ protection?: {
17887
+ lock: "full" | "none" | "no-overlay" | "no-delete";
17888
+ reason: string;
17889
+ docsUrl?: string | undefined;
17890
+ } | undefined;
17810
17891
  }, "fields"> & Pick<{
17811
17892
  readonly name: "sys_team";
17812
17893
  readonly label: "Team";
@@ -17814,6 +17895,11 @@ declare const SysTeam: Omit<{
17814
17895
  readonly icon: "users";
17815
17896
  readonly isSystem: true;
17816
17897
  readonly managedBy: "better-auth";
17898
+ readonly protection: {
17899
+ readonly lock: "full";
17900
+ readonly reason: "Identity table managed by better-auth — see ADR-0010.";
17901
+ readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
17902
+ };
17817
17903
  readonly description: "Teams within organizations for fine-grained grouping";
17818
17904
  readonly displayNameField: "name";
17819
17905
  readonly titleFormat: "{name}";
@@ -19018,6 +19104,7 @@ declare const SysTeamMember: Omit<{
19018
19104
  _provenance?: "package" | "env-forced" | "org" | undefined;
19019
19105
  _packageId?: string | undefined;
19020
19106
  _packageVersion?: string | undefined;
19107
+ _lockDocsUrl?: string | undefined;
19021
19108
  label?: string | undefined;
19022
19109
  pluralLabel?: string | undefined;
19023
19110
  description?: string | undefined;
@@ -19510,6 +19597,11 @@ declare const SysTeamMember: Omit<{
19510
19597
  role?: string | undefined;
19511
19598
  } | undefined;
19512
19599
  }[] | undefined;
19600
+ protection?: {
19601
+ lock: "full" | "none" | "no-overlay" | "no-delete";
19602
+ reason: string;
19603
+ docsUrl?: string | undefined;
19604
+ } | undefined;
19513
19605
  }, "fields"> & Pick<{
19514
19606
  readonly name: "sys_team_member";
19515
19607
  readonly label: "Team Member";
@@ -19517,6 +19609,11 @@ declare const SysTeamMember: Omit<{
19517
19609
  readonly icon: "user-plus";
19518
19610
  readonly isSystem: true;
19519
19611
  readonly managedBy: "better-auth";
19612
+ readonly protection: {
19613
+ readonly lock: "full";
19614
+ readonly reason: "Identity table managed by better-auth — see ADR-0010.";
19615
+ readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
19616
+ };
19520
19617
  readonly description: "Team membership records linking users to teams";
19521
19618
  readonly titleFormat: "{user_id} in {team_id}";
19522
19619
  readonly compactLayout: ["user_id", "team_id", "created_at"];
@@ -20502,6 +20599,7 @@ declare const SysDepartment: Omit<{
20502
20599
  _provenance?: "package" | "env-forced" | "org" | undefined;
20503
20600
  _packageId?: string | undefined;
20504
20601
  _packageVersion?: string | undefined;
20602
+ _lockDocsUrl?: string | undefined;
20505
20603
  label?: string | undefined;
20506
20604
  pluralLabel?: string | undefined;
20507
20605
  description?: string | undefined;
@@ -20994,6 +21092,11 @@ declare const SysDepartment: Omit<{
20994
21092
  role?: string | undefined;
20995
21093
  } | undefined;
20996
21094
  }[] | undefined;
21095
+ protection?: {
21096
+ lock: "full" | "none" | "no-overlay" | "no-delete";
21097
+ reason: string;
21098
+ docsUrl?: string | undefined;
21099
+ } | undefined;
20997
21100
  }, "fields"> & Pick<{
20998
21101
  readonly name: "sys_department";
20999
21102
  readonly label: "Department";
@@ -23607,6 +23710,7 @@ declare const SysDepartmentMember: Omit<{
23607
23710
  _provenance?: "package" | "env-forced" | "org" | undefined;
23608
23711
  _packageId?: string | undefined;
23609
23712
  _packageVersion?: string | undefined;
23713
+ _lockDocsUrl?: string | undefined;
23610
23714
  label?: string | undefined;
23611
23715
  pluralLabel?: string | undefined;
23612
23716
  description?: string | undefined;
@@ -24099,6 +24203,11 @@ declare const SysDepartmentMember: Omit<{
24099
24203
  role?: string | undefined;
24100
24204
  } | undefined;
24101
24205
  }[] | undefined;
24206
+ protection?: {
24207
+ lock: "full" | "none" | "no-overlay" | "no-delete";
24208
+ reason: string;
24209
+ docsUrl?: string | undefined;
24210
+ } | undefined;
24102
24211
  }, "fields"> & Pick<{
24103
24212
  readonly name: "sys_department_member";
24104
24213
  readonly label: "Department Member";
@@ -25918,6 +26027,7 @@ declare const SysApiKey: Omit<{
25918
26027
  _provenance?: "package" | "env-forced" | "org" | undefined;
25919
26028
  _packageId?: string | undefined;
25920
26029
  _packageVersion?: string | undefined;
26030
+ _lockDocsUrl?: string | undefined;
25921
26031
  label?: string | undefined;
25922
26032
  pluralLabel?: string | undefined;
25923
26033
  description?: string | undefined;
@@ -26410,6 +26520,11 @@ declare const SysApiKey: Omit<{
26410
26520
  role?: string | undefined;
26411
26521
  } | undefined;
26412
26522
  }[] | undefined;
26523
+ protection?: {
26524
+ lock: "full" | "none" | "no-overlay" | "no-delete";
26525
+ reason: string;
26526
+ docsUrl?: string | undefined;
26527
+ } | undefined;
26413
26528
  }, "fields"> & Pick<{
26414
26529
  readonly name: "sys_api_key";
26415
26530
  readonly label: "API Key";
@@ -26417,6 +26532,11 @@ declare const SysApiKey: Omit<{
26417
26532
  readonly icon: "key-round";
26418
26533
  readonly isSystem: true;
26419
26534
  readonly managedBy: "better-auth";
26535
+ readonly protection: {
26536
+ readonly lock: "full";
26537
+ readonly reason: "Identity table managed by better-auth — see ADR-0010.";
26538
+ readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
26539
+ };
26420
26540
  readonly description: "API keys for programmatic access";
26421
26541
  readonly displayNameField: "name";
26422
26542
  readonly titleFormat: "{name}";
@@ -28697,6 +28817,7 @@ declare const SysTwoFactor: Omit<{
28697
28817
  _provenance?: "package" | "env-forced" | "org" | undefined;
28698
28818
  _packageId?: string | undefined;
28699
28819
  _packageVersion?: string | undefined;
28820
+ _lockDocsUrl?: string | undefined;
28700
28821
  label?: string | undefined;
28701
28822
  pluralLabel?: string | undefined;
28702
28823
  description?: string | undefined;
@@ -29189,6 +29310,11 @@ declare const SysTwoFactor: Omit<{
29189
29310
  role?: string | undefined;
29190
29311
  } | undefined;
29191
29312
  }[] | undefined;
29313
+ protection?: {
29314
+ lock: "full" | "none" | "no-overlay" | "no-delete";
29315
+ reason: string;
29316
+ docsUrl?: string | undefined;
29317
+ } | undefined;
29192
29318
  }, "fields"> & Pick<{
29193
29319
  readonly name: "sys_two_factor";
29194
29320
  readonly label: "Two Factor";
@@ -29196,6 +29322,11 @@ declare const SysTwoFactor: Omit<{
29196
29322
  readonly icon: "smartphone";
29197
29323
  readonly isSystem: true;
29198
29324
  readonly managedBy: "better-auth";
29325
+ readonly protection: {
29326
+ readonly lock: "full";
29327
+ readonly reason: "Identity table managed by better-auth — see ADR-0010.";
29328
+ readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
29329
+ };
29199
29330
  readonly description: "Two-factor authentication credentials";
29200
29331
  readonly titleFormat: "Two-factor for {user_id}";
29201
29332
  readonly compactLayout: ["user_id", "created_at"];
@@ -30774,6 +30905,7 @@ declare const SysDeviceCode: Omit<{
30774
30905
  _provenance?: "package" | "env-forced" | "org" | undefined;
30775
30906
  _packageId?: string | undefined;
30776
30907
  _packageVersion?: string | undefined;
30908
+ _lockDocsUrl?: string | undefined;
30777
30909
  label?: string | undefined;
30778
30910
  pluralLabel?: string | undefined;
30779
30911
  description?: string | undefined;
@@ -31266,6 +31398,11 @@ declare const SysDeviceCode: Omit<{
31266
31398
  role?: string | undefined;
31267
31399
  } | undefined;
31268
31400
  }[] | undefined;
31401
+ protection?: {
31402
+ lock: "full" | "none" | "no-overlay" | "no-delete";
31403
+ reason: string;
31404
+ docsUrl?: string | undefined;
31405
+ } | undefined;
31269
31406
  }, "fields"> & Pick<{
31270
31407
  readonly name: "sys_device_code";
31271
31408
  readonly label: "Device Code";
@@ -31273,6 +31410,11 @@ declare const SysDeviceCode: Omit<{
31273
31410
  readonly icon: "key-round";
31274
31411
  readonly isSystem: true;
31275
31412
  readonly managedBy: "better-auth";
31413
+ readonly protection: {
31414
+ readonly lock: "full";
31415
+ readonly reason: "Identity table managed by better-auth — see ADR-0010.";
31416
+ readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
31417
+ };
31276
31418
  readonly description: "OAuth 2.0 Device Authorization Grant (RFC 8628) pending requests";
31277
31419
  readonly titleFormat: "{user_code}";
31278
31420
  readonly compactLayout: ["user_code", "status", "client_id", "expires_at"];
@@ -33619,6 +33761,7 @@ declare const SysUserPreference: Omit<{
33619
33761
  _provenance?: "package" | "env-forced" | "org" | undefined;
33620
33762
  _packageId?: string | undefined;
33621
33763
  _packageVersion?: string | undefined;
33764
+ _lockDocsUrl?: string | undefined;
33622
33765
  label?: string | undefined;
33623
33766
  pluralLabel?: string | undefined;
33624
33767
  description?: string | undefined;
@@ -34111,6 +34254,11 @@ declare const SysUserPreference: Omit<{
34111
34254
  role?: string | undefined;
34112
34255
  } | undefined;
34113
34256
  }[] | undefined;
34257
+ protection?: {
34258
+ lock: "full" | "none" | "no-overlay" | "no-delete";
34259
+ reason: string;
34260
+ docsUrl?: string | undefined;
34261
+ } | undefined;
34114
34262
  }, "fields"> & Pick<{
34115
34263
  readonly name: "sys_user_preference";
34116
34264
  readonly label: "User Preference";
@@ -35476,6 +35624,7 @@ declare const SysOauthApplication: Omit<{
35476
35624
  _provenance?: "package" | "env-forced" | "org" | undefined;
35477
35625
  _packageId?: string | undefined;
35478
35626
  _packageVersion?: string | undefined;
35627
+ _lockDocsUrl?: string | undefined;
35479
35628
  label?: string | undefined;
35480
35629
  pluralLabel?: string | undefined;
35481
35630
  description?: string | undefined;
@@ -35968,6 +36117,11 @@ declare const SysOauthApplication: Omit<{
35968
36117
  role?: string | undefined;
35969
36118
  } | undefined;
35970
36119
  }[] | undefined;
36120
+ protection?: {
36121
+ lock: "full" | "none" | "no-overlay" | "no-delete";
36122
+ reason: string;
36123
+ docsUrl?: string | undefined;
36124
+ } | undefined;
35971
36125
  }, "fields"> & Pick<{
35972
36126
  readonly name: "sys_oauth_application";
35973
36127
  readonly label: "OAuth Application";
@@ -35975,6 +36129,11 @@ declare const SysOauthApplication: Omit<{
35975
36129
  readonly icon: "key-round";
35976
36130
  readonly isSystem: true;
35977
36131
  readonly managedBy: "better-auth";
36132
+ readonly protection: {
36133
+ readonly lock: "full";
36134
+ readonly reason: "Identity table managed by better-auth — see ADR-0010.";
36135
+ readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
36136
+ };
35978
36137
  readonly description: "Registered OAuth/OIDC client applications";
35979
36138
  readonly displayNameField: "name";
35980
36139
  readonly titleFormat: "{name}";
@@ -41700,6 +41859,7 @@ declare const SysOauthAccessToken: Omit<{
41700
41859
  _provenance?: "package" | "env-forced" | "org" | undefined;
41701
41860
  _packageId?: string | undefined;
41702
41861
  _packageVersion?: string | undefined;
41862
+ _lockDocsUrl?: string | undefined;
41703
41863
  label?: string | undefined;
41704
41864
  pluralLabel?: string | undefined;
41705
41865
  description?: string | undefined;
@@ -42192,6 +42352,11 @@ declare const SysOauthAccessToken: Omit<{
42192
42352
  role?: string | undefined;
42193
42353
  } | undefined;
42194
42354
  }[] | undefined;
42355
+ protection?: {
42356
+ lock: "full" | "none" | "no-overlay" | "no-delete";
42357
+ reason: string;
42358
+ docsUrl?: string | undefined;
42359
+ } | undefined;
42195
42360
  }, "fields"> & Pick<{
42196
42361
  readonly name: "sys_oauth_access_token";
42197
42362
  readonly label: "OAuth Access Token";
@@ -42199,6 +42364,11 @@ declare const SysOauthAccessToken: Omit<{
42199
42364
  readonly icon: "ticket";
42200
42365
  readonly isSystem: true;
42201
42366
  readonly managedBy: "better-auth";
42367
+ readonly protection: {
42368
+ readonly lock: "full";
42369
+ readonly reason: "Identity table managed by better-auth — see ADR-0010.";
42370
+ readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
42371
+ };
42202
42372
  readonly description: "Opaque OAuth access tokens issued to client applications";
42203
42373
  readonly compactLayout: ["client_id", "user_id", "expires_at"];
42204
42374
  readonly fields: {
@@ -44190,6 +44360,7 @@ declare const SysOauthRefreshToken: Omit<{
44190
44360
  _provenance?: "package" | "env-forced" | "org" | undefined;
44191
44361
  _packageId?: string | undefined;
44192
44362
  _packageVersion?: string | undefined;
44363
+ _lockDocsUrl?: string | undefined;
44193
44364
  label?: string | undefined;
44194
44365
  pluralLabel?: string | undefined;
44195
44366
  description?: string | undefined;
@@ -44682,6 +44853,11 @@ declare const SysOauthRefreshToken: Omit<{
44682
44853
  role?: string | undefined;
44683
44854
  } | undefined;
44684
44855
  }[] | undefined;
44856
+ protection?: {
44857
+ lock: "full" | "none" | "no-overlay" | "no-delete";
44858
+ reason: string;
44859
+ docsUrl?: string | undefined;
44860
+ } | undefined;
44685
44861
  }, "fields"> & Pick<{
44686
44862
  readonly name: "sys_oauth_refresh_token";
44687
44863
  readonly label: "OAuth Refresh Token";
@@ -44689,6 +44865,11 @@ declare const SysOauthRefreshToken: Omit<{
44689
44865
  readonly icon: "refresh-cw";
44690
44866
  readonly isSystem: true;
44691
44867
  readonly managedBy: "better-auth";
44868
+ readonly protection: {
44869
+ readonly lock: "full";
44870
+ readonly reason: "Identity table managed by better-auth — see ADR-0010.";
44871
+ readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
44872
+ };
44692
44873
  readonly description: "Opaque OAuth refresh tokens (linked to a session)";
44693
44874
  readonly compactLayout: ["client_id", "user_id", "expires_at"];
44694
44875
  readonly fields: {
@@ -46855,6 +47036,7 @@ declare const SysOauthConsent: Omit<{
46855
47036
  _provenance?: "package" | "env-forced" | "org" | undefined;
46856
47037
  _packageId?: string | undefined;
46857
47038
  _packageVersion?: string | undefined;
47039
+ _lockDocsUrl?: string | undefined;
46858
47040
  label?: string | undefined;
46859
47041
  pluralLabel?: string | undefined;
46860
47042
  description?: string | undefined;
@@ -47347,6 +47529,11 @@ declare const SysOauthConsent: Omit<{
47347
47529
  role?: string | undefined;
47348
47530
  } | undefined;
47349
47531
  }[] | undefined;
47532
+ protection?: {
47533
+ lock: "full" | "none" | "no-overlay" | "no-delete";
47534
+ reason: string;
47535
+ docsUrl?: string | undefined;
47536
+ } | undefined;
47350
47537
  }, "fields"> & Pick<{
47351
47538
  readonly name: "sys_oauth_consent";
47352
47539
  readonly label: "OAuth Consent";
@@ -47354,6 +47541,11 @@ declare const SysOauthConsent: Omit<{
47354
47541
  readonly icon: "shield-check";
47355
47542
  readonly isSystem: true;
47356
47543
  readonly managedBy: "better-auth";
47544
+ readonly protection: {
47545
+ readonly lock: "full";
47546
+ readonly reason: "Identity table managed by better-auth — see ADR-0010.";
47547
+ readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
47548
+ };
47357
47549
  readonly description: "User consent records for OAuth client applications";
47358
47550
  readonly compactLayout: ["client_id", "user_id", "scopes"];
47359
47551
  readonly fields: {
@@ -48813,6 +49005,7 @@ declare const SysJwks: Omit<{
48813
49005
  _provenance?: "package" | "env-forced" | "org" | undefined;
48814
49006
  _packageId?: string | undefined;
48815
49007
  _packageVersion?: string | undefined;
49008
+ _lockDocsUrl?: string | undefined;
48816
49009
  label?: string | undefined;
48817
49010
  pluralLabel?: string | undefined;
48818
49011
  description?: string | undefined;
@@ -49305,6 +49498,11 @@ declare const SysJwks: Omit<{
49305
49498
  role?: string | undefined;
49306
49499
  } | undefined;
49307
49500
  }[] | undefined;
49501
+ protection?: {
49502
+ lock: "full" | "none" | "no-overlay" | "no-delete";
49503
+ reason: string;
49504
+ docsUrl?: string | undefined;
49505
+ } | undefined;
49308
49506
  }, "fields"> & Pick<{
49309
49507
  readonly name: "sys_jwks";
49310
49508
  readonly label: "JWKS Key";
@@ -49312,6 +49510,11 @@ declare const SysJwks: Omit<{
49312
49510
  readonly icon: "key";
49313
49511
  readonly isSystem: true;
49314
49512
  readonly managedBy: "better-auth";
49513
+ readonly protection: {
49514
+ readonly lock: "full";
49515
+ readonly reason: "Identity table managed by better-auth — see ADR-0010.";
49516
+ readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
49517
+ };
49315
49518
  readonly description: "Asymmetric key pairs used to sign and verify issued JWTs";
49316
49519
  readonly compactLayout: ["id", "created_at", "expires_at"];
49317
49520
  readonly fields: {