cidaas-javascript-sdk 3.0.1 → 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 +3 -2
- package/package.json +3 -3
- package/src/main/web-auth/WebAuth.ts +1 -1
- package/types/{web-auth → main/web-auth}/WebAuth.js +1 -1
- /package/types/{authentication → main/authentication}/index.d.ts +0 -0
- /package/types/{authentication → main/authentication}/index.js +0 -0
- /package/types/{index.d.ts → main/index.d.ts} +0 -0
- /package/types/{index.js → main/index.js} +0 -0
- /package/types/{web-auth → main/web-auth}/ConsentService.d.ts +0 -0
- /package/types/{web-auth → main/web-auth}/ConsentService.js +0 -0
- /package/types/{web-auth → main/web-auth}/Entities.d.ts +0 -0
- /package/types/{web-auth → main/web-auth}/Entities.js +0 -0
- /package/types/{web-auth → main/web-auth}/Helper.d.ts +0 -0
- /package/types/{web-auth → main/web-auth}/Helper.js +0 -0
- /package/types/{web-auth → main/web-auth}/LoginService.d.ts +0 -0
- /package/types/{web-auth → main/web-auth}/LoginService.js +0 -0
- /package/types/{web-auth → main/web-auth}/TokenService.d.ts +0 -0
- /package/types/{web-auth → main/web-auth}/TokenService.js +0 -0
- /package/types/{web-auth → main/web-auth}/UserService.d.ts +0 -0
- /package/types/{web-auth → main/web-auth}/UserService.js +0 -0
- /package/types/{web-auth → main/web-auth}/VerificationService.d.ts +0 -0
- /package/types/{web-auth → main/web-auth}/VerificationService.js +0 -0
- /package/types/{web-auth → main/web-auth}/WebAuth.d.ts +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
## [3.0.
|
|
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
|
-
*
|
|
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,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cidaas-javascript-sdk",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.3",
|
|
4
4
|
"author": "cidaas by Widas ID GmbH",
|
|
5
5
|
"description": "Cidaas native javascript sdk",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"main": "types/index.js",
|
|
8
|
-
"types": "types/index.d.ts",
|
|
7
|
+
"main": "types/main/index.js",
|
|
8
|
+
"types": "types/main/index.d.ts",
|
|
9
9
|
"engine": {
|
|
10
10
|
"node": ">=8.9.10"
|
|
11
11
|
},
|
|
@@ -94,7 +94,7 @@ export class WebAuth {
|
|
|
94
94
|
}
|
|
95
95
|
switch (window.webAuthSettings.mode) {
|
|
96
96
|
case 'redirect':
|
|
97
|
-
window.authentication.redirectSignIn('
|
|
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('
|
|
103
|
+
window.authentication.redirectSignIn('login');
|
|
104
104
|
break;
|
|
105
105
|
case 'window':
|
|
106
106
|
window.authentication.popupSignIn();
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|