Skip to content

Commit 6029c5c

Browse files
committed
chore: little bump on the ios version
1 parent dd415cb commit 6029c5c

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

plugin/platforms/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pod 'Sentry', :git => 'https://github.com/getsentry/sentry-cocoa.git', :tag => '4.4.3'
1+
pod 'Sentry', :git => 'https://github.com/getsentry/sentry-cocoa.git', :tag => '4.5.0'

src/nssentry.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ import { NativescriptOptions } from './backend';
44
export namespace NSSentry {
55
function fetchRelease();
66
function sendEvent(event: Event): Promise<Response>;
7+
// function captureException(exception: any /* nativeException*/): Promise<Response>;
78
function startWithDsnString(dsn: string, options: NativescriptOptions): Promise<Response>;
89
function setLogLevel(level: number);
910
function crash();
11+
function flush(timeout: number);
1012
function deviceContexts(): Promise<any>;
1113
const nativeClientAvailable: boolean;
1214
const nativeTransport: boolean;

src/nssentry.ios.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ export namespace NSSentry {
6565
export function crash() {
6666
SentryClient.sharedClient.crash();
6767
}
68+
export function flush(timeout: number) {
69+
// SentryClient.sharedClient.flush(timeout);
70+
}
6871
function toJsObject(objCObj) {
6972
if (objCObj === null || typeof objCObj !== 'object') {
7073
return objCObj;

0 commit comments

Comments
 (0)