@@ -159,6 +159,10 @@ interface SentryBaggage
159159 [ NullAllowed , Export ( "replayId" , ArgumentSemantic . Strong ) ]
160160 string ReplayId { get ; set ; }
161161
162+ // @property (readonly, nonatomic) NSString * _Nullable orgId;
163+ [ NullAllowed , Export ( "orgId" ) ]
164+ string OrgId { get ; }
165+
162166 // -(instancetype _Nonnull)initWithTraceId:(SentryId * _Nonnull)traceId publicKey:(NSString * _Nonnull)publicKey releaseName:(NSString * _Nullable)releaseName environment:(NSString * _Nullable)environment transaction:(NSString * _Nullable)transaction sampleRate:(NSString * _Nullable)sampleRate sampled:(NSString * _Nullable)sampled replayId:(NSString * _Nullable)replayId;
163167 [ Export ( "initWithTraceId:publicKey:releaseName:environment:transaction:sampleRate:sampled:replayId:" ) ]
164168 NativeHandle Constructor ( SentryId traceId , string publicKey , [ NullAllowed ] string releaseName , [ NullAllowed ] string environment , [ NullAllowed ] string transaction , [ NullAllowed ] string sampleRate , [ NullAllowed ] string sampled , [ NullAllowed ] string replayId ) ;
@@ -167,6 +171,10 @@ interface SentryBaggage
167171 [ Export ( "initWithTraceId:publicKey:releaseName:environment:transaction:sampleRate:sampleRand:sampled:replayId:" ) ]
168172 NativeHandle Constructor ( SentryId traceId , string publicKey , [ NullAllowed ] string releaseName , [ NullAllowed ] string environment , [ NullAllowed ] string transaction , [ NullAllowed ] string sampleRate , [ NullAllowed ] string sampleRand , [ NullAllowed ] string sampled , [ NullAllowed ] string replayId ) ;
169173
174+ // -(instancetype _Nonnull)initWithTraceId:(SentryId * _Nonnull)traceId publicKey:(NSString * _Nonnull)publicKey releaseName:(NSString * _Nullable)releaseName environment:(NSString * _Nullable)environment transaction:(NSString * _Nullable)transaction sampleRate:(NSString * _Nullable)sampleRate sampleRand:(NSString * _Nullable)sampleRand sampled:(NSString * _Nullable)sampled replayId:(NSString * _Nullable)replayId orgId:(NSString * _Nullable)orgId;
175+ [ Export ( "initWithTraceId:publicKey:releaseName:environment:transaction:sampleRate:sampleRand:sampled:replayId:orgId:" ) ]
176+ NativeHandle Constructor ( SentryId traceId , string publicKey , [ NullAllowed ] string releaseName , [ NullAllowed ] string environment , [ NullAllowed ] string transaction , [ NullAllowed ] string sampleRate , [ NullAllowed ] string sampleRand , [ NullAllowed ] string sampled , [ NullAllowed ] string replayId , [ NullAllowed ] string orgId ) ;
177+
170178 // -(NSString * _Nonnull)toHTTPHeaderWithOriginalBaggage:(NSDictionary * _Nullable)originalBaggage;
171179 [ Export ( "toHTTPHeaderWithOriginalBaggage:" ) ]
172180 string ToHTTPHeaderWithOriginalBaggage ( [ NullAllowed ] NSDictionary originalBaggage ) ;
@@ -1369,6 +1377,10 @@ interface SentryTraceContext : SentrySerializable
13691377 [ NullAllowed , Export ( "replayId" ) ]
13701378 string ReplayId { get ; }
13711379
1380+ // @property (readonly, nonatomic) NSString * _Nullable orgId;
1381+ [ NullAllowed , Export ( "orgId" ) ]
1382+ string OrgId { get ; }
1383+
13721384 // -(SentryBaggage * _Nonnull)toBaggage;
13731385 [ Export ( "toBaggage" ) ]
13741386 SentryBaggage ToBaggage ( ) ;
@@ -1657,6 +1669,11 @@ interface PrivateSentrySDKOnly
16571669 [ Static ]
16581670 [ Export ( "setLogOutput:" ) ]
16591671 void SetLogOutput ( Action < NSString > output ) ;
1672+
1673+ // +(void)ignoreNextSignal:(int)signum;
1674+ [ Static ]
1675+ [ Export ( "ignoreNextSignal:" ) ]
1676+ void IgnoreNextSignal ( int signum ) ;
16601677}
16611678
16621679// @interface SentryOptions : NSObject
@@ -1988,6 +2005,18 @@ interface SentryOptions
19882005 [ Export ( "spotlightUrl" ) ]
19892006 string SpotlightUrl { get ; set ; }
19902007
2008+ // @property (nonatomic) BOOL strictTraceContinuation;
2009+ [ Export ( "strictTraceContinuation" ) ]
2010+ bool StrictTraceContinuation { get ; set ; }
2011+
2012+ // @property (copy, nonatomic) NSString * _Nullable orgId;
2013+ [ NullAllowed , Export ( "orgId" ) ]
2014+ string OrgId { get ; set ; }
2015+
2016+ // @property (readonly, copy, nonatomic) NSString * _Nullable effectiveOrgId;
2017+ [ NullAllowed , Export ( "effectiveOrgId" ) ]
2018+ string EffectiveOrgId { get ; }
2019+
19912020 // @property (nonatomic, strong) SentryExperimentalOptions * _Nonnull experimental;
19922021 [ Export ( "experimental" , ArgumentSemantic . Strong ) ]
19932022 SentryExperimentalOptions Experimental { get ; set ; }
@@ -2130,6 +2159,10 @@ interface SentryDsn
21302159 // -(NSURL * _Nonnull)getEnvelopeEndpoint __attribute__((warn_unused_result("")));
21312160 [ Export ( "getEnvelopeEndpoint" ) ]
21322161 NSUrl EnvelopeEndpoint { get ; }
2162+
2163+ // @property (readonly, copy, nonatomic) NSString * _Nullable orgId;
2164+ [ NullAllowed , Export ( "orgId" ) ]
2165+ string OrgId { get ; }
21332166}
21342167
21352168// @interface SentryExperimentalOptions : NSObject
0 commit comments