From f0de67dd4bab183c290acc0aac33d394522046d1 Mon Sep 17 00:00:00 2001
From: lpw
Date: Sat, 03 Jun 2023 11:27:33 +0800
Subject: [PATCH] 3.15.0

---
 frameworks/WASdkIntf.framework/Headers/WACoreProxy.h |   37 ++++++++++++++++++++++++++++++++-----
 1 files changed, 32 insertions(+), 5 deletions(-)

diff --git a/frameworks/WASdkIntf.framework/Headers/WACoreProxy.h b/frameworks/WASdkIntf.framework/Headers/WACoreProxy.h
index 27bf720..7d64f67 100644
--- a/frameworks/WASdkIntf.framework/Headers/WACoreProxy.h
+++ b/frameworks/WASdkIntf.framework/Headers/WACoreProxy.h
@@ -47,6 +47,15 @@
  @abstract 初始化
  */
 +(void)init;
+
+
+/*!
+ @abstract 初始化(20221202新增初始化回调)
+ */
+
++(void)initWithCompletionHandler:(void (^_Nullable)())completionHandler;
+
+
 /*!
  @abstract 设置sdk类型 0 国外,1 国内
  */
@@ -170,6 +179,20 @@
  */
 +(NSString*)getSessionId;
 /*!
+ @abstract 隐私政策URL地址
+ */
++(NSString *)getPrivacyUrl;
+/*!
+ @abstract 隐私政策更新时间
+ */
++(NSString *)getPrivacyUpdateTime;
+/*!
+ @abstract 隐私政策内容界面
+ */
++(void)showPrivacyUI:(void(^)(void))privacyUIClosedHandler;
++(void)showPrivacyUITitle:(NSString*)title url:(NSString*)url handle:(void(^)(void))privacyUIClosedHandler;
+
+/*!
  @abstract 下面两个方法是关于Facebook deeplink, CP不用关注
  */
 -(NSString*)getDeepLinkWithUrl:(NSURL*)url;
@@ -199,12 +222,12 @@
 /*!
 @abstract 注册通知
 */
-+ (void)application:(UIApplication *)application initPushWithDelegate:(id<UNUserNotificationCenterDelegate>)delegate;
++ (void)application:(UIApplication *)application initPushWithDelegate:(id<UNUserNotificationCenterDelegate>)delegate API_AVAILABLE(ios(10.0));
 
 /*!
  @abstract 调用过用户注册通知方法之后执行
  */
-+ (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings;
++ (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings API_AVAILABLE(ios(8.0));
 
 /*!
  @abstract 获取deviceToken
@@ -231,12 +254,12 @@
 /*!
  @abstractApp 处于前台接收通知时
  */
-+ (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler;
++ (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler API_AVAILABLE(ios(10.0)) API_AVAILABLE(ios(10.0)) API_AVAILABLE(ios(10.0));
 
 /*!
  @abstract 通知的点击事件
  */
-+ (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void(^)())completionHandler;
++ (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void(^)(void))completionHandler API_AVAILABLE(ios(10.0)) API_AVAILABLE(ios(10.0));
 
 /*!
  程序进入后台
@@ -264,11 +287,15 @@
  */
 + (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation;
 
-+ (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options;
++ (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options;
+
++ (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void (^)(NSArray * _Nullable))restorationHandler API_AVAILABLE(ios(8.0));
 
 /*!
  @abstract 设备是否越狱
  */
 + (BOOL)isJailBreak;
 
+
+
 @end

--
Gitblit v1.8.0