From b1f0ea7f41ff47c030c65dc14841e050870c2be8 Mon Sep 17 00:00:00 2001 From: Naftali Beder Date: Fri, 31 Jul 2026 14:26:16 -0500 Subject: [PATCH] Convert union type to string to fix codegen error --- packages/core/src/js/NativeRNSentry.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/core/src/js/NativeRNSentry.ts b/packages/core/src/js/NativeRNSentry.ts index 977b5c2787..437b6e66e7 100644 --- a/packages/core/src/js/NativeRNSentry.ts +++ b/packages/core/src/js/NativeRNSentry.ts @@ -108,7 +108,8 @@ export type NativeStackFrames = { }; export type NativeAppStartResponse = { - type: 'cold' | 'warm' | 'unknown'; + /** 'cold' | 'warm' | 'unknown' */ + type: string; has_fetched: boolean; app_start_timestamp_ms?: number; spans: {