rez_core 2.0.43 → 2.0.44

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": "rez_core",
3
- "version": "2.0.43",
3
+ "version": "2.0.44",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -25,6 +25,8 @@ export class JwtStrategy extends PassportStrategy(Strategy) {
25
25
  email_id,
26
26
  organization_id,
27
27
  enterprise_id,
28
+ level_id,
29
+ level_type
28
30
  } = payload;
29
31
 
30
32
  // Check if session exists and is valid
@@ -47,6 +49,8 @@ export class JwtStrategy extends PassportStrategy(Strategy) {
47
49
  email_id: email_id,
48
50
  organization_id: organization_id,
49
51
  enterprise_id: enterprise_id,
52
+ level_id: level_id,
53
+ level_type: level_type,
50
54
  };
51
55
 
52
56
  return { userData };