squarecommonblhelper 9.2.1 → 9.2.2
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/README.md +5 -0
- package/dist/authentication.js +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -15,6 +15,11 @@ helper for common bl for my projects.
|
|
|
15
15
|
|
|
16
16
|
## changelog
|
|
17
17
|
|
|
18
|
+
### v9.2.2
|
|
19
|
+
|
|
20
|
+
- AuthenticationCommonBL:
|
|
21
|
+
- bugfix in updateUserRecoveryMethodsV0 query parameters (string[] instead of comma separated list).
|
|
22
|
+
|
|
18
23
|
### v9.2.1
|
|
19
24
|
|
|
20
25
|
- AuthenticationCommonBL:
|
package/dist/authentication.js
CHANGED
|
@@ -262,8 +262,8 @@ class AuthenticationCommonBL {
|
|
|
262
262
|
undefined,
|
|
263
263
|
// query params
|
|
264
264
|
{
|
|
265
|
-
recovery_methods_to_add: recoveryMethodsToAdd
|
|
266
|
-
recovery_methods_to_remove: recoveryMethodsToRemove
|
|
265
|
+
recovery_methods_to_add: recoveryMethodsToAdd,
|
|
266
|
+
recovery_methods_to_remove: recoveryMethodsToRemove,
|
|
267
267
|
});
|
|
268
268
|
return updateUserRecoveryMethodsV0ResponseZ.parse(data);
|
|
269
269
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "squarecommonblhelper",
|
|
3
|
-
"version": "9.2.
|
|
3
|
+
"version": "9.2.2",
|
|
4
4
|
"description": "helper for common bl for my projects.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"node": ">=18.0.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"squarecommons": "^2.
|
|
37
|
+
"squarecommons": "^2.4.0",
|
|
38
38
|
"zod": "^3.24.1"
|
|
39
39
|
}
|
|
40
40
|
}
|