@cloudbase/js-sdk 2.21.6 → 2.21.7
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/index.d.ts +4 -3
- package/miniprogram_dist/app.js +1 -1
- package/miniprogram_dist/index.js +1 -1
- package/package.json +13 -13
package/index.d.ts
CHANGED
|
@@ -919,10 +919,11 @@ declare namespace cloudbase.auth {
|
|
|
919
919
|
* @return Promise-用户是否被绑定
|
|
920
920
|
*/
|
|
921
921
|
isUsernameRegistered(username: string): Promise<boolean>
|
|
922
|
-
getMiniProgramQrCode(params: authModels.
|
|
922
|
+
getMiniProgramQrCode(params: authModels.GetMiniProgramQrCodeRequest): Promise<authModels.GetMiniProgramQrCodeResponse>
|
|
923
923
|
getMiniProgramQrCodeStatus(
|
|
924
|
-
params: authModels.
|
|
925
|
-
): Promise<authModels.
|
|
924
|
+
params: authModels.GetMiniProgramQrCodeStatusRequest,
|
|
925
|
+
): Promise<authModels.GetMiniProgramQrCodeStatusResponse>
|
|
926
|
+
toDefaultLoginPage(params: authModels.ToDefaultLoginPage): Promise<void>
|
|
926
927
|
}
|
|
927
928
|
}
|
|
928
929
|
/**
|