@tomei/sso 0.46.4 → 0.46.6

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.46.4",
3
+ "version": "0.46.6",
4
4
  "description": "Tomei SSO Package",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -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
 
@@ -139,7 +139,7 @@ export class UserSystemAccess extends ObjectBase {
139
139
  include: [
140
140
  {
141
141
  model: SystemModel,
142
- attributes: ['SystemName', 'SystemCode'],
142
+ attributes: ['Name', 'SystemCode'],
143
143
  },
144
144
  {
145
145
  model: UserModel,