monkey-front-core 0.0.352 → 0.0.353

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.
@@ -4123,6 +4123,9 @@ let MonkeyEcxAuthGuardByRole = class MonkeyEcxAuthGuardByRole {
4123
4123
  }
4124
4124
  static forRoles(roles, companyType, byExclusion) {
4125
4125
  class RoleCheck {
4126
+ constructor() {
4127
+ // not to do
4128
+ }
4126
4129
  async canActivate() {
4127
4130
  return true;
4128
4131
  }
@@ -4134,7 +4137,7 @@ let MonkeyEcxAuthGuardByRole = class MonkeyEcxAuthGuardByRole {
4134
4137
  args: [{
4135
4138
  providedIn: 'root'
4136
4139
  }]
4137
- }] });
4140
+ }], ctorParameters: function () { return []; } });
4138
4141
  return RoleCheck;
4139
4142
  }
4140
4143
  };