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

---
 WAAdmobImpl/GoogleMobileAds.xcframework/ios-arm64_x86_64-simulator/GoogleMobileAds.framework/PrivateHeaders/Mediation/GADMediationInitializationConfiguration_Beta.h |   43 +++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 43 insertions(+), 0 deletions(-)

diff --git a/WAAdmobImpl/GoogleMobileAds.xcframework/ios-arm64_x86_64-simulator/GoogleMobileAds.framework/PrivateHeaders/Mediation/GADMediationInitializationConfiguration_Beta.h b/WAAdmobImpl/GoogleMobileAds.xcframework/ios-arm64_x86_64-simulator/GoogleMobileAds.framework/PrivateHeaders/Mediation/GADMediationInitializationConfiguration_Beta.h
new file mode 100644
index 0000000..fc60660
--- /dev/null
+++ b/WAAdmobImpl/GoogleMobileAds.xcframework/ios-arm64_x86_64-simulator/GoogleMobileAds.framework/PrivateHeaders/Mediation/GADMediationInitializationConfiguration_Beta.h
@@ -0,0 +1,43 @@
+//
+//  GADMediationInitializationConfiguration.h
+//  Google Mobile Ads SDK
+//
+//  Copyright 2026 Google LLC. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+
+/// Configuration for mediation adapter initialization during GMA SDK initialization.
+NS_SWIFT_NAME(MediationInitializationConfiguration)
+@interface GADMediationInitializationConfiguration : NSObject
+
+#pragma mark Filter Rules
+/// The following properties are used to filter the set of adapters to initialize during GMA SDK
+/// initialization.
+
+/// The ad formats for which the SDK will initialize adapters. If |includedAdUnitIDs| is also
+/// specified, an adapter will have to be associated with both one of the included ad formats AND
+/// one of the included ad units IDs.
+@property(nonatomic, copy, nonnull) NSSet<NSNumber *> *includedAdFormats;
+
+/// The ad unit IDs for which the SDK will initialize adapters. If |includedAdFormats| is also
+/// specified, an adapter will have to be associated with both one of the included ad unit IDs AND
+/// one of the included ad formats.
+@property(nonatomic, copy, nonnull) NSSet<NSString *> *includedAdUnitIDs;
+
+/// The adapter classes to initialize. An adapter in this set will always be initialized, regardless
+/// of ad unit and format settings, unless it is present in |excludedAdapterClasses|.
+@property(nonatomic, copy, nonnull) NSSet<NSString *> *includedAdapterClasses;
+
+/// The adapter classes to exclude from initialization. An adapter in this set will never be
+/// initialized, regardless of values set on |includedAdFormats|, |includedAdUnitIDs|, or
+/// |includedAdapterClasses|.
+@property(nonatomic, copy, nonnull) NSSet<NSString *> *excludedAdapterClasses;
+
+#pragma mark Timeout
+
+/// The maximum amount of time in seconds the SDK waits for initialization to complete before
+/// invoking |GADInitializationCompletionHandler|.
+@property(nonatomic) NSTimeInterval initializationTimeout;
+
+@end

--
Gitblit v1.8.0