@cloudbase/auth 3.1.3-alpha.0 → 3.1.3-beta.1
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.d.ts +1 -2
- package/dist/cjs/index.js +35 -22
- package/dist/esm/index.d.ts +1 -2
- package/dist/esm/index.js +35 -22
- package/dist/miniprogram/index.js +1 -1
- package/package.json +5 -5
- package/src/index.ts +52 -4
package/dist/esm/index.d.ts
CHANGED
|
@@ -246,9 +246,8 @@ declare class Auth {
|
|
|
246
246
|
signInWithOpenId({ useWxCloud }?: {
|
|
247
247
|
useWxCloud?: boolean;
|
|
248
248
|
}): Promise<SignInRes>;
|
|
249
|
-
signInWithPhoneAuth({ phoneCode
|
|
249
|
+
signInWithPhoneAuth({ phoneCode }: {
|
|
250
250
|
phoneCode?: string;
|
|
251
|
-
useWxCloud?: boolean;
|
|
252
251
|
}): Promise<SignInRes>;
|
|
253
252
|
private formatPhone;
|
|
254
253
|
private notifyListeners;
|