cidaas-javascript-sdk 3.0.2 → 3.0.3

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/CHANGELOG.md CHANGED
@@ -1,6 +1,7 @@
1
- ## [3.0.2](https://gitlab.widas.de/cidaas-public-devkits/cidaas-public-sdks/cidaas-javascript-sdk/compare/v3.0.1...v3.0.2) (2023-05-03)
1
+ ## [3.0.3](https://gitlab.widas.de/cidaas-public-devkits/cidaas-public-sdks/cidaas-javascript-sdk/compare/v3.0.2...v3.0.3) (2023-06-13)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * update declaration file path in dependency file ([bed0b5b](https://gitlab.widas.de/cidaas-public-devkits/cidaas-public-sdks/cidaas-javascript-sdk/commit/bed0b5b7ef52c791c465e1e981363dca2df6de4a))
6
+ * fix view type for browser login ([a6be745](https://gitlab.widas.de/cidaas-public-devkits/cidaas-public-sdks/cidaas-javascript-sdk/commit/a6be74549865663fa1022858276dd6b1506bc690))
7
+ * update the type file ([df48bcf](https://gitlab.widas.de/cidaas-public-devkits/cidaas-public-sdks/cidaas-javascript-sdk/commit/df48bcf6a8436b9450a06f419c0a12e4345719ef))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cidaas-javascript-sdk",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "author": "cidaas by Widas ID GmbH",
5
5
  "description": "Cidaas native javascript sdk",
6
6
  "license": "MIT",
@@ -94,7 +94,7 @@ export class WebAuth {
94
94
  }
95
95
  switch (window.webAuthSettings.mode) {
96
96
  case 'redirect':
97
- window.authentication.redirectSignIn('register');
97
+ window.authentication.redirectSignIn('login');
98
98
  break;
99
99
  case 'window':
100
100
  window.authentication.popupSignIn();
@@ -100,7 +100,7 @@ var WebAuth = /** @class */ (function () {
100
100
  }
101
101
  switch (window.webAuthSettings.mode) {
102
102
  case 'redirect':
103
- window.authentication.redirectSignIn('register');
103
+ window.authentication.redirectSignIn('login');
104
104
  break;
105
105
  case 'window':
106
106
  window.authentication.popupSignIn();