|
1 | 1 | // swift-interface-format-version: 1.0 |
2 | | -// swift-compiler-version: Apple Swift version 6.1.2 effective-5.10 (swiftlang-6.1.2.1.2 clang-1700.0.13.5) |
3 | | -// swift-module-flags: -target arm64-apple-ios12-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -Onone -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name Measure |
4 | | -// swift-module-flags-ignorable: -no-verify-emitted-module-interface -interface-compiler-version 6.1.2 |
| 2 | +// swift-compiler-version: Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101) |
| 3 | +// swift-module-flags: -target arm64-apple-ios12-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -Onone -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name Measure |
| 4 | +// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3.2 |
5 | 5 | import AVKit |
6 | 6 | import CoreData |
7 | 7 | import CoreMotion |
@@ -40,30 +40,30 @@ extension Measure.AttributeValue : Swift.Codable { |
40 | 40 | public init(from decoder: any Swift.Decoder) throws |
41 | 41 | } |
42 | 42 | public typealias SessionObCoreDataClassSet = Foundation.NSSet |
43 | | -@_inheritsConvenienceInitializers @objc(SessionOb) public class SessionOb : CoreData.NSManagedObject { |
44 | | - @objc override dynamic public init(entity: CoreData.NSEntityDescription, insertInto context: CoreData.NSManagedObjectContext?) |
| 43 | +@_inheritsConvenienceInitializers @objc(SessionOb) nonisolated public class SessionOb : CoreData.NSManagedObject { |
| 44 | + @objc override nonisolated dynamic public init(entity: CoreData.NSEntityDescription, insertInto context: CoreData.NSManagedObjectContext?) |
45 | 45 | @objc deinit |
46 | 46 | } |
47 | 47 | public typealias SessionObCoreDataPropertiesSet = Foundation.NSSet |
48 | 48 | extension Measure.SessionOb { |
49 | 49 | @nonobjc public class func fetchRequest() -> CoreData.NSFetchRequest<Measure.SessionOb> |
50 | | - @objc @NSManaged dynamic public var crashed: Swift.Bool { |
| 50 | + @objc @NSManaged nonisolated dynamic public var crashed: Swift.Bool { |
51 | 51 | @objc get |
52 | 52 | @objc set |
53 | 53 | } |
54 | | - @objc @NSManaged dynamic public var createdAt: Swift.Int64 { |
| 54 | + @objc @NSManaged nonisolated dynamic public var createdAt: Swift.Int64 { |
55 | 55 | @objc get |
56 | 56 | @objc set |
57 | 57 | } |
58 | | - @objc @NSManaged dynamic public var needsReporting: Swift.Bool { |
| 58 | + @objc @NSManaged nonisolated dynamic public var needsReporting: Swift.Bool { |
59 | 59 | @objc get |
60 | 60 | @objc set |
61 | 61 | } |
62 | | - @objc @NSManaged dynamic public var pid: Swift.Int32 { |
| 62 | + @objc @NSManaged nonisolated dynamic public var pid: Swift.Int32 { |
63 | 63 | @objc get |
64 | 64 | @objc set |
65 | 65 | } |
66 | | - @objc @NSManaged dynamic public var sessionId: Swift.String? { |
| 66 | + @objc @NSManaged nonisolated dynamic public var sessionId: Swift.String? { |
67 | 67 | @objc get |
68 | 68 | @objc set |
69 | 69 | } |
@@ -324,16 +324,22 @@ public enum ScreenshotMaskLevel : Swift.String, Swift.Codable, Swift.CaseIterabl |
324 | 324 | @objc deinit |
325 | 325 | } |
326 | 326 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *) |
327 | | -@_Concurrency.MainActor @preconcurrency public struct MsrMoniterView<Content> : SwiftUICore.View where Content : SwiftUICore.View { |
| 327 | +@_Concurrency.MainActor @preconcurrency public struct MsrMonitorView<Content> : SwiftUICore.View where Content : SwiftUICore.View { |
328 | 328 | @_Concurrency.MainActor @preconcurrency public init(_ viewName: Swift.String? = nil, content: @escaping () -> Content) |
329 | 329 | @_Concurrency.MainActor @preconcurrency public var body: some SwiftUICore.View { |
330 | 330 | get |
331 | 331 | } |
332 | 332 | @available(iOS 13, tvOS 13, watchOS 6.0, macOS 10.15, *) |
333 | | - public typealias Body = @_opaqueReturnTypeOf("$s7Measure14MsrMoniterViewV4bodyQrvp", 0) __<Content> |
| 333 | + public typealias Body = @_opaqueReturnTypeOf("$s7Measure14MsrMonitorViewV4bodyQrvp", 0) __<Content> |
334 | 334 | } |
335 | 335 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *) |
| 336 | +@available(*, deprecated, renamed: "MsrMonitorView") |
| 337 | +public typealias MsrMoniterView<Content> = Measure.MsrMonitorView<Content> where Content : SwiftUICore.View |
| 338 | +@available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *) |
336 | 339 | extension SwiftUICore.View { |
| 340 | + @_Concurrency.MainActor @preconcurrency public func monitorWithMsr(_ viewName: Swift.String? = nil) -> some SwiftUICore.View |
| 341 | + |
| 342 | + @available(*, deprecated, renamed: "monitorWithMsr(_:)") |
337 | 343 | @_Concurrency.MainActor @preconcurrency public func moniterWithMsr(_ viewName: Swift.String? = nil) -> some SwiftUICore.View |
338 | 344 |
|
339 | 345 | } |
@@ -441,7 +447,7 @@ extension Measure.VCLifecycleEventType : Swift.Equatable {} |
441 | 447 | extension Measure.VCLifecycleEventType : Swift.Hashable {} |
442 | 448 | extension Measure.VCLifecycleEventType : Swift.RawRepresentable {} |
443 | 449 | @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *) |
444 | | -extension Measure.MsrMoniterView : Swift.Sendable {} |
| 450 | +extension Measure.MsrMonitorView : Swift.Sendable {} |
445 | 451 | extension Measure.LogSeverity : Swift.Equatable {} |
446 | 452 | extension Measure.LogSeverity : Swift.Hashable {} |
447 | 453 | extension Measure.LogSeverity : Swift.RawRepresentable {} |
|
0 commit comments