diff --git a/modules/sentry-cocoa.properties b/modules/sentry-cocoa.properties index fe2e7c2554..7f9724515f 100644 --- a/modules/sentry-cocoa.properties +++ b/modules/sentry-cocoa.properties @@ -1,2 +1,2 @@ -version = 9.6.0 +version = 9.7.0 repo = https://github.com/getsentry/sentry-cocoa diff --git a/src/Sentry.Bindings.Cocoa/ApiDefinitions.cs b/src/Sentry.Bindings.Cocoa/ApiDefinitions.cs index 1567da3904..45cc7c5665 100644 --- a/src/Sentry.Bindings.Cocoa/ApiDefinitions.cs +++ b/src/Sentry.Bindings.Cocoa/ApiDefinitions.cs @@ -471,6 +471,14 @@ interface SentryFrame : SentrySerializable [NullAllowed, Export("contextLine")] string ContextLine { get; set; } + // @property (copy, nonatomic) NSNumber * _Nullable parentIndex; + [NullAllowed, Export("parentIndex", ArgumentSemantic.Copy)] + NSNumber ParentIndex { get; set; } + + // @property (copy, nonatomic) NSNumber * _Nullable sampleCount; + [NullAllowed, Export("sampleCount", ArgumentSemantic.Copy)] + NSNumber SampleCount { get; set; } + // @property (copy, nonatomic) NSArray * _Nullable preContext; [NullAllowed, Export("preContext", ArgumentSemantic.Copy)] string[] PreContext { get; set; }