diff --git a/modules/sentry-cocoa.properties b/modules/sentry-cocoa.properties index 2d9f152329..4d30a84b0c 100644 --- a/modules/sentry-cocoa.properties +++ b/modules/sentry-cocoa.properties @@ -1,2 +1,2 @@ -version = 9.2.0 +version = 9.4.1 repo = https://github.com/getsentry/sentry-cocoa diff --git a/src/Sentry.Bindings.Cocoa/ApiDefinitions.cs b/src/Sentry.Bindings.Cocoa/ApiDefinitions.cs index c37a2b1359..b539c15c6f 100644 --- a/src/Sentry.Bindings.Cocoa/ApiDefinitions.cs +++ b/src/Sentry.Bindings.Cocoa/ApiDefinitions.cs @@ -1587,11 +1587,6 @@ interface PrivateSentrySDKOnly [Export("setCurrentScreen:")] void SetCurrentScreen([NullAllowed] string screenName); - // +(UIView * _Nonnull)sessionReplayMaskingOverlay:(id _Nonnull)options; - [Static] - [Export("sessionReplayMaskingOverlay:")] - UIView SessionReplayMaskingOverlay(SentryRedactOptions options); - // +(void)configureSessionReplayWith:(id _Nullable)breadcrumbConverter screenshotProvider:(id _Nullable)screenshotProvider; [Static] [Export("configureSessionReplayWith:screenshotProvider:")] diff --git a/src/Sentry.Bindings.Cocoa/StructsAndEnums.cs b/src/Sentry.Bindings.Cocoa/StructsAndEnums.cs index 25d0a44a2e..fcab4e8869 100644 --- a/src/Sentry.Bindings.Cocoa/StructsAndEnums.cs +++ b/src/Sentry.Bindings.Cocoa/StructsAndEnums.cs @@ -110,6 +110,18 @@ internal enum SentryFeedbackSource : long Custom = 1 } +[Native] +internal enum SentryHttpStatusCode : long +{ + Ok = 200, + Created = 201, + BadRequest = 400, + PreconditionFailed = 412, + ContentTooLarge = 413, + TooManyRequests = 429, + InternalServerError = 500 +} + [Native] internal enum SentryLogLevel : long { @@ -143,15 +155,6 @@ internal enum SentryReplayType : long Buffer = 1 } -[Native] -internal enum SentrySessionStatus : ulong -{ - Ok = 0, - Exited = 1, - Crashed = 2, - Abnormal = 3 -} - [Native] internal enum SentryTransactionNameSource : long {