From 147a27646a80fe2142e317bbd19003ed47bae35d Mon Sep 17 00:00:00 2001
From: lpw <812862340@qq.com>
Date: Thu, 11 Sep 2025 16:58:31 +0800
Subject: [PATCH] 提交版本 4.7.0

---
 WASdkIntf/WASdkIntf.xcframework/ios-x86_64-simulator/WASdkIntf.framework/Headers/WAUserProxy.h |   42 ++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 42 insertions(+), 0 deletions(-)

diff --git a/WASdkIntf/WASdkIntf.xcframework/ios-x86_64-simulator/WASdkIntf.framework/Headers/WAUserProxy.h b/WASdkIntf/WASdkIntf.xcframework/ios-x86_64-simulator/WASdkIntf.framework/Headers/WAUserProxy.h
index 3db7d3b..be0bd0a 100644
--- a/WASdkIntf/WASdkIntf.xcframework/ios-x86_64-simulator/WASdkIntf.framework/Headers/WAUserProxy.h
+++ b/WASdkIntf/WASdkIntf.xcframework/ios-x86_64-simulator/WASdkIntf.framework/Headers/WAUserProxy.h
@@ -16,6 +16,10 @@
 #import <WASdkIntf/WACertificationInfo.h>
 #import <WASdkIntf/WADeleteRequestModel.h>
 #import <WASdkIntf/WADeleteResult.h>
+#import <WASdkIntf/WACustomerResult.h>
+#import <WASdkIntf/WAPlatformAccountInfo.h>
+
+
 
 typedef NS_ENUM(NSInteger, OpenGameReviewState) {
     OpenGameReviewStateReject=0,           //游戏评价结果:不,谢谢!
@@ -481,4 +485,42 @@
 + (void)checkConsentPreferencesWithCompletion:(void (^)(NSError *error, BOOL isShow))completionBlock;
 
 
+
+
+/*!
+@discussion 客服中心弹窗
+ */
++ (void)showCustomerCenterWithCompletion:(void(^)(WACustomerResult*customerResult))block;
+
+
+
+
+/**
+ * 获取推广任务列表
+ * @param completeBlock 完成回调,返回任务列表数组或错误信息
+ * 数组元素格式为:
+ * @{
+ *   @"taskName": @"任务名称",
+ *   @"taskStatus": @"0/1" // 0表示未完成,1表示已完成
+ * }
+ */
++(void)fetchPromotionTasksWithCompletion:(void(^_Nullable)(NSArray<NSDictionary *> * _Nullable tasksArray, NSError * _Nullable error))completeBlock;
+
+
+
+
+/*!
+@discussion 查询玩家任务完成情况 4. 6.0增加
+ */
++ (void)checkPlayerTask:(void(^_Nullable)(NSError * _Nullable error, BOOL success))completeBlock;
+
+
+
+/*!
+@discussion获取头像信息接口
+ */
++ (void)getPlatformAccountInfo:(void(^_Nullable)(NSError * _Nullable error, WAPlatformAccountInfo * _Nullable acountInfo))completeBlock;
+
+
+
 @end

--
Gitblit v1.8.0