@axinom/mosaic-user-auth 0.3.0-rc.4 → 0.3.0
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 +16 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.3.0](https://dev.azure.com/axinom/CMS/_git/Navy/branchCompare?baseVersion=GT@axinom/mosaic-user-auth@0.2.1&targetVersion=GT@axinom/mosaic-user-auth@0.3.0) (2022-03-16)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* :sparkles: add isDirectSignInConfigured method into UserServiceClient ([73e0cdb](https://dev.azure.com/axinom/CMS/_git/Navy/commit/73e0cdb9d90f3f0321f5c47004a066de16fd1bc0))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* billing and lib-user-auth URL renames ([2fe6110](https://dev.azure.com/axinom/CMS/_git/Navy/commit/2fe6110ef5395989a8553b1f5a76bfa7d636241a)), closes [#34765](https://dev.azure.com/axinom/CMS/_workitems/edit/34765)
|
|
17
|
+
* Fix type issue in initiateUserSignUp ([de578ce](https://dev.azure.com/axinom/CMS/_git/Navy/commit/de578cea3b5ad7f91a40ebf88bfffa78536bc9c1))
|
|
18
|
+
* Remove operation name from the gql request ([a9b75da](https://dev.azure.com/axinom/CMS/_git/Navy/commit/a9b75da7f58b1af788040362c9fe43f4522da20b))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
### [0.2.1](https://dev.azure.com/axinom/CMS/_git/Navy/branchCompare?baseVersion=GT@axinom/mosaic-user-auth@0.2.0&targetVersion=GT@axinom/mosaic-user-auth@0.2.1) (2022-03-01)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @axinom/mosaic-user-auth
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axinom/mosaic-user-auth",
|
|
3
|
-
"version": "0.3.0
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Integration utilities from user-service for application frontends",
|
|
5
5
|
"author": "Axinom",
|
|
6
6
|
"license": "PROPRIETARY",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"test:ci": "jest --reporters=default --reporters=jest-junit --coverage --coverageReporters=cobertura --coverageReporters=html"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@axinom/mosaic-user-auth-utils": "^0.1.3
|
|
31
|
+
"@axinom/mosaic-user-auth-utils": "^0.1.3",
|
|
32
32
|
"graphql-tag": "^2.11.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"publishConfig": {
|
|
48
48
|
"access": "public"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "0f2b502b5ab032e6430cf4dac79a54e346447a2f"
|
|
51
51
|
}
|