@geexcode/geex-angular 0.0.27 → 0.0.28

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/index.js CHANGED
@@ -176,7 +176,7 @@ function createAuthModule(injector) {
176
176
  async loadUserData() {
177
177
  const oAuthService = injector.get(import_angular_oauth2_oidc.OAuthService);
178
178
  try {
179
- await oAuthService.loadDiscoveryDocumentAndTryLogin();
179
+ await oAuthService.loadDiscoveryDocument();
180
180
  if (!oAuthService.hasValidAccessToken()) {
181
181
  return void 0;
182
182
  }
package/dist/index.mjs CHANGED
@@ -131,7 +131,7 @@ function createAuthModule(injector) {
131
131
  async loadUserData() {
132
132
  const oAuthService = injector.get(OAuthService);
133
133
  try {
134
- await oAuthService.loadDiscoveryDocumentAndTryLogin();
134
+ await oAuthService.loadDiscoveryDocument();
135
135
  if (!oAuthService.hasValidAccessToken()) {
136
136
  return void 0;
137
137
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geexcode/geex-angular",
3
- "version": "0.0.27",
3
+ "version": "0.0.28",
4
4
  "description": "Angular adapter for Geex core.",
5
5
  "module": "dist/index.js",
6
6
  "main": "dist/index.cjs",