squarecommonblhelper 9.2.2 → 9.2.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/README.md +5 -0
- package/dist/authentication.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/authentication.js
CHANGED
|
@@ -259,12 +259,12 @@ class AuthenticationCommonBL {
|
|
|
259
259
|
// headers
|
|
260
260
|
{ access_token: accessToken },
|
|
261
261
|
// body
|
|
262
|
-
undefined,
|
|
263
|
-
// query params
|
|
264
262
|
{
|
|
265
263
|
recovery_methods_to_add: recoveryMethodsToAdd,
|
|
266
264
|
recovery_methods_to_remove: recoveryMethodsToRemove,
|
|
267
|
-
}
|
|
265
|
+
},
|
|
266
|
+
// query params
|
|
267
|
+
undefined);
|
|
268
268
|
return updateUserRecoveryMethodsV0ResponseZ.parse(data);
|
|
269
269
|
}
|
|
270
270
|
catch (error) {
|