@tomei/sso 0.46.4 → 0.46.6
Sign up to get free protection for your applications and to get access to all the features.
- 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/src/components/user-system-access/user-system-access.js +1 -1
- package/dist/src/components/user-system-access/user-system-access.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/components/user-group/user-group.ts +6 -0
- package/src/components/user-system-access/user-system-access.ts +1 -1
package/package.json
CHANGED
@@ -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
|
|