@objectstack/plugin-auth 2.0.6 → 3.0.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.
- package/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +20 -0
- package/dist/index.d.mts +68 -0
- package/dist/index.d.ts +68 -0
- package/package.json +3 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @objectstack/plugin-auth@
|
|
2
|
+
> @objectstack/plugin-auth@3.0.0 build /home/runner/work/spec/spec/packages/plugins/plugin-auth
|
|
3
3
|
> tsup --config ../../../tsup.config.ts
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
[34mCJS[39m Build start
|
|
13
13
|
[32mESM[39m [1mdist/index.mjs [22m[32m17.96 KB[39m
|
|
14
14
|
[32mESM[39m [1mdist/index.mjs.map [22m[32m39.47 KB[39m
|
|
15
|
-
[32mESM[39m ⚡️ Build success in
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 83ms
|
|
16
16
|
[32mCJS[39m [1mdist/index.js [22m[32m19.55 KB[39m
|
|
17
17
|
[32mCJS[39m [1mdist/index.js.map [22m[32m40.03 KB[39m
|
|
18
|
-
[32mCJS[39m ⚡️ Build success in
|
|
18
|
+
[32mCJS[39m ⚡️ Build success in 80ms
|
|
19
19
|
[34mDTS[39m Build start
|
|
20
|
-
[32mDTS[39m ⚡️ Build success in
|
|
21
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[
|
|
22
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[
|
|
20
|
+
[32mDTS[39m ⚡️ Build success in 14561ms
|
|
21
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m343.35 KB[39m
|
|
22
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m343.35 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- Release v3.0.0 — unified version bump for all ObjectStack packages.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @objectstack/spec@3.0.0
|
|
13
|
+
- @objectstack/core@3.0.0
|
|
14
|
+
|
|
15
|
+
## 2.0.7
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- @objectstack/spec@2.0.7
|
|
21
|
+
- @objectstack/core@2.0.7
|
|
22
|
+
|
|
3
23
|
## 2.0.6
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -2261,6 +2261,8 @@ declare const AuthUser: {
|
|
|
2261
2261
|
threshold: number;
|
|
2262
2262
|
} | undefined;
|
|
2263
2263
|
} | undefined;
|
|
2264
|
+
readonly group?: string | undefined;
|
|
2265
|
+
readonly conditionalRequired?: string | undefined;
|
|
2264
2266
|
readonly hidden?: boolean | undefined;
|
|
2265
2267
|
readonly sortable?: boolean | undefined;
|
|
2266
2268
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -2416,6 +2418,8 @@ declare const AuthUser: {
|
|
|
2416
2418
|
threshold: number;
|
|
2417
2419
|
} | undefined;
|
|
2418
2420
|
} | undefined;
|
|
2421
|
+
readonly group?: string | undefined;
|
|
2422
|
+
readonly conditionalRequired?: string | undefined;
|
|
2419
2423
|
readonly hidden?: boolean | undefined;
|
|
2420
2424
|
readonly sortable?: boolean | undefined;
|
|
2421
2425
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -2571,6 +2575,8 @@ declare const AuthUser: {
|
|
|
2571
2575
|
threshold: number;
|
|
2572
2576
|
} | undefined;
|
|
2573
2577
|
} | undefined;
|
|
2578
|
+
readonly group?: string | undefined;
|
|
2579
|
+
readonly conditionalRequired?: string | undefined;
|
|
2574
2580
|
readonly hidden?: boolean | undefined;
|
|
2575
2581
|
readonly sortable?: boolean | undefined;
|
|
2576
2582
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -2726,6 +2732,8 @@ declare const AuthUser: {
|
|
|
2726
2732
|
threshold: number;
|
|
2727
2733
|
} | undefined;
|
|
2728
2734
|
} | undefined;
|
|
2735
|
+
readonly group?: string | undefined;
|
|
2736
|
+
readonly conditionalRequired?: string | undefined;
|
|
2729
2737
|
readonly hidden?: boolean | undefined;
|
|
2730
2738
|
readonly sortable?: boolean | undefined;
|
|
2731
2739
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -2881,6 +2889,8 @@ declare const AuthUser: {
|
|
|
2881
2889
|
threshold: number;
|
|
2882
2890
|
} | undefined;
|
|
2883
2891
|
} | undefined;
|
|
2892
|
+
readonly group?: string | undefined;
|
|
2893
|
+
readonly conditionalRequired?: string | undefined;
|
|
2884
2894
|
readonly hidden?: boolean | undefined;
|
|
2885
2895
|
readonly sortable?: boolean | undefined;
|
|
2886
2896
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -3036,6 +3046,8 @@ declare const AuthUser: {
|
|
|
3036
3046
|
threshold: number;
|
|
3037
3047
|
} | undefined;
|
|
3038
3048
|
} | undefined;
|
|
3049
|
+
readonly group?: string | undefined;
|
|
3050
|
+
readonly conditionalRequired?: string | undefined;
|
|
3039
3051
|
readonly hidden?: boolean | undefined;
|
|
3040
3052
|
readonly sortable?: boolean | undefined;
|
|
3041
3053
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -3191,6 +3203,8 @@ declare const AuthUser: {
|
|
|
3191
3203
|
threshold: number;
|
|
3192
3204
|
} | undefined;
|
|
3193
3205
|
} | undefined;
|
|
3206
|
+
readonly group?: string | undefined;
|
|
3207
|
+
readonly conditionalRequired?: string | undefined;
|
|
3194
3208
|
readonly hidden?: boolean | undefined;
|
|
3195
3209
|
readonly sortable?: boolean | undefined;
|
|
3196
3210
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -3394,6 +3408,8 @@ declare const AuthSession: {
|
|
|
3394
3408
|
threshold: number;
|
|
3395
3409
|
} | undefined;
|
|
3396
3410
|
} | undefined;
|
|
3411
|
+
readonly group?: string | undefined;
|
|
3412
|
+
readonly conditionalRequired?: string | undefined;
|
|
3397
3413
|
readonly hidden?: boolean | undefined;
|
|
3398
3414
|
readonly sortable?: boolean | undefined;
|
|
3399
3415
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -3549,6 +3565,8 @@ declare const AuthSession: {
|
|
|
3549
3565
|
threshold: number;
|
|
3550
3566
|
} | undefined;
|
|
3551
3567
|
} | undefined;
|
|
3568
|
+
readonly group?: string | undefined;
|
|
3569
|
+
readonly conditionalRequired?: string | undefined;
|
|
3552
3570
|
readonly hidden?: boolean | undefined;
|
|
3553
3571
|
readonly sortable?: boolean | undefined;
|
|
3554
3572
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -3704,6 +3722,8 @@ declare const AuthSession: {
|
|
|
3704
3722
|
threshold: number;
|
|
3705
3723
|
} | undefined;
|
|
3706
3724
|
} | undefined;
|
|
3725
|
+
readonly group?: string | undefined;
|
|
3726
|
+
readonly conditionalRequired?: string | undefined;
|
|
3707
3727
|
readonly hidden?: boolean | undefined;
|
|
3708
3728
|
readonly sortable?: boolean | undefined;
|
|
3709
3729
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -3859,6 +3879,8 @@ declare const AuthSession: {
|
|
|
3859
3879
|
threshold: number;
|
|
3860
3880
|
} | undefined;
|
|
3861
3881
|
} | undefined;
|
|
3882
|
+
readonly group?: string | undefined;
|
|
3883
|
+
readonly conditionalRequired?: string | undefined;
|
|
3862
3884
|
readonly hidden?: boolean | undefined;
|
|
3863
3885
|
readonly sortable?: boolean | undefined;
|
|
3864
3886
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -4014,6 +4036,8 @@ declare const AuthSession: {
|
|
|
4014
4036
|
threshold: number;
|
|
4015
4037
|
} | undefined;
|
|
4016
4038
|
} | undefined;
|
|
4039
|
+
readonly group?: string | undefined;
|
|
4040
|
+
readonly conditionalRequired?: string | undefined;
|
|
4017
4041
|
readonly hidden?: boolean | undefined;
|
|
4018
4042
|
readonly sortable?: boolean | undefined;
|
|
4019
4043
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -4169,6 +4193,8 @@ declare const AuthSession: {
|
|
|
4169
4193
|
threshold: number;
|
|
4170
4194
|
} | undefined;
|
|
4171
4195
|
} | undefined;
|
|
4196
|
+
readonly group?: string | undefined;
|
|
4197
|
+
readonly conditionalRequired?: string | undefined;
|
|
4172
4198
|
readonly hidden?: boolean | undefined;
|
|
4173
4199
|
readonly sortable?: boolean | undefined;
|
|
4174
4200
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -4324,6 +4350,8 @@ declare const AuthSession: {
|
|
|
4324
4350
|
threshold: number;
|
|
4325
4351
|
} | undefined;
|
|
4326
4352
|
} | undefined;
|
|
4353
|
+
readonly group?: string | undefined;
|
|
4354
|
+
readonly conditionalRequired?: string | undefined;
|
|
4327
4355
|
readonly hidden?: boolean | undefined;
|
|
4328
4356
|
readonly sortable?: boolean | undefined;
|
|
4329
4357
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -4479,6 +4507,8 @@ declare const AuthSession: {
|
|
|
4479
4507
|
threshold: number;
|
|
4480
4508
|
} | undefined;
|
|
4481
4509
|
} | undefined;
|
|
4510
|
+
readonly group?: string | undefined;
|
|
4511
|
+
readonly conditionalRequired?: string | undefined;
|
|
4482
4512
|
readonly hidden?: boolean | undefined;
|
|
4483
4513
|
readonly sortable?: boolean | undefined;
|
|
4484
4514
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -4679,6 +4709,8 @@ declare const AuthAccount: {
|
|
|
4679
4709
|
threshold: number;
|
|
4680
4710
|
} | undefined;
|
|
4681
4711
|
} | undefined;
|
|
4712
|
+
readonly group?: string | undefined;
|
|
4713
|
+
readonly conditionalRequired?: string | undefined;
|
|
4682
4714
|
readonly hidden?: boolean | undefined;
|
|
4683
4715
|
readonly sortable?: boolean | undefined;
|
|
4684
4716
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -4834,6 +4866,8 @@ declare const AuthAccount: {
|
|
|
4834
4866
|
threshold: number;
|
|
4835
4867
|
} | undefined;
|
|
4836
4868
|
} | undefined;
|
|
4869
|
+
readonly group?: string | undefined;
|
|
4870
|
+
readonly conditionalRequired?: string | undefined;
|
|
4837
4871
|
readonly hidden?: boolean | undefined;
|
|
4838
4872
|
readonly sortable?: boolean | undefined;
|
|
4839
4873
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -4989,6 +5023,8 @@ declare const AuthAccount: {
|
|
|
4989
5023
|
threshold: number;
|
|
4990
5024
|
} | undefined;
|
|
4991
5025
|
} | undefined;
|
|
5026
|
+
readonly group?: string | undefined;
|
|
5027
|
+
readonly conditionalRequired?: string | undefined;
|
|
4992
5028
|
readonly hidden?: boolean | undefined;
|
|
4993
5029
|
readonly sortable?: boolean | undefined;
|
|
4994
5030
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -5144,6 +5180,8 @@ declare const AuthAccount: {
|
|
|
5144
5180
|
threshold: number;
|
|
5145
5181
|
} | undefined;
|
|
5146
5182
|
} | undefined;
|
|
5183
|
+
readonly group?: string | undefined;
|
|
5184
|
+
readonly conditionalRequired?: string | undefined;
|
|
5147
5185
|
readonly hidden?: boolean | undefined;
|
|
5148
5186
|
readonly sortable?: boolean | undefined;
|
|
5149
5187
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -5299,6 +5337,8 @@ declare const AuthAccount: {
|
|
|
5299
5337
|
threshold: number;
|
|
5300
5338
|
} | undefined;
|
|
5301
5339
|
} | undefined;
|
|
5340
|
+
readonly group?: string | undefined;
|
|
5341
|
+
readonly conditionalRequired?: string | undefined;
|
|
5302
5342
|
readonly hidden?: boolean | undefined;
|
|
5303
5343
|
readonly sortable?: boolean | undefined;
|
|
5304
5344
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -5454,6 +5494,8 @@ declare const AuthAccount: {
|
|
|
5454
5494
|
threshold: number;
|
|
5455
5495
|
} | undefined;
|
|
5456
5496
|
} | undefined;
|
|
5497
|
+
readonly group?: string | undefined;
|
|
5498
|
+
readonly conditionalRequired?: string | undefined;
|
|
5457
5499
|
readonly hidden?: boolean | undefined;
|
|
5458
5500
|
readonly sortable?: boolean | undefined;
|
|
5459
5501
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -5609,6 +5651,8 @@ declare const AuthAccount: {
|
|
|
5609
5651
|
threshold: number;
|
|
5610
5652
|
} | undefined;
|
|
5611
5653
|
} | undefined;
|
|
5654
|
+
readonly group?: string | undefined;
|
|
5655
|
+
readonly conditionalRequired?: string | undefined;
|
|
5612
5656
|
readonly hidden?: boolean | undefined;
|
|
5613
5657
|
readonly sortable?: boolean | undefined;
|
|
5614
5658
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -5764,6 +5808,8 @@ declare const AuthAccount: {
|
|
|
5764
5808
|
threshold: number;
|
|
5765
5809
|
} | undefined;
|
|
5766
5810
|
} | undefined;
|
|
5811
|
+
readonly group?: string | undefined;
|
|
5812
|
+
readonly conditionalRequired?: string | undefined;
|
|
5767
5813
|
readonly hidden?: boolean | undefined;
|
|
5768
5814
|
readonly sortable?: boolean | undefined;
|
|
5769
5815
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -5919,6 +5965,8 @@ declare const AuthAccount: {
|
|
|
5919
5965
|
threshold: number;
|
|
5920
5966
|
} | undefined;
|
|
5921
5967
|
} | undefined;
|
|
5968
|
+
readonly group?: string | undefined;
|
|
5969
|
+
readonly conditionalRequired?: string | undefined;
|
|
5922
5970
|
readonly hidden?: boolean | undefined;
|
|
5923
5971
|
readonly sortable?: boolean | undefined;
|
|
5924
5972
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -6074,6 +6122,8 @@ declare const AuthAccount: {
|
|
|
6074
6122
|
threshold: number;
|
|
6075
6123
|
} | undefined;
|
|
6076
6124
|
} | undefined;
|
|
6125
|
+
readonly group?: string | undefined;
|
|
6126
|
+
readonly conditionalRequired?: string | undefined;
|
|
6077
6127
|
readonly hidden?: boolean | undefined;
|
|
6078
6128
|
readonly sortable?: boolean | undefined;
|
|
6079
6129
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -6229,6 +6279,8 @@ declare const AuthAccount: {
|
|
|
6229
6279
|
threshold: number;
|
|
6230
6280
|
} | undefined;
|
|
6231
6281
|
} | undefined;
|
|
6282
|
+
readonly group?: string | undefined;
|
|
6283
|
+
readonly conditionalRequired?: string | undefined;
|
|
6232
6284
|
readonly hidden?: boolean | undefined;
|
|
6233
6285
|
readonly sortable?: boolean | undefined;
|
|
6234
6286
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -6384,6 +6436,8 @@ declare const AuthAccount: {
|
|
|
6384
6436
|
threshold: number;
|
|
6385
6437
|
} | undefined;
|
|
6386
6438
|
} | undefined;
|
|
6439
|
+
readonly group?: string | undefined;
|
|
6440
|
+
readonly conditionalRequired?: string | undefined;
|
|
6387
6441
|
readonly hidden?: boolean | undefined;
|
|
6388
6442
|
readonly sortable?: boolean | undefined;
|
|
6389
6443
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -6539,6 +6593,8 @@ declare const AuthAccount: {
|
|
|
6539
6593
|
threshold: number;
|
|
6540
6594
|
} | undefined;
|
|
6541
6595
|
} | undefined;
|
|
6596
|
+
readonly group?: string | undefined;
|
|
6597
|
+
readonly conditionalRequired?: string | undefined;
|
|
6542
6598
|
readonly hidden?: boolean | undefined;
|
|
6543
6599
|
readonly sortable?: boolean | undefined;
|
|
6544
6600
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -6732,6 +6788,8 @@ declare const AuthVerification: {
|
|
|
6732
6788
|
threshold: number;
|
|
6733
6789
|
} | undefined;
|
|
6734
6790
|
} | undefined;
|
|
6791
|
+
readonly group?: string | undefined;
|
|
6792
|
+
readonly conditionalRequired?: string | undefined;
|
|
6735
6793
|
readonly hidden?: boolean | undefined;
|
|
6736
6794
|
readonly sortable?: boolean | undefined;
|
|
6737
6795
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -6887,6 +6945,8 @@ declare const AuthVerification: {
|
|
|
6887
6945
|
threshold: number;
|
|
6888
6946
|
} | undefined;
|
|
6889
6947
|
} | undefined;
|
|
6948
|
+
readonly group?: string | undefined;
|
|
6949
|
+
readonly conditionalRequired?: string | undefined;
|
|
6890
6950
|
readonly hidden?: boolean | undefined;
|
|
6891
6951
|
readonly sortable?: boolean | undefined;
|
|
6892
6952
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -7042,6 +7102,8 @@ declare const AuthVerification: {
|
|
|
7042
7102
|
threshold: number;
|
|
7043
7103
|
} | undefined;
|
|
7044
7104
|
} | undefined;
|
|
7105
|
+
readonly group?: string | undefined;
|
|
7106
|
+
readonly conditionalRequired?: string | undefined;
|
|
7045
7107
|
readonly hidden?: boolean | undefined;
|
|
7046
7108
|
readonly sortable?: boolean | undefined;
|
|
7047
7109
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -7197,6 +7259,8 @@ declare const AuthVerification: {
|
|
|
7197
7259
|
threshold: number;
|
|
7198
7260
|
} | undefined;
|
|
7199
7261
|
} | undefined;
|
|
7262
|
+
readonly group?: string | undefined;
|
|
7263
|
+
readonly conditionalRequired?: string | undefined;
|
|
7200
7264
|
readonly hidden?: boolean | undefined;
|
|
7201
7265
|
readonly sortable?: boolean | undefined;
|
|
7202
7266
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -7352,6 +7416,8 @@ declare const AuthVerification: {
|
|
|
7352
7416
|
threshold: number;
|
|
7353
7417
|
} | undefined;
|
|
7354
7418
|
} | undefined;
|
|
7419
|
+
readonly group?: string | undefined;
|
|
7420
|
+
readonly conditionalRequired?: string | undefined;
|
|
7355
7421
|
readonly hidden?: boolean | undefined;
|
|
7356
7422
|
readonly sortable?: boolean | undefined;
|
|
7357
7423
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -7507,6 +7573,8 @@ declare const AuthVerification: {
|
|
|
7507
7573
|
threshold: number;
|
|
7508
7574
|
} | undefined;
|
|
7509
7575
|
} | undefined;
|
|
7576
|
+
readonly group?: string | undefined;
|
|
7577
|
+
readonly conditionalRequired?: string | undefined;
|
|
7510
7578
|
readonly hidden?: boolean | undefined;
|
|
7511
7579
|
readonly sortable?: boolean | undefined;
|
|
7512
7580
|
readonly inlineHelpText?: string | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -2261,6 +2261,8 @@ declare const AuthUser: {
|
|
|
2261
2261
|
threshold: number;
|
|
2262
2262
|
} | undefined;
|
|
2263
2263
|
} | undefined;
|
|
2264
|
+
readonly group?: string | undefined;
|
|
2265
|
+
readonly conditionalRequired?: string | undefined;
|
|
2264
2266
|
readonly hidden?: boolean | undefined;
|
|
2265
2267
|
readonly sortable?: boolean | undefined;
|
|
2266
2268
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -2416,6 +2418,8 @@ declare const AuthUser: {
|
|
|
2416
2418
|
threshold: number;
|
|
2417
2419
|
} | undefined;
|
|
2418
2420
|
} | undefined;
|
|
2421
|
+
readonly group?: string | undefined;
|
|
2422
|
+
readonly conditionalRequired?: string | undefined;
|
|
2419
2423
|
readonly hidden?: boolean | undefined;
|
|
2420
2424
|
readonly sortable?: boolean | undefined;
|
|
2421
2425
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -2571,6 +2575,8 @@ declare const AuthUser: {
|
|
|
2571
2575
|
threshold: number;
|
|
2572
2576
|
} | undefined;
|
|
2573
2577
|
} | undefined;
|
|
2578
|
+
readonly group?: string | undefined;
|
|
2579
|
+
readonly conditionalRequired?: string | undefined;
|
|
2574
2580
|
readonly hidden?: boolean | undefined;
|
|
2575
2581
|
readonly sortable?: boolean | undefined;
|
|
2576
2582
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -2726,6 +2732,8 @@ declare const AuthUser: {
|
|
|
2726
2732
|
threshold: number;
|
|
2727
2733
|
} | undefined;
|
|
2728
2734
|
} | undefined;
|
|
2735
|
+
readonly group?: string | undefined;
|
|
2736
|
+
readonly conditionalRequired?: string | undefined;
|
|
2729
2737
|
readonly hidden?: boolean | undefined;
|
|
2730
2738
|
readonly sortable?: boolean | undefined;
|
|
2731
2739
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -2881,6 +2889,8 @@ declare const AuthUser: {
|
|
|
2881
2889
|
threshold: number;
|
|
2882
2890
|
} | undefined;
|
|
2883
2891
|
} | undefined;
|
|
2892
|
+
readonly group?: string | undefined;
|
|
2893
|
+
readonly conditionalRequired?: string | undefined;
|
|
2884
2894
|
readonly hidden?: boolean | undefined;
|
|
2885
2895
|
readonly sortable?: boolean | undefined;
|
|
2886
2896
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -3036,6 +3046,8 @@ declare const AuthUser: {
|
|
|
3036
3046
|
threshold: number;
|
|
3037
3047
|
} | undefined;
|
|
3038
3048
|
} | undefined;
|
|
3049
|
+
readonly group?: string | undefined;
|
|
3050
|
+
readonly conditionalRequired?: string | undefined;
|
|
3039
3051
|
readonly hidden?: boolean | undefined;
|
|
3040
3052
|
readonly sortable?: boolean | undefined;
|
|
3041
3053
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -3191,6 +3203,8 @@ declare const AuthUser: {
|
|
|
3191
3203
|
threshold: number;
|
|
3192
3204
|
} | undefined;
|
|
3193
3205
|
} | undefined;
|
|
3206
|
+
readonly group?: string | undefined;
|
|
3207
|
+
readonly conditionalRequired?: string | undefined;
|
|
3194
3208
|
readonly hidden?: boolean | undefined;
|
|
3195
3209
|
readonly sortable?: boolean | undefined;
|
|
3196
3210
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -3394,6 +3408,8 @@ declare const AuthSession: {
|
|
|
3394
3408
|
threshold: number;
|
|
3395
3409
|
} | undefined;
|
|
3396
3410
|
} | undefined;
|
|
3411
|
+
readonly group?: string | undefined;
|
|
3412
|
+
readonly conditionalRequired?: string | undefined;
|
|
3397
3413
|
readonly hidden?: boolean | undefined;
|
|
3398
3414
|
readonly sortable?: boolean | undefined;
|
|
3399
3415
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -3549,6 +3565,8 @@ declare const AuthSession: {
|
|
|
3549
3565
|
threshold: number;
|
|
3550
3566
|
} | undefined;
|
|
3551
3567
|
} | undefined;
|
|
3568
|
+
readonly group?: string | undefined;
|
|
3569
|
+
readonly conditionalRequired?: string | undefined;
|
|
3552
3570
|
readonly hidden?: boolean | undefined;
|
|
3553
3571
|
readonly sortable?: boolean | undefined;
|
|
3554
3572
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -3704,6 +3722,8 @@ declare const AuthSession: {
|
|
|
3704
3722
|
threshold: number;
|
|
3705
3723
|
} | undefined;
|
|
3706
3724
|
} | undefined;
|
|
3725
|
+
readonly group?: string | undefined;
|
|
3726
|
+
readonly conditionalRequired?: string | undefined;
|
|
3707
3727
|
readonly hidden?: boolean | undefined;
|
|
3708
3728
|
readonly sortable?: boolean | undefined;
|
|
3709
3729
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -3859,6 +3879,8 @@ declare const AuthSession: {
|
|
|
3859
3879
|
threshold: number;
|
|
3860
3880
|
} | undefined;
|
|
3861
3881
|
} | undefined;
|
|
3882
|
+
readonly group?: string | undefined;
|
|
3883
|
+
readonly conditionalRequired?: string | undefined;
|
|
3862
3884
|
readonly hidden?: boolean | undefined;
|
|
3863
3885
|
readonly sortable?: boolean | undefined;
|
|
3864
3886
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -4014,6 +4036,8 @@ declare const AuthSession: {
|
|
|
4014
4036
|
threshold: number;
|
|
4015
4037
|
} | undefined;
|
|
4016
4038
|
} | undefined;
|
|
4039
|
+
readonly group?: string | undefined;
|
|
4040
|
+
readonly conditionalRequired?: string | undefined;
|
|
4017
4041
|
readonly hidden?: boolean | undefined;
|
|
4018
4042
|
readonly sortable?: boolean | undefined;
|
|
4019
4043
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -4169,6 +4193,8 @@ declare const AuthSession: {
|
|
|
4169
4193
|
threshold: number;
|
|
4170
4194
|
} | undefined;
|
|
4171
4195
|
} | undefined;
|
|
4196
|
+
readonly group?: string | undefined;
|
|
4197
|
+
readonly conditionalRequired?: string | undefined;
|
|
4172
4198
|
readonly hidden?: boolean | undefined;
|
|
4173
4199
|
readonly sortable?: boolean | undefined;
|
|
4174
4200
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -4324,6 +4350,8 @@ declare const AuthSession: {
|
|
|
4324
4350
|
threshold: number;
|
|
4325
4351
|
} | undefined;
|
|
4326
4352
|
} | undefined;
|
|
4353
|
+
readonly group?: string | undefined;
|
|
4354
|
+
readonly conditionalRequired?: string | undefined;
|
|
4327
4355
|
readonly hidden?: boolean | undefined;
|
|
4328
4356
|
readonly sortable?: boolean | undefined;
|
|
4329
4357
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -4479,6 +4507,8 @@ declare const AuthSession: {
|
|
|
4479
4507
|
threshold: number;
|
|
4480
4508
|
} | undefined;
|
|
4481
4509
|
} | undefined;
|
|
4510
|
+
readonly group?: string | undefined;
|
|
4511
|
+
readonly conditionalRequired?: string | undefined;
|
|
4482
4512
|
readonly hidden?: boolean | undefined;
|
|
4483
4513
|
readonly sortable?: boolean | undefined;
|
|
4484
4514
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -4679,6 +4709,8 @@ declare const AuthAccount: {
|
|
|
4679
4709
|
threshold: number;
|
|
4680
4710
|
} | undefined;
|
|
4681
4711
|
} | undefined;
|
|
4712
|
+
readonly group?: string | undefined;
|
|
4713
|
+
readonly conditionalRequired?: string | undefined;
|
|
4682
4714
|
readonly hidden?: boolean | undefined;
|
|
4683
4715
|
readonly sortable?: boolean | undefined;
|
|
4684
4716
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -4834,6 +4866,8 @@ declare const AuthAccount: {
|
|
|
4834
4866
|
threshold: number;
|
|
4835
4867
|
} | undefined;
|
|
4836
4868
|
} | undefined;
|
|
4869
|
+
readonly group?: string | undefined;
|
|
4870
|
+
readonly conditionalRequired?: string | undefined;
|
|
4837
4871
|
readonly hidden?: boolean | undefined;
|
|
4838
4872
|
readonly sortable?: boolean | undefined;
|
|
4839
4873
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -4989,6 +5023,8 @@ declare const AuthAccount: {
|
|
|
4989
5023
|
threshold: number;
|
|
4990
5024
|
} | undefined;
|
|
4991
5025
|
} | undefined;
|
|
5026
|
+
readonly group?: string | undefined;
|
|
5027
|
+
readonly conditionalRequired?: string | undefined;
|
|
4992
5028
|
readonly hidden?: boolean | undefined;
|
|
4993
5029
|
readonly sortable?: boolean | undefined;
|
|
4994
5030
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -5144,6 +5180,8 @@ declare const AuthAccount: {
|
|
|
5144
5180
|
threshold: number;
|
|
5145
5181
|
} | undefined;
|
|
5146
5182
|
} | undefined;
|
|
5183
|
+
readonly group?: string | undefined;
|
|
5184
|
+
readonly conditionalRequired?: string | undefined;
|
|
5147
5185
|
readonly hidden?: boolean | undefined;
|
|
5148
5186
|
readonly sortable?: boolean | undefined;
|
|
5149
5187
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -5299,6 +5337,8 @@ declare const AuthAccount: {
|
|
|
5299
5337
|
threshold: number;
|
|
5300
5338
|
} | undefined;
|
|
5301
5339
|
} | undefined;
|
|
5340
|
+
readonly group?: string | undefined;
|
|
5341
|
+
readonly conditionalRequired?: string | undefined;
|
|
5302
5342
|
readonly hidden?: boolean | undefined;
|
|
5303
5343
|
readonly sortable?: boolean | undefined;
|
|
5304
5344
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -5454,6 +5494,8 @@ declare const AuthAccount: {
|
|
|
5454
5494
|
threshold: number;
|
|
5455
5495
|
} | undefined;
|
|
5456
5496
|
} | undefined;
|
|
5497
|
+
readonly group?: string | undefined;
|
|
5498
|
+
readonly conditionalRequired?: string | undefined;
|
|
5457
5499
|
readonly hidden?: boolean | undefined;
|
|
5458
5500
|
readonly sortable?: boolean | undefined;
|
|
5459
5501
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -5609,6 +5651,8 @@ declare const AuthAccount: {
|
|
|
5609
5651
|
threshold: number;
|
|
5610
5652
|
} | undefined;
|
|
5611
5653
|
} | undefined;
|
|
5654
|
+
readonly group?: string | undefined;
|
|
5655
|
+
readonly conditionalRequired?: string | undefined;
|
|
5612
5656
|
readonly hidden?: boolean | undefined;
|
|
5613
5657
|
readonly sortable?: boolean | undefined;
|
|
5614
5658
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -5764,6 +5808,8 @@ declare const AuthAccount: {
|
|
|
5764
5808
|
threshold: number;
|
|
5765
5809
|
} | undefined;
|
|
5766
5810
|
} | undefined;
|
|
5811
|
+
readonly group?: string | undefined;
|
|
5812
|
+
readonly conditionalRequired?: string | undefined;
|
|
5767
5813
|
readonly hidden?: boolean | undefined;
|
|
5768
5814
|
readonly sortable?: boolean | undefined;
|
|
5769
5815
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -5919,6 +5965,8 @@ declare const AuthAccount: {
|
|
|
5919
5965
|
threshold: number;
|
|
5920
5966
|
} | undefined;
|
|
5921
5967
|
} | undefined;
|
|
5968
|
+
readonly group?: string | undefined;
|
|
5969
|
+
readonly conditionalRequired?: string | undefined;
|
|
5922
5970
|
readonly hidden?: boolean | undefined;
|
|
5923
5971
|
readonly sortable?: boolean | undefined;
|
|
5924
5972
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -6074,6 +6122,8 @@ declare const AuthAccount: {
|
|
|
6074
6122
|
threshold: number;
|
|
6075
6123
|
} | undefined;
|
|
6076
6124
|
} | undefined;
|
|
6125
|
+
readonly group?: string | undefined;
|
|
6126
|
+
readonly conditionalRequired?: string | undefined;
|
|
6077
6127
|
readonly hidden?: boolean | undefined;
|
|
6078
6128
|
readonly sortable?: boolean | undefined;
|
|
6079
6129
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -6229,6 +6279,8 @@ declare const AuthAccount: {
|
|
|
6229
6279
|
threshold: number;
|
|
6230
6280
|
} | undefined;
|
|
6231
6281
|
} | undefined;
|
|
6282
|
+
readonly group?: string | undefined;
|
|
6283
|
+
readonly conditionalRequired?: string | undefined;
|
|
6232
6284
|
readonly hidden?: boolean | undefined;
|
|
6233
6285
|
readonly sortable?: boolean | undefined;
|
|
6234
6286
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -6384,6 +6436,8 @@ declare const AuthAccount: {
|
|
|
6384
6436
|
threshold: number;
|
|
6385
6437
|
} | undefined;
|
|
6386
6438
|
} | undefined;
|
|
6439
|
+
readonly group?: string | undefined;
|
|
6440
|
+
readonly conditionalRequired?: string | undefined;
|
|
6387
6441
|
readonly hidden?: boolean | undefined;
|
|
6388
6442
|
readonly sortable?: boolean | undefined;
|
|
6389
6443
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -6539,6 +6593,8 @@ declare const AuthAccount: {
|
|
|
6539
6593
|
threshold: number;
|
|
6540
6594
|
} | undefined;
|
|
6541
6595
|
} | undefined;
|
|
6596
|
+
readonly group?: string | undefined;
|
|
6597
|
+
readonly conditionalRequired?: string | undefined;
|
|
6542
6598
|
readonly hidden?: boolean | undefined;
|
|
6543
6599
|
readonly sortable?: boolean | undefined;
|
|
6544
6600
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -6732,6 +6788,8 @@ declare const AuthVerification: {
|
|
|
6732
6788
|
threshold: number;
|
|
6733
6789
|
} | undefined;
|
|
6734
6790
|
} | undefined;
|
|
6791
|
+
readonly group?: string | undefined;
|
|
6792
|
+
readonly conditionalRequired?: string | undefined;
|
|
6735
6793
|
readonly hidden?: boolean | undefined;
|
|
6736
6794
|
readonly sortable?: boolean | undefined;
|
|
6737
6795
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -6887,6 +6945,8 @@ declare const AuthVerification: {
|
|
|
6887
6945
|
threshold: number;
|
|
6888
6946
|
} | undefined;
|
|
6889
6947
|
} | undefined;
|
|
6948
|
+
readonly group?: string | undefined;
|
|
6949
|
+
readonly conditionalRequired?: string | undefined;
|
|
6890
6950
|
readonly hidden?: boolean | undefined;
|
|
6891
6951
|
readonly sortable?: boolean | undefined;
|
|
6892
6952
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -7042,6 +7102,8 @@ declare const AuthVerification: {
|
|
|
7042
7102
|
threshold: number;
|
|
7043
7103
|
} | undefined;
|
|
7044
7104
|
} | undefined;
|
|
7105
|
+
readonly group?: string | undefined;
|
|
7106
|
+
readonly conditionalRequired?: string | undefined;
|
|
7045
7107
|
readonly hidden?: boolean | undefined;
|
|
7046
7108
|
readonly sortable?: boolean | undefined;
|
|
7047
7109
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -7197,6 +7259,8 @@ declare const AuthVerification: {
|
|
|
7197
7259
|
threshold: number;
|
|
7198
7260
|
} | undefined;
|
|
7199
7261
|
} | undefined;
|
|
7262
|
+
readonly group?: string | undefined;
|
|
7263
|
+
readonly conditionalRequired?: string | undefined;
|
|
7200
7264
|
readonly hidden?: boolean | undefined;
|
|
7201
7265
|
readonly sortable?: boolean | undefined;
|
|
7202
7266
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -7352,6 +7416,8 @@ declare const AuthVerification: {
|
|
|
7352
7416
|
threshold: number;
|
|
7353
7417
|
} | undefined;
|
|
7354
7418
|
} | undefined;
|
|
7419
|
+
readonly group?: string | undefined;
|
|
7420
|
+
readonly conditionalRequired?: string | undefined;
|
|
7355
7421
|
readonly hidden?: boolean | undefined;
|
|
7356
7422
|
readonly sortable?: boolean | undefined;
|
|
7357
7423
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -7507,6 +7573,8 @@ declare const AuthVerification: {
|
|
|
7507
7573
|
threshold: number;
|
|
7508
7574
|
} | undefined;
|
|
7509
7575
|
} | undefined;
|
|
7576
|
+
readonly group?: string | undefined;
|
|
7577
|
+
readonly conditionalRequired?: string | undefined;
|
|
7510
7578
|
readonly hidden?: boolean | undefined;
|
|
7511
7579
|
readonly sortable?: boolean | undefined;
|
|
7512
7580
|
readonly inlineHelpText?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/plugin-auth",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Authentication & Identity Plugin for ObjectStack",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"better-auth": "^1.4.18",
|
|
10
|
-
"@objectstack/core": "
|
|
11
|
-
"@objectstack/spec": "
|
|
10
|
+
"@objectstack/core": "3.0.0",
|
|
11
|
+
"@objectstack/spec": "3.0.0"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@types/node": "^25.2.2",
|