Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
8.53.2
  • Loading branch information
jpnurmi committed Aug 29, 2025
commit 01fd299efb3daab1c47fcec4fb82f70d6272f38b
2 changes: 1 addition & 1 deletion modules/sentry-cocoa.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = 8.51.1
version = 8.53.2
repo = https://github.com/getsentry/sentry-cocoa
40 changes: 5 additions & 35 deletions src/Sentry.Bindings.Cocoa/ApiDefinitions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ interface SentryDsn
[Export ("getHash")]
string Hash { get; }

// -(NSURL * _Nonnull)getStoreEndpoint;
// -(NSURL * _Nonnull)getStoreEndpoint __attribute__((deprecated("This endpoint is no longer used")));
[Export ("getStoreEndpoint")]
NSUrl StoreEndpoint { get; }

Expand Down Expand Up @@ -571,13 +571,6 @@ interface SentryEvent : SentrySerializable
NativeHandle Constructor (NSError error);
}

// @interface SentryEventDecodable : SentryEvent
[BaseType (typeof(SentryEvent))]
[Internal]
interface SentryEventDecodable
{
}

// @interface SentryException : NSObject <SentrySerializable>
[BaseType (typeof(NSObject))]
[DisableDefaultCtor]
Expand Down Expand Up @@ -1652,6 +1645,10 @@ interface SentryOptions
[Export ("spotlightUrl")]
string SpotlightUrl { get; set; }

// @property (readonly, nonatomic) NSObject * _Nonnull _swiftExperimentalOptions;
[Export ("_swiftExperimentalOptions")]
NSObject _swiftExperimentalOptions { get; }

// @property (copy, nonatomic) API_AVAILABLE(ios(13.0)) SentryUserFeedbackConfigurationBlock configureUserFeedback __attribute__((availability(ios, introduced=13.0)));
[Export ("configureUserFeedback", ArgumentSemantic.Copy)]
SentryUserFeedbackConfigurationBlock ConfigureUserFeedback { get; set; }
Expand Down Expand Up @@ -2381,33 +2378,6 @@ interface SentryUser : SentrySerializable
nuint Hash { get; }
}

// @interface SentryUserFeedback : NSObject <SentrySerializable>
[BaseType (typeof(NSObject))]
[DisableDefaultCtor]
[Internal]
interface SentryUserFeedback : SentrySerializable
{
// -(instancetype _Nonnull)initWithEventId:(SentryId * _Nonnull)eventId;
[Export ("initWithEventId:")]
NativeHandle Constructor (SentryId eventId);

// @property (readonly, nonatomic, strong) SentryId * _Nonnull eventId;
[Export ("eventId", ArgumentSemantic.Strong)]
SentryId EventId { get; }

// @property (copy, nonatomic) NSString * _Nonnull name;
[Export ("name")]
string Name { get; set; }

// @property (copy, nonatomic) NSString * _Nonnull email;
[Export ("email")]
string Email { get; set; }

// @property (copy, nonatomic) NSString * _Nonnull comments;
[Export ("comments")]
string Comments { get; set; }
}

// @interface SentryScreenFrames : NSObject <NSCopying>
[BaseType (typeof(NSObject))]
[DisableDefaultCtor]
Expand Down
27 changes: 27 additions & 0 deletions src/Sentry.Bindings.Cocoa/SwiftApiDefinitions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,33 @@ interface SentryRRWebEvent : SentrySerializable
new NSDictionary<NSString, NSObject> Serialize();
}

// @interface SentryUserFeedback : NSObject <SentrySerializable>
[BaseType(typeof(NSObject))]
[DisableDefaultCtor]
[Internal]
interface SentryUserFeedback : SentrySerializable
{
// @property (nonatomic, readonly, strong) SentryId * _Nonnull eventId;
[Export("eventId", ArgumentSemantic.Strong)]
SentryId EventId { get; }

// @property (nonatomic, copy) NSString * _Nonnull name;
[Export("name")]
string Name { get; set; }

// @property (nonatomic, copy) NSString * _Nonnull email;
[Export("email")]
string Email { get; set; }

// @property (nonatomic, copy) NSString * _Nonnull comments;
[Export("comments")]
string Comments { get; set; }

// - (nonnull instancetype)initWithEventId:(SentryId * _Nonnull)eventId OBJC_DESIGNATED_INITIALIZER;
[Export("initWithEventId:")]
NativeHandle Constructor(SentryId eventId);
}

[BaseType(typeof(NSObject), Name = "_TtC6Sentry31SentryUserFeedbackConfiguration")]
[DisableDefaultCtor]
[Internal]
Expand Down
Loading