5.8
This commit is contained in:
@ -4,23 +4,6 @@
|
|||||||
<dict>
|
<dict>
|
||||||
<key>AvailableLibraries</key>
|
<key>AvailableLibraries</key>
|
||||||
<array>
|
<array>
|
||||||
<dict>
|
|
||||||
<key>BinaryPath</key>
|
|
||||||
<string>M2Kit.framework/Versions/A/M2Kit</string>
|
|
||||||
<key>LibraryIdentifier</key>
|
|
||||||
<string>ios-arm64_x86_64-maccatalyst</string>
|
|
||||||
<key>LibraryPath</key>
|
|
||||||
<string>M2Kit.framework</string>
|
|
||||||
<key>SupportedArchitectures</key>
|
|
||||||
<array>
|
|
||||||
<string>arm64</string>
|
|
||||||
<string>x86_64</string>
|
|
||||||
</array>
|
|
||||||
<key>SupportedPlatform</key>
|
|
||||||
<string>ios</string>
|
|
||||||
<key>SupportedPlatformVariant</key>
|
|
||||||
<string>maccatalyst</string>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
<dict>
|
||||||
<key>BinaryPath</key>
|
<key>BinaryPath</key>
|
||||||
<string>M2Kit.framework/M2Kit</string>
|
<string>M2Kit.framework/M2Kit</string>
|
||||||
@ -52,6 +35,23 @@
|
|||||||
<key>SupportedPlatformVariant</key>
|
<key>SupportedPlatformVariant</key>
|
||||||
<string>simulator</string>
|
<string>simulator</string>
|
||||||
</dict>
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>BinaryPath</key>
|
||||||
|
<string>M2Kit.framework/Versions/A/M2Kit</string>
|
||||||
|
<key>LibraryIdentifier</key>
|
||||||
|
<string>ios-arm64_x86_64-maccatalyst</string>
|
||||||
|
<key>LibraryPath</key>
|
||||||
|
<string>M2Kit.framework</string>
|
||||||
|
<key>SupportedArchitectures</key>
|
||||||
|
<array>
|
||||||
|
<string>arm64</string>
|
||||||
|
<string>x86_64</string>
|
||||||
|
</array>
|
||||||
|
<key>SupportedPlatform</key>
|
||||||
|
<string>ios</string>
|
||||||
|
<key>SupportedPlatformVariant</key>
|
||||||
|
<string>maccatalyst</string>
|
||||||
|
</dict>
|
||||||
</array>
|
</array>
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>XFWK</string>
|
<string>XFWK</string>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
#if 0
|
#if 0
|
||||||
#elif defined(__arm64__) && __arm64__
|
#elif defined(__arm64__) && __arm64__
|
||||||
// Generated by Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.19.9 clang-1700.3.19.1)
|
// Generated by Apple Swift version 6.2.1 effective-5.10 (swiftlang-6.2.1.4.8 clang-1700.4.4.1)
|
||||||
#ifndef M2KIT_SWIFT_H
|
#ifndef M2KIT_SWIFT_H
|
||||||
#define M2KIT_SWIFT_H
|
#define M2KIT_SWIFT_H
|
||||||
#pragma clang diagnostic push
|
#pragma clang diagnostic push
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -1,7 +1,7 @@
|
|||||||
// swift-interface-format-version: 1.0
|
// swift-interface-format-version: 1.0
|
||||||
// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.19.9 clang-1700.3.19.1)
|
// swift-compiler-version: Apple Swift version 6.2.1 effective-5.10 (swiftlang-6.2.1.4.8 clang-1700.4.4.1)
|
||||||
// swift-module-flags: -target arm64-apple-ios15.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
// swift-module-flags: -target arm64-apple-ios15.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2
|
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.1
|
||||||
import Combine
|
import Combine
|
||||||
import CommonCrypto
|
import CommonCrypto
|
||||||
import Foundation
|
import Foundation
|
||||||
@ -112,6 +112,14 @@ public struct M2Backup {
|
|||||||
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public struct M2Backup2 {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupPlaylist(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
public let m2Version: Swift.String
|
public let m2Version: Swift.String
|
||||||
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
||||||
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
||||||
@ -132,6 +140,7 @@ public struct M2HTTP {
|
|||||||
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@available(*, deprecated, message: "M2Image is deprecated. Use M2Image2 instead.")
|
||||||
public struct M2Image {
|
public struct M2Image {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@ -140,6 +149,14 @@ public struct M2Image {
|
|||||||
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public struct M2Image2 {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
|
#endif
|
||||||
|
}
|
||||||
public struct M2K {
|
public struct M2K {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
// swift-interface-format-version: 1.0
|
// swift-interface-format-version: 1.0
|
||||||
// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.19.9 clang-1700.3.19.1)
|
// swift-compiler-version: Apple Swift version 6.2.1 effective-5.10 (swiftlang-6.2.1.4.8 clang-1700.4.4.1)
|
||||||
// swift-module-flags: -target arm64-apple-ios15.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
// swift-module-flags: -target arm64-apple-ios15.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2
|
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.1
|
||||||
import Combine
|
import Combine
|
||||||
import CommonCrypto
|
import CommonCrypto
|
||||||
import Foundation
|
import Foundation
|
||||||
@ -112,6 +112,14 @@ public struct M2Backup {
|
|||||||
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public struct M2Backup2 {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupPlaylist(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
public let m2Version: Swift.String
|
public let m2Version: Swift.String
|
||||||
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
||||||
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
||||||
@ -132,6 +140,7 @@ public struct M2HTTP {
|
|||||||
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@available(*, deprecated, message: "M2Image is deprecated. Use M2Image2 instead.")
|
||||||
public struct M2Image {
|
public struct M2Image {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@ -140,6 +149,14 @@ public struct M2Image {
|
|||||||
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public struct M2Image2 {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
|
#endif
|
||||||
|
}
|
||||||
public struct M2K {
|
public struct M2K {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
#if 0
|
#if 0
|
||||||
#elif defined(__arm64__) && __arm64__
|
#elif defined(__arm64__) && __arm64__
|
||||||
// Generated by Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.19.9 clang-1700.3.19.1)
|
// Generated by Apple Swift version 6.2.1 effective-5.10 (swiftlang-6.2.1.4.8 clang-1700.4.4.1)
|
||||||
#ifndef M2KIT_SWIFT_H
|
#ifndef M2KIT_SWIFT_H
|
||||||
#define M2KIT_SWIFT_H
|
#define M2KIT_SWIFT_H
|
||||||
#pragma clang diagnostic push
|
#pragma clang diagnostic push
|
||||||
@ -324,7 +324,7 @@ SWIFT_CLASS("_TtC5M2Kit7M2WebVC")
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#elif defined(__x86_64__) && __x86_64__
|
#elif defined(__x86_64__) && __x86_64__
|
||||||
// Generated by Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.19.9 clang-1700.3.19.1)
|
// Generated by Apple Swift version 6.2.1 effective-5.10 (swiftlang-6.2.1.4.8 clang-1700.4.4.1)
|
||||||
#ifndef M2KIT_SWIFT_H
|
#ifndef M2KIT_SWIFT_H
|
||||||
#define M2KIT_SWIFT_H
|
#define M2KIT_SWIFT_H
|
||||||
#pragma clang diagnostic push
|
#pragma clang diagnostic push
|
||||||
|
|||||||
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -1,7 +1,7 @@
|
|||||||
// swift-interface-format-version: 1.0
|
// swift-interface-format-version: 1.0
|
||||||
// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.19.9 clang-1700.3.19.1)
|
// swift-compiler-version: Apple Swift version 6.2.1 effective-5.10 (swiftlang-6.2.1.4.8 clang-1700.4.4.1)
|
||||||
// swift-module-flags: -target arm64-apple-ios15.0-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
// swift-module-flags: -target arm64-apple-ios15.0-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2
|
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.1
|
||||||
import Combine
|
import Combine
|
||||||
import CommonCrypto
|
import CommonCrypto
|
||||||
import Foundation
|
import Foundation
|
||||||
@ -112,6 +112,14 @@ public struct M2Backup {
|
|||||||
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public struct M2Backup2 {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupPlaylist(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
public let m2Version: Swift.String
|
public let m2Version: Swift.String
|
||||||
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
||||||
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
||||||
@ -132,6 +140,7 @@ public struct M2HTTP {
|
|||||||
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@available(*, deprecated, message: "M2Image is deprecated. Use M2Image2 instead.")
|
||||||
public struct M2Image {
|
public struct M2Image {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@ -140,6 +149,14 @@ public struct M2Image {
|
|||||||
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public struct M2Image2 {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
|
#endif
|
||||||
|
}
|
||||||
public struct M2K {
|
public struct M2K {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
// swift-interface-format-version: 1.0
|
// swift-interface-format-version: 1.0
|
||||||
// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.19.9 clang-1700.3.19.1)
|
// swift-compiler-version: Apple Swift version 6.2.1 effective-5.10 (swiftlang-6.2.1.4.8 clang-1700.4.4.1)
|
||||||
// swift-module-flags: -target arm64-apple-ios15.0-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
// swift-module-flags: -target arm64-apple-ios15.0-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2
|
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.1
|
||||||
import Combine
|
import Combine
|
||||||
import CommonCrypto
|
import CommonCrypto
|
||||||
import Foundation
|
import Foundation
|
||||||
@ -112,6 +112,14 @@ public struct M2Backup {
|
|||||||
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public struct M2Backup2 {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupPlaylist(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
public let m2Version: Swift.String
|
public let m2Version: Swift.String
|
||||||
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
||||||
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
||||||
@ -132,6 +140,7 @@ public struct M2HTTP {
|
|||||||
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@available(*, deprecated, message: "M2Image is deprecated. Use M2Image2 instead.")
|
||||||
public struct M2Image {
|
public struct M2Image {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@ -140,6 +149,14 @@ public struct M2Image {
|
|||||||
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public struct M2Image2 {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
|
#endif
|
||||||
|
}
|
||||||
public struct M2K {
|
public struct M2K {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@ -1,7 +1,7 @@
|
|||||||
// swift-interface-format-version: 1.0
|
// swift-interface-format-version: 1.0
|
||||||
// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.19.9 clang-1700.3.19.1)
|
// swift-compiler-version: Apple Swift version 6.2.1 effective-5.10 (swiftlang-6.2.1.4.8 clang-1700.4.4.1)
|
||||||
// swift-module-flags: -target x86_64-apple-ios15.0-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
// swift-module-flags: -target x86_64-apple-ios15.0-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2
|
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.1
|
||||||
import Combine
|
import Combine
|
||||||
import CommonCrypto
|
import CommonCrypto
|
||||||
import Foundation
|
import Foundation
|
||||||
@ -112,6 +112,14 @@ public struct M2Backup {
|
|||||||
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public struct M2Backup2 {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupPlaylist(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
public let m2Version: Swift.String
|
public let m2Version: Swift.String
|
||||||
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
||||||
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
||||||
@ -132,6 +140,7 @@ public struct M2HTTP {
|
|||||||
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@available(*, deprecated, message: "M2Image is deprecated. Use M2Image2 instead.")
|
||||||
public struct M2Image {
|
public struct M2Image {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@ -140,6 +149,14 @@ public struct M2Image {
|
|||||||
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public struct M2Image2 {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
|
#endif
|
||||||
|
}
|
||||||
public struct M2K {
|
public struct M2K {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
// swift-interface-format-version: 1.0
|
// swift-interface-format-version: 1.0
|
||||||
// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.19.9 clang-1700.3.19.1)
|
// swift-compiler-version: Apple Swift version 6.2.1 effective-5.10 (swiftlang-6.2.1.4.8 clang-1700.4.4.1)
|
||||||
// swift-module-flags: -target x86_64-apple-ios15.0-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
// swift-module-flags: -target x86_64-apple-ios15.0-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2
|
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.1
|
||||||
import Combine
|
import Combine
|
||||||
import CommonCrypto
|
import CommonCrypto
|
||||||
import Foundation
|
import Foundation
|
||||||
@ -112,6 +112,14 @@ public struct M2Backup {
|
|||||||
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public struct M2Backup2 {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupPlaylist(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
public let m2Version: Swift.String
|
public let m2Version: Swift.String
|
||||||
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
||||||
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
||||||
@ -132,6 +140,7 @@ public struct M2HTTP {
|
|||||||
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@available(*, deprecated, message: "M2Image is deprecated. Use M2Image2 instead.")
|
||||||
public struct M2Image {
|
public struct M2Image {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@ -140,6 +149,14 @@ public struct M2Image {
|
|||||||
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public struct M2Image2 {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
|
#endif
|
||||||
|
}
|
||||||
public struct M2K {
|
public struct M2K {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
<plist version="1.0">
|
<plist version="1.0">
|
||||||
<dict>
|
<dict>
|
||||||
<key>BuildMachineOSBuild</key>
|
<key>BuildMachineOSBuild</key>
|
||||||
<string>25A362</string>
|
<string>25B78</string>
|
||||||
<key>CFBundleDevelopmentRegion</key>
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
<string>en</string>
|
<string>en</string>
|
||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
@ -17,7 +17,7 @@
|
|||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>FMWK</string>
|
<string>FMWK</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>5.7</string>
|
<string>5.8</string>
|
||||||
<key>CFBundleSupportedPlatforms</key>
|
<key>CFBundleSupportedPlatforms</key>
|
||||||
<array>
|
<array>
|
||||||
<string>MacOSX</string>
|
<string>MacOSX</string>
|
||||||
@ -27,19 +27,19 @@
|
|||||||
<key>DTCompiler</key>
|
<key>DTCompiler</key>
|
||||||
<string>com.apple.compilers.llvm.clang.1_0</string>
|
<string>com.apple.compilers.llvm.clang.1_0</string>
|
||||||
<key>DTPlatformBuild</key>
|
<key>DTPlatformBuild</key>
|
||||||
<string>25A352</string>
|
<string>25B74</string>
|
||||||
<key>DTPlatformName</key>
|
<key>DTPlatformName</key>
|
||||||
<string>macosx</string>
|
<string>macosx</string>
|
||||||
<key>DTPlatformVersion</key>
|
<key>DTPlatformVersion</key>
|
||||||
<string>26.0</string>
|
<string>26.1</string>
|
||||||
<key>DTSDKBuild</key>
|
<key>DTSDKBuild</key>
|
||||||
<string>25A352</string>
|
<string>25B74</string>
|
||||||
<key>DTSDKName</key>
|
<key>DTSDKName</key>
|
||||||
<string>macosx26.0</string>
|
<string>macosx26.1</string>
|
||||||
<key>DTXcode</key>
|
<key>DTXcode</key>
|
||||||
<string>2601</string>
|
<string>2610</string>
|
||||||
<key>DTXcodeBuild</key>
|
<key>DTXcodeBuild</key>
|
||||||
<string>17A400</string>
|
<string>17B55</string>
|
||||||
<key>LSMinimumSystemVersion</key>
|
<key>LSMinimumSystemVersion</key>
|
||||||
<string>12.0</string>
|
<string>12.0</string>
|
||||||
<key>UIDeviceFamily</key>
|
<key>UIDeviceFamily</key>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
#if 0
|
#if 0
|
||||||
#elif defined(__arm64__) && __arm64__
|
#elif defined(__arm64__) && __arm64__
|
||||||
// Generated by Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.19.9 clang-1700.3.19.1)
|
// Generated by Apple Swift version 6.2.1 effective-5.10 (swiftlang-6.2.1.4.8 clang-1700.4.4.1)
|
||||||
#ifndef M2KIT_SWIFT_H
|
#ifndef M2KIT_SWIFT_H
|
||||||
#define M2KIT_SWIFT_H
|
#define M2KIT_SWIFT_H
|
||||||
#pragma clang diagnostic push
|
#pragma clang diagnostic push
|
||||||
@ -324,7 +324,7 @@ SWIFT_CLASS("_TtC5M2Kit7M2WebVC")
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#elif defined(__x86_64__) && __x86_64__
|
#elif defined(__x86_64__) && __x86_64__
|
||||||
// Generated by Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.19.9 clang-1700.3.19.1)
|
// Generated by Apple Swift version 6.2.1 effective-5.10 (swiftlang-6.2.1.4.8 clang-1700.4.4.1)
|
||||||
#ifndef M2KIT_SWIFT_H
|
#ifndef M2KIT_SWIFT_H
|
||||||
#define M2KIT_SWIFT_H
|
#define M2KIT_SWIFT_H
|
||||||
#pragma clang diagnostic push
|
#pragma clang diagnostic push
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -1,7 +1,7 @@
|
|||||||
// swift-interface-format-version: 1.0
|
// swift-interface-format-version: 1.0
|
||||||
// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.19.9 clang-1700.3.19.1)
|
// swift-compiler-version: Apple Swift version 6.2.1 effective-5.10 (swiftlang-6.2.1.4.8 clang-1700.4.4.1)
|
||||||
// swift-module-flags: -target arm64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
// swift-module-flags: -target arm64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2
|
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.1
|
||||||
import Combine
|
import Combine
|
||||||
import CommonCrypto
|
import CommonCrypto
|
||||||
import Foundation
|
import Foundation
|
||||||
@ -112,6 +112,14 @@ public struct M2Backup {
|
|||||||
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public struct M2Backup2 {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupPlaylist(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
public let m2Version: Swift.String
|
public let m2Version: Swift.String
|
||||||
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
||||||
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
||||||
@ -132,6 +140,7 @@ public struct M2HTTP {
|
|||||||
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@available(*, deprecated, message: "M2Image is deprecated. Use M2Image2 instead.")
|
||||||
public struct M2Image {
|
public struct M2Image {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@ -140,6 +149,14 @@ public struct M2Image {
|
|||||||
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public struct M2Image2 {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
|
#endif
|
||||||
|
}
|
||||||
public struct M2K {
|
public struct M2K {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
// swift-interface-format-version: 1.0
|
// swift-interface-format-version: 1.0
|
||||||
// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.19.9 clang-1700.3.19.1)
|
// swift-compiler-version: Apple Swift version 6.2.1 effective-5.10 (swiftlang-6.2.1.4.8 clang-1700.4.4.1)
|
||||||
// swift-module-flags: -target arm64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
// swift-module-flags: -target arm64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2
|
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.1
|
||||||
import Combine
|
import Combine
|
||||||
import CommonCrypto
|
import CommonCrypto
|
||||||
import Foundation
|
import Foundation
|
||||||
@ -112,6 +112,14 @@ public struct M2Backup {
|
|||||||
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public struct M2Backup2 {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupPlaylist(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
public let m2Version: Swift.String
|
public let m2Version: Swift.String
|
||||||
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
||||||
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
||||||
@ -132,6 +140,7 @@ public struct M2HTTP {
|
|||||||
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@available(*, deprecated, message: "M2Image is deprecated. Use M2Image2 instead.")
|
||||||
public struct M2Image {
|
public struct M2Image {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@ -140,6 +149,14 @@ public struct M2Image {
|
|||||||
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public struct M2Image2 {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
|
#endif
|
||||||
|
}
|
||||||
public struct M2K {
|
public struct M2K {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@ -1,7 +1,7 @@
|
|||||||
// swift-interface-format-version: 1.0
|
// swift-interface-format-version: 1.0
|
||||||
// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.19.9 clang-1700.3.19.1)
|
// swift-compiler-version: Apple Swift version 6.2.1 effective-5.10 (swiftlang-6.2.1.4.8 clang-1700.4.4.1)
|
||||||
// swift-module-flags: -target x86_64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
// swift-module-flags: -target x86_64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2
|
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.1
|
||||||
import Combine
|
import Combine
|
||||||
import CommonCrypto
|
import CommonCrypto
|
||||||
import Foundation
|
import Foundation
|
||||||
@ -112,6 +112,14 @@ public struct M2Backup {
|
|||||||
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public struct M2Backup2 {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupPlaylist(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
public let m2Version: Swift.String
|
public let m2Version: Swift.String
|
||||||
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
||||||
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
||||||
@ -132,6 +140,7 @@ public struct M2HTTP {
|
|||||||
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@available(*, deprecated, message: "M2Image is deprecated. Use M2Image2 instead.")
|
||||||
public struct M2Image {
|
public struct M2Image {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@ -140,6 +149,14 @@ public struct M2Image {
|
|||||||
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public struct M2Image2 {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
|
#endif
|
||||||
|
}
|
||||||
public struct M2K {
|
public struct M2K {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
// swift-interface-format-version: 1.0
|
// swift-interface-format-version: 1.0
|
||||||
// swift-compiler-version: Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.19.9 clang-1700.3.19.1)
|
// swift-compiler-version: Apple Swift version 6.2.1 effective-5.10 (swiftlang-6.2.1.4.8 clang-1700.4.4.1)
|
||||||
// swift-module-flags: -target x86_64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
// swift-module-flags: -target x86_64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2
|
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.1
|
||||||
import Combine
|
import Combine
|
||||||
import CommonCrypto
|
import CommonCrypto
|
||||||
import Foundation
|
import Foundation
|
||||||
@ -112,6 +112,14 @@ public struct M2Backup {
|
|||||||
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public struct M2Backup2 {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupPlaylist(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
public let m2Version: Swift.String
|
public let m2Version: Swift.String
|
||||||
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
||||||
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
||||||
@ -132,6 +140,7 @@ public struct M2HTTP {
|
|||||||
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@available(*, deprecated, message: "M2Image is deprecated. Use M2Image2 instead.")
|
||||||
public struct M2Image {
|
public struct M2Image {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@ -140,6 +149,14 @@ public struct M2Image {
|
|||||||
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public struct M2Image2 {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
|
#endif
|
||||||
|
}
|
||||||
public struct M2K {
|
public struct M2K {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
@ -6,51 +6,51 @@
|
|||||||
<dict>
|
<dict>
|
||||||
<key>Headers/M2Kit-Swift.h</key>
|
<key>Headers/M2Kit-Swift.h</key>
|
||||||
<data>
|
<data>
|
||||||
HgQ5BJ7Qjy8imibHHdUTYGtpNxM=
|
NgFFzUiog7sDYxU5OlrS370BZo4=
|
||||||
</data>
|
</data>
|
||||||
<key>Info.plist</key>
|
<key>Info.plist</key>
|
||||||
<data>
|
<data>
|
||||||
NFqD13jpsJyQ010t00mgZo+Q3SE=
|
xN4GDcUeZ9JhZpxdf+KxcQLNKxo=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
||||||
<data>
|
<data>
|
||||||
TfPQVQXAUUy0VhUE7F9wVlgBd4g=
|
Q/heEcDPyytObAHeOk+wtFBIydY=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
||||||
<data>
|
<data>
|
||||||
Wdl/bSWh8D0ZST7ZffXqHzwCDcs=
|
4nv/pfwNXzenr0LFsy1hkd2gTEQ=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
||||||
<data>
|
<data>
|
||||||
4S3JFaIFpHm+YXPuWgDiHxrDu9A=
|
gAYKkXI9dIODG5xP0AUaUnC1QiA=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
||||||
<data>
|
<data>
|
||||||
Wdl/bSWh8D0ZST7ZffXqHzwCDcs=
|
4nv/pfwNXzenr0LFsy1hkd2gTEQ=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
||||||
<data>
|
<data>
|
||||||
p2422KKaCD0AtaFYENuU0hQKsq8=
|
IpdvIwowB0x7rDXcjzuc1I9gUKw=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
||||||
<data>
|
<data>
|
||||||
TfPQVQXAUUy0VhUE7F9wVlgBd4g=
|
Q/heEcDPyytObAHeOk+wtFBIydY=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
||||||
<data>
|
<data>
|
||||||
E4OkKnlS4W0dfpeM2EYBeAVnMu8=
|
89dyWTGJPeQ7KagK3sNb5ZEvzrs=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
||||||
<data>
|
<data>
|
||||||
umco4iGsrJPg10j2lBW8l9A2gHk=
|
YQ2Xic1Ncz3oyq8iKnGEFmGpmIE=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
||||||
<data>
|
<data>
|
||||||
E4OkKnlS4W0dfpeM2EYBeAVnMu8=
|
89dyWTGJPeQ7KagK3sNb5ZEvzrs=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
||||||
<data>
|
<data>
|
||||||
NvKJdrMVs67UVU9pd6r39U41Hfg=
|
0sjeLIa5X7X8wWLyZG8j7IvG0Fo=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/module.modulemap</key>
|
<key>Modules/module.modulemap</key>
|
||||||
<data>
|
<data>
|
||||||
@ -63,77 +63,77 @@
|
|||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
JBTjeqR9+/p6v/2/PGxpBiZolgiU6pwhlNgM9TKmYUI=
|
B6/7i532nXZ2zw4EoaQs8rldJSlkv4J+tYwBcDYWcdI=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
ZL1xVAjZeFTwhY7mF6Ywdt5I95PPxC/repe5NqdCYso=
|
0NuiNCJtSAlbG43SjD/j7ey2lEk+djmS339Ob/d6iA4=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
Kb4RPLhN3hG2ZaCTJyiDjuyZs4AuH4laOuO0rKcrCGk=
|
bM30wqXEcLMaTKL4HEhp8Pcg0vVyeRbjkpF96PGn9Xc=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
lBLaciRorEVxcUBFUZSZYCbgIBWz3+V8fQYn21hIsNs=
|
dFiycdXiCzP77in6R4xTAya9ds2n/FBIvoi823ab1ME=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
Kb4RPLhN3hG2ZaCTJyiDjuyZs4AuH4laOuO0rKcrCGk=
|
bM30wqXEcLMaTKL4HEhp8Pcg0vVyeRbjkpF96PGn9Xc=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
wTxLjHnqfXm7/unmakxu+KKsvcEZTeXOgOZ66RXvfL4=
|
oAK2RWToJqjmL56Zyqi+hqo1p1BL/rA65RiXvxIVzVs=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
ZL1xVAjZeFTwhY7mF6Ywdt5I95PPxC/repe5NqdCYso=
|
0NuiNCJtSAlbG43SjD/j7ey2lEk+djmS339Ob/d6iA4=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
Ynfjfr42+TrMpXb71dClmLlE65wRBW6YYqMQBWToWSQ=
|
HlsXKKcH0SN7XjcnnjWbAQH1nL0SJ0Nk6ky8VDeQg5Q=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
CrzU935lzOoeXLTE/dv95FRQ5+oMoHSjDxrjCpgOPq8=
|
WHNTWHjfhTYqvh2ej76LAVNbjiNAK/BNghzWOQbsm24=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
Ynfjfr42+TrMpXb71dClmLlE65wRBW6YYqMQBWToWSQ=
|
HlsXKKcH0SN7XjcnnjWbAQH1nL0SJ0Nk6ky8VDeQg5Q=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
Z6v0syHFV2qtJwnYYMsDcGTIC+SQA4emZGZ4PQkORoM=
|
jly+13iFa+sNeVAiSIA9Y2fdo0IcCc4+CnNybyIWHxk=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/module.modulemap</key>
|
<key>Modules/module.modulemap</key>
|
||||||
|
|||||||
Reference in New Issue
Block a user