Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 262eb45dee |
@ -4,20 +4,6 @@
|
||||
<dict>
|
||||
<key>AvailableLibraries</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>BinaryPath</key>
|
||||
<string>M2Kit.framework/M2Kit</string>
|
||||
<key>LibraryIdentifier</key>
|
||||
<string>ios-arm64</string>
|
||||
<key>LibraryPath</key>
|
||||
<string>M2Kit.framework</string>
|
||||
<key>SupportedArchitectures</key>
|
||||
<array>
|
||||
<string>arm64</string>
|
||||
</array>
|
||||
<key>SupportedPlatform</key>
|
||||
<string>ios</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>BinaryPath</key>
|
||||
<string>M2Kit.framework/M2Kit</string>
|
||||
@ -52,6 +38,20 @@
|
||||
<key>SupportedPlatformVariant</key>
|
||||
<string>maccatalyst</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>BinaryPath</key>
|
||||
<string>M2Kit.framework/M2Kit</string>
|
||||
<key>LibraryIdentifier</key>
|
||||
<string>ios-arm64</string>
|
||||
<key>LibraryPath</key>
|
||||
<string>M2Kit.framework</string>
|
||||
<key>SupportedArchitectures</key>
|
||||
<array>
|
||||
<string>arm64</string>
|
||||
</array>
|
||||
<key>SupportedPlatform</key>
|
||||
<string>ios</string>
|
||||
</dict>
|
||||
</array>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>XFWK</string>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -97,6 +97,7 @@ extension M2Kit.M2API {
|
||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||
#endif
|
||||
}
|
||||
@available(*, deprecated, message: "M2Backup is deprecated. Use M2Backup instead.")
|
||||
public struct M2Backup {
|
||||
public static var backupCode: Swift.String {
|
||||
get
|
||||
@ -113,6 +114,19 @@ public struct M2Backup {
|
||||
#endif
|
||||
}
|
||||
public struct M2Backup2 {
|
||||
public static var backupCode: Swift.String {
|
||||
get
|
||||
}
|
||||
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int?) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||
#endif
|
||||
@ -160,6 +174,11 @@ public struct M2Image2 {
|
||||
public struct M2K {
|
||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||
}
|
||||
public struct M2Log {
|
||||
public static func send(event: Swift.String, count: Swift.Int = 1, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
public static func lazyLog(event: Swift.String, count: Swift.Int = 1)
|
||||
public static func sendAllEvents(result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
}
|
||||
public struct M2Musi {
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
|
||||
Binary file not shown.
@ -97,6 +97,7 @@ extension M2Kit.M2API {
|
||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||
#endif
|
||||
}
|
||||
@available(*, deprecated, message: "M2Backup is deprecated. Use M2Backup instead.")
|
||||
public struct M2Backup {
|
||||
public static var backupCode: Swift.String {
|
||||
get
|
||||
@ -113,6 +114,19 @@ public struct M2Backup {
|
||||
#endif
|
||||
}
|
||||
public struct M2Backup2 {
|
||||
public static var backupCode: Swift.String {
|
||||
get
|
||||
}
|
||||
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int?) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||
#endif
|
||||
@ -160,6 +174,11 @@ public struct M2Image2 {
|
||||
public struct M2K {
|
||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||
}
|
||||
public struct M2Log {
|
||||
public static func send(event: Swift.String, count: Swift.Int = 1, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
public static func lazyLog(event: Swift.String, count: Swift.Int = 1)
|
||||
public static func sendAllEvents(result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
}
|
||||
public struct M2Musi {
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -97,6 +97,7 @@ extension M2Kit.M2API {
|
||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||
#endif
|
||||
}
|
||||
@available(*, deprecated, message: "M2Backup is deprecated. Use M2Backup instead.")
|
||||
public struct M2Backup {
|
||||
public static var backupCode: Swift.String {
|
||||
get
|
||||
@ -113,6 +114,19 @@ public struct M2Backup {
|
||||
#endif
|
||||
}
|
||||
public struct M2Backup2 {
|
||||
public static var backupCode: Swift.String {
|
||||
get
|
||||
}
|
||||
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int?) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||
#endif
|
||||
@ -160,6 +174,11 @@ public struct M2Image2 {
|
||||
public struct M2K {
|
||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||
}
|
||||
public struct M2Log {
|
||||
public static func send(event: Swift.String, count: Swift.Int = 1, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
public static func lazyLog(event: Swift.String, count: Swift.Int = 1)
|
||||
public static func sendAllEvents(result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
}
|
||||
public struct M2Musi {
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
|
||||
Binary file not shown.
@ -97,6 +97,7 @@ extension M2Kit.M2API {
|
||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||
#endif
|
||||
}
|
||||
@available(*, deprecated, message: "M2Backup is deprecated. Use M2Backup instead.")
|
||||
public struct M2Backup {
|
||||
public static var backupCode: Swift.String {
|
||||
get
|
||||
@ -113,6 +114,19 @@ public struct M2Backup {
|
||||
#endif
|
||||
}
|
||||
public struct M2Backup2 {
|
||||
public static var backupCode: Swift.String {
|
||||
get
|
||||
}
|
||||
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int?) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||
#endif
|
||||
@ -160,6 +174,11 @@ public struct M2Image2 {
|
||||
public struct M2K {
|
||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||
}
|
||||
public struct M2Log {
|
||||
public static func send(event: Swift.String, count: Swift.Int = 1, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
public static func lazyLog(event: Swift.String, count: Swift.Int = 1)
|
||||
public static func sendAllEvents(result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
}
|
||||
public struct M2Musi {
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -97,6 +97,7 @@ extension M2Kit.M2API {
|
||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||
#endif
|
||||
}
|
||||
@available(*, deprecated, message: "M2Backup is deprecated. Use M2Backup instead.")
|
||||
public struct M2Backup {
|
||||
public static var backupCode: Swift.String {
|
||||
get
|
||||
@ -113,6 +114,19 @@ public struct M2Backup {
|
||||
#endif
|
||||
}
|
||||
public struct M2Backup2 {
|
||||
public static var backupCode: Swift.String {
|
||||
get
|
||||
}
|
||||
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int?) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||
#endif
|
||||
@ -160,6 +174,11 @@ public struct M2Image2 {
|
||||
public struct M2K {
|
||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||
}
|
||||
public struct M2Log {
|
||||
public static func send(event: Swift.String, count: Swift.Int = 1, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
public static func lazyLog(event: Swift.String, count: Swift.Int = 1)
|
||||
public static func sendAllEvents(result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
}
|
||||
public struct M2Musi {
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
|
||||
Binary file not shown.
@ -97,6 +97,7 @@ extension M2Kit.M2API {
|
||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||
#endif
|
||||
}
|
||||
@available(*, deprecated, message: "M2Backup is deprecated. Use M2Backup instead.")
|
||||
public struct M2Backup {
|
||||
public static var backupCode: Swift.String {
|
||||
get
|
||||
@ -113,6 +114,19 @@ public struct M2Backup {
|
||||
#endif
|
||||
}
|
||||
public struct M2Backup2 {
|
||||
public static var backupCode: Swift.String {
|
||||
get
|
||||
}
|
||||
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int?) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||
#endif
|
||||
@ -160,6 +174,11 @@ public struct M2Image2 {
|
||||
public struct M2K {
|
||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||
}
|
||||
public struct M2Log {
|
||||
public static func send(event: Swift.String, count: Swift.Int = 1, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
public static func lazyLog(event: Swift.String, count: Swift.Int = 1)
|
||||
public static func sendAllEvents(result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
}
|
||||
public struct M2Musi {
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
|
||||
@ -17,7 +17,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>5.8</string>
|
||||
<string>5.9</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
@ -37,9 +37,9 @@
|
||||
<key>DTSDKName</key>
|
||||
<string>macosx26.1</string>
|
||||
<key>DTXcode</key>
|
||||
<string>2610</string>
|
||||
<string>2611</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>17B55</string>
|
||||
<string>17B100</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>12.0</string>
|
||||
<key>UIDeviceFamily</key>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -97,6 +97,7 @@ extension M2Kit.M2API {
|
||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||
#endif
|
||||
}
|
||||
@available(*, deprecated, message: "M2Backup is deprecated. Use M2Backup instead.")
|
||||
public struct M2Backup {
|
||||
public static var backupCode: Swift.String {
|
||||
get
|
||||
@ -113,6 +114,19 @@ public struct M2Backup {
|
||||
#endif
|
||||
}
|
||||
public struct M2Backup2 {
|
||||
public static var backupCode: Swift.String {
|
||||
get
|
||||
}
|
||||
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int?) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||
#endif
|
||||
@ -160,6 +174,11 @@ public struct M2Image2 {
|
||||
public struct M2K {
|
||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||
}
|
||||
public struct M2Log {
|
||||
public static func send(event: Swift.String, count: Swift.Int = 1, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
public static func lazyLog(event: Swift.String, count: Swift.Int = 1)
|
||||
public static func sendAllEvents(result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
}
|
||||
public struct M2Musi {
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
|
||||
Binary file not shown.
@ -97,6 +97,7 @@ extension M2Kit.M2API {
|
||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||
#endif
|
||||
}
|
||||
@available(*, deprecated, message: "M2Backup is deprecated. Use M2Backup instead.")
|
||||
public struct M2Backup {
|
||||
public static var backupCode: Swift.String {
|
||||
get
|
||||
@ -113,6 +114,19 @@ public struct M2Backup {
|
||||
#endif
|
||||
}
|
||||
public struct M2Backup2 {
|
||||
public static var backupCode: Swift.String {
|
||||
get
|
||||
}
|
||||
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int?) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||
#endif
|
||||
@ -160,6 +174,11 @@ public struct M2Image2 {
|
||||
public struct M2K {
|
||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||
}
|
||||
public struct M2Log {
|
||||
public static func send(event: Swift.String, count: Swift.Int = 1, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
public static func lazyLog(event: Swift.String, count: Swift.Int = 1)
|
||||
public static func sendAllEvents(result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
}
|
||||
public struct M2Musi {
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -97,6 +97,7 @@ extension M2Kit.M2API {
|
||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||
#endif
|
||||
}
|
||||
@available(*, deprecated, message: "M2Backup is deprecated. Use M2Backup instead.")
|
||||
public struct M2Backup {
|
||||
public static var backupCode: Swift.String {
|
||||
get
|
||||
@ -113,6 +114,19 @@ public struct M2Backup {
|
||||
#endif
|
||||
}
|
||||
public struct M2Backup2 {
|
||||
public static var backupCode: Swift.String {
|
||||
get
|
||||
}
|
||||
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int?) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||
#endif
|
||||
@ -160,6 +174,11 @@ public struct M2Image2 {
|
||||
public struct M2K {
|
||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||
}
|
||||
public struct M2Log {
|
||||
public static func send(event: Swift.String, count: Swift.Int = 1, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
public static func lazyLog(event: Swift.String, count: Swift.Int = 1)
|
||||
public static func sendAllEvents(result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
}
|
||||
public struct M2Musi {
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
|
||||
Binary file not shown.
@ -97,6 +97,7 @@ extension M2Kit.M2API {
|
||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||
#endif
|
||||
}
|
||||
@available(*, deprecated, message: "M2Backup is deprecated. Use M2Backup instead.")
|
||||
public struct M2Backup {
|
||||
public static var backupCode: Swift.String {
|
||||
get
|
||||
@ -113,6 +114,19 @@ public struct M2Backup {
|
||||
#endif
|
||||
}
|
||||
public struct M2Backup2 {
|
||||
public static var backupCode: Swift.String {
|
||||
get
|
||||
}
|
||||
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int?) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||
#endif
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||
#endif
|
||||
@ -160,6 +174,11 @@ public struct M2Image2 {
|
||||
public struct M2K {
|
||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||
}
|
||||
public struct M2Log {
|
||||
public static func send(event: Swift.String, count: Swift.Int = 1, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
public static func lazyLog(event: Swift.String, count: Swift.Int = 1)
|
||||
public static func sendAllEvents(result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||
}
|
||||
public struct M2Musi {
|
||||
#if compiler(>=5.3) && $NonescapableTypes
|
||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||
|
||||
Binary file not shown.
@ -10,47 +10,47 @@
|
||||
</data>
|
||||
<key>Info.plist</key>
|
||||
<data>
|
||||
xN4GDcUeZ9JhZpxdf+KxcQLNKxo=
|
||||
TtQfsetDBxYJCGgyVEa8un9FE4s=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
||||
<data>
|
||||
Q/heEcDPyytObAHeOk+wtFBIydY=
|
||||
Ed/i99wz3LyUa25XulI6c+Et+B4=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
||||
<data>
|
||||
4nv/pfwNXzenr0LFsy1hkd2gTEQ=
|
||||
lDlNNnY5wOxTlAgEiAxt99OfPcs=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
||||
<data>
|
||||
gAYKkXI9dIODG5xP0AUaUnC1QiA=
|
||||
gVYvs0pwMssUqEMscLojXLYHZH0=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
||||
<data>
|
||||
4nv/pfwNXzenr0LFsy1hkd2gTEQ=
|
||||
lDlNNnY5wOxTlAgEiAxt99OfPcs=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
||||
<data>
|
||||
IpdvIwowB0x7rDXcjzuc1I9gUKw=
|
||||
G1FRzf6ZV4IkWCA9a7pbhdCdclE=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
||||
<data>
|
||||
Q/heEcDPyytObAHeOk+wtFBIydY=
|
||||
Ed/i99wz3LyUa25XulI6c+Et+B4=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
||||
<data>
|
||||
89dyWTGJPeQ7KagK3sNb5ZEvzrs=
|
||||
xLO/XSNQEUWbeMYrSbpcsMmgKi0=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
||||
<data>
|
||||
YQ2Xic1Ncz3oyq8iKnGEFmGpmIE=
|
||||
0EtydSwm6lLpBuiG8GzpXOmAabw=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
||||
<data>
|
||||
89dyWTGJPeQ7KagK3sNb5ZEvzrs=
|
||||
xLO/XSNQEUWbeMYrSbpcsMmgKi0=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
||||
<data>
|
||||
0sjeLIa5X7X8wWLyZG8j7IvG0Fo=
|
||||
/ioKYDgEFJ0WUalE7UXS+OIW+rc=
|
||||
</data>
|
||||
<key>Modules/module.modulemap</key>
|
||||
<data>
|
||||
@ -70,70 +70,70 @@
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
0NuiNCJtSAlbG43SjD/j7ey2lEk+djmS339Ob/d6iA4=
|
||||
D3WtrO0W0XYeOta8TNEsZng2r7UoKZ5e1cBY7dixkoY=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
bM30wqXEcLMaTKL4HEhp8Pcg0vVyeRbjkpF96PGn9Xc=
|
||||
Hs+tRJDEOSsTUQTwX+IqgQq7/nYltbFMUV+X6HbnJEM=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
dFiycdXiCzP77in6R4xTAya9ds2n/FBIvoi823ab1ME=
|
||||
PU+xuDu6OKX+o/mc/0yk1cHnpXsBf1yU4whAUyzfA2Q=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
bM30wqXEcLMaTKL4HEhp8Pcg0vVyeRbjkpF96PGn9Xc=
|
||||
Hs+tRJDEOSsTUQTwX+IqgQq7/nYltbFMUV+X6HbnJEM=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
oAK2RWToJqjmL56Zyqi+hqo1p1BL/rA65RiXvxIVzVs=
|
||||
3NGrDrSU+1g6LWcqnlyFF+0m1nkh3fvfAWtkNtyf39Y=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
0NuiNCJtSAlbG43SjD/j7ey2lEk+djmS339Ob/d6iA4=
|
||||
D3WtrO0W0XYeOta8TNEsZng2r7UoKZ5e1cBY7dixkoY=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
HlsXKKcH0SN7XjcnnjWbAQH1nL0SJ0Nk6ky8VDeQg5Q=
|
||||
vQYO42syKKvlzqb6BVAmVX9B6XN0Ss58MzTn1zlBjlo=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
WHNTWHjfhTYqvh2ej76LAVNbjiNAK/BNghzWOQbsm24=
|
||||
EH2UY0mq4fSqzWGrTPQvECMr57ohcA07ma0PY6w8F50=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
HlsXKKcH0SN7XjcnnjWbAQH1nL0SJ0Nk6ky8VDeQg5Q=
|
||||
vQYO42syKKvlzqb6BVAmVX9B6XN0Ss58MzTn1zlBjlo=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
jly+13iFa+sNeVAiSIA9Y2fdo0IcCc4+CnNybyIWHxk=
|
||||
vGHvrCYrs6EnoT8sSYVX3TqJryFu//Ceo356fdScQXg=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/module.modulemap</key>
|
||||
|
||||
Reference in New Issue
Block a user