@tomei/sso 0.46.5 → 0.47.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tomei/sso",
3
- "version": "0.46.5",
3
+ "version": "0.47.0",
4
4
  "description": "Tomei SSO Package",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -1728,7 +1728,7 @@ export class User extends UserBase {
1728
1728
  }
1729
1729
 
1730
1730
  // 4. Generate the 2FA secret code by calling speakeasy.generateSecret with parameter
1731
- const secretCode = speakeasy.generateSecret({ name: 'Tomei 2FA' });
1731
+ const secretCode = speakeasy.generateSecret({ name: 'Tomei SSO' });
1732
1732
 
1733
1733
  // parse MFA Config
1734
1734
  let userMFAConfig = null;
@@ -309,6 +309,8 @@ export class UserGroup extends ObjectBase {
309
309
  GroupCode: string;
310
310
  GroupName: string;
311
311
  InheritGroupSystemAccessYN: string;
312
+ CreatedAt: Date;
313
+ UpdatedAt: Date;
312
314
  Systems: {
313
315
  SystemCode: string;
314
316
  SystemName: string;
@@ -384,6 +386,8 @@ export class UserGroup extends ObjectBase {
384
386
  GroupCode: string;
385
387
  GroupName: string;
386
388
  InheritGroupSystemAccessYN: string;
389
+ CreatedAt: Date;
390
+ UpdatedAt: Date;
387
391
  Systems: {
388
392
  SystemCode: string;
389
393
  SystemName: string;
@@ -423,6 +427,8 @@ export class UserGroup extends ObjectBase {
423
427
  GroupCode: userGroup.GroupCode,
424
428
  GroupName: userGroup.Group.Name,
425
429
  InheritGroupSystemAccessYN: userGroup.InheritGroupSystemAccessYN,
430
+ CreatedAt: userGroup.CreatedAt,
431
+ UpdatedAt: userGroup.UpdatedAt,
426
432
  Systems: [],
427
433
  };
428
434