@@ -384,7 +384,7 @@ interface SentryDsn
384384 [ Export ( "getHash" ) ]
385385 string Hash { get ; }
386386
387- // -(NSURL * _Nonnull)getStoreEndpoint;
387+ // -(NSURL * _Nonnull)getStoreEndpoint __attribute__((deprecated("This endpoint is no longer used"))) ;
388388 [ Export ( "getStoreEndpoint" ) ]
389389 NSUrl StoreEndpoint { get ; }
390390
@@ -571,13 +571,6 @@ interface SentryEvent : SentrySerializable
571571 NativeHandle Constructor ( NSError error ) ;
572572}
573573
574- // @interface SentryEventDecodable : SentryEvent
575- [ BaseType ( typeof ( SentryEvent ) ) ]
576- [ Internal ]
577- interface SentryEventDecodable
578- {
579- }
580-
581574// @interface SentryException : NSObject <SentrySerializable>
582575[ BaseType ( typeof ( NSObject ) ) ]
583576[ DisableDefaultCtor ]
@@ -1652,6 +1645,10 @@ interface SentryOptions
16521645 [ Export ( "spotlightUrl" ) ]
16531646 string SpotlightUrl { get ; set ; }
16541647
1648+ // @property (readonly, nonatomic) NSObject * _Nonnull _swiftExperimentalOptions;
1649+ [ Export ( "_swiftExperimentalOptions" ) ]
1650+ NSObject _swiftExperimentalOptions { get ; }
1651+
16551652 // @property (copy, nonatomic) API_AVAILABLE(ios(13.0)) SentryUserFeedbackConfigurationBlock configureUserFeedback __attribute__((availability(ios, introduced=13.0)));
16561653 [ Export ( "configureUserFeedback" , ArgumentSemantic . Copy ) ]
16571654 SentryUserFeedbackConfigurationBlock ConfigureUserFeedback { get ; set ; }
@@ -2381,33 +2378,6 @@ interface SentryUser : SentrySerializable
23812378 nuint Hash { get ; }
23822379}
23832380
2384- // @interface SentryUserFeedback : NSObject <SentrySerializable>
2385- [ BaseType ( typeof ( NSObject ) ) ]
2386- [ DisableDefaultCtor ]
2387- [ Internal ]
2388- interface SentryUserFeedback : SentrySerializable
2389- {
2390- // -(instancetype _Nonnull)initWithEventId:(SentryId * _Nonnull)eventId;
2391- [ Export ( "initWithEventId:" ) ]
2392- NativeHandle Constructor ( SentryId eventId ) ;
2393-
2394- // @property (readonly, nonatomic, strong) SentryId * _Nonnull eventId;
2395- [ Export ( "eventId" , ArgumentSemantic . Strong ) ]
2396- SentryId EventId { get ; }
2397-
2398- // @property (copy, nonatomic) NSString * _Nonnull name;
2399- [ Export ( "name" ) ]
2400- string Name { get ; set ; }
2401-
2402- // @property (copy, nonatomic) NSString * _Nonnull email;
2403- [ Export ( "email" ) ]
2404- string Email { get ; set ; }
2405-
2406- // @property (copy, nonatomic) NSString * _Nonnull comments;
2407- [ Export ( "comments" ) ]
2408- string Comments { get ; set ; }
2409- }
2410-
24112381// @interface SentryScreenFrames : NSObject <NSCopying>
24122382[ BaseType ( typeof ( NSObject ) ) ]
24132383[ DisableDefaultCtor ]
0 commit comments