From e31f4c7fc08c9ed5f18a56083627cd4ac1c2c719 Mon Sep 17 00:00:00 2001
From: lpw <812862340@qq.com>
Date: Thu, 16 Jul 2026 14:30:54 +0800
Subject: [PATCH] 提交版本 4.13.1

---
 WAFbImpl/FBSDKCoreKit.xcframework/ios-arm64_arm64e/FBSDKCoreKit.framework/Headers/FBSDKFeature.h |  104 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 104 insertions(+), 0 deletions(-)

diff --git a/WAFbImpl/FBSDKCoreKit.xcframework/ios-arm64_arm64e/FBSDKCoreKit.framework/Headers/FBSDKFeature.h b/WAFbImpl/FBSDKCoreKit.xcframework/ios-arm64_arm64e/FBSDKCoreKit.framework/Headers/FBSDKFeature.h
new file mode 100644
index 0000000..8d5c5d0
--- /dev/null
+++ b/WAFbImpl/FBSDKCoreKit.xcframework/ios-arm64_arm64e/FBSDKCoreKit.framework/Headers/FBSDKFeature.h
@@ -0,0 +1,104 @@
+/*
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ * All rights reserved.
+ *
+ * This source code is licensed under the license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+#import <Foundation/Foundation.h>
+
+NS_ASSUME_NONNULL_BEGIN
+
+/**
+ Internal Type exposed to facilitate transition to Swift.
+ API Subject to change or removal without warning. Do not use.
+
+ FBSDKFeature enum
+ Defines features in SDK
+
+ Sample:
+ FBSDKFeatureAppEvents = 0x00010000,
+                            ^ ^ ^ ^
+                            | | | |
+                          kit | | |
+                        feature | |
+                      sub-feature |
+                    sub-sub-feature
+ 1st byte: kit
+ 2nd byte: feature
+ 3rd byte: sub-feature
+ 4th byte: sub-sub-feature
+
+ @warning INTERNAL - DO NOT USE
+ */
+typedef NS_ENUM(NSUInteger, FBSDKFeature) {
+  FBSDKFeatureNone = 0x00000000,
+  // Features in CoreKit
+  /// Essential of CoreKit
+  FBSDKFeatureCore = 0x01000000,
+  /// App Events
+  FBSDKFeatureAppEvents = 0x01010000,
+  FBSDKFeatureCodelessEvents = 0x01010100,
+  FBSDKFeatureRestrictiveDataFiltering = 0x01010200,
+  FBSDKFeatureAAM = 0x01010300,
+  FBSDKFeaturePrivacyProtection = 0x01010400,
+  FBSDKFeatureSuggestedEvents = 0x01010401,
+  FBSDKFeatureIntelligentIntegrity = 0x01010402,
+  FBSDKFeatureModelRequest = 0x01010403,
+  FBSDKFeatureProtectedMode = 0x01010404,
+  FBSDKFeatureMACARuleMatching = 0x01010405,
+  FBSDKFeatureBlocklistEvents = 0x01010406,
+  FBSDKFeatureFilterRedactedEvents = 0x01010407,
+  FBSDKFeatureFilterSensitiveParams = 0x01010408,
+  FBSDKFeatureStdParamEnforcement = 0x01010409,
+  FBSDKFeatureBannedParamFiltering = 0x0101040a,
+  FBSDKFeatureVVP = 0x0101040b,
+  FBSDKFeatureEventDeactivation = 0x01010500,
+  FBSDKFeatureSKAdNetwork = 0x01010600,
+  FBSDKFeatureSKAdNetworkConversionValue = 0x01010601,
+  FBSDKFeatureSKAdNetworkV4 = 0x01010602,
+  FBSDKFeatureATELogging = 0x01010700,
+  FBSDKFeatureAEM = 0x01010800,
+  FBSDKFeatureAEMConversionFiltering = 0x01010801,
+  FBSDKFeatureAEMCatalogMatching = 0x01010802,
+  FBSDKFeatureAEMAdvertiserRuleMatchInServer = 0x01010803,
+  FBSDKFeatureAEMAutoSetup = 0x01010804,
+  FBSDKFeatureAEMAutoSetupProxy = 0x01010805,
+  FBSDKFeatureAppEventsCloudbridge = 0x01010900,
+  FBSDKFeatureIAPLoggingSK2 = 0x01011000,
+  FBSDKFeatureIOSManualImplicitPurchaseDedupe = 0x01011001,
+  /// Instrument
+  FBSDKFeatureInstrument = 0x01020000,
+  FBSDKFeatureCrashReport = 0x01020100,
+  FBSDKFeatureCrashShield = 0x01020101,
+  FBSDKFeatureErrorReport = 0x01020200,
+
+  // Features in LoginKit
+  /// Essential of LoginKit
+  FBSDKFeatureLogin = 0x02000000,
+  /// Fast App Switch login flow
+  FBSDKFeatureLoginFastAppSwitch = 0x02010000,
+  /// Limited Login Refresh
+  FBSDKFeatureLimitedLoginRefresh = 0x02020000,
+  /// Fast App Switch for Limited Login
+  FBSDKFeatureLimitedLoginFastAppSwitch = 0x02030000,
+
+  // Features in ShareKit
+  /// Essential of ShareKit
+  FBSDKFeatureShare = 0x03000000,
+
+  // Features in GamingServicesKit
+  /// Essential of GamingServicesKit
+  FBSDKFeatureGamingServices = 0x04000000,
+} NS_SWIFT_NAME(SDKFeature);
+
+/**
+ Internal Type exposed to facilitate transition to Swift.
+ API Subject to change or removal without warning. Do not use.
+
+ @warning INTERNAL - DO NOT USE
+ */
+typedef void (^FBSDKFeatureManagerBlock)(BOOL enabled);
+
+NS_ASSUME_NONNULL_END

--
Gitblit v1.8.0