From 5e25501d1f36e7684d48b24ef8ef72cadb75a193 Mon Sep 17 00:00:00 2001
From: lpw
Date: Tue, 12 Jul 2022 09:31:46 +0800
Subject: [PATCH] 2.6.1

---
 frameworks/WASdkIntf.framework/Headers/WAUserProxy.h |  148 +++++++++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 142 insertions(+), 6 deletions(-)

diff --git a/frameworks/WASdkIntf.framework/Headers/WAUserProxy.h b/frameworks/WASdkIntf.framework/Headers/WAUserProxy.h
index ec284ec..00d420c 100644
--- a/frameworks/WASdkIntf.framework/Headers/WAUserProxy.h
+++ b/frameworks/WASdkIntf.framework/Headers/WAUserProxy.h
@@ -8,12 +8,15 @@
 
 #import <Foundation/Foundation.h>
 #import <UIKit/UIKit.h>
-#import "WALoginResult.h"
-#import "WABindingResult.h"
-#import "WAAccount.h"
-#import "WAUserCenterResult.h"
-#import "WAAppUser.h"
-#import "WACertificationInfo.h"
+#import <WASdkIntf/WALoginResult.h>
+#import <WASdkIntf/WABindingResult.h>
+#import <WASdkIntf/WAAccount.h>
+#import <WASdkIntf/WAUserCenterResult.h>
+#import <WASdkIntf/WAAppUser.h>
+#import <WASdkIntf/WACertificationInfo.h>
+#import <WASdkIntf/WADeleteRequestModel.h>
+#import <WASdkIntf/WADeleteResult.h>
+
 /*!
  @discussion 登录协议
  - - -
@@ -93,6 +96,9 @@
 -(void)loginViewDidCancel:(WALoginResult*)result;
 @end
 
+
+
+
 /*!
  @discussion 账号管理界面协议
  - - -
@@ -110,6 +116,20 @@
  @param result 切换账户的账户信息
  */
 -(void)switchAcctDidCompleteWithResult:(WALoginResult*)result;
+
+/*!
+@abstract 绑定账号回调接口
+@param bindResult 绑定账号信息
+*/
+-(void)bindAccountDidCompleteWithResult:(WABindingResult*)bindResult;
+
+
+/*!
+@abstract 实名认证成功回调接口
+@param certificationInfo 实名认证信息
+*/
+-(void)realNameAuthtDidCompleteWithResult:(WACertificationInfo*)certificationInfo;
+
 @end
 
 /*!
@@ -227,6 +247,17 @@
  */
 +(void)openAccountManager:(id<WAAcctManagerDelegate>)delegate;
 
+
+/*!
+@abstract 调用此方法打开账户管理界面
+@param delegate 委托
+*/
++(void)openAccountCenter:(id<WAAcctManagerDelegate>)delegate;
+
+
+
+
++(BOOL)isBoundPlatformAccount;
 /*!
  @abstract 获取账户信息
  @param platform 平台
@@ -299,4 +330,109 @@
 
 +(void)queryUserCertificationInfo:(void(^)(WACertificationInfo *certificationInfo,NSError *error))callBackBlock;
 
+
+/*!
+ @discussion 检测是否可以打开账号绑定、账号切换、实名认证接口
+ */
++ (BOOL)canOpenAccoutbind;
++ (BOOL)canOpenAccoutSwitch;
++ (BOOL)canOpenRealNameAuth;
+
+/*!
+@discussion 打开账户绑定界面
+*/
++ (void)openAccoutbindManager:(void(^)(NSError* error,WABindingResult  * bindResult))block;
+
+
+/*!
+@discussion 打开账户切换界面
+*/
++ (void)openAccoutSwithchManager:(void(^)(NSError* error,WALoginResult  * loginResult))block;
+
+
+/*!
+@discussion 打开实名认证界面
+*/
++ (void)openRealNameAuthManager:(void(^)(NSError* error,WACertificationInfo  * certificationInfo))block;
+
+
+
+/*!
+@discussion 打开as评分弹框
+*/
++ (void)openReview API_AVAILABLE(ios(10.3), macos(10.14));
+
+
+
+/*!
+@discussion 打开idfa弹框授权
+ */
++ (void)openTTAAuthorizationWithCompletionHandler:(void(^)(NSError* error,NSUInteger status))block;
+
+/*!
+@discussion 隐私协议弹框
+ error 不为空时
+    status  -1  弹出了协议框,用户点击了拒绝
+            
+ error 为空
+    status 1 弹出了协议框,用户点击了同意
+    status 2 没有弹出协议框,用户之前点击过同意,无需再弹
+ */
++ (void)openPrivacyAgreementWindow:(void(^)(NSError* error,NSUInteger status))bloc;
+
+
+
+
+
+
+
+
+
+
+
+//**************************************删除账号有关start************************************************************
+
+/*!
+@discussion 检测是否可调用玩家身份确认接口
+ */
++ (BOOL)canCheckIdentity;
+
+/*!
+ @discussion 注销账号时,验证当前用户的身份证、id是否匹配,确认是本人操作
+ @param realName 姓名
+ @param idCard     身份证号码
+ */
++ (void)identityCheck:(NSString*)realName idCard:(NSString*)idCard completeBlock:(void(^)(NSError* error))block;
+
+
+//删除账号授权,拿到第三方的token信息,如 signinwithapple拿到authorizationCode
++ (void)deleteAccounAuthorizationWithPlatform:(NSString*)platform completeBlock:(void(^)(NSError* error,WADeleteRequestModel*deleteResult))block;
+
+
+/*!
+@discussion 账号删除接口
+ */
++ (void)requestDeleteAccout:(WADeleteRequestModel*)deleteResult completeBlock:(void(^)(NSError* error,WADeleteResult*result))completeBlock;
+
+/*!
+@discussion 取消删除账号接口
+ */
+
++ (void)cancelRequestDeleteAccoutWithUserid:(NSString*)userid callback:(void (^)(NSError *))completeBlock;
+
+
+// status==1,提交删除账号申请成功
+// status==2,用户取消
++ (void)requestDeleteAccoutUI:(void(^)(NSError *error, NSUInteger status))completeBlock;
+
+
+
+
+//**************************************删除账号有关end************************************************************
+
+
+
+
+
+
 @end

--
Gitblit v1.8.0