From b3656154e43b2c9923c45d48101ece11223743a3 Mon Sep 17 00:00:00 2001
From: lpw <812862340@qq.com>
Date: Sun, 28 Sep 2025 16:53:41 +0800
Subject: [PATCH] 提交版本 4.8.0
---
WASdkIntf/WASdkIntf.xcframework/ios-arm64/WASdkIntf.framework/Headers/WAUserProxy.h | 42 ++++++++++++++++++++++++++++++++++++++++++
1 files changed, 42 insertions(+), 0 deletions(-)
diff --git a/WASdkIntf/WASdkIntf.xcframework/ios-arm64/WASdkIntf.framework/Headers/WAUserProxy.h b/WASdkIntf/WASdkIntf.xcframework/ios-arm64/WASdkIntf.framework/Headers/WAUserProxy.h
index 3db7d3b..be0bd0a 100644
--- a/WASdkIntf/WASdkIntf.xcframework/ios-arm64/WASdkIntf.framework/Headers/WAUserProxy.h
+++ b/WASdkIntf/WASdkIntf.xcframework/ios-arm64/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