Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 890670b88b | |||
| 1c1ee38e1d | |||
| ce884a0f84 |
@ -4,6 +4,23 @@
|
|||||||
<dict>
|
<dict>
|
||||||
<key>AvailableLibraries</key>
|
<key>AvailableLibraries</key>
|
||||||
<array>
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>BinaryPath</key>
|
||||||
|
<string>M2Kit.framework/M2Kit</string>
|
||||||
|
<key>LibraryIdentifier</key>
|
||||||
|
<string>ios-arm64_x86_64-simulator</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>simulator</string>
|
||||||
|
</dict>
|
||||||
<dict>
|
<dict>
|
||||||
<key>BinaryPath</key>
|
<key>BinaryPath</key>
|
||||||
<string>M2Kit.framework/M2Kit</string>
|
<string>M2Kit.framework/M2Kit</string>
|
||||||
@ -35,23 +52,6 @@
|
|||||||
<key>SupportedPlatformVariant</key>
|
<key>SupportedPlatformVariant</key>
|
||||||
<string>maccatalyst</string>
|
<string>maccatalyst</string>
|
||||||
</dict>
|
</dict>
|
||||||
<dict>
|
|
||||||
<key>BinaryPath</key>
|
|
||||||
<string>M2Kit.framework/M2Kit</string>
|
|
||||||
<key>LibraryIdentifier</key>
|
|
||||||
<string>ios-arm64_x86_64-simulator</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>simulator</string>
|
|
||||||
</dict>
|
|
||||||
</array>
|
</array>
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>XFWK</string>
|
<string>XFWK</string>
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -6,6 +6,8 @@ import Combine
|
|||||||
import CommonCrypto
|
import CommonCrypto
|
||||||
import Foundation
|
import Foundation
|
||||||
import JavaScriptCore
|
import JavaScriptCore
|
||||||
|
import Network
|
||||||
|
import StoreKit
|
||||||
import Swift
|
import Swift
|
||||||
import SwiftUI
|
import SwiftUI
|
||||||
import UIKit
|
import UIKit
|
||||||
@ -13,26 +15,29 @@ import WebKit
|
|||||||
import _Concurrency
|
import _Concurrency
|
||||||
import _StringProcessing
|
import _StringProcessing
|
||||||
import _SwiftConcurrencyShims
|
import _SwiftConcurrencyShims
|
||||||
public struct M2Image {
|
@_Concurrency.MainActor public struct M2Image {
|
||||||
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
}
|
}
|
||||||
public struct M2HTTP {
|
@_Concurrency.MainActor public struct M2HTTP {
|
||||||
public static func getDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
public static func getData(url: Foundation.URL) async -> Foundation.Data?
|
@_Concurrency.MainActor public static func getData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
public static func getImageDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getImageDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2Feedback {
|
||||||
|
@_Concurrency.MainActor public static func sendFeedback(content: Swift.String, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
}
|
}
|
||||||
public let m2Version: Swift.String
|
public let m2Version: Swift.String
|
||||||
public func setServiceType(_ type: Swift.String)
|
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
||||||
public func setLogLevel(_ value: Swift.Int)
|
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
||||||
public struct M2Backup {
|
@_Concurrency.MainActor public struct M2Backup {
|
||||||
public static var backupCode: Swift.String {
|
@_Concurrency.MainActor public static var backupCode: Swift.String {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
@_Concurrency.MainActor public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int) -> Swift.Void)
|
@_Concurrency.MainActor public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
extension M2Kit.M2API {
|
||||||
@_Concurrency.MainActor public static func searchVideos(title: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
@_Concurrency.MainActor public static func searchVideos(title: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
@ -88,34 +93,34 @@ extension M2Kit.M2API {
|
|||||||
extension M2Kit.M2API {
|
extension M2Kit.M2API {
|
||||||
public static func getLinkPlayEx(videoId: Swift.String, result: @escaping (_ videoUrl: Foundation.URL?, _ videoId: Swift.String) -> Swift.Void)
|
public static func getLinkPlayEx(videoId: Swift.String, result: @escaping (_ videoUrl: Foundation.URL?, _ videoId: Swift.String) -> Swift.Void)
|
||||||
}
|
}
|
||||||
@_Concurrency.MainActor @preconcurrency public struct M2WebView : SwiftUI.UIViewControllerRepresentable {
|
@_Concurrency.MainActor public struct M2WebView : SwiftUI.UIViewControllerRepresentable {
|
||||||
@_Concurrency.MainActor @preconcurrency public init()
|
@_Concurrency.MainActor public init()
|
||||||
@_Concurrency.MainActor @preconcurrency public func makeUIViewController(context: M2Kit.M2WebView.Context) -> M2Kit.M2WebVC
|
@_Concurrency.MainActor @preconcurrency public func makeUIViewController(context: M2Kit.M2WebView.Context) -> M2Kit.M2WebVC
|
||||||
@_Concurrency.MainActor @preconcurrency public func updateUIViewController(_ uiViewController: M2Kit.M2WebVC, context: M2Kit.M2WebView.Context)
|
@_Concurrency.MainActor @preconcurrency public func updateUIViewController(_ uiViewController: M2Kit.M2WebVC, context: M2Kit.M2WebView.Context)
|
||||||
public typealias Body = Swift.Never
|
public typealias Body = Swift.Never
|
||||||
public typealias Coordinator = Swift.Void
|
public typealias Coordinator = Swift.Void
|
||||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||||
}
|
}
|
||||||
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor @preconcurrency public class M2WebVC : UIKit.UIViewController {
|
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
||||||
@_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad()
|
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
||||||
@_Concurrency.MainActor @preconcurrency @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
|
@_Concurrency.MainActor @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
|
||||||
@_Concurrency.MainActor @preconcurrency @objc required dynamic public init?(coder: Foundation.NSCoder)
|
@_Concurrency.MainActor @objc required dynamic public init?(coder: Foundation.NSCoder)
|
||||||
@objc deinit
|
@objc deinit
|
||||||
}
|
}
|
||||||
public struct M2Utils {
|
@_Concurrency.MainActor public struct M2Utils {
|
||||||
public static func workFor(trackID: Swift.String)
|
@_Concurrency.MainActor public static func workFor(trackID: Swift.String)
|
||||||
public static let workForChangedNotification: Foundation.Notification.Name
|
@_Concurrency.MainActor public static let workForChangedNotification: Foundation.Notification.Name
|
||||||
public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
@_Concurrency.MainActor public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
||||||
public static func deleteDataOf(trackID: Swift.String)
|
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||||
public static func filePathOf(trackID: Swift.String) -> Swift.String
|
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Utils {
|
extension M2Kit.M2Utils {
|
||||||
public static var countryCode: Swift.String {
|
@_Concurrency.MainActor public static var countryCode: Swift.String {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Utils {
|
extension M2Kit.M2Utils {
|
||||||
public static func randomCode() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode() -> Swift.String
|
||||||
}
|
}
|
||||||
@_hasMissingDesignatedInitializers public class M2Setting {
|
@_hasMissingDesignatedInitializers public class M2Setting {
|
||||||
public static var option10: Swift.String {
|
public static var option10: Swift.String {
|
||||||
@ -390,37 +395,53 @@ extension M2Kit.M2Utils {
|
|||||||
}
|
}
|
||||||
@objc deinit
|
@objc deinit
|
||||||
}
|
}
|
||||||
public struct M2Radio {
|
@_Concurrency.MainActor public struct M2Radio {
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func countriesSupported(result: @escaping (_ countries: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func countriesSupported(result: @escaping (_ countries: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func getHTTPHeaderMT() -> [Swift.String : Swift.String]
|
@_Concurrency.MainActor public static func getHTTPHeaderMT() -> [Swift.String : Swift.String]
|
||||||
public static func changeRadioCountryCode(_ code: Swift.String)
|
@_Concurrency.MainActor public static func changeRadioCountryCode(_ code: Swift.String)
|
||||||
public static func getCurrentRadioCountryCode() -> Swift.String
|
@_Concurrency.MainActor public static func getCurrentRadioCountryCode() -> Swift.String
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func searchStationsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func searchStationsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func topStationsEx(token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func topStationsEx(token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listGenresForRadioEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func listGenresForRadioEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func listStationsByGenresEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listStationsByGenresEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func stationInfoEx(station: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func stationInfoEx(station: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func searchPodcastsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func searchPodcastsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listEpisodesOfPodcastEx(podcast: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ episodes: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listEpisodesOfPodcastEx(podcast: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ episodes: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func topPodcastsEx(token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func topPodcastsEx(token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listGenresForPodcastEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func listGenresForPodcastEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func listPodcastsByGenreEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listPodcastsByGenreEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func podcastInfoEx(podcast: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func podcastInfoEx(podcast: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
public struct M2Musi {
|
@_Concurrency.MainActor public struct M2NetMonitor {
|
||||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public var isConnected: Swift.Bool {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public func stop()
|
||||||
}
|
}
|
||||||
public struct M2K {
|
@_Concurrency.MainActor public struct M2Musi {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
@_Concurrency.MainActor public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2K {
|
||||||
|
@_Concurrency.MainActor public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2Image : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2HTTP : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Feedback : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Backup : Swift.Sendable {}
|
||||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Utils : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Radio : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2NetMonitor : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Musi : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2K : Swift.Sendable {}
|
||||||
|
|||||||
Binary file not shown.
@ -6,6 +6,8 @@ import Combine
|
|||||||
import CommonCrypto
|
import CommonCrypto
|
||||||
import Foundation
|
import Foundation
|
||||||
import JavaScriptCore
|
import JavaScriptCore
|
||||||
|
import Network
|
||||||
|
import StoreKit
|
||||||
import Swift
|
import Swift
|
||||||
import SwiftUI
|
import SwiftUI
|
||||||
import UIKit
|
import UIKit
|
||||||
@ -13,26 +15,29 @@ import WebKit
|
|||||||
import _Concurrency
|
import _Concurrency
|
||||||
import _StringProcessing
|
import _StringProcessing
|
||||||
import _SwiftConcurrencyShims
|
import _SwiftConcurrencyShims
|
||||||
public struct M2Image {
|
@_Concurrency.MainActor public struct M2Image {
|
||||||
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
}
|
}
|
||||||
public struct M2HTTP {
|
@_Concurrency.MainActor public struct M2HTTP {
|
||||||
public static func getDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
public static func getData(url: Foundation.URL) async -> Foundation.Data?
|
@_Concurrency.MainActor public static func getData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
public static func getImageDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getImageDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2Feedback {
|
||||||
|
@_Concurrency.MainActor public static func sendFeedback(content: Swift.String, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
}
|
}
|
||||||
public let m2Version: Swift.String
|
public let m2Version: Swift.String
|
||||||
public func setServiceType(_ type: Swift.String)
|
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
||||||
public func setLogLevel(_ value: Swift.Int)
|
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
||||||
public struct M2Backup {
|
@_Concurrency.MainActor public struct M2Backup {
|
||||||
public static var backupCode: Swift.String {
|
@_Concurrency.MainActor public static var backupCode: Swift.String {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
@_Concurrency.MainActor public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int) -> Swift.Void)
|
@_Concurrency.MainActor public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
extension M2Kit.M2API {
|
||||||
@_Concurrency.MainActor public static func searchVideos(title: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
@_Concurrency.MainActor public static func searchVideos(title: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
@ -88,34 +93,34 @@ extension M2Kit.M2API {
|
|||||||
extension M2Kit.M2API {
|
extension M2Kit.M2API {
|
||||||
public static func getLinkPlayEx(videoId: Swift.String, result: @escaping (_ videoUrl: Foundation.URL?, _ videoId: Swift.String) -> Swift.Void)
|
public static func getLinkPlayEx(videoId: Swift.String, result: @escaping (_ videoUrl: Foundation.URL?, _ videoId: Swift.String) -> Swift.Void)
|
||||||
}
|
}
|
||||||
@_Concurrency.MainActor @preconcurrency public struct M2WebView : SwiftUI.UIViewControllerRepresentable {
|
@_Concurrency.MainActor public struct M2WebView : SwiftUI.UIViewControllerRepresentable {
|
||||||
@_Concurrency.MainActor @preconcurrency public init()
|
@_Concurrency.MainActor public init()
|
||||||
@_Concurrency.MainActor @preconcurrency public func makeUIViewController(context: M2Kit.M2WebView.Context) -> M2Kit.M2WebVC
|
@_Concurrency.MainActor @preconcurrency public func makeUIViewController(context: M2Kit.M2WebView.Context) -> M2Kit.M2WebVC
|
||||||
@_Concurrency.MainActor @preconcurrency public func updateUIViewController(_ uiViewController: M2Kit.M2WebVC, context: M2Kit.M2WebView.Context)
|
@_Concurrency.MainActor @preconcurrency public func updateUIViewController(_ uiViewController: M2Kit.M2WebVC, context: M2Kit.M2WebView.Context)
|
||||||
public typealias Body = Swift.Never
|
public typealias Body = Swift.Never
|
||||||
public typealias Coordinator = Swift.Void
|
public typealias Coordinator = Swift.Void
|
||||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||||
}
|
}
|
||||||
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor @preconcurrency public class M2WebVC : UIKit.UIViewController {
|
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
||||||
@_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad()
|
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
||||||
@_Concurrency.MainActor @preconcurrency @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
|
@_Concurrency.MainActor @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
|
||||||
@_Concurrency.MainActor @preconcurrency @objc required dynamic public init?(coder: Foundation.NSCoder)
|
@_Concurrency.MainActor @objc required dynamic public init?(coder: Foundation.NSCoder)
|
||||||
@objc deinit
|
@objc deinit
|
||||||
}
|
}
|
||||||
public struct M2Utils {
|
@_Concurrency.MainActor public struct M2Utils {
|
||||||
public static func workFor(trackID: Swift.String)
|
@_Concurrency.MainActor public static func workFor(trackID: Swift.String)
|
||||||
public static let workForChangedNotification: Foundation.Notification.Name
|
@_Concurrency.MainActor public static let workForChangedNotification: Foundation.Notification.Name
|
||||||
public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
@_Concurrency.MainActor public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
||||||
public static func deleteDataOf(trackID: Swift.String)
|
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||||
public static func filePathOf(trackID: Swift.String) -> Swift.String
|
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Utils {
|
extension M2Kit.M2Utils {
|
||||||
public static var countryCode: Swift.String {
|
@_Concurrency.MainActor public static var countryCode: Swift.String {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Utils {
|
extension M2Kit.M2Utils {
|
||||||
public static func randomCode() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode() -> Swift.String
|
||||||
}
|
}
|
||||||
@_hasMissingDesignatedInitializers public class M2Setting {
|
@_hasMissingDesignatedInitializers public class M2Setting {
|
||||||
public static var option10: Swift.String {
|
public static var option10: Swift.String {
|
||||||
@ -390,37 +395,53 @@ extension M2Kit.M2Utils {
|
|||||||
}
|
}
|
||||||
@objc deinit
|
@objc deinit
|
||||||
}
|
}
|
||||||
public struct M2Radio {
|
@_Concurrency.MainActor public struct M2Radio {
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func countriesSupported(result: @escaping (_ countries: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func countriesSupported(result: @escaping (_ countries: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func getHTTPHeaderMT() -> [Swift.String : Swift.String]
|
@_Concurrency.MainActor public static func getHTTPHeaderMT() -> [Swift.String : Swift.String]
|
||||||
public static func changeRadioCountryCode(_ code: Swift.String)
|
@_Concurrency.MainActor public static func changeRadioCountryCode(_ code: Swift.String)
|
||||||
public static func getCurrentRadioCountryCode() -> Swift.String
|
@_Concurrency.MainActor public static func getCurrentRadioCountryCode() -> Swift.String
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func searchStationsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func searchStationsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func topStationsEx(token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func topStationsEx(token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listGenresForRadioEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func listGenresForRadioEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func listStationsByGenresEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listStationsByGenresEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func stationInfoEx(station: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func stationInfoEx(station: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func searchPodcastsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func searchPodcastsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listEpisodesOfPodcastEx(podcast: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ episodes: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listEpisodesOfPodcastEx(podcast: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ episodes: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func topPodcastsEx(token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func topPodcastsEx(token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listGenresForPodcastEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func listGenresForPodcastEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func listPodcastsByGenreEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listPodcastsByGenreEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func podcastInfoEx(podcast: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func podcastInfoEx(podcast: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
public struct M2Musi {
|
@_Concurrency.MainActor public struct M2NetMonitor {
|
||||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public var isConnected: Swift.Bool {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public func stop()
|
||||||
}
|
}
|
||||||
public struct M2K {
|
@_Concurrency.MainActor public struct M2Musi {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
@_Concurrency.MainActor public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2K {
|
||||||
|
@_Concurrency.MainActor public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2Image : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2HTTP : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Feedback : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Backup : Swift.Sendable {}
|
||||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Utils : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Radio : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2NetMonitor : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Musi : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2K : Swift.Sendable {}
|
||||||
|
|||||||
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -6,6 +6,8 @@ import Combine
|
|||||||
import CommonCrypto
|
import CommonCrypto
|
||||||
import Foundation
|
import Foundation
|
||||||
import JavaScriptCore
|
import JavaScriptCore
|
||||||
|
import Network
|
||||||
|
import StoreKit
|
||||||
import Swift
|
import Swift
|
||||||
import SwiftUI
|
import SwiftUI
|
||||||
import UIKit
|
import UIKit
|
||||||
@ -13,6 +15,14 @@ import WebKit
|
|||||||
import _Concurrency
|
import _Concurrency
|
||||||
import _StringProcessing
|
import _StringProcessing
|
||||||
import _SwiftConcurrencyShims
|
import _SwiftConcurrencyShims
|
||||||
|
@_Concurrency.MainActor public struct M2Backup {
|
||||||
|
@_Concurrency.MainActor public static var backupCode: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int) -> Swift.Void)
|
||||||
|
}
|
||||||
extension M2Kit.M2API {
|
extension M2Kit.M2API {
|
||||||
@_Concurrency.MainActor public static func searchVideos(title: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
@_Concurrency.MainActor public static func searchVideos(title: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
@_Concurrency.MainActor public static func searchPlaylists(title: Swift.String, nextToken: Swift.String?) async -> (playlists: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
@_Concurrency.MainActor public static func searchPlaylists(title: Swift.String, nextToken: Swift.String?) async -> (playlists: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
@ -67,34 +77,34 @@ extension M2Kit.M2API {
|
|||||||
extension M2Kit.M2API {
|
extension M2Kit.M2API {
|
||||||
public static func getLinkPlayEx(videoId: Swift.String, result: @escaping (_ videoUrl: Foundation.URL?, _ videoId: Swift.String) -> Swift.Void)
|
public static func getLinkPlayEx(videoId: Swift.String, result: @escaping (_ videoUrl: Foundation.URL?, _ videoId: Swift.String) -> Swift.Void)
|
||||||
}
|
}
|
||||||
@_Concurrency.MainActor @preconcurrency public struct M2WebView : SwiftUI.UIViewControllerRepresentable {
|
@_Concurrency.MainActor public struct M2WebView : SwiftUI.UIViewControllerRepresentable {
|
||||||
@_Concurrency.MainActor @preconcurrency public init()
|
@_Concurrency.MainActor public init()
|
||||||
@_Concurrency.MainActor @preconcurrency public func makeUIViewController(context: M2Kit.M2WebView.Context) -> M2Kit.M2WebVC
|
@_Concurrency.MainActor @preconcurrency public func makeUIViewController(context: M2Kit.M2WebView.Context) -> M2Kit.M2WebVC
|
||||||
@_Concurrency.MainActor @preconcurrency public func updateUIViewController(_ uiViewController: M2Kit.M2WebVC, context: M2Kit.M2WebView.Context)
|
@_Concurrency.MainActor @preconcurrency public func updateUIViewController(_ uiViewController: M2Kit.M2WebVC, context: M2Kit.M2WebView.Context)
|
||||||
public typealias Body = Swift.Never
|
public typealias Body = Swift.Never
|
||||||
public typealias Coordinator = Swift.Void
|
public typealias Coordinator = Swift.Void
|
||||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||||
}
|
}
|
||||||
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor @preconcurrency public class M2WebVC : UIKit.UIViewController {
|
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
||||||
@_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad()
|
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
||||||
@_Concurrency.MainActor @preconcurrency @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
|
@_Concurrency.MainActor @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
|
||||||
@_Concurrency.MainActor @preconcurrency @objc required dynamic public init?(coder: Foundation.NSCoder)
|
@_Concurrency.MainActor @objc required dynamic public init?(coder: Foundation.NSCoder)
|
||||||
@objc deinit
|
@objc deinit
|
||||||
}
|
}
|
||||||
public struct M2Utils {
|
@_Concurrency.MainActor public struct M2Utils {
|
||||||
public static func workFor(trackID: Swift.String)
|
@_Concurrency.MainActor public static func workFor(trackID: Swift.String)
|
||||||
public static let workForChangedNotification: Foundation.Notification.Name
|
@_Concurrency.MainActor public static let workForChangedNotification: Foundation.Notification.Name
|
||||||
public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
@_Concurrency.MainActor public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
||||||
public static func deleteDataOf(trackID: Swift.String)
|
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||||
public static func filePathOf(trackID: Swift.String) -> Swift.String
|
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Utils {
|
extension M2Kit.M2Utils {
|
||||||
public static var countryCode: Swift.String {
|
@_Concurrency.MainActor public static var countryCode: Swift.String {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Utils {
|
extension M2Kit.M2Utils {
|
||||||
public static func randomCode() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode() -> Swift.String
|
||||||
}
|
}
|
||||||
@_hasMissingDesignatedInitializers public class M2Setting {
|
@_hasMissingDesignatedInitializers public class M2Setting {
|
||||||
public static var option10: Swift.String {
|
public static var option10: Swift.String {
|
||||||
@ -369,58 +379,69 @@ extension M2Kit.M2Utils {
|
|||||||
}
|
}
|
||||||
@objc deinit
|
@objc deinit
|
||||||
}
|
}
|
||||||
public struct M2Radio {
|
@_Concurrency.MainActor public struct M2Radio {
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func countriesSupported(result: @escaping (_ countries: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func countriesSupported(result: @escaping (_ countries: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func getHTTPHeaderMT() -> [Swift.String : Swift.String]
|
@_Concurrency.MainActor public static func getHTTPHeaderMT() -> [Swift.String : Swift.String]
|
||||||
public static func changeRadioCountryCode(_ code: Swift.String)
|
@_Concurrency.MainActor public static func changeRadioCountryCode(_ code: Swift.String)
|
||||||
public static func getCurrentRadioCountryCode() -> Swift.String
|
@_Concurrency.MainActor public static func getCurrentRadioCountryCode() -> Swift.String
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func searchStationsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func searchStationsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func topStationsEx(token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func topStationsEx(token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listGenresForRadioEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func listGenresForRadioEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func listStationsByGenresEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listStationsByGenresEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func stationInfoEx(station: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func stationInfoEx(station: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func searchPodcastsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func searchPodcastsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listEpisodesOfPodcastEx(podcast: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ episodes: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listEpisodesOfPodcastEx(podcast: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ episodes: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func topPodcastsEx(token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func topPodcastsEx(token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listGenresForPodcastEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func listGenresForPodcastEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func listPodcastsByGenreEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listPodcastsByGenreEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func podcastInfoEx(podcast: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func podcastInfoEx(podcast: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
public struct M2Musi {
|
@_Concurrency.MainActor public struct M2NetMonitor {
|
||||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||||
}
|
@_Concurrency.MainActor public var isConnected: Swift.Bool {
|
||||||
public struct M2K {
|
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
|
||||||
}
|
|
||||||
public struct M2Image {
|
|
||||||
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
|
||||||
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
|
||||||
}
|
|
||||||
public struct M2HTTP {
|
|
||||||
public static func getDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
|
||||||
public static func getData(url: Foundation.URL) async -> Foundation.Data?
|
|
||||||
public static func getImageDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
|
||||||
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
|
||||||
}
|
|
||||||
public let m2Version: Swift.String
|
|
||||||
public func setServiceType(_ type: Swift.String)
|
|
||||||
public func setLogLevel(_ value: Swift.Int)
|
|
||||||
public struct M2Backup {
|
|
||||||
public static var backupCode: Swift.String {
|
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
@_Concurrency.MainActor public func stop()
|
||||||
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
|
||||||
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int) -> Swift.Void)
|
|
||||||
}
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2Musi {
|
||||||
|
@_Concurrency.MainActor public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2K {
|
||||||
|
@_Concurrency.MainActor public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2Image {
|
||||||
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2HTTP {
|
||||||
|
@_Concurrency.MainActor public static func getDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
|
@_Concurrency.MainActor public static func getImageDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2Feedback {
|
||||||
|
@_Concurrency.MainActor public static func sendFeedback(content: Swift.String, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
}
|
||||||
|
public let m2Version: Swift.String
|
||||||
|
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
||||||
|
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
||||||
|
extension M2Kit.M2Backup : Swift.Sendable {}
|
||||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Utils : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Radio : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2NetMonitor : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Musi : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2K : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Image : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2HTTP : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Feedback : Swift.Sendable {}
|
||||||
|
|||||||
Binary file not shown.
@ -6,6 +6,8 @@ import Combine
|
|||||||
import CommonCrypto
|
import CommonCrypto
|
||||||
import Foundation
|
import Foundation
|
||||||
import JavaScriptCore
|
import JavaScriptCore
|
||||||
|
import Network
|
||||||
|
import StoreKit
|
||||||
import Swift
|
import Swift
|
||||||
import SwiftUI
|
import SwiftUI
|
||||||
import UIKit
|
import UIKit
|
||||||
@ -13,6 +15,14 @@ import WebKit
|
|||||||
import _Concurrency
|
import _Concurrency
|
||||||
import _StringProcessing
|
import _StringProcessing
|
||||||
import _SwiftConcurrencyShims
|
import _SwiftConcurrencyShims
|
||||||
|
@_Concurrency.MainActor public struct M2Backup {
|
||||||
|
@_Concurrency.MainActor public static var backupCode: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int) -> Swift.Void)
|
||||||
|
}
|
||||||
extension M2Kit.M2API {
|
extension M2Kit.M2API {
|
||||||
@_Concurrency.MainActor public static func searchVideos(title: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
@_Concurrency.MainActor public static func searchVideos(title: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
@_Concurrency.MainActor public static func searchPlaylists(title: Swift.String, nextToken: Swift.String?) async -> (playlists: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
@_Concurrency.MainActor public static func searchPlaylists(title: Swift.String, nextToken: Swift.String?) async -> (playlists: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
@ -67,34 +77,34 @@ extension M2Kit.M2API {
|
|||||||
extension M2Kit.M2API {
|
extension M2Kit.M2API {
|
||||||
public static func getLinkPlayEx(videoId: Swift.String, result: @escaping (_ videoUrl: Foundation.URL?, _ videoId: Swift.String) -> Swift.Void)
|
public static func getLinkPlayEx(videoId: Swift.String, result: @escaping (_ videoUrl: Foundation.URL?, _ videoId: Swift.String) -> Swift.Void)
|
||||||
}
|
}
|
||||||
@_Concurrency.MainActor @preconcurrency public struct M2WebView : SwiftUI.UIViewControllerRepresentable {
|
@_Concurrency.MainActor public struct M2WebView : SwiftUI.UIViewControllerRepresentable {
|
||||||
@_Concurrency.MainActor @preconcurrency public init()
|
@_Concurrency.MainActor public init()
|
||||||
@_Concurrency.MainActor @preconcurrency public func makeUIViewController(context: M2Kit.M2WebView.Context) -> M2Kit.M2WebVC
|
@_Concurrency.MainActor @preconcurrency public func makeUIViewController(context: M2Kit.M2WebView.Context) -> M2Kit.M2WebVC
|
||||||
@_Concurrency.MainActor @preconcurrency public func updateUIViewController(_ uiViewController: M2Kit.M2WebVC, context: M2Kit.M2WebView.Context)
|
@_Concurrency.MainActor @preconcurrency public func updateUIViewController(_ uiViewController: M2Kit.M2WebVC, context: M2Kit.M2WebView.Context)
|
||||||
public typealias Body = Swift.Never
|
public typealias Body = Swift.Never
|
||||||
public typealias Coordinator = Swift.Void
|
public typealias Coordinator = Swift.Void
|
||||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||||
}
|
}
|
||||||
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor @preconcurrency public class M2WebVC : UIKit.UIViewController {
|
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
||||||
@_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad()
|
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
||||||
@_Concurrency.MainActor @preconcurrency @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
|
@_Concurrency.MainActor @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
|
||||||
@_Concurrency.MainActor @preconcurrency @objc required dynamic public init?(coder: Foundation.NSCoder)
|
@_Concurrency.MainActor @objc required dynamic public init?(coder: Foundation.NSCoder)
|
||||||
@objc deinit
|
@objc deinit
|
||||||
}
|
}
|
||||||
public struct M2Utils {
|
@_Concurrency.MainActor public struct M2Utils {
|
||||||
public static func workFor(trackID: Swift.String)
|
@_Concurrency.MainActor public static func workFor(trackID: Swift.String)
|
||||||
public static let workForChangedNotification: Foundation.Notification.Name
|
@_Concurrency.MainActor public static let workForChangedNotification: Foundation.Notification.Name
|
||||||
public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
@_Concurrency.MainActor public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
||||||
public static func deleteDataOf(trackID: Swift.String)
|
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||||
public static func filePathOf(trackID: Swift.String) -> Swift.String
|
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Utils {
|
extension M2Kit.M2Utils {
|
||||||
public static var countryCode: Swift.String {
|
@_Concurrency.MainActor public static var countryCode: Swift.String {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Utils {
|
extension M2Kit.M2Utils {
|
||||||
public static func randomCode() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode() -> Swift.String
|
||||||
}
|
}
|
||||||
@_hasMissingDesignatedInitializers public class M2Setting {
|
@_hasMissingDesignatedInitializers public class M2Setting {
|
||||||
public static var option10: Swift.String {
|
public static var option10: Swift.String {
|
||||||
@ -369,58 +379,69 @@ extension M2Kit.M2Utils {
|
|||||||
}
|
}
|
||||||
@objc deinit
|
@objc deinit
|
||||||
}
|
}
|
||||||
public struct M2Radio {
|
@_Concurrency.MainActor public struct M2Radio {
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func countriesSupported(result: @escaping (_ countries: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func countriesSupported(result: @escaping (_ countries: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func getHTTPHeaderMT() -> [Swift.String : Swift.String]
|
@_Concurrency.MainActor public static func getHTTPHeaderMT() -> [Swift.String : Swift.String]
|
||||||
public static func changeRadioCountryCode(_ code: Swift.String)
|
@_Concurrency.MainActor public static func changeRadioCountryCode(_ code: Swift.String)
|
||||||
public static func getCurrentRadioCountryCode() -> Swift.String
|
@_Concurrency.MainActor public static func getCurrentRadioCountryCode() -> Swift.String
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func searchStationsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func searchStationsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func topStationsEx(token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func topStationsEx(token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listGenresForRadioEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func listGenresForRadioEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func listStationsByGenresEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listStationsByGenresEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func stationInfoEx(station: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func stationInfoEx(station: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func searchPodcastsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func searchPodcastsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listEpisodesOfPodcastEx(podcast: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ episodes: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listEpisodesOfPodcastEx(podcast: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ episodes: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func topPodcastsEx(token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func topPodcastsEx(token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listGenresForPodcastEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func listGenresForPodcastEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func listPodcastsByGenreEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listPodcastsByGenreEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func podcastInfoEx(podcast: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func podcastInfoEx(podcast: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
public struct M2Musi {
|
@_Concurrency.MainActor public struct M2NetMonitor {
|
||||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||||
}
|
@_Concurrency.MainActor public var isConnected: Swift.Bool {
|
||||||
public struct M2K {
|
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
|
||||||
}
|
|
||||||
public struct M2Image {
|
|
||||||
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
|
||||||
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
|
||||||
}
|
|
||||||
public struct M2HTTP {
|
|
||||||
public static func getDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
|
||||||
public static func getData(url: Foundation.URL) async -> Foundation.Data?
|
|
||||||
public static func getImageDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
|
||||||
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
|
||||||
}
|
|
||||||
public let m2Version: Swift.String
|
|
||||||
public func setServiceType(_ type: Swift.String)
|
|
||||||
public func setLogLevel(_ value: Swift.Int)
|
|
||||||
public struct M2Backup {
|
|
||||||
public static var backupCode: Swift.String {
|
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
@_Concurrency.MainActor public func stop()
|
||||||
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
|
||||||
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int) -> Swift.Void)
|
|
||||||
}
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2Musi {
|
||||||
|
@_Concurrency.MainActor public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2K {
|
||||||
|
@_Concurrency.MainActor public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2Image {
|
||||||
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2HTTP {
|
||||||
|
@_Concurrency.MainActor public static func getDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
|
@_Concurrency.MainActor public static func getImageDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2Feedback {
|
||||||
|
@_Concurrency.MainActor public static func sendFeedback(content: Swift.String, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
}
|
||||||
|
public let m2Version: Swift.String
|
||||||
|
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
||||||
|
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
||||||
|
extension M2Kit.M2Backup : Swift.Sendable {}
|
||||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Utils : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Radio : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2NetMonitor : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Musi : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2K : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Image : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2HTTP : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Feedback : Swift.Sendable {}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@ -6,6 +6,8 @@ import Combine
|
|||||||
import CommonCrypto
|
import CommonCrypto
|
||||||
import Foundation
|
import Foundation
|
||||||
import JavaScriptCore
|
import JavaScriptCore
|
||||||
|
import Network
|
||||||
|
import StoreKit
|
||||||
import Swift
|
import Swift
|
||||||
import SwiftUI
|
import SwiftUI
|
||||||
import UIKit
|
import UIKit
|
||||||
@ -13,6 +15,14 @@ import WebKit
|
|||||||
import _Concurrency
|
import _Concurrency
|
||||||
import _StringProcessing
|
import _StringProcessing
|
||||||
import _SwiftConcurrencyShims
|
import _SwiftConcurrencyShims
|
||||||
|
@_Concurrency.MainActor public struct M2Backup {
|
||||||
|
@_Concurrency.MainActor public static var backupCode: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int) -> Swift.Void)
|
||||||
|
}
|
||||||
extension M2Kit.M2API {
|
extension M2Kit.M2API {
|
||||||
@_Concurrency.MainActor public static func searchVideos(title: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
@_Concurrency.MainActor public static func searchVideos(title: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
@_Concurrency.MainActor public static func searchPlaylists(title: Swift.String, nextToken: Swift.String?) async -> (playlists: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
@_Concurrency.MainActor public static func searchPlaylists(title: Swift.String, nextToken: Swift.String?) async -> (playlists: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
@ -67,34 +77,34 @@ extension M2Kit.M2API {
|
|||||||
extension M2Kit.M2API {
|
extension M2Kit.M2API {
|
||||||
public static func getLinkPlayEx(videoId: Swift.String, result: @escaping (_ videoUrl: Foundation.URL?, _ videoId: Swift.String) -> Swift.Void)
|
public static func getLinkPlayEx(videoId: Swift.String, result: @escaping (_ videoUrl: Foundation.URL?, _ videoId: Swift.String) -> Swift.Void)
|
||||||
}
|
}
|
||||||
@_Concurrency.MainActor @preconcurrency public struct M2WebView : SwiftUI.UIViewControllerRepresentable {
|
@_Concurrency.MainActor public struct M2WebView : SwiftUI.UIViewControllerRepresentable {
|
||||||
@_Concurrency.MainActor @preconcurrency public init()
|
@_Concurrency.MainActor public init()
|
||||||
@_Concurrency.MainActor @preconcurrency public func makeUIViewController(context: M2Kit.M2WebView.Context) -> M2Kit.M2WebVC
|
@_Concurrency.MainActor @preconcurrency public func makeUIViewController(context: M2Kit.M2WebView.Context) -> M2Kit.M2WebVC
|
||||||
@_Concurrency.MainActor @preconcurrency public func updateUIViewController(_ uiViewController: M2Kit.M2WebVC, context: M2Kit.M2WebView.Context)
|
@_Concurrency.MainActor @preconcurrency public func updateUIViewController(_ uiViewController: M2Kit.M2WebVC, context: M2Kit.M2WebView.Context)
|
||||||
public typealias Body = Swift.Never
|
public typealias Body = Swift.Never
|
||||||
public typealias Coordinator = Swift.Void
|
public typealias Coordinator = Swift.Void
|
||||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||||
}
|
}
|
||||||
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor @preconcurrency public class M2WebVC : UIKit.UIViewController {
|
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
||||||
@_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad()
|
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
||||||
@_Concurrency.MainActor @preconcurrency @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
|
@_Concurrency.MainActor @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
|
||||||
@_Concurrency.MainActor @preconcurrency @objc required dynamic public init?(coder: Foundation.NSCoder)
|
@_Concurrency.MainActor @objc required dynamic public init?(coder: Foundation.NSCoder)
|
||||||
@objc deinit
|
@objc deinit
|
||||||
}
|
}
|
||||||
public struct M2Utils {
|
@_Concurrency.MainActor public struct M2Utils {
|
||||||
public static func workFor(trackID: Swift.String)
|
@_Concurrency.MainActor public static func workFor(trackID: Swift.String)
|
||||||
public static let workForChangedNotification: Foundation.Notification.Name
|
@_Concurrency.MainActor public static let workForChangedNotification: Foundation.Notification.Name
|
||||||
public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
@_Concurrency.MainActor public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
||||||
public static func deleteDataOf(trackID: Swift.String)
|
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||||
public static func filePathOf(trackID: Swift.String) -> Swift.String
|
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Utils {
|
extension M2Kit.M2Utils {
|
||||||
public static var countryCode: Swift.String {
|
@_Concurrency.MainActor public static var countryCode: Swift.String {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Utils {
|
extension M2Kit.M2Utils {
|
||||||
public static func randomCode() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode() -> Swift.String
|
||||||
}
|
}
|
||||||
@_hasMissingDesignatedInitializers public class M2Setting {
|
@_hasMissingDesignatedInitializers public class M2Setting {
|
||||||
public static var option10: Swift.String {
|
public static var option10: Swift.String {
|
||||||
@ -369,58 +379,69 @@ extension M2Kit.M2Utils {
|
|||||||
}
|
}
|
||||||
@objc deinit
|
@objc deinit
|
||||||
}
|
}
|
||||||
public struct M2Radio {
|
@_Concurrency.MainActor public struct M2Radio {
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func countriesSupported(result: @escaping (_ countries: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func countriesSupported(result: @escaping (_ countries: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func getHTTPHeaderMT() -> [Swift.String : Swift.String]
|
@_Concurrency.MainActor public static func getHTTPHeaderMT() -> [Swift.String : Swift.String]
|
||||||
public static func changeRadioCountryCode(_ code: Swift.String)
|
@_Concurrency.MainActor public static func changeRadioCountryCode(_ code: Swift.String)
|
||||||
public static func getCurrentRadioCountryCode() -> Swift.String
|
@_Concurrency.MainActor public static func getCurrentRadioCountryCode() -> Swift.String
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func searchStationsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func searchStationsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func topStationsEx(token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func topStationsEx(token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listGenresForRadioEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func listGenresForRadioEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func listStationsByGenresEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listStationsByGenresEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func stationInfoEx(station: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func stationInfoEx(station: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func searchPodcastsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func searchPodcastsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listEpisodesOfPodcastEx(podcast: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ episodes: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listEpisodesOfPodcastEx(podcast: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ episodes: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func topPodcastsEx(token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func topPodcastsEx(token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listGenresForPodcastEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func listGenresForPodcastEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func listPodcastsByGenreEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listPodcastsByGenreEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func podcastInfoEx(podcast: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func podcastInfoEx(podcast: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
public struct M2Musi {
|
@_Concurrency.MainActor public struct M2NetMonitor {
|
||||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||||
}
|
@_Concurrency.MainActor public var isConnected: Swift.Bool {
|
||||||
public struct M2K {
|
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
|
||||||
}
|
|
||||||
public struct M2Image {
|
|
||||||
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
|
||||||
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
|
||||||
}
|
|
||||||
public struct M2HTTP {
|
|
||||||
public static func getDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
|
||||||
public static func getData(url: Foundation.URL) async -> Foundation.Data?
|
|
||||||
public static func getImageDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
|
||||||
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
|
||||||
}
|
|
||||||
public let m2Version: Swift.String
|
|
||||||
public func setServiceType(_ type: Swift.String)
|
|
||||||
public func setLogLevel(_ value: Swift.Int)
|
|
||||||
public struct M2Backup {
|
|
||||||
public static var backupCode: Swift.String {
|
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
@_Concurrency.MainActor public func stop()
|
||||||
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
|
||||||
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int) -> Swift.Void)
|
|
||||||
}
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2Musi {
|
||||||
|
@_Concurrency.MainActor public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2K {
|
||||||
|
@_Concurrency.MainActor public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2Image {
|
||||||
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2HTTP {
|
||||||
|
@_Concurrency.MainActor public static func getDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
|
@_Concurrency.MainActor public static func getImageDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2Feedback {
|
||||||
|
@_Concurrency.MainActor public static func sendFeedback(content: Swift.String, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
}
|
||||||
|
public let m2Version: Swift.String
|
||||||
|
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
||||||
|
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
||||||
|
extension M2Kit.M2Backup : Swift.Sendable {}
|
||||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Utils : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Radio : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2NetMonitor : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Musi : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2K : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Image : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2HTTP : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Feedback : Swift.Sendable {}
|
||||||
|
|||||||
Binary file not shown.
@ -6,6 +6,8 @@ import Combine
|
|||||||
import CommonCrypto
|
import CommonCrypto
|
||||||
import Foundation
|
import Foundation
|
||||||
import JavaScriptCore
|
import JavaScriptCore
|
||||||
|
import Network
|
||||||
|
import StoreKit
|
||||||
import Swift
|
import Swift
|
||||||
import SwiftUI
|
import SwiftUI
|
||||||
import UIKit
|
import UIKit
|
||||||
@ -13,6 +15,14 @@ import WebKit
|
|||||||
import _Concurrency
|
import _Concurrency
|
||||||
import _StringProcessing
|
import _StringProcessing
|
||||||
import _SwiftConcurrencyShims
|
import _SwiftConcurrencyShims
|
||||||
|
@_Concurrency.MainActor public struct M2Backup {
|
||||||
|
@_Concurrency.MainActor public static var backupCode: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int) -> Swift.Void)
|
||||||
|
}
|
||||||
extension M2Kit.M2API {
|
extension M2Kit.M2API {
|
||||||
@_Concurrency.MainActor public static func searchVideos(title: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
@_Concurrency.MainActor public static func searchVideos(title: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
@_Concurrency.MainActor public static func searchPlaylists(title: Swift.String, nextToken: Swift.String?) async -> (playlists: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
@_Concurrency.MainActor public static func searchPlaylists(title: Swift.String, nextToken: Swift.String?) async -> (playlists: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
@ -67,34 +77,34 @@ extension M2Kit.M2API {
|
|||||||
extension M2Kit.M2API {
|
extension M2Kit.M2API {
|
||||||
public static func getLinkPlayEx(videoId: Swift.String, result: @escaping (_ videoUrl: Foundation.URL?, _ videoId: Swift.String) -> Swift.Void)
|
public static func getLinkPlayEx(videoId: Swift.String, result: @escaping (_ videoUrl: Foundation.URL?, _ videoId: Swift.String) -> Swift.Void)
|
||||||
}
|
}
|
||||||
@_Concurrency.MainActor @preconcurrency public struct M2WebView : SwiftUI.UIViewControllerRepresentable {
|
@_Concurrency.MainActor public struct M2WebView : SwiftUI.UIViewControllerRepresentable {
|
||||||
@_Concurrency.MainActor @preconcurrency public init()
|
@_Concurrency.MainActor public init()
|
||||||
@_Concurrency.MainActor @preconcurrency public func makeUIViewController(context: M2Kit.M2WebView.Context) -> M2Kit.M2WebVC
|
@_Concurrency.MainActor @preconcurrency public func makeUIViewController(context: M2Kit.M2WebView.Context) -> M2Kit.M2WebVC
|
||||||
@_Concurrency.MainActor @preconcurrency public func updateUIViewController(_ uiViewController: M2Kit.M2WebVC, context: M2Kit.M2WebView.Context)
|
@_Concurrency.MainActor @preconcurrency public func updateUIViewController(_ uiViewController: M2Kit.M2WebVC, context: M2Kit.M2WebView.Context)
|
||||||
public typealias Body = Swift.Never
|
public typealias Body = Swift.Never
|
||||||
public typealias Coordinator = Swift.Void
|
public typealias Coordinator = Swift.Void
|
||||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||||
}
|
}
|
||||||
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor @preconcurrency public class M2WebVC : UIKit.UIViewController {
|
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
||||||
@_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad()
|
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
||||||
@_Concurrency.MainActor @preconcurrency @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
|
@_Concurrency.MainActor @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
|
||||||
@_Concurrency.MainActor @preconcurrency @objc required dynamic public init?(coder: Foundation.NSCoder)
|
@_Concurrency.MainActor @objc required dynamic public init?(coder: Foundation.NSCoder)
|
||||||
@objc deinit
|
@objc deinit
|
||||||
}
|
}
|
||||||
public struct M2Utils {
|
@_Concurrency.MainActor public struct M2Utils {
|
||||||
public static func workFor(trackID: Swift.String)
|
@_Concurrency.MainActor public static func workFor(trackID: Swift.String)
|
||||||
public static let workForChangedNotification: Foundation.Notification.Name
|
@_Concurrency.MainActor public static let workForChangedNotification: Foundation.Notification.Name
|
||||||
public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
@_Concurrency.MainActor public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
||||||
public static func deleteDataOf(trackID: Swift.String)
|
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||||
public static func filePathOf(trackID: Swift.String) -> Swift.String
|
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Utils {
|
extension M2Kit.M2Utils {
|
||||||
public static var countryCode: Swift.String {
|
@_Concurrency.MainActor public static var countryCode: Swift.String {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Utils {
|
extension M2Kit.M2Utils {
|
||||||
public static func randomCode() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode() -> Swift.String
|
||||||
}
|
}
|
||||||
@_hasMissingDesignatedInitializers public class M2Setting {
|
@_hasMissingDesignatedInitializers public class M2Setting {
|
||||||
public static var option10: Swift.String {
|
public static var option10: Swift.String {
|
||||||
@ -369,58 +379,69 @@ extension M2Kit.M2Utils {
|
|||||||
}
|
}
|
||||||
@objc deinit
|
@objc deinit
|
||||||
}
|
}
|
||||||
public struct M2Radio {
|
@_Concurrency.MainActor public struct M2Radio {
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func countriesSupported(result: @escaping (_ countries: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func countriesSupported(result: @escaping (_ countries: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func getHTTPHeaderMT() -> [Swift.String : Swift.String]
|
@_Concurrency.MainActor public static func getHTTPHeaderMT() -> [Swift.String : Swift.String]
|
||||||
public static func changeRadioCountryCode(_ code: Swift.String)
|
@_Concurrency.MainActor public static func changeRadioCountryCode(_ code: Swift.String)
|
||||||
public static func getCurrentRadioCountryCode() -> Swift.String
|
@_Concurrency.MainActor public static func getCurrentRadioCountryCode() -> Swift.String
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func searchStationsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func searchStationsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func topStationsEx(token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func topStationsEx(token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listGenresForRadioEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func listGenresForRadioEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func listStationsByGenresEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listStationsByGenresEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func stationInfoEx(station: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func stationInfoEx(station: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func searchPodcastsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func searchPodcastsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listEpisodesOfPodcastEx(podcast: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ episodes: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listEpisodesOfPodcastEx(podcast: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ episodes: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func topPodcastsEx(token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func topPodcastsEx(token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listGenresForPodcastEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func listGenresForPodcastEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func listPodcastsByGenreEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listPodcastsByGenreEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func podcastInfoEx(podcast: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func podcastInfoEx(podcast: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
public struct M2Musi {
|
@_Concurrency.MainActor public struct M2NetMonitor {
|
||||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||||
}
|
@_Concurrency.MainActor public var isConnected: Swift.Bool {
|
||||||
public struct M2K {
|
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
|
||||||
}
|
|
||||||
public struct M2Image {
|
|
||||||
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
|
||||||
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
|
||||||
}
|
|
||||||
public struct M2HTTP {
|
|
||||||
public static func getDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
|
||||||
public static func getData(url: Foundation.URL) async -> Foundation.Data?
|
|
||||||
public static func getImageDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
|
||||||
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
|
||||||
}
|
|
||||||
public let m2Version: Swift.String
|
|
||||||
public func setServiceType(_ type: Swift.String)
|
|
||||||
public func setLogLevel(_ value: Swift.Int)
|
|
||||||
public struct M2Backup {
|
|
||||||
public static var backupCode: Swift.String {
|
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
@_Concurrency.MainActor public func stop()
|
||||||
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
|
||||||
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int) -> Swift.Void)
|
|
||||||
}
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2Musi {
|
||||||
|
@_Concurrency.MainActor public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2K {
|
||||||
|
@_Concurrency.MainActor public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2Image {
|
||||||
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2HTTP {
|
||||||
|
@_Concurrency.MainActor public static func getDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
|
@_Concurrency.MainActor public static func getImageDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2Feedback {
|
||||||
|
@_Concurrency.MainActor public static func sendFeedback(content: Swift.String, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
}
|
||||||
|
public let m2Version: Swift.String
|
||||||
|
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
||||||
|
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
||||||
|
extension M2Kit.M2Backup : Swift.Sendable {}
|
||||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Utils : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Radio : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2NetMonitor : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Musi : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2K : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Image : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2HTTP : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Feedback : Swift.Sendable {}
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
<plist version="1.0">
|
<plist version="1.0">
|
||||||
<dict>
|
<dict>
|
||||||
<key>BuildMachineOSBuild</key>
|
<key>BuildMachineOSBuild</key>
|
||||||
<string>24F74</string>
|
<string>24G90</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.0</string>
|
<string>5.3</string>
|
||||||
<key>CFBundleSupportedPlatforms</key>
|
<key>CFBundleSupportedPlatforms</key>
|
||||||
<array>
|
<array>
|
||||||
<string>MacOSX</string>
|
<string>MacOSX</string>
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -6,6 +6,8 @@ import Combine
|
|||||||
import CommonCrypto
|
import CommonCrypto
|
||||||
import Foundation
|
import Foundation
|
||||||
import JavaScriptCore
|
import JavaScriptCore
|
||||||
|
import Network
|
||||||
|
import StoreKit
|
||||||
import Swift
|
import Swift
|
||||||
import SwiftUI
|
import SwiftUI
|
||||||
import UIKit
|
import UIKit
|
||||||
@ -13,23 +15,96 @@ import WebKit
|
|||||||
import _Concurrency
|
import _Concurrency
|
||||||
import _StringProcessing
|
import _StringProcessing
|
||||||
import _SwiftConcurrencyShims
|
import _SwiftConcurrencyShims
|
||||||
public struct M2Utils {
|
@_Concurrency.MainActor public struct M2Backup {
|
||||||
public static func workFor(trackID: Swift.String)
|
@_Concurrency.MainActor public static var backupCode: Swift.String {
|
||||||
public static let workForChangedNotification: Foundation.Notification.Name
|
get
|
||||||
public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
}
|
||||||
public static func deleteDataOf(trackID: Swift.String)
|
@_Concurrency.MainActor public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
public static func filePathOf(trackID: Swift.String) -> Swift.String
|
@_Concurrency.MainActor public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int) -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
@_Concurrency.MainActor public static func searchVideos(title: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
|
@_Concurrency.MainActor public static func searchPlaylists(title: Swift.String, nextToken: Swift.String?) async -> (playlists: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
|
@_Concurrency.MainActor public static func getVideosOfPlaylist(playlistId: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
|
@_Concurrency.MainActor public static func searchChannels(title: Swift.String, nextToken: Swift.String?) async -> (channels: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
|
@_Concurrency.MainActor public static func getVideosOfChannel(_ channelName: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
|
@_Concurrency.MainActor public static func getAllVideosOfPlaylist(_ playlistId: Swift.String) async -> [[Swift.AnyHashable : Any]]
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
@_Concurrency.MainActor public static func topSongs() async -> [[Swift.AnyHashable : Any]]
|
||||||
|
@_Concurrency.MainActor public static func topVideos() async -> [[Swift.AnyHashable : Any]]
|
||||||
|
@_Concurrency.MainActor public static func trendingVideos() async -> [[Swift.AnyHashable : Any]]
|
||||||
|
@_Concurrency.MainActor public static func topChannels() async -> [[Swift.AnyHashable : Any]]
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
@_Concurrency.MainActor public static func listCategory() async -> [(category_id: Swift.String, title: Swift.String)]
|
||||||
|
@_Concurrency.MainActor public static func getVideosOfCategory(categoryId: Swift.String) async -> [[Swift.AnyHashable : Any]]
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
@_Concurrency.MainActor public static func autocompleteSearch(_ text: Swift.String) async -> [Swift.String]
|
||||||
|
@_Concurrency.MainActor public static func getLocation() async -> Swift.String?
|
||||||
|
@_Concurrency.MainActor public static func getTrendingSearch() async -> [Swift.String]
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||||
|
}
|
||||||
|
public struct M2API {
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
public static func searchVideosEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
|
public static func searchPlaylistsEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ playlists: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
|
public static func getVideosOfPlaylistEx(playlistId: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
|
public static func searchChannelsEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ channels: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
|
public static func getVideosOfChannelEx(channelName: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
|
public static func getAllVideosOfPlaylistEx(playlistId: Swift.String, result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
public static func topSongsEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
public static func topVideosEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
public static func trendingVideosEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
public static func topChannelsEx(result: @escaping (_ channels: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
public static func listCategoryEx(result: @escaping (_ categories: [(category_id: Swift.String, title: Swift.String)]) -> Swift.Void)
|
||||||
|
public static func getVideosOfCategoryEx(categoryId: Swift.String, result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
public static func autocompleteSearchEx(_ text: Swift.String, result: @escaping (_ listSuggestion: [Swift.String]) -> Swift.Void)
|
||||||
|
public static func getLocationEx(result: @escaping (_ countryCode: Swift.String?) -> Swift.Void)
|
||||||
|
public static func getTrendingSearchEx(result: @escaping (_ titles: [Swift.String]) -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
public static func getLinkPlayEx(videoId: Swift.String, result: @escaping (_ videoUrl: Foundation.URL?, _ videoId: Swift.String) -> Swift.Void)
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2WebView : SwiftUI.UIViewControllerRepresentable {
|
||||||
|
@_Concurrency.MainActor public init()
|
||||||
|
@_Concurrency.MainActor @preconcurrency public func makeUIViewController(context: M2Kit.M2WebView.Context) -> M2Kit.M2WebVC
|
||||||
|
@_Concurrency.MainActor @preconcurrency public func updateUIViewController(_ uiViewController: M2Kit.M2WebVC, context: M2Kit.M2WebView.Context)
|
||||||
|
public typealias Body = Swift.Never
|
||||||
|
public typealias Coordinator = Swift.Void
|
||||||
|
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||||
|
}
|
||||||
|
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
||||||
|
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
||||||
|
@_Concurrency.MainActor @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
|
||||||
|
@_Concurrency.MainActor @objc required dynamic public init?(coder: Foundation.NSCoder)
|
||||||
|
@objc deinit
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2Utils {
|
||||||
|
@_Concurrency.MainActor public static func workFor(trackID: Swift.String)
|
||||||
|
@_Concurrency.MainActor public static let workForChangedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
||||||
|
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||||
|
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Utils {
|
extension M2Kit.M2Utils {
|
||||||
public static var countryCode: Swift.String {
|
@_Concurrency.MainActor public static var countryCode: Swift.String {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Utils {
|
extension M2Kit.M2Utils {
|
||||||
public static func randomCode() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode() -> Swift.String
|
||||||
}
|
|
||||||
public struct M2K {
|
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
|
||||||
}
|
}
|
||||||
@_hasMissingDesignatedInitializers public class M2Setting {
|
@_hasMissingDesignatedInitializers public class M2Setting {
|
||||||
public static var option10: Swift.String {
|
public static var option10: Swift.String {
|
||||||
@ -304,123 +379,69 @@ public struct M2K {
|
|||||||
}
|
}
|
||||||
@objc deinit
|
@objc deinit
|
||||||
}
|
}
|
||||||
public struct M2Image {
|
@_Concurrency.MainActor public struct M2Radio {
|
||||||
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
|
||||||
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
|
||||||
}
|
|
||||||
public struct M2Radio {
|
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func countriesSupported(result: @escaping (_ countries: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func countriesSupported(result: @escaping (_ countries: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func getHTTPHeaderMT() -> [Swift.String : Swift.String]
|
@_Concurrency.MainActor public static func getHTTPHeaderMT() -> [Swift.String : Swift.String]
|
||||||
public static func changeRadioCountryCode(_ code: Swift.String)
|
@_Concurrency.MainActor public static func changeRadioCountryCode(_ code: Swift.String)
|
||||||
public static func getCurrentRadioCountryCode() -> Swift.String
|
@_Concurrency.MainActor public static func getCurrentRadioCountryCode() -> Swift.String
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func searchStationsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func searchStationsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func topStationsEx(token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func topStationsEx(token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listGenresForRadioEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func listGenresForRadioEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func listStationsByGenresEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listStationsByGenresEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func stationInfoEx(station: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func stationInfoEx(station: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func searchPodcastsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func searchPodcastsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listEpisodesOfPodcastEx(podcast: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ episodes: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listEpisodesOfPodcastEx(podcast: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ episodes: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func topPodcastsEx(token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func topPodcastsEx(token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listGenresForPodcastEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func listGenresForPodcastEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func listPodcastsByGenreEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listPodcastsByGenreEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func podcastInfoEx(podcast: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func podcastInfoEx(podcast: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
public struct M2HTTP {
|
@_Concurrency.MainActor public struct M2NetMonitor {
|
||||||
public static func getDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
@_Concurrency.MainActor public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||||
public static func getData(url: Foundation.URL) async -> Foundation.Data?
|
@_Concurrency.MainActor public var isConnected: Swift.Bool {
|
||||||
public static func getImageDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
|
||||||
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
|
||||||
}
|
|
||||||
public struct M2Musi {
|
|
||||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
}
|
|
||||||
public let m2Version: Swift.String
|
|
||||||
public func setServiceType(_ type: Swift.String)
|
|
||||||
public func setLogLevel(_ value: Swift.Int)
|
|
||||||
public struct M2Backup {
|
|
||||||
public static var backupCode: Swift.String {
|
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
@_Concurrency.MainActor public func stop()
|
||||||
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
|
||||||
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int) -> Swift.Void)
|
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
@_Concurrency.MainActor public struct M2Musi {
|
||||||
@_Concurrency.MainActor public static func searchVideos(title: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
@_Concurrency.MainActor public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
@_Concurrency.MainActor public static func searchPlaylists(title: Swift.String, nextToken: Swift.String?) async -> (playlists: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
|
||||||
@_Concurrency.MainActor public static func getVideosOfPlaylist(playlistId: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
|
||||||
@_Concurrency.MainActor public static func searchChannels(title: Swift.String, nextToken: Swift.String?) async -> (channels: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
|
||||||
@_Concurrency.MainActor public static func getVideosOfChannel(_ channelName: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
|
||||||
@_Concurrency.MainActor public static func getAllVideosOfPlaylist(_ playlistId: Swift.String) async -> [[Swift.AnyHashable : Any]]
|
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
@_Concurrency.MainActor public struct M2K {
|
||||||
@_Concurrency.MainActor public static func topSongs() async -> [[Swift.AnyHashable : Any]]
|
@_Concurrency.MainActor public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
@_Concurrency.MainActor public static func topVideos() async -> [[Swift.AnyHashable : Any]]
|
|
||||||
@_Concurrency.MainActor public static func trendingVideos() async -> [[Swift.AnyHashable : Any]]
|
|
||||||
@_Concurrency.MainActor public static func topChannels() async -> [[Swift.AnyHashable : Any]]
|
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
@_Concurrency.MainActor public struct M2Image {
|
||||||
@_Concurrency.MainActor public static func listCategory() async -> [(category_id: Swift.String, title: Swift.String)]
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@_Concurrency.MainActor public static func getVideosOfCategory(categoryId: Swift.String) async -> [[Swift.AnyHashable : Any]]
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
@_Concurrency.MainActor public struct M2HTTP {
|
||||||
@_Concurrency.MainActor public static func autocompleteSearch(_ text: Swift.String) async -> [Swift.String]
|
@_Concurrency.MainActor public static func getDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
@_Concurrency.MainActor public static func getLocation() async -> Swift.String?
|
@_Concurrency.MainActor public static func getData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
@_Concurrency.MainActor public static func getTrendingSearch() async -> [Swift.String]
|
@_Concurrency.MainActor public static func getImageDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
@_Concurrency.MainActor public struct M2Feedback {
|
||||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
@_Concurrency.MainActor public static func sendFeedback(content: Swift.String, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
}
|
|
||||||
public struct M2API {
|
|
||||||
}
|
|
||||||
extension M2Kit.M2API {
|
|
||||||
public static func searchVideosEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
|
||||||
public static func searchPlaylistsEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ playlists: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
|
||||||
public static func getVideosOfPlaylistEx(playlistId: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
|
||||||
public static func searchChannelsEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ channels: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
|
||||||
public static func getVideosOfChannelEx(channelName: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
|
||||||
public static func getAllVideosOfPlaylistEx(playlistId: Swift.String, result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
}
|
|
||||||
extension M2Kit.M2API {
|
|
||||||
public static func topSongsEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
public static func topVideosEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
public static func trendingVideosEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
public static func topChannelsEx(result: @escaping (_ channels: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
}
|
|
||||||
extension M2Kit.M2API {
|
|
||||||
public static func listCategoryEx(result: @escaping (_ categories: [(category_id: Swift.String, title: Swift.String)]) -> Swift.Void)
|
|
||||||
public static func getVideosOfCategoryEx(categoryId: Swift.String, result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
}
|
|
||||||
extension M2Kit.M2API {
|
|
||||||
public static func autocompleteSearchEx(_ text: Swift.String, result: @escaping (_ listSuggestion: [Swift.String]) -> Swift.Void)
|
|
||||||
public static func getLocationEx(result: @escaping (_ countryCode: Swift.String?) -> Swift.Void)
|
|
||||||
public static func getTrendingSearchEx(result: @escaping (_ titles: [Swift.String]) -> Swift.Void)
|
|
||||||
}
|
|
||||||
extension M2Kit.M2API {
|
|
||||||
public static func getLinkPlayEx(videoId: Swift.String, result: @escaping (_ videoUrl: Foundation.URL?, _ videoId: Swift.String) -> Swift.Void)
|
|
||||||
}
|
|
||||||
@_Concurrency.MainActor @preconcurrency public struct M2WebView : SwiftUI.UIViewControllerRepresentable {
|
|
||||||
@_Concurrency.MainActor @preconcurrency public init()
|
|
||||||
@_Concurrency.MainActor @preconcurrency public func makeUIViewController(context: M2Kit.M2WebView.Context) -> M2Kit.M2WebVC
|
|
||||||
@_Concurrency.MainActor @preconcurrency public func updateUIViewController(_ uiViewController: M2Kit.M2WebVC, context: M2Kit.M2WebView.Context)
|
|
||||||
public typealias Body = Swift.Never
|
|
||||||
public typealias Coordinator = Swift.Void
|
|
||||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
|
||||||
}
|
|
||||||
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor @preconcurrency public class M2WebVC : UIKit.UIViewController {
|
|
||||||
@_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad()
|
|
||||||
@_Concurrency.MainActor @preconcurrency @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
|
|
||||||
@_Concurrency.MainActor @preconcurrency @objc required dynamic public init?(coder: Foundation.NSCoder)
|
|
||||||
@objc deinit
|
|
||||||
}
|
}
|
||||||
|
public let m2Version: Swift.String
|
||||||
|
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
||||||
|
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
||||||
|
extension M2Kit.M2Backup : Swift.Sendable {}
|
||||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Utils : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Radio : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2NetMonitor : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Musi : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2K : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Image : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2HTTP : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Feedback : Swift.Sendable {}
|
||||||
|
|||||||
Binary file not shown.
@ -6,6 +6,8 @@ import Combine
|
|||||||
import CommonCrypto
|
import CommonCrypto
|
||||||
import Foundation
|
import Foundation
|
||||||
import JavaScriptCore
|
import JavaScriptCore
|
||||||
|
import Network
|
||||||
|
import StoreKit
|
||||||
import Swift
|
import Swift
|
||||||
import SwiftUI
|
import SwiftUI
|
||||||
import UIKit
|
import UIKit
|
||||||
@ -13,23 +15,96 @@ import WebKit
|
|||||||
import _Concurrency
|
import _Concurrency
|
||||||
import _StringProcessing
|
import _StringProcessing
|
||||||
import _SwiftConcurrencyShims
|
import _SwiftConcurrencyShims
|
||||||
public struct M2Utils {
|
@_Concurrency.MainActor public struct M2Backup {
|
||||||
public static func workFor(trackID: Swift.String)
|
@_Concurrency.MainActor public static var backupCode: Swift.String {
|
||||||
public static let workForChangedNotification: Foundation.Notification.Name
|
get
|
||||||
public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
}
|
||||||
public static func deleteDataOf(trackID: Swift.String)
|
@_Concurrency.MainActor public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
public static func filePathOf(trackID: Swift.String) -> Swift.String
|
@_Concurrency.MainActor public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int) -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
@_Concurrency.MainActor public static func searchVideos(title: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
|
@_Concurrency.MainActor public static func searchPlaylists(title: Swift.String, nextToken: Swift.String?) async -> (playlists: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
|
@_Concurrency.MainActor public static func getVideosOfPlaylist(playlistId: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
|
@_Concurrency.MainActor public static func searchChannels(title: Swift.String, nextToken: Swift.String?) async -> (channels: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
|
@_Concurrency.MainActor public static func getVideosOfChannel(_ channelName: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
|
@_Concurrency.MainActor public static func getAllVideosOfPlaylist(_ playlistId: Swift.String) async -> [[Swift.AnyHashable : Any]]
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
@_Concurrency.MainActor public static func topSongs() async -> [[Swift.AnyHashable : Any]]
|
||||||
|
@_Concurrency.MainActor public static func topVideos() async -> [[Swift.AnyHashable : Any]]
|
||||||
|
@_Concurrency.MainActor public static func trendingVideos() async -> [[Swift.AnyHashable : Any]]
|
||||||
|
@_Concurrency.MainActor public static func topChannels() async -> [[Swift.AnyHashable : Any]]
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
@_Concurrency.MainActor public static func listCategory() async -> [(category_id: Swift.String, title: Swift.String)]
|
||||||
|
@_Concurrency.MainActor public static func getVideosOfCategory(categoryId: Swift.String) async -> [[Swift.AnyHashable : Any]]
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
@_Concurrency.MainActor public static func autocompleteSearch(_ text: Swift.String) async -> [Swift.String]
|
||||||
|
@_Concurrency.MainActor public static func getLocation() async -> Swift.String?
|
||||||
|
@_Concurrency.MainActor public static func getTrendingSearch() async -> [Swift.String]
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||||
|
}
|
||||||
|
public struct M2API {
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
public static func searchVideosEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
|
public static func searchPlaylistsEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ playlists: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
|
public static func getVideosOfPlaylistEx(playlistId: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
|
public static func searchChannelsEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ channels: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
|
public static func getVideosOfChannelEx(channelName: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
|
public static func getAllVideosOfPlaylistEx(playlistId: Swift.String, result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
public static func topSongsEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
public static func topVideosEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
public static func trendingVideosEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
public static func topChannelsEx(result: @escaping (_ channels: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
public static func listCategoryEx(result: @escaping (_ categories: [(category_id: Swift.String, title: Swift.String)]) -> Swift.Void)
|
||||||
|
public static func getVideosOfCategoryEx(categoryId: Swift.String, result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
public static func autocompleteSearchEx(_ text: Swift.String, result: @escaping (_ listSuggestion: [Swift.String]) -> Swift.Void)
|
||||||
|
public static func getLocationEx(result: @escaping (_ countryCode: Swift.String?) -> Swift.Void)
|
||||||
|
public static func getTrendingSearchEx(result: @escaping (_ titles: [Swift.String]) -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
public static func getLinkPlayEx(videoId: Swift.String, result: @escaping (_ videoUrl: Foundation.URL?, _ videoId: Swift.String) -> Swift.Void)
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2WebView : SwiftUI.UIViewControllerRepresentable {
|
||||||
|
@_Concurrency.MainActor public init()
|
||||||
|
@_Concurrency.MainActor @preconcurrency public func makeUIViewController(context: M2Kit.M2WebView.Context) -> M2Kit.M2WebVC
|
||||||
|
@_Concurrency.MainActor @preconcurrency public func updateUIViewController(_ uiViewController: M2Kit.M2WebVC, context: M2Kit.M2WebView.Context)
|
||||||
|
public typealias Body = Swift.Never
|
||||||
|
public typealias Coordinator = Swift.Void
|
||||||
|
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||||
|
}
|
||||||
|
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
||||||
|
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
||||||
|
@_Concurrency.MainActor @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
|
||||||
|
@_Concurrency.MainActor @objc required dynamic public init?(coder: Foundation.NSCoder)
|
||||||
|
@objc deinit
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2Utils {
|
||||||
|
@_Concurrency.MainActor public static func workFor(trackID: Swift.String)
|
||||||
|
@_Concurrency.MainActor public static let workForChangedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
||||||
|
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||||
|
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Utils {
|
extension M2Kit.M2Utils {
|
||||||
public static var countryCode: Swift.String {
|
@_Concurrency.MainActor public static var countryCode: Swift.String {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Utils {
|
extension M2Kit.M2Utils {
|
||||||
public static func randomCode() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode() -> Swift.String
|
||||||
}
|
|
||||||
public struct M2K {
|
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
|
||||||
}
|
}
|
||||||
@_hasMissingDesignatedInitializers public class M2Setting {
|
@_hasMissingDesignatedInitializers public class M2Setting {
|
||||||
public static var option10: Swift.String {
|
public static var option10: Swift.String {
|
||||||
@ -304,123 +379,69 @@ public struct M2K {
|
|||||||
}
|
}
|
||||||
@objc deinit
|
@objc deinit
|
||||||
}
|
}
|
||||||
public struct M2Image {
|
@_Concurrency.MainActor public struct M2Radio {
|
||||||
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
|
||||||
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
|
||||||
}
|
|
||||||
public struct M2Radio {
|
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func countriesSupported(result: @escaping (_ countries: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func countriesSupported(result: @escaping (_ countries: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func getHTTPHeaderMT() -> [Swift.String : Swift.String]
|
@_Concurrency.MainActor public static func getHTTPHeaderMT() -> [Swift.String : Swift.String]
|
||||||
public static func changeRadioCountryCode(_ code: Swift.String)
|
@_Concurrency.MainActor public static func changeRadioCountryCode(_ code: Swift.String)
|
||||||
public static func getCurrentRadioCountryCode() -> Swift.String
|
@_Concurrency.MainActor public static func getCurrentRadioCountryCode() -> Swift.String
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func searchStationsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func searchStationsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func topStationsEx(token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func topStationsEx(token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listGenresForRadioEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func listGenresForRadioEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func listStationsByGenresEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listStationsByGenresEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func stationInfoEx(station: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func stationInfoEx(station: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func searchPodcastsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func searchPodcastsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listEpisodesOfPodcastEx(podcast: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ episodes: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listEpisodesOfPodcastEx(podcast: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ episodes: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func topPodcastsEx(token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func topPodcastsEx(token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listGenresForPodcastEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func listGenresForPodcastEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func listPodcastsByGenreEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listPodcastsByGenreEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func podcastInfoEx(podcast: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func podcastInfoEx(podcast: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
public struct M2HTTP {
|
@_Concurrency.MainActor public struct M2NetMonitor {
|
||||||
public static func getDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
@_Concurrency.MainActor public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||||
public static func getData(url: Foundation.URL) async -> Foundation.Data?
|
@_Concurrency.MainActor public var isConnected: Swift.Bool {
|
||||||
public static func getImageDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
|
||||||
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
|
||||||
}
|
|
||||||
public struct M2Musi {
|
|
||||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
}
|
|
||||||
public let m2Version: Swift.String
|
|
||||||
public func setServiceType(_ type: Swift.String)
|
|
||||||
public func setLogLevel(_ value: Swift.Int)
|
|
||||||
public struct M2Backup {
|
|
||||||
public static var backupCode: Swift.String {
|
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
@_Concurrency.MainActor public func stop()
|
||||||
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
|
||||||
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int) -> Swift.Void)
|
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
@_Concurrency.MainActor public struct M2Musi {
|
||||||
@_Concurrency.MainActor public static func searchVideos(title: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
@_Concurrency.MainActor public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
@_Concurrency.MainActor public static func searchPlaylists(title: Swift.String, nextToken: Swift.String?) async -> (playlists: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
|
||||||
@_Concurrency.MainActor public static func getVideosOfPlaylist(playlistId: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
|
||||||
@_Concurrency.MainActor public static func searchChannels(title: Swift.String, nextToken: Swift.String?) async -> (channels: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
|
||||||
@_Concurrency.MainActor public static func getVideosOfChannel(_ channelName: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
|
||||||
@_Concurrency.MainActor public static func getAllVideosOfPlaylist(_ playlistId: Swift.String) async -> [[Swift.AnyHashable : Any]]
|
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
@_Concurrency.MainActor public struct M2K {
|
||||||
@_Concurrency.MainActor public static func topSongs() async -> [[Swift.AnyHashable : Any]]
|
@_Concurrency.MainActor public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
@_Concurrency.MainActor public static func topVideos() async -> [[Swift.AnyHashable : Any]]
|
|
||||||
@_Concurrency.MainActor public static func trendingVideos() async -> [[Swift.AnyHashable : Any]]
|
|
||||||
@_Concurrency.MainActor public static func topChannels() async -> [[Swift.AnyHashable : Any]]
|
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
@_Concurrency.MainActor public struct M2Image {
|
||||||
@_Concurrency.MainActor public static func listCategory() async -> [(category_id: Swift.String, title: Swift.String)]
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@_Concurrency.MainActor public static func getVideosOfCategory(categoryId: Swift.String) async -> [[Swift.AnyHashable : Any]]
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
@_Concurrency.MainActor public struct M2HTTP {
|
||||||
@_Concurrency.MainActor public static func autocompleteSearch(_ text: Swift.String) async -> [Swift.String]
|
@_Concurrency.MainActor public static func getDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
@_Concurrency.MainActor public static func getLocation() async -> Swift.String?
|
@_Concurrency.MainActor public static func getData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
@_Concurrency.MainActor public static func getTrendingSearch() async -> [Swift.String]
|
@_Concurrency.MainActor public static func getImageDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
@_Concurrency.MainActor public struct M2Feedback {
|
||||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
@_Concurrency.MainActor public static func sendFeedback(content: Swift.String, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
}
|
|
||||||
public struct M2API {
|
|
||||||
}
|
|
||||||
extension M2Kit.M2API {
|
|
||||||
public static func searchVideosEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
|
||||||
public static func searchPlaylistsEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ playlists: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
|
||||||
public static func getVideosOfPlaylistEx(playlistId: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
|
||||||
public static func searchChannelsEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ channels: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
|
||||||
public static func getVideosOfChannelEx(channelName: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
|
||||||
public static func getAllVideosOfPlaylistEx(playlistId: Swift.String, result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
}
|
|
||||||
extension M2Kit.M2API {
|
|
||||||
public static func topSongsEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
public static func topVideosEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
public static func trendingVideosEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
public static func topChannelsEx(result: @escaping (_ channels: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
}
|
|
||||||
extension M2Kit.M2API {
|
|
||||||
public static func listCategoryEx(result: @escaping (_ categories: [(category_id: Swift.String, title: Swift.String)]) -> Swift.Void)
|
|
||||||
public static func getVideosOfCategoryEx(categoryId: Swift.String, result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
}
|
|
||||||
extension M2Kit.M2API {
|
|
||||||
public static func autocompleteSearchEx(_ text: Swift.String, result: @escaping (_ listSuggestion: [Swift.String]) -> Swift.Void)
|
|
||||||
public static func getLocationEx(result: @escaping (_ countryCode: Swift.String?) -> Swift.Void)
|
|
||||||
public static func getTrendingSearchEx(result: @escaping (_ titles: [Swift.String]) -> Swift.Void)
|
|
||||||
}
|
|
||||||
extension M2Kit.M2API {
|
|
||||||
public static func getLinkPlayEx(videoId: Swift.String, result: @escaping (_ videoUrl: Foundation.URL?, _ videoId: Swift.String) -> Swift.Void)
|
|
||||||
}
|
|
||||||
@_Concurrency.MainActor @preconcurrency public struct M2WebView : SwiftUI.UIViewControllerRepresentable {
|
|
||||||
@_Concurrency.MainActor @preconcurrency public init()
|
|
||||||
@_Concurrency.MainActor @preconcurrency public func makeUIViewController(context: M2Kit.M2WebView.Context) -> M2Kit.M2WebVC
|
|
||||||
@_Concurrency.MainActor @preconcurrency public func updateUIViewController(_ uiViewController: M2Kit.M2WebVC, context: M2Kit.M2WebView.Context)
|
|
||||||
public typealias Body = Swift.Never
|
|
||||||
public typealias Coordinator = Swift.Void
|
|
||||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
|
||||||
}
|
|
||||||
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor @preconcurrency public class M2WebVC : UIKit.UIViewController {
|
|
||||||
@_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad()
|
|
||||||
@_Concurrency.MainActor @preconcurrency @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
|
|
||||||
@_Concurrency.MainActor @preconcurrency @objc required dynamic public init?(coder: Foundation.NSCoder)
|
|
||||||
@objc deinit
|
|
||||||
}
|
}
|
||||||
|
public let m2Version: Swift.String
|
||||||
|
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
||||||
|
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
||||||
|
extension M2Kit.M2Backup : Swift.Sendable {}
|
||||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Utils : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Radio : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2NetMonitor : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Musi : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2K : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Image : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2HTTP : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Feedback : Swift.Sendable {}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@ -6,6 +6,8 @@ import Combine
|
|||||||
import CommonCrypto
|
import CommonCrypto
|
||||||
import Foundation
|
import Foundation
|
||||||
import JavaScriptCore
|
import JavaScriptCore
|
||||||
|
import Network
|
||||||
|
import StoreKit
|
||||||
import Swift
|
import Swift
|
||||||
import SwiftUI
|
import SwiftUI
|
||||||
import UIKit
|
import UIKit
|
||||||
@ -13,23 +15,96 @@ import WebKit
|
|||||||
import _Concurrency
|
import _Concurrency
|
||||||
import _StringProcessing
|
import _StringProcessing
|
||||||
import _SwiftConcurrencyShims
|
import _SwiftConcurrencyShims
|
||||||
public struct M2Utils {
|
@_Concurrency.MainActor public struct M2Backup {
|
||||||
public static func workFor(trackID: Swift.String)
|
@_Concurrency.MainActor public static var backupCode: Swift.String {
|
||||||
public static let workForChangedNotification: Foundation.Notification.Name
|
get
|
||||||
public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
}
|
||||||
public static func deleteDataOf(trackID: Swift.String)
|
@_Concurrency.MainActor public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
public static func filePathOf(trackID: Swift.String) -> Swift.String
|
@_Concurrency.MainActor public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int) -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
@_Concurrency.MainActor public static func searchVideos(title: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
|
@_Concurrency.MainActor public static func searchPlaylists(title: Swift.String, nextToken: Swift.String?) async -> (playlists: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
|
@_Concurrency.MainActor public static func getVideosOfPlaylist(playlistId: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
|
@_Concurrency.MainActor public static func searchChannels(title: Swift.String, nextToken: Swift.String?) async -> (channels: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
|
@_Concurrency.MainActor public static func getVideosOfChannel(_ channelName: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
|
@_Concurrency.MainActor public static func getAllVideosOfPlaylist(_ playlistId: Swift.String) async -> [[Swift.AnyHashable : Any]]
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
@_Concurrency.MainActor public static func topSongs() async -> [[Swift.AnyHashable : Any]]
|
||||||
|
@_Concurrency.MainActor public static func topVideos() async -> [[Swift.AnyHashable : Any]]
|
||||||
|
@_Concurrency.MainActor public static func trendingVideos() async -> [[Swift.AnyHashable : Any]]
|
||||||
|
@_Concurrency.MainActor public static func topChannels() async -> [[Swift.AnyHashable : Any]]
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
@_Concurrency.MainActor public static func listCategory() async -> [(category_id: Swift.String, title: Swift.String)]
|
||||||
|
@_Concurrency.MainActor public static func getVideosOfCategory(categoryId: Swift.String) async -> [[Swift.AnyHashable : Any]]
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
@_Concurrency.MainActor public static func autocompleteSearch(_ text: Swift.String) async -> [Swift.String]
|
||||||
|
@_Concurrency.MainActor public static func getLocation() async -> Swift.String?
|
||||||
|
@_Concurrency.MainActor public static func getTrendingSearch() async -> [Swift.String]
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||||
|
}
|
||||||
|
public struct M2API {
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
public static func searchVideosEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
|
public static func searchPlaylistsEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ playlists: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
|
public static func getVideosOfPlaylistEx(playlistId: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
|
public static func searchChannelsEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ channels: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
|
public static func getVideosOfChannelEx(channelName: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
|
public static func getAllVideosOfPlaylistEx(playlistId: Swift.String, result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
public static func topSongsEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
public static func topVideosEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
public static func trendingVideosEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
public static func topChannelsEx(result: @escaping (_ channels: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
public static func listCategoryEx(result: @escaping (_ categories: [(category_id: Swift.String, title: Swift.String)]) -> Swift.Void)
|
||||||
|
public static func getVideosOfCategoryEx(categoryId: Swift.String, result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
public static func autocompleteSearchEx(_ text: Swift.String, result: @escaping (_ listSuggestion: [Swift.String]) -> Swift.Void)
|
||||||
|
public static func getLocationEx(result: @escaping (_ countryCode: Swift.String?) -> Swift.Void)
|
||||||
|
public static func getTrendingSearchEx(result: @escaping (_ titles: [Swift.String]) -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
public static func getLinkPlayEx(videoId: Swift.String, result: @escaping (_ videoUrl: Foundation.URL?, _ videoId: Swift.String) -> Swift.Void)
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2WebView : SwiftUI.UIViewControllerRepresentable {
|
||||||
|
@_Concurrency.MainActor public init()
|
||||||
|
@_Concurrency.MainActor @preconcurrency public func makeUIViewController(context: M2Kit.M2WebView.Context) -> M2Kit.M2WebVC
|
||||||
|
@_Concurrency.MainActor @preconcurrency public func updateUIViewController(_ uiViewController: M2Kit.M2WebVC, context: M2Kit.M2WebView.Context)
|
||||||
|
public typealias Body = Swift.Never
|
||||||
|
public typealias Coordinator = Swift.Void
|
||||||
|
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||||
|
}
|
||||||
|
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
||||||
|
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
||||||
|
@_Concurrency.MainActor @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
|
||||||
|
@_Concurrency.MainActor @objc required dynamic public init?(coder: Foundation.NSCoder)
|
||||||
|
@objc deinit
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2Utils {
|
||||||
|
@_Concurrency.MainActor public static func workFor(trackID: Swift.String)
|
||||||
|
@_Concurrency.MainActor public static let workForChangedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
||||||
|
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||||
|
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Utils {
|
extension M2Kit.M2Utils {
|
||||||
public static var countryCode: Swift.String {
|
@_Concurrency.MainActor public static var countryCode: Swift.String {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Utils {
|
extension M2Kit.M2Utils {
|
||||||
public static func randomCode() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode() -> Swift.String
|
||||||
}
|
|
||||||
public struct M2K {
|
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
|
||||||
}
|
}
|
||||||
@_hasMissingDesignatedInitializers public class M2Setting {
|
@_hasMissingDesignatedInitializers public class M2Setting {
|
||||||
public static var option10: Swift.String {
|
public static var option10: Swift.String {
|
||||||
@ -304,123 +379,69 @@ public struct M2K {
|
|||||||
}
|
}
|
||||||
@objc deinit
|
@objc deinit
|
||||||
}
|
}
|
||||||
public struct M2Image {
|
@_Concurrency.MainActor public struct M2Radio {
|
||||||
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
|
||||||
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
|
||||||
}
|
|
||||||
public struct M2Radio {
|
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func countriesSupported(result: @escaping (_ countries: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func countriesSupported(result: @escaping (_ countries: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func getHTTPHeaderMT() -> [Swift.String : Swift.String]
|
@_Concurrency.MainActor public static func getHTTPHeaderMT() -> [Swift.String : Swift.String]
|
||||||
public static func changeRadioCountryCode(_ code: Swift.String)
|
@_Concurrency.MainActor public static func changeRadioCountryCode(_ code: Swift.String)
|
||||||
public static func getCurrentRadioCountryCode() -> Swift.String
|
@_Concurrency.MainActor public static func getCurrentRadioCountryCode() -> Swift.String
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func searchStationsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func searchStationsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func topStationsEx(token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func topStationsEx(token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listGenresForRadioEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func listGenresForRadioEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func listStationsByGenresEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listStationsByGenresEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func stationInfoEx(station: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func stationInfoEx(station: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func searchPodcastsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func searchPodcastsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listEpisodesOfPodcastEx(podcast: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ episodes: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listEpisodesOfPodcastEx(podcast: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ episodes: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func topPodcastsEx(token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func topPodcastsEx(token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listGenresForPodcastEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func listGenresForPodcastEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func listPodcastsByGenreEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listPodcastsByGenreEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func podcastInfoEx(podcast: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func podcastInfoEx(podcast: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
public struct M2HTTP {
|
@_Concurrency.MainActor public struct M2NetMonitor {
|
||||||
public static func getDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
@_Concurrency.MainActor public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||||
public static func getData(url: Foundation.URL) async -> Foundation.Data?
|
@_Concurrency.MainActor public var isConnected: Swift.Bool {
|
||||||
public static func getImageDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
|
||||||
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
|
||||||
}
|
|
||||||
public struct M2Musi {
|
|
||||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
}
|
|
||||||
public let m2Version: Swift.String
|
|
||||||
public func setServiceType(_ type: Swift.String)
|
|
||||||
public func setLogLevel(_ value: Swift.Int)
|
|
||||||
public struct M2Backup {
|
|
||||||
public static var backupCode: Swift.String {
|
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
@_Concurrency.MainActor public func stop()
|
||||||
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
|
||||||
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int) -> Swift.Void)
|
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
@_Concurrency.MainActor public struct M2Musi {
|
||||||
@_Concurrency.MainActor public static func searchVideos(title: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
@_Concurrency.MainActor public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
@_Concurrency.MainActor public static func searchPlaylists(title: Swift.String, nextToken: Swift.String?) async -> (playlists: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
|
||||||
@_Concurrency.MainActor public static func getVideosOfPlaylist(playlistId: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
|
||||||
@_Concurrency.MainActor public static func searchChannels(title: Swift.String, nextToken: Swift.String?) async -> (channels: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
|
||||||
@_Concurrency.MainActor public static func getVideosOfChannel(_ channelName: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
|
||||||
@_Concurrency.MainActor public static func getAllVideosOfPlaylist(_ playlistId: Swift.String) async -> [[Swift.AnyHashable : Any]]
|
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
@_Concurrency.MainActor public struct M2K {
|
||||||
@_Concurrency.MainActor public static func topSongs() async -> [[Swift.AnyHashable : Any]]
|
@_Concurrency.MainActor public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
@_Concurrency.MainActor public static func topVideos() async -> [[Swift.AnyHashable : Any]]
|
|
||||||
@_Concurrency.MainActor public static func trendingVideos() async -> [[Swift.AnyHashable : Any]]
|
|
||||||
@_Concurrency.MainActor public static func topChannels() async -> [[Swift.AnyHashable : Any]]
|
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
@_Concurrency.MainActor public struct M2Image {
|
||||||
@_Concurrency.MainActor public static func listCategory() async -> [(category_id: Swift.String, title: Swift.String)]
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@_Concurrency.MainActor public static func getVideosOfCategory(categoryId: Swift.String) async -> [[Swift.AnyHashable : Any]]
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
@_Concurrency.MainActor public struct M2HTTP {
|
||||||
@_Concurrency.MainActor public static func autocompleteSearch(_ text: Swift.String) async -> [Swift.String]
|
@_Concurrency.MainActor public static func getDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
@_Concurrency.MainActor public static func getLocation() async -> Swift.String?
|
@_Concurrency.MainActor public static func getData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
@_Concurrency.MainActor public static func getTrendingSearch() async -> [Swift.String]
|
@_Concurrency.MainActor public static func getImageDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
@_Concurrency.MainActor public struct M2Feedback {
|
||||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
@_Concurrency.MainActor public static func sendFeedback(content: Swift.String, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
}
|
|
||||||
public struct M2API {
|
|
||||||
}
|
|
||||||
extension M2Kit.M2API {
|
|
||||||
public static func searchVideosEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
|
||||||
public static func searchPlaylistsEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ playlists: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
|
||||||
public static func getVideosOfPlaylistEx(playlistId: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
|
||||||
public static func searchChannelsEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ channels: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
|
||||||
public static func getVideosOfChannelEx(channelName: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
|
||||||
public static func getAllVideosOfPlaylistEx(playlistId: Swift.String, result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
}
|
|
||||||
extension M2Kit.M2API {
|
|
||||||
public static func topSongsEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
public static func topVideosEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
public static func trendingVideosEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
public static func topChannelsEx(result: @escaping (_ channels: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
}
|
|
||||||
extension M2Kit.M2API {
|
|
||||||
public static func listCategoryEx(result: @escaping (_ categories: [(category_id: Swift.String, title: Swift.String)]) -> Swift.Void)
|
|
||||||
public static func getVideosOfCategoryEx(categoryId: Swift.String, result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
}
|
|
||||||
extension M2Kit.M2API {
|
|
||||||
public static func autocompleteSearchEx(_ text: Swift.String, result: @escaping (_ listSuggestion: [Swift.String]) -> Swift.Void)
|
|
||||||
public static func getLocationEx(result: @escaping (_ countryCode: Swift.String?) -> Swift.Void)
|
|
||||||
public static func getTrendingSearchEx(result: @escaping (_ titles: [Swift.String]) -> Swift.Void)
|
|
||||||
}
|
|
||||||
extension M2Kit.M2API {
|
|
||||||
public static func getLinkPlayEx(videoId: Swift.String, result: @escaping (_ videoUrl: Foundation.URL?, _ videoId: Swift.String) -> Swift.Void)
|
|
||||||
}
|
|
||||||
@_Concurrency.MainActor @preconcurrency public struct M2WebView : SwiftUI.UIViewControllerRepresentable {
|
|
||||||
@_Concurrency.MainActor @preconcurrency public init()
|
|
||||||
@_Concurrency.MainActor @preconcurrency public func makeUIViewController(context: M2Kit.M2WebView.Context) -> M2Kit.M2WebVC
|
|
||||||
@_Concurrency.MainActor @preconcurrency public func updateUIViewController(_ uiViewController: M2Kit.M2WebVC, context: M2Kit.M2WebView.Context)
|
|
||||||
public typealias Body = Swift.Never
|
|
||||||
public typealias Coordinator = Swift.Void
|
|
||||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
|
||||||
}
|
|
||||||
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor @preconcurrency public class M2WebVC : UIKit.UIViewController {
|
|
||||||
@_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad()
|
|
||||||
@_Concurrency.MainActor @preconcurrency @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
|
|
||||||
@_Concurrency.MainActor @preconcurrency @objc required dynamic public init?(coder: Foundation.NSCoder)
|
|
||||||
@objc deinit
|
|
||||||
}
|
}
|
||||||
|
public let m2Version: Swift.String
|
||||||
|
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
||||||
|
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
||||||
|
extension M2Kit.M2Backup : Swift.Sendable {}
|
||||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Utils : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Radio : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2NetMonitor : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Musi : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2K : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Image : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2HTTP : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Feedback : Swift.Sendable {}
|
||||||
|
|||||||
Binary file not shown.
@ -6,6 +6,8 @@ import Combine
|
|||||||
import CommonCrypto
|
import CommonCrypto
|
||||||
import Foundation
|
import Foundation
|
||||||
import JavaScriptCore
|
import JavaScriptCore
|
||||||
|
import Network
|
||||||
|
import StoreKit
|
||||||
import Swift
|
import Swift
|
||||||
import SwiftUI
|
import SwiftUI
|
||||||
import UIKit
|
import UIKit
|
||||||
@ -13,23 +15,96 @@ import WebKit
|
|||||||
import _Concurrency
|
import _Concurrency
|
||||||
import _StringProcessing
|
import _StringProcessing
|
||||||
import _SwiftConcurrencyShims
|
import _SwiftConcurrencyShims
|
||||||
public struct M2Utils {
|
@_Concurrency.MainActor public struct M2Backup {
|
||||||
public static func workFor(trackID: Swift.String)
|
@_Concurrency.MainActor public static var backupCode: Swift.String {
|
||||||
public static let workForChangedNotification: Foundation.Notification.Name
|
get
|
||||||
public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
}
|
||||||
public static func deleteDataOf(trackID: Swift.String)
|
@_Concurrency.MainActor public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
public static func filePathOf(trackID: Swift.String) -> Swift.String
|
@_Concurrency.MainActor public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int) -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
@_Concurrency.MainActor public static func searchVideos(title: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
|
@_Concurrency.MainActor public static func searchPlaylists(title: Swift.String, nextToken: Swift.String?) async -> (playlists: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
|
@_Concurrency.MainActor public static func getVideosOfPlaylist(playlistId: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
|
@_Concurrency.MainActor public static func searchChannels(title: Swift.String, nextToken: Swift.String?) async -> (channels: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
|
@_Concurrency.MainActor public static func getVideosOfChannel(_ channelName: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||||
|
@_Concurrency.MainActor public static func getAllVideosOfPlaylist(_ playlistId: Swift.String) async -> [[Swift.AnyHashable : Any]]
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
@_Concurrency.MainActor public static func topSongs() async -> [[Swift.AnyHashable : Any]]
|
||||||
|
@_Concurrency.MainActor public static func topVideos() async -> [[Swift.AnyHashable : Any]]
|
||||||
|
@_Concurrency.MainActor public static func trendingVideos() async -> [[Swift.AnyHashable : Any]]
|
||||||
|
@_Concurrency.MainActor public static func topChannels() async -> [[Swift.AnyHashable : Any]]
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
@_Concurrency.MainActor public static func listCategory() async -> [(category_id: Swift.String, title: Swift.String)]
|
||||||
|
@_Concurrency.MainActor public static func getVideosOfCategory(categoryId: Swift.String) async -> [[Swift.AnyHashable : Any]]
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
@_Concurrency.MainActor public static func autocompleteSearch(_ text: Swift.String) async -> [Swift.String]
|
||||||
|
@_Concurrency.MainActor public static func getLocation() async -> Swift.String?
|
||||||
|
@_Concurrency.MainActor public static func getTrendingSearch() async -> [Swift.String]
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||||
|
}
|
||||||
|
public struct M2API {
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
public static func searchVideosEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
|
public static func searchPlaylistsEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ playlists: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
|
public static func getVideosOfPlaylistEx(playlistId: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
|
public static func searchChannelsEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ channels: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
|
public static func getVideosOfChannelEx(channelName: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
|
public static func getAllVideosOfPlaylistEx(playlistId: Swift.String, result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
public static func topSongsEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
public static func topVideosEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
public static func trendingVideosEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
public static func topChannelsEx(result: @escaping (_ channels: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
public static func listCategoryEx(result: @escaping (_ categories: [(category_id: Swift.String, title: Swift.String)]) -> Swift.Void)
|
||||||
|
public static func getVideosOfCategoryEx(categoryId: Swift.String, result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
public static func autocompleteSearchEx(_ text: Swift.String, result: @escaping (_ listSuggestion: [Swift.String]) -> Swift.Void)
|
||||||
|
public static func getLocationEx(result: @escaping (_ countryCode: Swift.String?) -> Swift.Void)
|
||||||
|
public static func getTrendingSearchEx(result: @escaping (_ titles: [Swift.String]) -> Swift.Void)
|
||||||
|
}
|
||||||
|
extension M2Kit.M2API {
|
||||||
|
public static func getLinkPlayEx(videoId: Swift.String, result: @escaping (_ videoUrl: Foundation.URL?, _ videoId: Swift.String) -> Swift.Void)
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2WebView : SwiftUI.UIViewControllerRepresentable {
|
||||||
|
@_Concurrency.MainActor public init()
|
||||||
|
@_Concurrency.MainActor @preconcurrency public func makeUIViewController(context: M2Kit.M2WebView.Context) -> M2Kit.M2WebVC
|
||||||
|
@_Concurrency.MainActor @preconcurrency public func updateUIViewController(_ uiViewController: M2Kit.M2WebVC, context: M2Kit.M2WebView.Context)
|
||||||
|
public typealias Body = Swift.Never
|
||||||
|
public typealias Coordinator = Swift.Void
|
||||||
|
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||||
|
}
|
||||||
|
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
||||||
|
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
||||||
|
@_Concurrency.MainActor @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
|
||||||
|
@_Concurrency.MainActor @objc required dynamic public init?(coder: Foundation.NSCoder)
|
||||||
|
@objc deinit
|
||||||
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2Utils {
|
||||||
|
@_Concurrency.MainActor public static func workFor(trackID: Swift.String)
|
||||||
|
@_Concurrency.MainActor public static let workForChangedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static func checkExisted(trackID: Swift.String) -> Swift.Bool
|
||||||
|
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||||
|
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Utils {
|
extension M2Kit.M2Utils {
|
||||||
public static var countryCode: Swift.String {
|
@_Concurrency.MainActor public static var countryCode: Swift.String {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Utils {
|
extension M2Kit.M2Utils {
|
||||||
public static func randomCode() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode() -> Swift.String
|
||||||
}
|
|
||||||
public struct M2K {
|
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
|
||||||
}
|
}
|
||||||
@_hasMissingDesignatedInitializers public class M2Setting {
|
@_hasMissingDesignatedInitializers public class M2Setting {
|
||||||
public static var option10: Swift.String {
|
public static var option10: Swift.String {
|
||||||
@ -304,123 +379,69 @@ public struct M2K {
|
|||||||
}
|
}
|
||||||
@objc deinit
|
@objc deinit
|
||||||
}
|
}
|
||||||
public struct M2Image {
|
@_Concurrency.MainActor public struct M2Radio {
|
||||||
public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
|
||||||
public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
|
||||||
}
|
|
||||||
public struct M2Radio {
|
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func countriesSupported(result: @escaping (_ countries: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func countriesSupported(result: @escaping (_ countries: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func getHTTPHeaderMT() -> [Swift.String : Swift.String]
|
@_Concurrency.MainActor public static func getHTTPHeaderMT() -> [Swift.String : Swift.String]
|
||||||
public static func changeRadioCountryCode(_ code: Swift.String)
|
@_Concurrency.MainActor public static func changeRadioCountryCode(_ code: Swift.String)
|
||||||
public static func getCurrentRadioCountryCode() -> Swift.String
|
@_Concurrency.MainActor public static func getCurrentRadioCountryCode() -> Swift.String
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func searchStationsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func searchStationsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func topStationsEx(token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func topStationsEx(token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listGenresForRadioEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func listGenresForRadioEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func listStationsByGenresEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listStationsByGenresEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ stations: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func stationInfoEx(station: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func stationInfoEx(station: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func searchPodcastsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func searchPodcastsEx(title: Swift.String, token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listEpisodesOfPodcastEx(podcast: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ episodes: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listEpisodesOfPodcastEx(podcast: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ episodes: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func topPodcastsEx(token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func topPodcastsEx(token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func listGenresForPodcastEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
@_Concurrency.MainActor public static func listGenresForPodcastEx(result: @escaping (_ genres: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
public static func listPodcastsByGenreEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func listPodcastsByGenreEx(genre: [Swift.AnyHashable : Any], token: Swift.String?, result: @escaping (_ podcasts: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
||||||
public static func podcastInfoEx(podcast: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func podcastInfoEx(podcast: [Swift.AnyHashable : Any], result: @escaping (_ info: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
extension M2Kit.M2Radio {
|
extension M2Kit.M2Radio {
|
||||||
public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
}
|
}
|
||||||
public struct M2HTTP {
|
@_Concurrency.MainActor public struct M2NetMonitor {
|
||||||
public static func getDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
@_Concurrency.MainActor public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||||
public static func getData(url: Foundation.URL) async -> Foundation.Data?
|
@_Concurrency.MainActor public var isConnected: Swift.Bool {
|
||||||
public static func getImageDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
|
||||||
public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
|
||||||
}
|
|
||||||
public struct M2Musi {
|
|
||||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
}
|
|
||||||
public let m2Version: Swift.String
|
|
||||||
public func setServiceType(_ type: Swift.String)
|
|
||||||
public func setLogLevel(_ value: Swift.Int)
|
|
||||||
public struct M2Backup {
|
|
||||||
public static var backupCode: Swift.String {
|
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
@_Concurrency.MainActor public func stop()
|
||||||
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
|
||||||
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int) -> Swift.Void)
|
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
@_Concurrency.MainActor public struct M2Musi {
|
||||||
@_Concurrency.MainActor public static func searchVideos(title: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
@_Concurrency.MainActor public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
@_Concurrency.MainActor public static func searchPlaylists(title: Swift.String, nextToken: Swift.String?) async -> (playlists: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
|
||||||
@_Concurrency.MainActor public static func getVideosOfPlaylist(playlistId: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
|
||||||
@_Concurrency.MainActor public static func searchChannels(title: Swift.String, nextToken: Swift.String?) async -> (channels: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
|
||||||
@_Concurrency.MainActor public static func getVideosOfChannel(_ channelName: Swift.String, nextToken: Swift.String?) async -> (videos: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
|
||||||
@_Concurrency.MainActor public static func getAllVideosOfPlaylist(_ playlistId: Swift.String) async -> [[Swift.AnyHashable : Any]]
|
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
@_Concurrency.MainActor public struct M2K {
|
||||||
@_Concurrency.MainActor public static func topSongs() async -> [[Swift.AnyHashable : Any]]
|
@_Concurrency.MainActor public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
@_Concurrency.MainActor public static func topVideos() async -> [[Swift.AnyHashable : Any]]
|
|
||||||
@_Concurrency.MainActor public static func trendingVideos() async -> [[Swift.AnyHashable : Any]]
|
|
||||||
@_Concurrency.MainActor public static func topChannels() async -> [[Swift.AnyHashable : Any]]
|
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
@_Concurrency.MainActor public struct M2Image {
|
||||||
@_Concurrency.MainActor public static func listCategory() async -> [(category_id: Swift.String, title: Swift.String)]
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@_Concurrency.MainActor public static func getVideosOfCategory(categoryId: Swift.String) async -> [[Swift.AnyHashable : Any]]
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage) async -> Swift.String?
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
@_Concurrency.MainActor public struct M2HTTP {
|
||||||
@_Concurrency.MainActor public static func autocompleteSearch(_ text: Swift.String) async -> [Swift.String]
|
@_Concurrency.MainActor public static func getDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
@_Concurrency.MainActor public static func getLocation() async -> Swift.String?
|
@_Concurrency.MainActor public static func getData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
@_Concurrency.MainActor public static func getTrendingSearch() async -> [Swift.String]
|
@_Concurrency.MainActor public static func getImageDataEx(url: Foundation.URL, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
}
|
}
|
||||||
extension M2Kit.M2API {
|
@_Concurrency.MainActor public struct M2Feedback {
|
||||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
@_Concurrency.MainActor public static func sendFeedback(content: Swift.String, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
}
|
|
||||||
public struct M2API {
|
|
||||||
}
|
|
||||||
extension M2Kit.M2API {
|
|
||||||
public static func searchVideosEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
|
||||||
public static func searchPlaylistsEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ playlists: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
|
||||||
public static func getVideosOfPlaylistEx(playlistId: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
|
||||||
public static func searchChannelsEx(title: Swift.String, nextToken: Swift.String?, result: @escaping (_ channels: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
|
||||||
public static func getVideosOfChannelEx(channelName: Swift.String, nextToken: Swift.String?, result: @escaping (_ videos: [[Swift.AnyHashable : Any]], _ nextToken: Swift.String?) -> Swift.Void)
|
|
||||||
public static func getAllVideosOfPlaylistEx(playlistId: Swift.String, result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
}
|
|
||||||
extension M2Kit.M2API {
|
|
||||||
public static func topSongsEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
public static func topVideosEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
public static func trendingVideosEx(result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
public static func topChannelsEx(result: @escaping (_ channels: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
}
|
|
||||||
extension M2Kit.M2API {
|
|
||||||
public static func listCategoryEx(result: @escaping (_ categories: [(category_id: Swift.String, title: Swift.String)]) -> Swift.Void)
|
|
||||||
public static func getVideosOfCategoryEx(categoryId: Swift.String, result: @escaping (_ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
|
||||||
}
|
|
||||||
extension M2Kit.M2API {
|
|
||||||
public static func autocompleteSearchEx(_ text: Swift.String, result: @escaping (_ listSuggestion: [Swift.String]) -> Swift.Void)
|
|
||||||
public static func getLocationEx(result: @escaping (_ countryCode: Swift.String?) -> Swift.Void)
|
|
||||||
public static func getTrendingSearchEx(result: @escaping (_ titles: [Swift.String]) -> Swift.Void)
|
|
||||||
}
|
|
||||||
extension M2Kit.M2API {
|
|
||||||
public static func getLinkPlayEx(videoId: Swift.String, result: @escaping (_ videoUrl: Foundation.URL?, _ videoId: Swift.String) -> Swift.Void)
|
|
||||||
}
|
|
||||||
@_Concurrency.MainActor @preconcurrency public struct M2WebView : SwiftUI.UIViewControllerRepresentable {
|
|
||||||
@_Concurrency.MainActor @preconcurrency public init()
|
|
||||||
@_Concurrency.MainActor @preconcurrency public func makeUIViewController(context: M2Kit.M2WebView.Context) -> M2Kit.M2WebVC
|
|
||||||
@_Concurrency.MainActor @preconcurrency public func updateUIViewController(_ uiViewController: M2Kit.M2WebVC, context: M2Kit.M2WebView.Context)
|
|
||||||
public typealias Body = Swift.Never
|
|
||||||
public typealias Coordinator = Swift.Void
|
|
||||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
|
||||||
}
|
|
||||||
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor @preconcurrency public class M2WebVC : UIKit.UIViewController {
|
|
||||||
@_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad()
|
|
||||||
@_Concurrency.MainActor @preconcurrency @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
|
|
||||||
@_Concurrency.MainActor @preconcurrency @objc required dynamic public init?(coder: Foundation.NSCoder)
|
|
||||||
@objc deinit
|
|
||||||
}
|
}
|
||||||
|
public let m2Version: Swift.String
|
||||||
|
@_Concurrency.MainActor public func setServiceType(_ type: Swift.String)
|
||||||
|
@_Concurrency.MainActor public func setLogLevel(_ value: Swift.Int)
|
||||||
|
extension M2Kit.M2Backup : Swift.Sendable {}
|
||||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Utils : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Radio : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2NetMonitor : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Musi : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2K : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Image : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2HTTP : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2Feedback : Swift.Sendable {}
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@ -10,47 +10,47 @@
|
|||||||
</data>
|
</data>
|
||||||
<key>Info.plist</key>
|
<key>Info.plist</key>
|
||||||
<data>
|
<data>
|
||||||
gmexQA1TE3E+n/WVnF/hjQUmTjs=
|
nbgOgZ6ExPLh/tiXfYMgQZ1KSLY=
|
||||||
</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>
|
||||||
f1/M1exhkkhOmRcAPR51KO2bs44=
|
AdQ+JqGLybXFQLeN3cYfpxbuyiw=
|
||||||
</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>
|
||||||
a7YU3AHhbs9xoOlNljqdsm5DVOI=
|
VDKoPT2jgiU9MWk5/tEFoH6CgKQ=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
||||||
<data>
|
<data>
|
||||||
Z4/pF0D62a68bVriWlNj2hCraUM=
|
gdF3A01F70MgSYY6TcauxeB6Yb4=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
||||||
<data>
|
<data>
|
||||||
a7YU3AHhbs9xoOlNljqdsm5DVOI=
|
VDKoPT2jgiU9MWk5/tEFoH6CgKQ=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
||||||
<data>
|
<data>
|
||||||
GMq0QjIgQunfbhylHh5EZlOhv5A=
|
CEjsPxvhOqv5eiG9BlsrNemdHBw=
|
||||||
</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>
|
||||||
f1/M1exhkkhOmRcAPR51KO2bs44=
|
AdQ+JqGLybXFQLeN3cYfpxbuyiw=
|
||||||
</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>
|
||||||
AKKFuj00zromkZKMxNAy8xyyZos=
|
StygdiFwF75hM4sWtlyoX83X9lo=
|
||||||
</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>
|
||||||
Mz1VELY1nRgBR/HaJUnt9ZtiziQ=
|
E4+MYkNIakULG2kOsbX5R5wKNh8=
|
||||||
</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>
|
||||||
AKKFuj00zromkZKMxNAy8xyyZos=
|
StygdiFwF75hM4sWtlyoX83X9lo=
|
||||||
</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>
|
||||||
Em+weZpsJ+JY/uWcIPdoMX63yoo=
|
z/iQ9inWDgO/II810KdsdEhgYc4=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/module.modulemap</key>
|
<key>Modules/module.modulemap</key>
|
||||||
<data>
|
<data>
|
||||||
@ -74,110 +74,110 @@
|
|||||||
<dict>
|
<dict>
|
||||||
<key>hash</key>
|
<key>hash</key>
|
||||||
<data>
|
<data>
|
||||||
f1/M1exhkkhOmRcAPR51KO2bs44=
|
AdQ+JqGLybXFQLeN3cYfpxbuyiw=
|
||||||
</data>
|
</data>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
Z0cEZzOTse202lrloGUPpywJDGY3aMDksvPzrPSFqtw=
|
13sjfxkL/3ddI6rGS4avncdVKqpeRUAXIghgUAs/Pno=
|
||||||
</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>hash</key>
|
<key>hash</key>
|
||||||
<data>
|
<data>
|
||||||
a7YU3AHhbs9xoOlNljqdsm5DVOI=
|
VDKoPT2jgiU9MWk5/tEFoH6CgKQ=
|
||||||
</data>
|
</data>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
djE0odqm1z5HyAVQyVZqxK3K9rXbwlIMHNDFLzQZm5g=
|
g/H/cTaqDHVeU+34uIi3ZBlz9Lk2Ibm/kAngvNsiyHc=
|
||||||
</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>hash</key>
|
<key>hash</key>
|
||||||
<data>
|
<data>
|
||||||
Z4/pF0D62a68bVriWlNj2hCraUM=
|
gdF3A01F70MgSYY6TcauxeB6Yb4=
|
||||||
</data>
|
</data>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
9vCi2fqqunKTeVhf0oTciw8WD7c+dt+9To7f9fb2iPA=
|
WYW05vsCCvv1bcg/KiVT0otmMDnuiZIACMiUEGs78zA=
|
||||||
</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>hash</key>
|
<key>hash</key>
|
||||||
<data>
|
<data>
|
||||||
a7YU3AHhbs9xoOlNljqdsm5DVOI=
|
VDKoPT2jgiU9MWk5/tEFoH6CgKQ=
|
||||||
</data>
|
</data>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
djE0odqm1z5HyAVQyVZqxK3K9rXbwlIMHNDFLzQZm5g=
|
g/H/cTaqDHVeU+34uIi3ZBlz9Lk2Ibm/kAngvNsiyHc=
|
||||||
</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>hash</key>
|
<key>hash</key>
|
||||||
<data>
|
<data>
|
||||||
GMq0QjIgQunfbhylHh5EZlOhv5A=
|
CEjsPxvhOqv5eiG9BlsrNemdHBw=
|
||||||
</data>
|
</data>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
snccpDl8/Yc44s3awPxlhN4BcKfLxEziLQ34ok9fju4=
|
7BkNPS0J+wJ937ynpnJuaNPM54ycsZboj5yd/AM+DDQ=
|
||||||
</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>hash</key>
|
<key>hash</key>
|
||||||
<data>
|
<data>
|
||||||
f1/M1exhkkhOmRcAPR51KO2bs44=
|
AdQ+JqGLybXFQLeN3cYfpxbuyiw=
|
||||||
</data>
|
</data>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
Z0cEZzOTse202lrloGUPpywJDGY3aMDksvPzrPSFqtw=
|
13sjfxkL/3ddI6rGS4avncdVKqpeRUAXIghgUAs/Pno=
|
||||||
</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>hash</key>
|
<key>hash</key>
|
||||||
<data>
|
<data>
|
||||||
AKKFuj00zromkZKMxNAy8xyyZos=
|
StygdiFwF75hM4sWtlyoX83X9lo=
|
||||||
</data>
|
</data>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
xnLHVf13BzPM/Yv0DYHg3mgy+m9HWhbu5QeXFQC4fwI=
|
P8EYgbErGuy4QCJdSbGoPGppB+ZiHowKV8dfaIrc/gI=
|
||||||
</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>hash</key>
|
<key>hash</key>
|
||||||
<data>
|
<data>
|
||||||
Mz1VELY1nRgBR/HaJUnt9ZtiziQ=
|
E4+MYkNIakULG2kOsbX5R5wKNh8=
|
||||||
</data>
|
</data>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
YFt/11a7LpL/va/Sg4pYLvjmsRQkeVHSnC5CK3bymqk=
|
nPRIxJ+NN8xOTcpxpgiZxk6wf8M+hahl9+jGTvIzYU0=
|
||||||
</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>hash</key>
|
<key>hash</key>
|
||||||
<data>
|
<data>
|
||||||
AKKFuj00zromkZKMxNAy8xyyZos=
|
StygdiFwF75hM4sWtlyoX83X9lo=
|
||||||
</data>
|
</data>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
xnLHVf13BzPM/Yv0DYHg3mgy+m9HWhbu5QeXFQC4fwI=
|
P8EYgbErGuy4QCJdSbGoPGppB+ZiHowKV8dfaIrc/gI=
|
||||||
</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>hash</key>
|
<key>hash</key>
|
||||||
<data>
|
<data>
|
||||||
Em+weZpsJ+JY/uWcIPdoMX63yoo=
|
z/iQ9inWDgO/II810KdsdEhgYc4=
|
||||||
</data>
|
</data>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
tk93zjTC42c9TmrFvzYlQmDQk63FV/iPlb6A/8amCRE=
|
2FhFF+uNjKTzjxlZl1IABkz0VEtsxWo5ibaUdBLNpMk=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/module.modulemap</key>
|
<key>Modules/module.modulemap</key>
|
||||||
|
|||||||
Reference in New Issue
Block a user