@tomei/sso 0.46.5 → 0.47.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/dist/src/components/login-user/user.js +1 -1
- package/dist/src/components/user-group/user-group.d.ts +2 -0
- package/dist/src/components/user-group/user-group.js +2 -0
- package/dist/src/components/user-group/user-group.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/components/login-user/user.ts +1 -1
- package/src/components/user-group/user-group.ts +6 -0
package/package.json
CHANGED
@@ -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
|
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
|
|