5.6
This commit is contained in:
@ -4,23 +4,6 @@
|
||||
<dict>
|
||||
<key>AvailableLibraries</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>BinaryPath</key>
|
||||
<string>M2Kit.framework/Versions/A/M2Kit</string>
|
||||
<key>LibraryIdentifier</key>
|
||||
<string>ios-arm64_x86_64-maccatalyst</string>
|
||||
<key>LibraryPath</key>
|
||||
<string>M2Kit.framework</string>
|
||||
<key>SupportedArchitectures</key>
|
||||
<array>
|
||||
<string>arm64</string>
|
||||
<string>x86_64</string>
|
||||
</array>
|
||||
<key>SupportedPlatform</key>
|
||||
<string>ios</string>
|
||||
<key>SupportedPlatformVariant</key>
|
||||
<string>maccatalyst</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>BinaryPath</key>
|
||||
<string>M2Kit.framework/M2Kit</string>
|
||||
@ -52,6 +35,23 @@
|
||||
<key>SupportedPlatform</key>
|
||||
<string>ios</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>BinaryPath</key>
|
||||
<string>M2Kit.framework/Versions/A/M2Kit</string>
|
||||
<key>LibraryIdentifier</key>
|
||||
<string>ios-arm64_x86_64-maccatalyst</string>
|
||||
<key>LibraryPath</key>
|
||||
<string>M2Kit.framework</string>
|
||||
<key>SupportedArchitectures</key>
|
||||
<array>
|
||||
<string>arm64</string>
|
||||
<string>x86_64</string>
|
||||
</array>
|
||||
<key>SupportedPlatform</key>
|
||||
<string>ios</string>
|
||||
<key>SupportedPlatformVariant</key>
|
||||
<string>maccatalyst</string>
|
||||
</dict>
|
||||
</array>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>XFWK</string>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -148,11 +148,25 @@ public struct M2Musi {
|
||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
#endif
|
||||
}
|
||||
public enum M2NetConnecttionType {
|
||||
case wifi
|
||||
case cellular
|
||||
case other
|
||||
case none
|
||||
public static func == (a: M2Kit.M2NetConnecttionType, b: M2Kit.M2NetConnecttionType) -> Swift.Bool
|
||||
public func hash(into hasher: inout Swift.Hasher)
|
||||
public var hashValue: Swift.Int {
|
||||
get
|
||||
}
|
||||
}
|
||||
public struct M2NetMonitor {
|
||||
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||
public var isConnected: Swift.Bool {
|
||||
get
|
||||
}
|
||||
public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
public func stop()
|
||||
}
|
||||
public struct M2Radio {
|
||||
@ -510,4 +524,28 @@ extension M2Kit.M2Utils {
|
||||
public typealias Coordinator = Swift.Void
|
||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||
}
|
||||
public enum M2YTIDType : Swift.String {
|
||||
case video
|
||||
case playlist
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public init?(rawValue: Swift.String)
|
||||
#endif
|
||||
public typealias RawValue = Swift.String
|
||||
public var rawValue: Swift.String {
|
||||
get
|
||||
}
|
||||
}
|
||||
public struct M2YT {
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func extractId(fromUrl: Swift.String) -> (id: Swift.String, type: M2Kit.M2YTIDType)?
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getVideosOfPlaylistId(_ playlistId: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
#endif
|
||||
}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Hashable {}
|
||||
extension M2Kit.M2YTIDType : Swift.RawRepresentable {}
|
||||
|
||||
@ -148,11 +148,25 @@ public struct M2Musi {
|
||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
#endif
|
||||
}
|
||||
public enum M2NetConnecttionType {
|
||||
case wifi
|
||||
case cellular
|
||||
case other
|
||||
case none
|
||||
public static func == (a: M2Kit.M2NetConnecttionType, b: M2Kit.M2NetConnecttionType) -> Swift.Bool
|
||||
public func hash(into hasher: inout Swift.Hasher)
|
||||
public var hashValue: Swift.Int {
|
||||
get
|
||||
}
|
||||
}
|
||||
public struct M2NetMonitor {
|
||||
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||
public var isConnected: Swift.Bool {
|
||||
get
|
||||
}
|
||||
public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
public func stop()
|
||||
}
|
||||
public struct M2Radio {
|
||||
@ -510,4 +524,28 @@ extension M2Kit.M2Utils {
|
||||
public typealias Coordinator = Swift.Void
|
||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||
}
|
||||
public enum M2YTIDType : Swift.String {
|
||||
case video
|
||||
case playlist
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public init?(rawValue: Swift.String)
|
||||
#endif
|
||||
public typealias RawValue = Swift.String
|
||||
public var rawValue: Swift.String {
|
||||
get
|
||||
}
|
||||
}
|
||||
public struct M2YT {
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func extractId(fromUrl: Swift.String) -> (id: Swift.String, type: M2Kit.M2YTIDType)?
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getVideosOfPlaylistId(_ playlistId: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
#endif
|
||||
}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Hashable {}
|
||||
extension M2Kit.M2YTIDType : Swift.RawRepresentable {}
|
||||
|
||||
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -148,11 +148,25 @@ public struct M2Musi {
|
||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
#endif
|
||||
}
|
||||
public enum M2NetConnecttionType {
|
||||
case wifi
|
||||
case cellular
|
||||
case other
|
||||
case none
|
||||
public static func == (a: M2Kit.M2NetConnecttionType, b: M2Kit.M2NetConnecttionType) -> Swift.Bool
|
||||
public func hash(into hasher: inout Swift.Hasher)
|
||||
public var hashValue: Swift.Int {
|
||||
get
|
||||
}
|
||||
}
|
||||
public struct M2NetMonitor {
|
||||
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||
public var isConnected: Swift.Bool {
|
||||
get
|
||||
}
|
||||
public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
public func stop()
|
||||
}
|
||||
public struct M2Radio {
|
||||
@ -510,4 +524,28 @@ extension M2Kit.M2Utils {
|
||||
public typealias Coordinator = Swift.Void
|
||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||
}
|
||||
public enum M2YTIDType : Swift.String {
|
||||
case video
|
||||
case playlist
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public init?(rawValue: Swift.String)
|
||||
#endif
|
||||
public typealias RawValue = Swift.String
|
||||
public var rawValue: Swift.String {
|
||||
get
|
||||
}
|
||||
}
|
||||
public struct M2YT {
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func extractId(fromUrl: Swift.String) -> (id: Swift.String, type: M2Kit.M2YTIDType)?
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getVideosOfPlaylistId(_ playlistId: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
#endif
|
||||
}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Hashable {}
|
||||
extension M2Kit.M2YTIDType : Swift.RawRepresentable {}
|
||||
|
||||
@ -148,11 +148,25 @@ public struct M2Musi {
|
||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
#endif
|
||||
}
|
||||
public enum M2NetConnecttionType {
|
||||
case wifi
|
||||
case cellular
|
||||
case other
|
||||
case none
|
||||
public static func == (a: M2Kit.M2NetConnecttionType, b: M2Kit.M2NetConnecttionType) -> Swift.Bool
|
||||
public func hash(into hasher: inout Swift.Hasher)
|
||||
public var hashValue: Swift.Int {
|
||||
get
|
||||
}
|
||||
}
|
||||
public struct M2NetMonitor {
|
||||
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||
public var isConnected: Swift.Bool {
|
||||
get
|
||||
}
|
||||
public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
public func stop()
|
||||
}
|
||||
public struct M2Radio {
|
||||
@ -510,4 +524,28 @@ extension M2Kit.M2Utils {
|
||||
public typealias Coordinator = Swift.Void
|
||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||
}
|
||||
public enum M2YTIDType : Swift.String {
|
||||
case video
|
||||
case playlist
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public init?(rawValue: Swift.String)
|
||||
#endif
|
||||
public typealias RawValue = Swift.String
|
||||
public var rawValue: Swift.String {
|
||||
get
|
||||
}
|
||||
}
|
||||
public struct M2YT {
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func extractId(fromUrl: Swift.String) -> (id: Swift.String, type: M2Kit.M2YTIDType)?
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getVideosOfPlaylistId(_ playlistId: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
#endif
|
||||
}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Hashable {}
|
||||
extension M2Kit.M2YTIDType : Swift.RawRepresentable {}
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -148,11 +148,25 @@ public struct M2Musi {
|
||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
#endif
|
||||
}
|
||||
public enum M2NetConnecttionType {
|
||||
case wifi
|
||||
case cellular
|
||||
case other
|
||||
case none
|
||||
public static func == (a: M2Kit.M2NetConnecttionType, b: M2Kit.M2NetConnecttionType) -> Swift.Bool
|
||||
public func hash(into hasher: inout Swift.Hasher)
|
||||
public var hashValue: Swift.Int {
|
||||
get
|
||||
}
|
||||
}
|
||||
public struct M2NetMonitor {
|
||||
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||
public var isConnected: Swift.Bool {
|
||||
get
|
||||
}
|
||||
public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
public func stop()
|
||||
}
|
||||
public struct M2Radio {
|
||||
@ -510,4 +524,28 @@ extension M2Kit.M2Utils {
|
||||
public typealias Coordinator = Swift.Void
|
||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||
}
|
||||
public enum M2YTIDType : Swift.String {
|
||||
case video
|
||||
case playlist
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public init?(rawValue: Swift.String)
|
||||
#endif
|
||||
public typealias RawValue = Swift.String
|
||||
public var rawValue: Swift.String {
|
||||
get
|
||||
}
|
||||
}
|
||||
public struct M2YT {
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func extractId(fromUrl: Swift.String) -> (id: Swift.String, type: M2Kit.M2YTIDType)?
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getVideosOfPlaylistId(_ playlistId: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
#endif
|
||||
}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Hashable {}
|
||||
extension M2Kit.M2YTIDType : Swift.RawRepresentable {}
|
||||
|
||||
@ -148,11 +148,25 @@ public struct M2Musi {
|
||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
#endif
|
||||
}
|
||||
public enum M2NetConnecttionType {
|
||||
case wifi
|
||||
case cellular
|
||||
case other
|
||||
case none
|
||||
public static func == (a: M2Kit.M2NetConnecttionType, b: M2Kit.M2NetConnecttionType) -> Swift.Bool
|
||||
public func hash(into hasher: inout Swift.Hasher)
|
||||
public var hashValue: Swift.Int {
|
||||
get
|
||||
}
|
||||
}
|
||||
public struct M2NetMonitor {
|
||||
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||
public var isConnected: Swift.Bool {
|
||||
get
|
||||
}
|
||||
public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
public func stop()
|
||||
}
|
||||
public struct M2Radio {
|
||||
@ -510,4 +524,28 @@ extension M2Kit.M2Utils {
|
||||
public typealias Coordinator = Swift.Void
|
||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||
}
|
||||
public enum M2YTIDType : Swift.String {
|
||||
case video
|
||||
case playlist
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public init?(rawValue: Swift.String)
|
||||
#endif
|
||||
public typealias RawValue = Swift.String
|
||||
public var rawValue: Swift.String {
|
||||
get
|
||||
}
|
||||
}
|
||||
public struct M2YT {
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func extractId(fromUrl: Swift.String) -> (id: Swift.String, type: M2Kit.M2YTIDType)?
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getVideosOfPlaylistId(_ playlistId: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
#endif
|
||||
}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Hashable {}
|
||||
extension M2Kit.M2YTIDType : Swift.RawRepresentable {}
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>25A354</string>
|
||||
<string>25A362</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>en</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
@ -17,7 +17,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>5.5</string>
|
||||
<string>5.6</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
@ -37,9 +37,9 @@
|
||||
<key>DTSDKName</key>
|
||||
<string>macosx26.0</string>
|
||||
<key>DTXcode</key>
|
||||
<string>2600</string>
|
||||
<string>2601</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>17A324</string>
|
||||
<string>17A400</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>12.0</string>
|
||||
<key>UIDeviceFamily</key>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -148,11 +148,25 @@ public struct M2Musi {
|
||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
#endif
|
||||
}
|
||||
public enum M2NetConnecttionType {
|
||||
case wifi
|
||||
case cellular
|
||||
case other
|
||||
case none
|
||||
public static func == (a: M2Kit.M2NetConnecttionType, b: M2Kit.M2NetConnecttionType) -> Swift.Bool
|
||||
public func hash(into hasher: inout Swift.Hasher)
|
||||
public var hashValue: Swift.Int {
|
||||
get
|
||||
}
|
||||
}
|
||||
public struct M2NetMonitor {
|
||||
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||
public var isConnected: Swift.Bool {
|
||||
get
|
||||
}
|
||||
public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
public func stop()
|
||||
}
|
||||
public struct M2Radio {
|
||||
@ -510,4 +524,28 @@ extension M2Kit.M2Utils {
|
||||
public typealias Coordinator = Swift.Void
|
||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||
}
|
||||
public enum M2YTIDType : Swift.String {
|
||||
case video
|
||||
case playlist
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public init?(rawValue: Swift.String)
|
||||
#endif
|
||||
public typealias RawValue = Swift.String
|
||||
public var rawValue: Swift.String {
|
||||
get
|
||||
}
|
||||
}
|
||||
public struct M2YT {
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func extractId(fromUrl: Swift.String) -> (id: Swift.String, type: M2Kit.M2YTIDType)?
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getVideosOfPlaylistId(_ playlistId: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
#endif
|
||||
}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Hashable {}
|
||||
extension M2Kit.M2YTIDType : Swift.RawRepresentable {}
|
||||
|
||||
@ -148,11 +148,25 @@ public struct M2Musi {
|
||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
#endif
|
||||
}
|
||||
public enum M2NetConnecttionType {
|
||||
case wifi
|
||||
case cellular
|
||||
case other
|
||||
case none
|
||||
public static func == (a: M2Kit.M2NetConnecttionType, b: M2Kit.M2NetConnecttionType) -> Swift.Bool
|
||||
public func hash(into hasher: inout Swift.Hasher)
|
||||
public var hashValue: Swift.Int {
|
||||
get
|
||||
}
|
||||
}
|
||||
public struct M2NetMonitor {
|
||||
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||
public var isConnected: Swift.Bool {
|
||||
get
|
||||
}
|
||||
public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
public func stop()
|
||||
}
|
||||
public struct M2Radio {
|
||||
@ -510,4 +524,28 @@ extension M2Kit.M2Utils {
|
||||
public typealias Coordinator = Swift.Void
|
||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||
}
|
||||
public enum M2YTIDType : Swift.String {
|
||||
case video
|
||||
case playlist
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public init?(rawValue: Swift.String)
|
||||
#endif
|
||||
public typealias RawValue = Swift.String
|
||||
public var rawValue: Swift.String {
|
||||
get
|
||||
}
|
||||
}
|
||||
public struct M2YT {
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func extractId(fromUrl: Swift.String) -> (id: Swift.String, type: M2Kit.M2YTIDType)?
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getVideosOfPlaylistId(_ playlistId: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
#endif
|
||||
}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Hashable {}
|
||||
extension M2Kit.M2YTIDType : Swift.RawRepresentable {}
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -148,11 +148,25 @@ public struct M2Musi {
|
||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
#endif
|
||||
}
|
||||
public enum M2NetConnecttionType {
|
||||
case wifi
|
||||
case cellular
|
||||
case other
|
||||
case none
|
||||
public static func == (a: M2Kit.M2NetConnecttionType, b: M2Kit.M2NetConnecttionType) -> Swift.Bool
|
||||
public func hash(into hasher: inout Swift.Hasher)
|
||||
public var hashValue: Swift.Int {
|
||||
get
|
||||
}
|
||||
}
|
||||
public struct M2NetMonitor {
|
||||
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||
public var isConnected: Swift.Bool {
|
||||
get
|
||||
}
|
||||
public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
public func stop()
|
||||
}
|
||||
public struct M2Radio {
|
||||
@ -510,4 +524,28 @@ extension M2Kit.M2Utils {
|
||||
public typealias Coordinator = Swift.Void
|
||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||
}
|
||||
public enum M2YTIDType : Swift.String {
|
||||
case video
|
||||
case playlist
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public init?(rawValue: Swift.String)
|
||||
#endif
|
||||
public typealias RawValue = Swift.String
|
||||
public var rawValue: Swift.String {
|
||||
get
|
||||
}
|
||||
}
|
||||
public struct M2YT {
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func extractId(fromUrl: Swift.String) -> (id: Swift.String, type: M2Kit.M2YTIDType)?
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getVideosOfPlaylistId(_ playlistId: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
#endif
|
||||
}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Hashable {}
|
||||
extension M2Kit.M2YTIDType : Swift.RawRepresentable {}
|
||||
|
||||
@ -148,11 +148,25 @@ public struct M2Musi {
|
||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
#endif
|
||||
}
|
||||
public enum M2NetConnecttionType {
|
||||
case wifi
|
||||
case cellular
|
||||
case other
|
||||
case none
|
||||
public static func == (a: M2Kit.M2NetConnecttionType, b: M2Kit.M2NetConnecttionType) -> Swift.Bool
|
||||
public func hash(into hasher: inout Swift.Hasher)
|
||||
public var hashValue: Swift.Int {
|
||||
get
|
||||
}
|
||||
}
|
||||
public struct M2NetMonitor {
|
||||
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||
public var isConnected: Swift.Bool {
|
||||
get
|
||||
}
|
||||
public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
public func stop()
|
||||
}
|
||||
public struct M2Radio {
|
||||
@ -510,4 +524,28 @@ extension M2Kit.M2Utils {
|
||||
public typealias Coordinator = Swift.Void
|
||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||
}
|
||||
public enum M2YTIDType : Swift.String {
|
||||
case video
|
||||
case playlist
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public init?(rawValue: Swift.String)
|
||||
#endif
|
||||
public typealias RawValue = Swift.String
|
||||
public var rawValue: Swift.String {
|
||||
get
|
||||
}
|
||||
}
|
||||
public struct M2YT {
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func extractId(fromUrl: Swift.String) -> (id: Swift.String, type: M2Kit.M2YTIDType)?
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getVideosOfPlaylistId(_ playlistId: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
#endif
|
||||
}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||
extension M2Kit.M2YTIDType : Swift.Hashable {}
|
||||
extension M2Kit.M2YTIDType : Swift.RawRepresentable {}
|
||||
|
||||
Binary file not shown.
@ -10,15 +10,15 @@
|
||||
</data>
|
||||
<key>Info.plist</key>
|
||||
<data>
|
||||
62UzeSHE6BDNq8mmEhyJ/a0YHfo=
|
||||
Cbp8zwZZc5V8xoPjXrdBQI4BKuM=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
||||
<data>
|
||||
7/vDeE/eduwd/GpD5b6zR/qxE5w=
|
||||
41rt541tkAVNX6K0E7dpVU7C7Qk=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
||||
<data>
|
||||
TFJwyl/q/iM4I2LpvP1hLh568nA=
|
||||
Wdl/bSWh8D0ZST7ZffXqHzwCDcs=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
||||
<data>
|
||||
@ -26,19 +26,19 @@
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
||||
<data>
|
||||
TFJwyl/q/iM4I2LpvP1hLh568nA=
|
||||
Wdl/bSWh8D0ZST7ZffXqHzwCDcs=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
||||
<data>
|
||||
jS6vfZYVjjG/0PETqqbSevCQKxg=
|
||||
QEbIrCqNplsv3siB/TypHSr9nSo=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
||||
<data>
|
||||
7/vDeE/eduwd/GpD5b6zR/qxE5w=
|
||||
41rt541tkAVNX6K0E7dpVU7C7Qk=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
||||
<data>
|
||||
omuwys8zokQzIXbdjqEXc8hqz6A=
|
||||
E4OkKnlS4W0dfpeM2EYBeAVnMu8=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
||||
<data>
|
||||
@ -46,11 +46,11 @@
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
||||
<data>
|
||||
omuwys8zokQzIXbdjqEXc8hqz6A=
|
||||
E4OkKnlS4W0dfpeM2EYBeAVnMu8=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
||||
<data>
|
||||
M2/dATjacYcYYHrL0mJ5FsVROXk=
|
||||
KGxPBCTp4TVI4k0pfIeAcsxnjg0=
|
||||
</data>
|
||||
<key>Modules/module.modulemap</key>
|
||||
<data>
|
||||
@ -70,14 +70,14 @@
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
3AE/4H71l+C460hmg8wSDKssAzKn3VIDmUT1ktjYjlg=
|
||||
fz1sHLvzFaco75YOYyJyXBk6fJU7xb6Lbnqxd3jdpeI=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
zYQ2HHpnTeazmC3F6s8Yaf3ZQuShky+EF1ePHqXRzQE=
|
||||
Kb4RPLhN3hG2ZaCTJyiDjuyZs4AuH4laOuO0rKcrCGk=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
||||
@ -91,28 +91,28 @@
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
zYQ2HHpnTeazmC3F6s8Yaf3ZQuShky+EF1ePHqXRzQE=
|
||||
Kb4RPLhN3hG2ZaCTJyiDjuyZs4AuH4laOuO0rKcrCGk=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
dSs92XW/apXzMnGPZ20JSbs2XobhwGM3EGdWGfTe5Xw=
|
||||
d8i5XTIvIyxSmPtwXy1KFfYqehZrcZS14JXExezYBIM=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
3AE/4H71l+C460hmg8wSDKssAzKn3VIDmUT1ktjYjlg=
|
||||
fz1sHLvzFaco75YOYyJyXBk6fJU7xb6Lbnqxd3jdpeI=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
oh6d8kx/zTEQ5fSx0w3ySq2McJCV+phFCV82+iiLG2I=
|
||||
Ynfjfr42+TrMpXb71dClmLlE65wRBW6YYqMQBWToWSQ=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
||||
@ -126,14 +126,14 @@
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
oh6d8kx/zTEQ5fSx0w3ySq2McJCV+phFCV82+iiLG2I=
|
||||
Ynfjfr42+TrMpXb71dClmLlE65wRBW6YYqMQBWToWSQ=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
whqwYYLQ7Xw2FTvO5K6ZvT1Dksa9TzjlqTSVFBK33wM=
|
||||
Br52WLmq2lG/yAkXp+AXMGEf4p+3pNTqp/+1jxQ0xG0=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/module.modulemap</key>
|
||||
|
||||
Reference in New Issue
Block a user