Skip to content

Commit

Permalink
RUMM-1037 Run make api-surface
Browse files Browse the repository at this point in the history
  • Loading branch information
ncreated committed Feb 5, 2021
1 parent 33e01d8 commit 1a7d03a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions api-surface-objc
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ public enum DDRUMViewEventRUMConnectivityStatus: Int
case notConnected
case maybe
public class DDRUMViewEventSession: NSObject
@objc public var hasReplay: NSNumber?
@objc public var id: String
@objc public var type: DDRUMViewEventSessionSessionType
public enum DDRUMViewEventSessionSessionType: Int
Expand All @@ -191,6 +192,7 @@ public class DDRUMViewEventView: NSObject
@objc public var error: DDRUMViewEventViewError
@objc public var firstContentfulPaint: NSNumber?
@objc public var firstInputDelay: NSNumber?
@objc public var firstInputTime: NSNumber?
@objc public var id: String
@objc public var isActive: NSNumber?
@objc public var largestContentfulPaint: NSNumber?
Expand Down Expand Up @@ -336,6 +338,7 @@ public enum DDRUMResourceEventResourceResourceType: Int
case media
case other
public class DDRUMResourceEventSession: NSObject
@objc public var hasReplay: NSNumber?
@objc public var id: String
@objc public var type: DDRUMResourceEventSessionSessionType
public enum DDRUMResourceEventSessionSessionType: Int
Expand Down Expand Up @@ -413,6 +416,7 @@ public enum DDRUMActionEventRUMConnectivityStatus: Int
case notConnected
case maybe
public class DDRUMActionEventSession: NSObject
@objc public var hasReplay: NSNumber?
@objc public var id: String
@objc public var type: DDRUMActionEventSessionSessionType
public enum DDRUMActionEventSessionSessionType: Int
Expand Down Expand Up @@ -471,6 +475,7 @@ public class DDRUMErrorEventError: NSObject
@objc public var resource: DDRUMErrorEventErrorResource?
@objc public var source: DDRUMErrorEventErrorSource
@objc public var stack: String?
@objc public var type: String?
public class DDRUMErrorEventErrorResource: NSObject
@objc public var method: DDRUMErrorEventErrorResourceRUMMethod
@objc public var provider: DDRUMErrorEventErrorResourceProvider?
Expand Down Expand Up @@ -512,6 +517,7 @@ public enum DDRUMErrorEventErrorSource: Int
case webview
case custom
public class DDRUMErrorEventSession: NSObject
@objc public var hasReplay: NSNumber?
@objc public var id: String
@objc public var type: DDRUMErrorEventSessionSessionType
public enum DDRUMErrorEventSessionSessionType: Int
Expand Down
6 changes: 6 additions & 0 deletions api-surface-swift
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@ public struct RUMViewEvent: RUMDataModel
public struct Application: Codable
public let id: String
public struct Session: Codable
public let hasReplay: Bool?
public let id: String
public let type: SessionType
public enum SessionType: String, Codable
Expand All @@ -238,6 +239,7 @@ public struct RUMViewEvent: RUMDataModel
public let error: Error
public let firstContentfulPaint: Int64?
public let firstInputDelay: Int64?
public let firstInputTime: Int64?
public let id: String
public let isActive: Bool?
public let largestContentfulPaint: Int64?
Expand Down Expand Up @@ -352,6 +354,7 @@ public struct RUMResourceEvent: RUMDataModel
case media = "media"
case other = "other"
public struct Session: Codable
public let hasReplay: Bool?
public let id: String
public let type: SessionType
public enum SessionType: String, Codable
Expand Down Expand Up @@ -404,6 +407,7 @@ public struct RUMActionEvent: RUMDataModel
public struct Application: Codable
public let id: String
public struct Session: Codable
public let hasReplay: Bool?
public let id: String
public let type: SessionType
public enum SessionType: String, Codable
Expand Down Expand Up @@ -437,6 +441,7 @@ public struct RUMErrorEvent: RUMDataModel
public var resource: Resource?
public let source: Source
public var stack: String?
public let type: String?
public struct Resource: Codable
public let method: RUMMethod
public let provider: Provider?
Expand Down Expand Up @@ -470,6 +475,7 @@ public struct RUMErrorEvent: RUMDataModel
case webview = "webview"
case custom = "custom"
public struct Session: Codable
public let hasReplay: Bool?
public let id: String
public let type: SessionType
public enum SessionType: String, Codable
Expand Down

0 comments on commit 1a7d03a

Please sign in to comment.