@sentry/react-native 5.18.0 → 5.19.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +51 -0
- package/README.md +1 -1
- package/android/build.gradle +1 -1
- package/android/src/main/java/io/sentry/react/RNSentryModuleImpl.java +115 -24
- package/dist/js/NativeRNSentry.d.ts +1 -0
- package/dist/js/NativeRNSentry.d.ts.map +1 -1
- package/dist/js/NativeRNSentry.js.map +1 -1
- package/dist/js/client.d.ts.map +1 -1
- package/dist/js/client.js +14 -19
- package/dist/js/client.js.map +1 -1
- package/dist/js/index.d.ts +1 -1
- package/dist/js/index.d.ts.map +1 -1
- package/dist/js/index.js +5 -1
- package/dist/js/index.js.map +1 -1
- package/dist/js/integrations/debugsymbolicator.d.ts.map +1 -1
- package/dist/js/integrations/debugsymbolicator.js +1 -0
- package/dist/js/integrations/debugsymbolicator.js.map +1 -1
- package/dist/js/integrations/reactnativeerrorhandlers.d.ts.map +1 -1
- package/dist/js/integrations/reactnativeerrorhandlers.js +2 -0
- package/dist/js/integrations/reactnativeerrorhandlers.js.map +1 -1
- package/dist/js/integrations/rewriteframes.d.ts +2 -2
- package/dist/js/integrations/rewriteframes.d.ts.map +1 -1
- package/dist/js/integrations/rewriteframes.js.map +1 -1
- package/dist/js/profiling/cache.d.ts +3 -3
- package/dist/js/profiling/cache.d.ts.map +1 -1
- package/dist/js/profiling/cache.js.map +1 -1
- package/dist/js/profiling/integration.d.ts +7 -3
- package/dist/js/profiling/integration.d.ts.map +1 -1
- package/dist/js/profiling/integration.js +16 -5
- package/dist/js/profiling/integration.js.map +1 -1
- package/dist/js/profiling/nativeTypes.d.ts +8 -0
- package/dist/js/profiling/nativeTypes.d.ts.map +1 -1
- package/dist/js/profiling/nativeTypes.js.map +1 -1
- package/dist/js/profiling/types.d.ts +59 -2
- package/dist/js/profiling/types.d.ts.map +1 -1
- package/dist/js/profiling/types.js.map +1 -1
- package/dist/js/profiling/utils.d.ts +9 -5
- package/dist/js/profiling/utils.d.ts.map +1 -1
- package/dist/js/profiling/utils.js +16 -1
- package/dist/js/profiling/utils.js.map +1 -1
- package/dist/js/sdk.d.ts +1 -1
- package/dist/js/sdk.d.ts.map +1 -1
- package/dist/js/sdk.js +3 -2
- package/dist/js/sdk.js.map +1 -1
- package/dist/js/tools/sentryMetroSerializer.js +1 -0
- package/dist/js/tools/sentryMetroSerializer.js.map +1 -1
- package/dist/js/tracing/addTracingExtensions.d.ts.map +1 -1
- package/dist/js/tracing/addTracingExtensions.js.map +1 -1
- package/dist/js/tracing/nativeframes.d.ts.map +1 -1
- package/dist/js/tracing/nativeframes.js +3 -1
- package/dist/js/tracing/nativeframes.js.map +1 -1
- package/dist/js/tracing/reactnativetracing.d.ts.map +1 -1
- package/dist/js/tracing/reactnativetracing.js +3 -1
- package/dist/js/tracing/reactnativetracing.js.map +1 -1
- package/dist/js/version.d.ts +1 -1
- package/dist/js/version.js +1 -1
- package/dist/js/version.js.map +1 -1
- package/dist/js/wrapper.d.ts +2 -1
- package/dist/js/wrapper.d.ts.map +1 -1
- package/dist/js/wrapper.js +5 -1
- package/dist/js/wrapper.js.map +1 -1
- package/package.json +11 -11
- package/plugin/build/utils.d.ts +12 -0
- package/plugin/build/utils.js +31 -2
- package/plugin/build/withSentry.js +15 -10
- package/plugin/build/withSentryAndroid.js +1 -1
- package/plugin/build/withSentryIOS.js +13 -4
- package/scripts/sentry-xcode-debug-files.sh +5 -2
- package/src/js/NativeRNSentry.ts +6 -1
- package/ts3.8/dist/js/NativeRNSentry.d.ts +1 -0
- package/ts3.8/dist/js/index.d.ts +1 -1
- package/ts3.8/dist/js/integrations/rewriteframes.d.ts +2 -2
- package/ts3.8/dist/js/profiling/cache.d.ts +3 -3
- package/ts3.8/dist/js/profiling/integration.d.ts +7 -3
- package/ts3.8/dist/js/profiling/nativeTypes.d.ts +8 -0
- package/ts3.8/dist/js/profiling/types.d.ts +59 -2
- package/ts3.8/dist/js/profiling/utils.d.ts +9 -5
- package/ts3.8/dist/js/sdk.d.ts +1 -1
- package/ts3.8/dist/js/version.d.ts +1 -1
- package/ts3.8/dist/js/wrapper.d.ts +2 -1
|
@@ -3,7 +3,7 @@ import { Platform } from 'react-native';
|
|
|
3
3
|
import type { NativeAppStartResponse, NativeDeviceContextsResponse, NativeFramesResponse, NativeReleaseResponse, NativeStackFrames, Spec } from './NativeRNSentry';
|
|
4
4
|
import type { ReactNativeClientOptions } from './options';
|
|
5
5
|
import type * as Hermes from './profiling/hermes';
|
|
6
|
-
import type { NativeProfileEvent } from './profiling/nativeTypes';
|
|
6
|
+
import type { NativeAndroidProfileEvent, NativeProfileEvent } from './profiling/nativeTypes';
|
|
7
7
|
export interface Screenshot {
|
|
8
8
|
data: Uint8Array;
|
|
9
9
|
contentType: string;
|
|
@@ -51,6 +51,7 @@ interface SentryNativeWrapper {
|
|
|
51
51
|
stopProfiling(): {
|
|
52
52
|
hermesProfile: Hermes.Profile;
|
|
53
53
|
nativeProfile?: NativeProfileEvent;
|
|
54
|
+
androidProfile?: NativeAndroidProfileEvent;
|
|
54
55
|
} | null;
|
|
55
56
|
fetchNativePackageName(): string | null;
|
|
56
57
|
/**
|