From 4e688f58746a5020b77b72d74dd4bbf4da8fe962 Mon Sep 17 00:00:00 2001
From: lpw <812862340@qq.com>
Date: Wed, 15 Jul 2026 09:33:18 +0800
Subject: [PATCH] 提交版本 4.13.0
---
frameworks/WASdkIntf.framework/Headers/WAIUser.h | 66 +++++++++++++++++++++++++++++++-
1 files changed, 63 insertions(+), 3 deletions(-)
diff --git a/frameworks/WASdkIntf.framework/Headers/WAIUser.h b/frameworks/WASdkIntf.framework/Headers/WAIUser.h
index 0f50f06..8a8d0d1 100644
--- a/frameworks/WASdkIntf.framework/Headers/WAIUser.h
+++ b/frameworks/WASdkIntf.framework/Headers/WAIUser.h
@@ -40,6 +40,9 @@
-(void)applicationDidEnterBackground:(UIApplication *)application;
+- (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void (^_Nullable)(NSArray * _Nullable))restorationHandler;
+
+
-(BOOL)application:(UIApplication *)application
openURL:(NSURL *)url
sourceApplication:(NSString *)sourceApplication
@@ -182,7 +185,7 @@
- (void)checkConsentPreferencesWithCompletion:(void (^)(NSError *error, BOOL isShow))completionBlock;
/*!
-@discussion 打开客服中心 4.6.0增加
+@discussion 打开客服中心 4. 6.0增加
*/
- (void)showCustomerCenterWithCompletion:(void(^)(WACustomerResult*deleteResult))completionBlock;
@@ -190,7 +193,7 @@
/**
- @discussion 获取任务列表 4.6.0增加
+ @discussion 获取任务列表 4. 6.0增加
* 获取推广任务列表
* @param completeBlock 完成回调,返回任务列表数组或错误信息
* 数组元素格式为:
@@ -206,9 +209,66 @@
/*!
-@discussion 查询玩家任务完成情况 4.6.0增加
+@discussion 查询玩家任务完成情况 4. 6.0增加
*/
- (void)checkPlayerTask:(void(^_Nullable)(NSError * _Nullable error, BOOL success))completeBlock;
+- (void)getPlatformAccountInfo:(void(^_Nullable)(NSError * _Nullable error, WAPlatformAccountInfo * _Nullable acountInfo))completeBlock;
+
+
+/*!
+@discussion 月卡有关功能 4. 9.0增加
+ */
+- (void)getPassInfo:(void(^_Nullable)(NSError * _Nullable error, WAPassPlatformInfo * _Nullable passPlatfromInfo))completeBlock;
+
+
+- (void)showPassUserGuide:(void(^_Nullable)(NSError * _Nullable error))completeBlock;
+
+
+
+
+
+
+- (BOOL)isOpenCoins;
+
+- (void)showCoins:(void(^_Nullable)(NSError * _Nullable error))completeBlock;
+
+/*!
+@discussion 展示coins购买引导弹窗
+
+ */
+- (void)showCoinsGuide:(void(^_Nullable)(NSError * _Nullable error))completeBlock;
+
+/*!
+@discussion 获取coins余额和启用状态信息
+ */
+- (void)getCoinsInfo:(void(^_Nullable)(NSError * _Nullable error, WACoinsInfo * _Nullable coinsInfo))completeBlock;
+
+
+
+/*!
+@discussion 监听coins余额和开启状态变更(当余额或开启状态发生变化时才通知CP)
+*/
+
+- (void)listenCoinsChange:(void(^_Nullable)(NSError * _Nullable error, WACoinsInfo * _Nullable coinsInfo))callback;
+
+// 取消监听
+- (void)removeCoinsChangeListener;
+
+
+// 获取cid
+- (void)getCid:(void(^_Nullable)(NSError * _Nullable error, NSString * _Nullable cid))completeBlock;
+
+
+//查询月卡功能开关接口
+- (BOOL)isOpenPass;
+
+//查询月卡功能开关接口
+- (BOOL)isOpenPassUI;
+//新增月卡UI接口
+- (void)showPassUI:(void(^_Nullable)(NSError * _Nullable error))completeBlock;
+
+
+
@end
--
Gitblit v1.8.0