From e0ec4235cc7b8d05ec1aaa414ec2d2cac798d74e Mon Sep 17 00:00:00 2001 From: lpw Date: Sat, 03 Jun 2023 09:18:20 +0800 Subject: [PATCH] 3.15.0 --- frameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequest.h | 17 ++++++++++++++++- 1 files changed, 16 insertions(+), 1 deletions(-) diff --git a/frameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequest.h b/frameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequest.h index b55f870..2c32e9c 100644 --- a/frameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequest.h +++ b/frameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequest.h @@ -15,6 +15,10 @@ #import <FBSDKCoreKit/FBSDKBridgeAPIRequestProtocol.h> #import <FBSDKCoreKit/FBSDKURLScheme.h> +@protocol FBSDKInternalURLOpener; +@protocol FBSDKInternalUtility; +@protocol FBSDKSettings; + NS_ASSUME_NONNULL_BEGIN /** @@ -23,7 +27,7 @@ @warning INTERNAL - DO NOT USE */ -NS_SWIFT_NAME(BridgeAPIRequest) +NS_SWIFT_NAME(_BridgeAPIRequest) @interface FBSDKBridgeAPIRequest : NSObject <NSCopying, FBSDKBridgeAPIRequest> - (instancetype)init NS_UNAVAILABLE; @@ -43,6 +47,17 @@ - (nullable NSURL *)requestURL:(NSError *_Nullable *)errorRef; +/** + Internal method exposed to facilitate transition to Swift. + API Subject to change or removal without warning. Do not use. + + @warning INTERNAL - DO NOT USE + */ ++ (void)configureWithInternalURLOpener:(id<FBSDKInternalURLOpener>)internalURLOpener + internalUtility:(id<FBSDKInternalUtility>)internalUtility + settings:(id<FBSDKSettings>)settings +NS_SWIFT_NAME(configure(internalURLOpener:internalUtility:settings:)); + @end NS_ASSUME_NONNULL_END -- Gitblit v1.8.0