@tomei/sso 0.60.4-dev.13 → 0.60.4-dev.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tomei/sso",
3
- "version": "0.60.4-dev.13",
3
+ "version": "0.60.4-dev.14",
4
4
  "description": "Tomei SSO Package",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -21,7 +21,6 @@ export interface IUserAttr extends IUserInfo {
21
21
  MFAEnabled: number;
22
22
  MFAConfig: string;
23
23
  MFABypassYN: string;
24
- BulkApprovalCode: string;
25
24
  RecoveryEmail: string;
26
25
  FailedLoginAttemptCount: number;
27
26
  LastFailedLoginAt: Date;
@@ -62,7 +62,6 @@ export class LoginUser extends User implements ILoginUser {
62
62
  MFAEnabled: user.MFAEnabled,
63
63
  MFAConfig: user.MFAConfig,
64
64
  MFABypassYN: user.MFABypassYN,
65
- BulkApprovalCode: user.BulkApprovalCode,
66
65
  RecoveryEmail: user.RecoveryEmail,
67
66
  FailedLoginAttemptCount: user.FailedLoginAttemptCount,
68
67
  LastFailedLoginAt: user.LastFailedLoginAt,
@@ -50,7 +50,6 @@ export class User extends UserBase {
50
50
  private _MFAEnabled: number;
51
51
  private _MFAConfig: string;
52
52
  private _MFABypassYN: string;
53
- private _BulkApprovalCode: string;
54
53
  private _RecoveryEmail: string;
55
54
  private _FailedLoginAttemptCount: number;
56
55
  private _LastFailedLoginAt: Date;
@@ -172,14 +171,6 @@ export class User extends UserBase {
172
171
  this._MFABypassYN = value;
173
172
  }
174
173
 
175
- get BulkApprovalCode(): string {
176
- return this._BulkApprovalCode;
177
- }
178
-
179
- private set BulkApprovalCode(value: string) {
180
- this._BulkApprovalCode = value;
181
- }
182
-
183
174
  get RecoveryEmail(): string {
184
175
  return this._RecoveryEmail;
185
176
  }
@@ -315,7 +306,6 @@ export class User extends UserBase {
315
306
  this.MFAEnabled = userInfo.MFAEnabled;
316
307
  this.MFAConfig = userInfo.MFAConfig;
317
308
  this.MFABypassYN = userInfo.MFABypassYN;
318
- this.BulkApprovalCode = userInfo.BulkApprovalCode;
319
309
  this.RecoveryEmail = userInfo.RecoveryEmail;
320
310
  this.FailedLoginAttemptCount = userInfo.FailedLoginAttemptCount;
321
311
  this.LastFailedLoginAt = userInfo.LastFailedLoginAt;
@@ -373,7 +363,6 @@ export class User extends UserBase {
373
363
  MFAEnabled: user.MFAEnabled,
374
364
  MFAConfig: user.MFAConfig,
375
365
  MFABypassYN: user.MFABypassYN,
376
- BulkApprovalCode: user.BulkApprovalCode,
377
366
  RecoveryEmail: user.RecoveryEmail,
378
367
  FailedLoginAttemptCount: user.FailedLoginAttemptCount,
379
368
  LastFailedLoginAt: user.LastFailedLoginAt,
@@ -439,7 +428,6 @@ export class User extends UserBase {
439
428
  MFAEnabled: user.MFAEnabled,
440
429
  MFAConfig: user.MFAConfig,
441
430
  MFABypassYN: user.MFABypassYN,
442
- BulkApprovalCode: user.BulkApprovalCode,
443
431
  RecoveryEmail: user.RecoveryEmail,
444
432
  FailedLoginAttemptCount: user.FailedLoginAttemptCount,
445
433
  LastFailedLoginAt: user.LastFailedLoginAt,
@@ -535,7 +523,6 @@ export class User extends UserBase {
535
523
  MFAEnabled: user.MFAEnabled,
536
524
  MFAConfig: user.MFAConfig,
537
525
  MFABypassYN: user.MFABypassYN,
538
- BulkApprovalCode: user.BulkApprovalCode,
539
526
  RecoveryEmail: user.RecoveryEmail,
540
527
  FailedLoginAttemptCount: user.FailedLoginAttemptCount,
541
528
  LastFailedLoginAt: user.LastFailedLoginAt,
@@ -1600,7 +1587,6 @@ export class User extends UserBase {
1600
1587
  MFAEnabled: null,
1601
1588
  MFAConfig: null,
1602
1589
  MFABypassYN: YN.No,
1603
- BulkApprovalCode: null,
1604
1590
  RecoveryEmail: null,
1605
1591
  FailedLoginAttemptCount: 0,
1606
1592
  LastFailedLoginAt: null,
@@ -2667,7 +2653,6 @@ export class User extends UserBase {
2667
2653
  MFAEnabled: user.MFAEnabled,
2668
2654
  MFAConfig: user.MFAConfig,
2669
2655
  MFABypassYN: user.MFABypassYN,
2670
- BulkApprovalCode: user.BulkApprovalCode,
2671
2656
  RecoveryEmail: user.RecoveryEmail,
2672
2657
  FailedLoginAttemptCount: user.FailedLoginAttemptCount,
2673
2658
  LastFailedLoginAt: user.LastFailedLoginAt,
@@ -2795,7 +2780,6 @@ export class User extends UserBase {
2795
2780
  MFAEnabled: user.MFAEnabled,
2796
2781
  MFAConfig: user.MFAConfig,
2797
2782
  MFABypassYN: user.MFABypassYN,
2798
- BulkApprovalCode: user.BulkApprovalCode,
2799
2783
  RecoveryEmail: user.RecoveryEmail,
2800
2784
  FailedLoginAttemptCount: user.FailedLoginAttemptCount,
2801
2785
  LastFailedLoginAt: user.LastFailedLoginAt,
@@ -2860,7 +2844,6 @@ export class User extends UserBase {
2860
2844
  MFAEnabled: this.MFAEnabled,
2861
2845
  MFAConfig: this.MFAConfig,
2862
2846
  MFABypassYN: this.MFABypassYN,
2863
- BulkApprovalCode: this.BulkApprovalCode,
2864
2847
  RecoveryEmail: this.RecoveryEmail,
2865
2848
  FailedLoginAttemptCount: this.FailedLoginAttemptCount,
2866
2849
  LastFailedLoginAt: this.LastFailedLoginAt,
@@ -2893,7 +2876,6 @@ export class User extends UserBase {
2893
2876
  MFAEnabled: this.MFAEnabled,
2894
2877
  MFAConfig: this.MFAConfig,
2895
2878
  MFABypassYN: this.MFABypassYN,
2896
- BulkApprovalCode: this.BulkApprovalCode,
2897
2879
  RecoveryEmail: this.RecoveryEmail,
2898
2880
  FailedLoginAttemptCount: this.FailedLoginAttemptCount,
2899
2881
  LastFailedLoginAt: this.LastFailedLoginAt,
@@ -2985,7 +2967,6 @@ export class User extends UserBase {
2985
2967
  MFAEnabled: this.MFAEnabled,
2986
2968
  MFAConfig: this.MFAConfig,
2987
2969
  MFABypassYN: this.MFABypassYN,
2988
- BulkApprovalCode: this.BulkApprovalCode,
2989
2970
  RecoveryEmail: this.RecoveryEmail,
2990
2971
  FailedLoginAttemptCount: this.FailedLoginAttemptCount,
2991
2972
  LastFailedLoginAt: this.LastFailedLoginAt,
@@ -3018,7 +2999,6 @@ export class User extends UserBase {
3018
2999
  MFAEnabled: this.MFAEnabled,
3019
3000
  MFAConfig: this.MFAConfig,
3020
3001
  MFABypassYN: this.MFABypassYN,
3021
- BulkApprovalCode: this.BulkApprovalCode,
3022
3002
  RecoveryEmail: this.RecoveryEmail,
3023
3003
  FailedLoginAttemptCount: this.FailedLoginAttemptCount,
3024
3004
  LastFailedLoginAt: this.LastFailedLoginAt,
@@ -3252,7 +3232,6 @@ export class User extends UserBase {
3252
3232
  MFAEnabled: this.MFAEnabled,
3253
3233
  MFAConfig: this.MFAConfig,
3254
3234
  MFABypassYN: this.MFABypassYN,
3255
- BulkApprovalCode: this.BulkApprovalCode,
3256
3235
  RecoveryEmail: this.RecoveryEmail,
3257
3236
  FailedLoginAttemptCount: this.FailedLoginAttemptCount,
3258
3237
  LastFailedLoginAt: this.LastFailedLoginAt,
@@ -3303,7 +3282,6 @@ export class User extends UserBase {
3303
3282
  MFAEnabled: this.MFAEnabled,
3304
3283
  MFAConfig: this.MFAConfig,
3305
3284
  MFABypassYN: this.MFABypassYN,
3306
- BulkApprovalCode: this.BulkApprovalCode,
3307
3285
  RecoveryEmail: this.RecoveryEmail,
3308
3286
  FailedLoginAttemptCount: this.FailedLoginAttemptCount,
3309
3287
  LastFailedLoginAt: this.LastFailedLoginAt,
@@ -3376,7 +3354,6 @@ export class User extends UserBase {
3376
3354
  MFAEnabled: this.MFAEnabled,
3377
3355
  MFAConfig: this.MFAConfig,
3378
3356
  MFABypassYN: this.MFABypassYN,
3379
- BulkApprovalCode: this.BulkApprovalCode,
3380
3357
  RecoveryEmail: this.RecoveryEmail,
3381
3358
  FailedLoginAttemptCount: this.FailedLoginAttemptCount,
3382
3359
  LastFailedLoginAt: this.LastFailedLoginAt,
@@ -3427,7 +3404,6 @@ export class User extends UserBase {
3427
3404
  MFAEnabled: this.MFAEnabled,
3428
3405
  MFAConfig: this.MFAConfig,
3429
3406
  MFABypassYN: this.MFABypassYN,
3430
- BulkApprovalCode: this.BulkApprovalCode,
3431
3407
  RecoveryEmail: this.RecoveryEmail,
3432
3408
  FailedLoginAttemptCount: this.FailedLoginAttemptCount,
3433
3409
  LastFailedLoginAt: this.LastFailedLoginAt,
@@ -3500,7 +3476,6 @@ export class User extends UserBase {
3500
3476
  MFAEnabled: this.MFAEnabled,
3501
3477
  MFAConfig: this.MFAConfig,
3502
3478
  MFABypassYN: this.MFABypassYN,
3503
- BulkApprovalCode: this.BulkApprovalCode,
3504
3479
  RecoveryEmail: this.RecoveryEmail,
3505
3480
  FailedLoginAttemptCount: this.FailedLoginAttemptCount,
3506
3481
  LastFailedLoginAt: this.LastFailedLoginAt,
@@ -3551,7 +3526,6 @@ export class User extends UserBase {
3551
3526
  MFAEnabled: this.MFAEnabled,
3552
3527
  MFAConfig: this.MFAConfig,
3553
3528
  MFABypassYN: this.MFABypassYN,
3554
- BulkApprovalCode: this.BulkApprovalCode,
3555
3529
  RecoveryEmail: this.RecoveryEmail,
3556
3530
  FailedLoginAttemptCount: this.FailedLoginAttemptCount,
3557
3531
  LastFailedLoginAt: this.LastFailedLoginAt,
@@ -95,12 +95,6 @@ export default class User extends Model {
95
95
  })
96
96
  MFABypassYN: YN;
97
97
 
98
- @Column({
99
- allowNull: true,
100
- type: DataType.STRING(100),
101
- })
102
- BulkApprovalCode: string;
103
-
104
98
  @Column({
105
99
  type: DataType.DATE,
106
100
  })