@cloudbase/auth 3.1.5 → 3.1.6
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/index.js +18 -9
- package/dist/cjs/type.d.ts +3 -0
- package/dist/cjs/type.js +1 -1
- package/dist/esm/index.js +18 -9
- package/dist/esm/type.d.ts +3 -0
- package/dist/esm/type.js +1 -1
- package/dist/miniprogram/index.js +1 -1
- package/package.json +5 -5
- package/src/index.ts +7 -0
- package/src/type.ts +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudbase/auth",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.6",
|
|
4
4
|
"description": "cloudbase javascript sdk auth componets",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
"license": "Apache-2.0",
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@cloudbase/adapter-wx_mp": "^1.3.1",
|
|
35
|
-
"@cloudbase/oauth": "3.1.
|
|
36
|
-
"@cloudbase/utilities": "3.1.
|
|
35
|
+
"@cloudbase/oauth": "3.1.6",
|
|
36
|
+
"@cloudbase/utilities": "3.1.6"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@cloudbase/types": "3.1.
|
|
39
|
+
"@cloudbase/types": "3.1.6",
|
|
40
40
|
"@types/node": "^22.1.0",
|
|
41
41
|
"terser-webpack-plugin": "^3.0.2",
|
|
42
42
|
"webpack-bundle-analyzer": "^4.9.1"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "abd1ab7bf498cfc3042606fb92f436b1c5f8b2c3"
|
|
45
45
|
}
|
package/src/index.ts
CHANGED
|
@@ -1535,6 +1535,13 @@ class Auth {
|
|
|
1535
1535
|
* @returns Promise<SignInWithOtpRes>
|
|
1536
1536
|
*/
|
|
1537
1537
|
async signInWithOtp(params: SignInWithOtpReq): Promise<SignInWithOtpRes> {
|
|
1538
|
+
if (params.options?.shouldCreateUser === undefined || !!params.options?.shouldCreateUser) {
|
|
1539
|
+
return this.signUp({
|
|
1540
|
+
email: params.email,
|
|
1541
|
+
phone: params.phone,
|
|
1542
|
+
})
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1538
1545
|
try {
|
|
1539
1546
|
// 参数校验:email或phone必填其一
|
|
1540
1547
|
this.validateAtLeastOne(params, [['email'], ['phone']], 'You must provide either an email or phone number')
|
package/src/type.ts
CHANGED