From 1178266bed9f244671ebcb4e9624a01ce0d58097 Mon Sep 17 00:00:00 2001 From: lpw Date: Tue, 18 Mar 2025 09:04:04 +0800 Subject: [PATCH] 提交 4.4.0 --- frameworks/FirebaseCoreInternal.xcframework/ios-arm64/FirebaseCoreInternal.framework/Modules/FirebaseCoreInternal.swiftmodule/arm64-apple-ios.swiftinterface | 20 +++++++++++++------- 1 files changed, 13 insertions(+), 7 deletions(-) diff --git a/frameworks/FirebaseCoreInternal.xcframework/ios-arm64/FirebaseCoreInternal.framework/Modules/FirebaseCoreInternal.swiftmodule/arm64-apple-ios.swiftinterface b/frameworks/FirebaseCoreInternal.xcframework/ios-arm64/FirebaseCoreInternal.framework/Modules/FirebaseCoreInternal.swiftmodule/arm64-apple-ios.swiftinterface index b425fc4..a01dba2 100644 --- a/frameworks/FirebaseCoreInternal.xcframework/ios-arm64/FirebaseCoreInternal.framework/Modules/FirebaseCoreInternal.swiftmodule/arm64-apple-ios.swiftinterface +++ b/frameworks/FirebaseCoreInternal.xcframework/ios-arm64/FirebaseCoreInternal.framework/Modules/FirebaseCoreInternal.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,17 +1,20 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) -// swift-module-flags: -target arm64-apple-ios10.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FirebaseCoreInternal +// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FirebaseCoreInternal // swift-module-flags-ignorable: -enable-bare-slash-regex @_exported import FirebaseCoreInternal import Foundation -import GoogleUtilities import Swift import _Concurrency import _StringProcessing +import _SwiftConcurrencyShims @objc(FIRHeartbeatController) @objcMembers public class _ObjC_HeartbeatController : ObjectiveC.NSObject { @objc public init(id: Swift.String) @objc public func log(_ agent: Swift.String) @objc public func flush() -> FirebaseCoreInternal._ObjC_HeartbeatsPayload + #if compiler(>=5.3) && $Sendable + @objc public func flushAsync(completionHandler: @escaping @Sendable (FirebaseCoreInternal._ObjC_HeartbeatsPayload) -> Swift.Void) + #endif @objc public func flushHeartbeatFromToday() -> FirebaseCoreInternal._ObjC_HeartbeatsPayload @objc deinit } @@ -23,11 +26,14 @@ } @objc deinit } -@_hasMissingDesignatedInitializers final public class HeartbeatController { +@_hasMissingDesignatedInitializers final public class HeartbeatController : Swift.Sendable { convenience public init(id: Swift.String) final public func log(_ agent: Swift.String) @discardableResult final public func flush() -> FirebaseCoreInternal.HeartbeatsPayload + #if compiler(>=5.3) && $Sendable + final public func flushAsync(completionHandler: @escaping @Sendable (FirebaseCoreInternal.HeartbeatsPayload) -> Swift.Void) + #endif @discardableResult final public func flushHeartbeatFromToday() -> FirebaseCoreInternal.HeartbeatsPayload @objc deinit @@ -35,12 +41,12 @@ public protocol HTTPHeaderRepresentable { func headerValue() -> Swift.String } -public struct HeartbeatsPayload : Swift.Codable { +public struct HeartbeatsPayload : Swift.Codable, Swift.Sendable { public var isEmpty: Swift.Bool { get } - public func encode(to encoder: Swift.Encoder) throws - public init(from decoder: Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } extension FirebaseCoreInternal.HeartbeatsPayload : FirebaseCoreInternal.HTTPHeaderRepresentable { public func headerValue() -> Swift.String -- Gitblit v1.8.0