@getpara/user-management-client 2.0.0-alpha.27 → 2.0.0-alpha.28
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/dist/cjs/client.js +1 -1
- package/dist/esm/client.js +1 -1
- package/package.json +2 -2
package/dist/cjs/client.js
CHANGED
|
@@ -595,7 +595,7 @@ class Client {
|
|
|
595
595
|
// POST /auth/farcaster/init
|
|
596
596
|
initializeFarcasterLogin() {
|
|
597
597
|
return __async(this, arguments, function* ({ appScheme } = {}) {
|
|
598
|
-
const res = yield this.baseRequest.post(`/auth/farcaster/init`, {
|
|
598
|
+
const res = yield this.baseRequest.post(`/auth/farcaster/init`, { appScheme });
|
|
599
599
|
return res.data;
|
|
600
600
|
});
|
|
601
601
|
}
|
package/dist/esm/client.js
CHANGED
|
@@ -518,7 +518,7 @@ class Client {
|
|
|
518
518
|
// POST /auth/farcaster/init
|
|
519
519
|
initializeFarcasterLogin() {
|
|
520
520
|
return __async(this, arguments, function* ({ appScheme } = {}) {
|
|
521
|
-
const res = yield this.baseRequest.post(`/auth/farcaster/init`, {
|
|
521
|
+
const res = yield this.baseRequest.post(`/auth/farcaster/init`, { appScheme });
|
|
522
522
|
return res.data;
|
|
523
523
|
});
|
|
524
524
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getpara/user-management-client",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.28",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"axios": "^1.8.4",
|
|
6
6
|
"libphonenumber-js": "^1.11.7"
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"dist",
|
|
20
20
|
"package.json"
|
|
21
21
|
],
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "1da9f8663f58015a70686f45741fb76ddc671ac7",
|
|
23
23
|
"main": "dist/cjs/index.js",
|
|
24
24
|
"module": "dist/esm/index.js",
|
|
25
25
|
"scripts": {
|