@scalebun-release/react-native 2.5.0

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.
Files changed (1203) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +154 -0
  3. package/android/build.gradle +94 -0
  4. package/android/consumer-rules.pro +28 -0
  5. package/android/src/androidTest/java/com/scalebun/rn/ota/ScaleBunOtaVerifierInstrumentedTest.kt +112 -0
  6. package/android/src/main/AndroidManifest.xml +14 -0
  7. package/android/src/main/java/com/scalebun/core/crash/CrashStorage.kt +155 -0
  8. package/android/src/main/java/com/scalebun/core/crash/NativeCrashHandler.kt +93 -0
  9. package/android/src/main/java/com/scalebun/core/performance/ANRWatchdog.kt +100 -0
  10. package/android/src/main/java/com/scalebun/core/performance/AppStartCollector.kt +180 -0
  11. package/android/src/main/java/com/scalebun/core/performance/FrameMetricsCollector.kt +230 -0
  12. package/android/src/main/java/com/scalebun/core/performance/PerformanceCore.kt +165 -0
  13. package/android/src/main/java/com/scalebun/profiler/ProfilerModule.kt +398 -0
  14. package/android/src/main/java/com/scalebun/profiler/ProfilerPackage.kt +24 -0
  15. package/android/src/main/java/com/scalebun/profiler/collectors/CpuCollector.kt +161 -0
  16. package/android/src/main/java/com/scalebun/profiler/collectors/IncidentDetector.kt +223 -0
  17. package/android/src/main/java/com/scalebun/profiler/collectors/MemoryCollector.kt +157 -0
  18. package/android/src/main/java/com/scalebun/profiler/collectors/RenderCollector.kt +194 -0
  19. package/android/src/main/java/com/scalebun/profiler/collectors/SamplerScheduler.kt +218 -0
  20. package/android/src/main/java/com/scalebun/profiler/collectors/ThreadCollector.kt +142 -0
  21. package/android/src/main/java/com/scalebun/replaysdk/ReplaySdkModule.kt +1117 -0
  22. package/android/src/main/java/com/scalebun/replaysdk/ReplaySdkPackage.kt +24 -0
  23. package/android/src/main/java/com/scalebun/replaysdk/capture/CaptureReason.kt +47 -0
  24. package/android/src/main/java/com/scalebun/replaysdk/capture/FrameCaptureManager.kt +574 -0
  25. package/android/src/main/java/com/scalebun/replaysdk/capture/FrameCaptureScheduler.kt +187 -0
  26. package/android/src/main/java/com/scalebun/replaysdk/capture/UiStabilityDetector.kt +214 -0
  27. package/android/src/main/java/com/scalebun/replaysdk/core/ReplayConfig.kt +144 -0
  28. package/android/src/main/java/com/scalebun/replaysdk/core/ReplayLogger.kt +31 -0
  29. package/android/src/main/java/com/scalebun/replaysdk/core/SessionIdGenerator.kt +15 -0
  30. package/android/src/main/java/com/scalebun/replaysdk/models/ReplayModels.kt +94 -0
  31. package/android/src/main/java/com/scalebun/replaysdk/outbox/NativeOutbox.kt +574 -0
  32. package/android/src/main/java/com/scalebun/replaysdk/outbox/OutboxUploader.kt +559 -0
  33. package/android/src/main/java/com/scalebun/replaysdk/privacy/PrivacyMaskProcessor.kt +126 -0
  34. package/android/src/main/java/com/scalebun/replaysdk/session/SessionManager.kt +322 -0
  35. package/android/src/main/java/com/scalebun/replaysdk/storage/ReplayStorage.kt +136 -0
  36. package/android/src/main/java/com/scalebun/replaysdk/timeline/TimelineCollector.kt +28 -0
  37. package/android/src/main/java/com/scalebun/replaysdk/tracking/InteractionTracker.kt +470 -0
  38. package/android/src/main/java/com/scalebun/replaysdk/tracking/ScreenTracker.kt +20 -0
  39. package/android/src/main/java/com/scalebun/replaysdk/tracking/ScrollContextProbe.kt +188 -0
  40. package/android/src/main/java/com/scalebun/replaysdk/transport/ReplayTransport.kt +99 -0
  41. package/android/src/main/java/com/scalebun/replaysdk/voice/VoiceRecorder.kt +121 -0
  42. package/android/src/main/java/com/scalebun/replaysdk/voice/VoiceTranscriber.kt +170 -0
  43. package/android/src/main/java/com/scalebun/rn/ScaleBunPackage.kt +113 -0
  44. package/android/src/main/java/com/scalebun/rn/crash/ScaleBunCrashModule.kt +188 -0
  45. package/android/src/main/java/com/scalebun/rn/crash/ScaleBunCrashPackage.kt +22 -0
  46. package/android/src/main/java/com/scalebun/rn/engage/ScaleBunEngageModule.kt +579 -0
  47. package/android/src/main/java/com/scalebun/rn/engage/ScaleBunEngagePackage.kt +22 -0
  48. package/android/src/main/java/com/scalebun/rn/engage/ScaleBunNotificationPresenter.kt +110 -0
  49. package/android/src/main/java/com/scalebun/rn/ota/BsPatch.kt +240 -0
  50. package/android/src/main/java/com/scalebun/rn/ota/BundleDownloader.kt +195 -0
  51. package/android/src/main/java/com/scalebun/rn/ota/DeviceIntegrity.kt +81 -0
  52. package/android/src/main/java/com/scalebun/rn/ota/DownloadFailure.kt +55 -0
  53. package/android/src/main/java/com/scalebun/rn/ota/OtaProtocol.kt +244 -0
  54. package/android/src/main/java/com/scalebun/rn/ota/ScaleBunOtaKeyRegistry.kt +100 -0
  55. package/android/src/main/java/com/scalebun/rn/ota/ScaleBunOtaModule.kt +683 -0
  56. package/android/src/main/java/com/scalebun/rn/ota/ScaleBunOtaReleaseVerifier.kt +136 -0
  57. package/android/src/main/java/com/scalebun/rn/ota/SlotManager.kt +578 -0
  58. package/android/src/main/java/com/scalebun/rn/ota/TlsPinning.kt +118 -0
  59. package/android/src/main/java/com/scalebun/rn/performance/PerformanceModule.kt +217 -0
  60. package/android/src/main/java/com/scalebun/rn/referrer/ScaleBunInstallReferrerModule.kt +77 -0
  61. package/android/src/main/java/com/scalebun/rn/storage/ScaleBunStorageModule.kt +68 -0
  62. package/android/src/main/java/com/scalebun/storage/KvFileStore.kt +174 -0
  63. package/android/src/newarch/java/com/scalebun/profiler/ProfilerSpec.kt +12 -0
  64. package/android/src/newarch/java/com/scalebun/replaysdk/ReplaySdkSpec.kt +12 -0
  65. package/android/src/newarch/java/com/scalebun/rn/crash/ScaleBunCrashSpec.kt +15 -0
  66. package/android/src/newarch/java/com/scalebun/rn/ota/ScaleBunOtaSpec.kt +16 -0
  67. package/android/src/newarch/java/com/scalebun/rn/performance/PerformanceSpec.kt +12 -0
  68. package/android/src/newarch/java/com/scalebun/rn/referrer/ScaleBunInstallReferrerSpec.kt +14 -0
  69. package/android/src/newarch/java/com/scalebun/rn/storage/ScaleBunStorageSpec.kt +16 -0
  70. package/android/src/oldarch/java/com/scalebun/profiler/ProfilerSpec.kt +34 -0
  71. package/android/src/oldarch/java/com/scalebun/replaysdk/ReplaySdkSpec.kt +77 -0
  72. package/android/src/oldarch/java/com/scalebun/rn/crash/ScaleBunCrashSpec.kt +40 -0
  73. package/android/src/oldarch/java/com/scalebun/rn/ota/ScaleBunOtaSpec.kt +42 -0
  74. package/android/src/oldarch/java/com/scalebun/rn/performance/PerformanceSpec.kt +27 -0
  75. package/android/src/oldarch/java/com/scalebun/rn/referrer/ScaleBunInstallReferrerSpec.kt +18 -0
  76. package/android/src/oldarch/java/com/scalebun/rn/storage/ScaleBunStorageSpec.kt +26 -0
  77. package/bin/lib/androidCodemod.js +370 -0
  78. package/bin/lib/iosCodemod.js +343 -0
  79. package/bin/scalebun.js +1004 -0
  80. package/dist/scalebun.full.js +37348 -0
  81. package/dist/scalebun.slim.js +34137 -0
  82. package/ios/Capture/InteractionTracker.swift +237 -0
  83. package/ios/Capture/PrivacyMaskProcessor.swift +158 -0
  84. package/ios/Capture/ScreenshotCaptureManager.swift +398 -0
  85. package/ios/Capture/WindowResolver.swift +63 -0
  86. package/ios/Core/DeviceIdentity.swift +50 -0
  87. package/ios/Core/ReplayConfig.swift +100 -0
  88. package/ios/Core/ReplayLogger.swift +22 -0
  89. package/ios/Core/SessionIdGenerator.swift +18 -0
  90. package/ios/Crash/ScaleBunCrashBridge.mm +74 -0
  91. package/ios/Crash/ScaleBunCrashHandler.swift +84 -0
  92. package/ios/Crash/ScaleBunCrashModule.swift +98 -0
  93. package/ios/Crash/ScaleBunCrashSignalBridge.h +49 -0
  94. package/ios/Crash/ScaleBunCrashSignalBridge.m +296 -0
  95. package/ios/Crash/ScaleBunCrashSignalStress.c +137 -0
  96. package/ios/Crash/ScaleBunCrashStorage.swift +121 -0
  97. package/ios/Crash/ScaleBunExceptionChain.swift +71 -0
  98. package/ios/CrashTests/ScaleBunExceptionChainTests.swift +144 -0
  99. package/ios/Engage/ScaleBunEngageBridge.m +32 -0
  100. package/ios/Engage/ScaleBunEngageModule.swift +250 -0
  101. package/ios/Engage/ScaleBunPushNotificationCenter.swift +185 -0
  102. package/ios/Ota/BsPatch.swift +203 -0
  103. package/ios/Ota/BundleDownloader.swift +249 -0
  104. package/ios/Ota/DeviceIntegrity.swift +112 -0
  105. package/ios/Ota/DownloadFailure.swift +56 -0
  106. package/ios/Ota/OtaProtocol.swift +246 -0
  107. package/ios/Ota/OtaSlotManager.swift +613 -0
  108. package/ios/Ota/ScaleBunOtaBridge.mm +92 -0
  109. package/ios/Ota/ScaleBunOtaEventsModule.swift +61 -0
  110. package/ios/Ota/ScaleBunOtaKeyRegistry.swift +147 -0
  111. package/ios/Ota/ScaleBunOtaModule.swift +587 -0
  112. package/ios/Ota/ScaleBunOtaReleaseVerifier.swift +119 -0
  113. package/ios/Ota/TlsPinning.swift +222 -0
  114. package/ios/OtaTests/DownloadFailureTests.swift +78 -0
  115. package/ios/OtaTests/ScaleBunOtaVerifierTests.swift +548 -0
  116. package/ios/Outbox/NativeOutbox.swift +632 -0
  117. package/ios/Outbox/OutboxUploader.swift +578 -0
  118. package/ios/Performance/ScaleBunPerformanceBridge.m +32 -0
  119. package/ios/Performance/ScaleBunPerformanceModule.swift +290 -0
  120. package/ios/PrivacyInfo.xcprivacy +97 -0
  121. package/ios/Profiler/ScaleBunProfilerBridge.m +55 -0
  122. package/ios/Profiler/ScaleBunProfilerModule.swift +966 -0
  123. package/ios/ReplaySdk-Bridging-Header.h +2 -0
  124. package/ios/ReplaySdk.swift +793 -0
  125. package/ios/ReplaySdkBridge.m +97 -0
  126. package/ios/Session/SessionManager.swift +273 -0
  127. package/ios/Skan/ScaleBunSkanBridge.m +14 -0
  128. package/ios/Skan/ScaleBunSkanModule.swift +61 -0
  129. package/ios/Storage/ReplayStorage.swift +61 -0
  130. package/ios/Storage/ScaleBunKvFileStore.swift +125 -0
  131. package/ios/Storage/ScaleBunStorageBridge.mm +72 -0
  132. package/ios/Storage/ScaleBunStorageModule.swift +57 -0
  133. package/ios/Transport/ReplayTransport.swift +70 -0
  134. package/ios/VoiceRecorder.swift +145 -0
  135. package/lib/commonjs/analytics/EventTracker.js +598 -0
  136. package/lib/commonjs/analytics/automaticEvents.js +71 -0
  137. package/lib/commonjs/analytics/batching.js +64 -0
  138. package/lib/commonjs/analytics/eventLane.js +55 -0
  139. package/lib/commonjs/analytics/revenue.js +125 -0
  140. package/lib/commonjs/analytics/subscription.js +94 -0
  141. package/lib/commonjs/bootstrap/FeatureRegistry.js +86 -0
  142. package/lib/commonjs/bootstrap/SDKBootstrapper.js +748 -0
  143. package/lib/commonjs/bucketing/fnv1a32.js +45 -0
  144. package/lib/commonjs/compat/codepush.js +153 -0
  145. package/lib/commonjs/config/ConfigManager.js +238 -0
  146. package/lib/commonjs/config/configTypes.js +16 -0
  147. package/lib/commonjs/config/otaPolicyState.js +85 -0
  148. package/lib/commonjs/config/quotaState.js +435 -0
  149. package/lib/commonjs/core/architecture.js +45 -0
  150. package/lib/commonjs/core/clock/now.js +13 -0
  151. package/lib/commonjs/core/config/defaults.js +2 -0
  152. package/lib/commonjs/core/config/schema.js +512 -0
  153. package/lib/commonjs/core/constants/endpoints.js +19 -0
  154. package/lib/commonjs/core/constants/protocol.js +31 -0
  155. package/lib/commonjs/core/constants/timings.js +39 -0
  156. package/lib/commonjs/core/constants/version.js +18 -0
  157. package/lib/commonjs/core/context/app.js +2 -0
  158. package/lib/commonjs/core/context/device.js +155 -0
  159. package/lib/commonjs/core/context/session.js +2 -0
  160. package/lib/commonjs/core/context/user.js +2 -0
  161. package/lib/commonjs/core/contracts/IFeature.js +2 -0
  162. package/lib/commonjs/core/di/container.js +29 -0
  163. package/lib/commonjs/core/encoding/base64.js +50 -0
  164. package/lib/commonjs/core/id/deviceId.js +52 -0
  165. package/lib/commonjs/core/id/installationId.js +55 -0
  166. package/lib/commonjs/core/id/sessionId.js +2 -0
  167. package/lib/commonjs/core/lifecycle/appLifecycle.js +31 -0
  168. package/lib/commonjs/core/lifecycle/crashSafe.js +33 -0
  169. package/lib/commonjs/core/logger/errorClassification.js +107 -0
  170. package/lib/commonjs/core/logger/internalLogger.js +63 -0
  171. package/lib/commonjs/core/logger/levels.js +2 -0
  172. package/lib/commonjs/crypto/hmacSha256.js +132 -0
  173. package/lib/commonjs/debug/bootstrap.js +429 -0
  174. package/lib/commonjs/debug/commands.js +732 -0
  175. package/lib/commonjs/debug/configBuilder.js +70 -0
  176. package/lib/commonjs/debug/exportBridge.js +155 -0
  177. package/lib/commonjs/debug/hostResolver.js +42 -0
  178. package/lib/commonjs/debug/index.js +141 -0
  179. package/lib/commonjs/debug/metrics.js +39 -0
  180. package/lib/commonjs/debug/perf.js +186 -0
  181. package/lib/commonjs/debug/perfWiring.js +109 -0
  182. package/lib/commonjs/debug/protocol.js +121 -0
  183. package/lib/commonjs/debug/redaction.js +422 -0
  184. package/lib/commonjs/debug/replayWiring.js +149 -0
  185. package/lib/commonjs/debug/screenTracking.js +60 -0
  186. package/lib/commonjs/debug/sessionWiring.js +48 -0
  187. package/lib/commonjs/debug/stream.js +542 -0
  188. package/lib/commonjs/debug/transport.js +368 -0
  189. package/lib/commonjs/features/bugreport/BugReportFeature.js +112 -0
  190. package/lib/commonjs/features/bugreport/buildPayload.js +97 -0
  191. package/lib/commonjs/features/bugreport/index.js +2 -0
  192. package/lib/commonjs/features/crash/CrashFeature.js +86 -0
  193. package/lib/commonjs/features/crash/CrashReporter.js +160 -0
  194. package/lib/commonjs/features/crash/NativeCrashFeature.js +42 -0
  195. package/lib/commonjs/features/crash/capture.js +48 -0
  196. package/lib/commonjs/features/crash/globalHandler.js +41 -0
  197. package/lib/commonjs/features/crash/index.js +14 -0
  198. package/lib/commonjs/features/crash/nativeCrashBridge.js +361 -0
  199. package/lib/commonjs/features/crash/rejectionHandler.js +180 -0
  200. package/lib/commonjs/features/crash/scrubCrash.js +158 -0
  201. package/lib/commonjs/features/engage/EngageAnchor.js +132 -0
  202. package/lib/commonjs/features/engage/EngageArchetypeRenderers.js +4292 -0
  203. package/lib/commonjs/features/engage/EngageInAppView.js +2670 -0
  204. package/lib/commonjs/features/engage/EngageInlinePlacement.js +133 -0
  205. package/lib/commonjs/features/engage/EngagePromptProvider.js +1063 -0
  206. package/lib/commonjs/features/engage/EngagePromptView.js +1252 -0
  207. package/lib/commonjs/features/engage/EngageTransport.js +608 -0
  208. package/lib/commonjs/features/engage/EngageVariantContent.js +1778 -0
  209. package/lib/commonjs/features/engage/__test-support__/reactNativeStub.js +54 -0
  210. package/lib/commonjs/features/engage/attachmentCapture.js +48 -0
  211. package/lib/commonjs/features/engage/captureVoiceAttachment.js +88 -0
  212. package/lib/commonjs/features/engage/engageCoachmarkTour.js +106 -0
  213. package/lib/commonjs/features/engage/engageGameLogic.js +308 -0
  214. package/lib/commonjs/features/engage/engageMediaSizing.js +60 -0
  215. package/lib/commonjs/features/engage/engageMultiStepSheet.js +43 -0
  216. package/lib/commonjs/features/engage/engageOutcome.js +118 -0
  217. package/lib/commonjs/features/engage/engagePushTokenBridge.js +72 -0
  218. package/lib/commonjs/features/engage/engageShakeBridge.js +62 -0
  219. package/lib/commonjs/features/engage/engageSignals.js +39 -0
  220. package/lib/commonjs/features/engage/engageStoreReviewBridge.js +49 -0
  221. package/lib/commonjs/features/engage/engageTestSeenStore.js +99 -0
  222. package/lib/commonjs/features/engage/engageThrottle.js +404 -0
  223. package/lib/commonjs/features/engage/engageTriggerEngine.js +365 -0
  224. package/lib/commonjs/features/engage/engageTypes.js +116 -0
  225. package/lib/commonjs/features/engage/engageVariantResolver.js +143 -0
  226. package/lib/commonjs/features/engage/engageWindowInsets.js +98 -0
  227. package/lib/commonjs/features/engage/gestureTriggerDetector.js +85 -0
  228. package/lib/commonjs/features/engage/transcription/TranscriptionProvider.js +55 -0
  229. package/lib/commonjs/features/install-referrer/installReferrer.js +113 -0
  230. package/lib/commonjs/features/journey/ScaleBunDebugRoot.js +1038 -0
  231. package/lib/commonjs/features/journey/ScaleBunFlatList.js +39 -0
  232. package/lib/commonjs/features/journey/ScaleBunImpression.js +113 -0
  233. package/lib/commonjs/features/journey/ScaleBunScrollView.js +102 -0
  234. package/lib/commonjs/features/journey/ScaleBunSectionList.js +39 -0
  235. package/lib/commonjs/features/journey/autoInstrumentScroll.js +161 -0
  236. package/lib/commonjs/features/journey/calibrationContext.js +42 -0
  237. package/lib/commonjs/features/journey/gestureBuffer.js +63 -0
  238. package/lib/commonjs/features/journey/gestureDetector.js +176 -0
  239. package/lib/commonjs/features/journey/impression.js +93 -0
  240. package/lib/commonjs/features/journey/interactionProtocol.js +168 -0
  241. package/lib/commonjs/features/journey/journeyManager.js +466 -0
  242. package/lib/commonjs/features/journey/journeyTypes.js +55 -0
  243. package/lib/commonjs/features/journey/nativeScroll.js +85 -0
  244. package/lib/commonjs/features/journey/navDetector.js +161 -0
  245. package/lib/commonjs/features/journey/screenshotHelper.js +136 -0
  246. package/lib/commonjs/features/journey/scrollContext.js +154 -0
  247. package/lib/commonjs/features/journey/targetGeometry.js +185 -0
  248. package/lib/commonjs/features/journey/targetRegistry.js +53 -0
  249. package/lib/commonjs/features/journey/touchTarget.js +249 -0
  250. package/lib/commonjs/features/journey/uiState.js +188 -0
  251. package/lib/commonjs/features/navigation/AutoScreenDetector.js +607 -0
  252. package/lib/commonjs/features/network/NetworkFeature.js +216 -0
  253. package/lib/commonjs/features/network/index.js +23 -0
  254. package/lib/commonjs/features/network/thirdParty.js +151 -0
  255. package/lib/commonjs/features/ota/OtaEventEmitter.js +129 -0
  256. package/lib/commonjs/features/ota/OtaOrchestrator.js +1309 -0
  257. package/lib/commonjs/features/ota/OtaTypes.js +6 -0
  258. package/lib/commonjs/features/ota/deviceAttributes.js +48 -0
  259. package/lib/commonjs/features/ota/environment.js +172 -0
  260. package/lib/commonjs/features/ota/geoCountry.js +93 -0
  261. package/lib/commonjs/features/ota/retry.js +96 -0
  262. package/lib/commonjs/features/ota/signedDownload.js +187 -0
  263. package/lib/commonjs/features/ota/useOtaUpdate.js +106 -0
  264. package/lib/commonjs/features/performance/PerformanceFeature.js +649 -0
  265. package/lib/commonjs/features/performance/collectors/AppLaunchCollector.js +122 -0
  266. package/lib/commonjs/features/performance/collectors/AutoScreenLoadCollector.js +232 -0
  267. package/lib/commonjs/features/performance/collectors/CustomTraceCollector.js +99 -0
  268. package/lib/commonjs/features/performance/collectors/FrameMetricsCollector.js +184 -0
  269. package/lib/commonjs/features/performance/collectors/JsStallCollector.js +165 -0
  270. package/lib/commonjs/features/performance/collectors/NetworkPerfCollector.js +59 -0
  271. package/lib/commonjs/features/performance/collectors/ScreenLoadCollector.js +78 -0
  272. package/lib/commonjs/features/performance/collectors/UiHangCollector.js +78 -0
  273. package/lib/commonjs/features/performance/config.js +58 -0
  274. package/lib/commonjs/features/performance/getNativePerformanceModule.js +44 -0
  275. package/lib/commonjs/features/performance/index.js +58 -0
  276. package/lib/commonjs/features/performance/metrics/MetricsEngine.js +148 -0
  277. package/lib/commonjs/features/performance/models.js +48 -0
  278. package/lib/commonjs/features/performance/transport/PerformanceTransport.js +168 -0
  279. package/lib/commonjs/features/profiler/ProfilerFeature.js +600 -0
  280. package/lib/commonjs/features/profiler/config.js +151 -0
  281. package/lib/commonjs/features/profiler/contracts.js +62 -0
  282. package/lib/commonjs/features/profiler/index.js +40 -0
  283. package/lib/commonjs/features/profiler/models.js +112 -0
  284. package/lib/commonjs/features/profiler/transport/ProfilerTransport.js +94 -0
  285. package/lib/commonjs/features/replay/bridge/adapters/bridgeAdapter.js +203 -0
  286. package/lib/commonjs/features/replay/bridge/eventEmitter.js +128 -0
  287. package/lib/commonjs/features/replay/bridge/nativeModule.js +95 -0
  288. package/lib/commonjs/features/replay/bridge/nativeQuota.js +121 -0
  289. package/lib/commonjs/features/replay/core/clock/clock.js +47 -0
  290. package/lib/commonjs/features/replay/core/config/defaults.js +88 -0
  291. package/lib/commonjs/features/replay/core/config/validator.js +109 -0
  292. package/lib/commonjs/features/replay/core/env/environmentDetector.js +28 -0
  293. package/lib/commonjs/features/replay/core/errors/safeCall.js +42 -0
  294. package/lib/commonjs/features/replay/core/ids/sessionId.js +53 -0
  295. package/lib/commonjs/features/replay/core/logger/logger.js +36 -0
  296. package/lib/commonjs/features/replay/core/privacy/privacyTypes.js +34 -0
  297. package/lib/commonjs/features/replay/core/queue/boundedQueue.js +71 -0
  298. package/lib/commonjs/features/replay/integrations/alert/alertInstrumentation.js +259 -0
  299. package/lib/commonjs/features/replay/integrations/logs/consoleIntegration.js +139 -0
  300. package/lib/commonjs/features/replay/integrations/network/networkAdapter.js +77 -0
  301. package/lib/commonjs/features/replay/integrations/react-navigation/navigationIntegration.js +88 -0
  302. package/lib/commonjs/features/replay/integrations/touch/ReplayRoot.js +103 -0
  303. package/lib/commonjs/features/replay/pipeline/batching/batchManager.js +119 -0
  304. package/lib/commonjs/features/replay/pipeline/envelope/envelopeBuilder.js +52 -0
  305. package/lib/commonjs/features/replay/pipeline/retry/retryPolicy.js +53 -0
  306. package/lib/commonjs/features/replay/pipeline/transport/transportTypes.js +67 -0
  307. package/lib/commonjs/features/replay/public/api.js +336 -0
  308. package/lib/commonjs/features/replay/public/enums.js +85 -0
  309. package/lib/commonjs/features/replay/public/types.js +6 -0
  310. package/lib/commonjs/features/replay/replay/breadcrumbs/breadcrumbCollector.js +119 -0
  311. package/lib/commonjs/features/replay/replay/frames/frameModels.js +40 -0
  312. package/lib/commonjs/features/replay/replay/session/sessionOrchestrator.js +279 -0
  313. package/lib/commonjs/features/replay/replay/timeline/timelineModels.js +120 -0
  314. package/lib/commonjs/features/replay/transport/BackendReplayTransport.js +175 -0
  315. package/lib/commonjs/features/replay/transport/CompositeReplayTransport.js +75 -0
  316. package/lib/commonjs/features/replay/transport/DesktopReplayTransport.js +124 -0
  317. package/lib/commonjs/features/replay/transport/ReplayTransport.js +2 -0
  318. package/lib/commonjs/features/session/BackendSessionAdapter.js +1915 -0
  319. package/lib/commonjs/features/session/DesktopSessionTransport.js +124 -0
  320. package/lib/commonjs/features/session/JourneyEventPipeline.js +244 -0
  321. package/lib/commonjs/features/session/ReplayCaptureManager.js +1253 -0
  322. package/lib/commonjs/features/session/ScrollTracker.js +147 -0
  323. package/lib/commonjs/features/session/SessionManager.js +1448 -0
  324. package/lib/commonjs/features/session/SyncDecisionEngine.js +95 -0
  325. package/lib/commonjs/features/session/frameLink.js +36 -0
  326. package/lib/commonjs/features/session/frameScrollState.js +41 -0
  327. package/lib/commonjs/features/session/index.js +84 -0
  328. package/lib/commonjs/features/session/nativeCapture.js +53 -0
  329. package/lib/commonjs/features/session/outboxFrameCapture.js +83 -0
  330. package/lib/commonjs/features/session/sessionTypes.js +230 -0
  331. package/lib/commonjs/features/session/viewportPlausibility.js +143 -0
  332. package/lib/commonjs/features/skan/skanBridge.js +54 -0
  333. package/lib/commonjs/features/skan/skanConversionManager.js +134 -0
  334. package/lib/commonjs/index.js +267 -0
  335. package/lib/commonjs/integrations/fetch/fetchInterceptor.js +174 -0
  336. package/lib/commonjs/integrations/navigation/screenTracker.js +2 -0
  337. package/lib/commonjs/integrations/network/bodyCapture.js +336 -0
  338. package/lib/commonjs/integrations/xhr/xhrInterceptor.js +224 -0
  339. package/lib/commonjs/metro/composeSourceMap.js +105 -0
  340. package/lib/commonjs/metro/featureModules.js +131 -0
  341. package/lib/commonjs/metro/index.js +230 -0
  342. package/lib/commonjs/metro/optionalDependencyStub.js +6 -0
  343. package/lib/commonjs/metro/optionalModules.js +31 -0
  344. package/lib/commonjs/metro/serializerCompose.js +161 -0
  345. package/lib/commonjs/pipeline/dispatcher/dispatcher.js +28 -0
  346. package/lib/commonjs/pipeline/envelope/envelope.js +17 -0
  347. package/lib/commonjs/pipeline/envelope/serializer.js +14 -0
  348. package/lib/commonjs/pipeline/processors/dedupe.js +2 -0
  349. package/lib/commonjs/pipeline/processors/enrich.js +16 -0
  350. package/lib/commonjs/pipeline/processors/sampling.js +2 -0
  351. package/lib/commonjs/pipeline/processors/sanitize.js +28 -0
  352. package/lib/commonjs/pipeline/queue/flushQueue.js +107 -0
  353. package/lib/commonjs/pipeline/queue/memoryQueue.js +31 -0
  354. package/lib/commonjs/pipeline/queue/persistentQueue.js +342 -0
  355. package/lib/commonjs/pipeline/queue/queuePolicy.js +2 -0
  356. package/lib/commonjs/pipeline/scheduler/flushScheduler.js +45 -0
  357. package/lib/commonjs/pipeline/scheduler/retryPolicy.js +15 -0
  358. package/lib/commonjs/public/ScaleBunErrorBoundary.js +91 -0
  359. package/lib/commonjs/public/ScaleBunFacade.js +2044 -0
  360. package/lib/commonjs/public/ScaleBunProvider.js +62 -0
  361. package/lib/commonjs/public/typedTracker.js +79 -0
  362. package/lib/commonjs/public/types.js +6 -0
  363. package/lib/commonjs/push/PushManager.js +270 -0
  364. package/lib/commonjs/push/adapters/ManualAdapter.js +86 -0
  365. package/lib/commonjs/push/adapters/NativeBridgeAdapter.js +131 -0
  366. package/lib/commonjs/push/adapters/NoopAdapter.js +45 -0
  367. package/lib/commonjs/push/adapters/RNFirebaseMessagingAdapter.js +248 -0
  368. package/lib/commonjs/push/adapters/loadMessaging.js +29 -0
  369. package/lib/commonjs/push/adapters/loadNotifee.js +36 -0
  370. package/lib/commonjs/push/adapters/selectAdapter.js +153 -0
  371. package/lib/commonjs/push/detect/capabilities.js +136 -0
  372. package/lib/commonjs/push/index.js +33 -0
  373. package/lib/commonjs/push/native/nativeNotifications.js +168 -0
  374. package/lib/commonjs/push/types.js +2 -0
  375. package/lib/commonjs/specs/NativeReplaySdk.js +28 -0
  376. package/lib/commonjs/specs/NativeScaleBunCrash.js +30 -0
  377. package/lib/commonjs/specs/NativeScaleBunInstallReferrer.js +24 -0
  378. package/lib/commonjs/specs/NativeScaleBunOta.js +32 -0
  379. package/lib/commonjs/specs/NativeScaleBunPerformance.js +25 -0
  380. package/lib/commonjs/specs/NativeScaleBunProfiler.js +26 -0
  381. package/lib/commonjs/specs/NativeScaleBunStorage.js +40 -0
  382. package/lib/commonjs/storage/StorageBackend.js +240 -0
  383. package/lib/commonjs/storage/db/sqlite.js +2 -0
  384. package/lib/commonjs/storage/files/fileStore.js +2 -0
  385. package/lib/commonjs/transport/auth/sdkSession.js +28 -0
  386. package/lib/commonjs/transport/backoff/exponentialJitter.js +16 -0
  387. package/lib/commonjs/transport/http/endpoints.js +46 -0
  388. package/lib/commonjs/transport/http/httpClient.js +72 -0
  389. package/lib/commonjs/transport/rateLimit/retryAfter.js +2 -0
  390. package/lib/commonjs/transport/signing/requestSigner.js +2 -0
  391. package/lib/commonjs/vendor/protocol/index.js +327 -0
  392. package/lib/commonjs/vendor/protocol/internal/validation.js +429 -0
  393. package/lib/commonjs/vendor/sdk-contracts/bridge.js +2 -0
  394. package/lib/commonjs/vendor/sdk-contracts/config.js +2 -0
  395. package/lib/commonjs/vendor/sdk-contracts/events.js +2 -0
  396. package/lib/commonjs/vendor/sdk-contracts/features.js +2 -0
  397. package/lib/commonjs/vendor/sdk-contracts/index.js +2 -0
  398. package/lib/commonjs/vendor/sdk-contracts/platform.js +2 -0
  399. package/lib/commonjs/vendor/sdk-contracts/session-boundary.js +6 -0
  400. package/lib/commonjs/vendor/sdk-contracts/session.js +2 -0
  401. package/lib/commonjs/vendor/vendor.manifest +10 -0
  402. package/lib/module/analytics/EventTracker.js +592 -0
  403. package/lib/module/analytics/automaticEvents.js +63 -0
  404. package/lib/module/analytics/batching.js +55 -0
  405. package/lib/module/analytics/eventLane.js +47 -0
  406. package/lib/module/analytics/revenue.js +117 -0
  407. package/lib/module/analytics/subscription.js +86 -0
  408. package/lib/module/bootstrap/FeatureRegistry.js +79 -0
  409. package/lib/module/bootstrap/SDKBootstrapper.js +742 -0
  410. package/lib/module/bucketing/fnv1a32.js +37 -0
  411. package/lib/module/compat/codepush.js +147 -0
  412. package/lib/module/config/ConfigManager.js +230 -0
  413. package/lib/module/config/configTypes.js +10 -0
  414. package/lib/module/config/otaPolicyState.js +76 -0
  415. package/lib/module/config/quotaState.js +423 -0
  416. package/lib/module/core/architecture.js +38 -0
  417. package/lib/module/core/clock/now.js +7 -0
  418. package/lib/module/core/config/defaults.js +2 -0
  419. package/lib/module/core/config/schema.js +506 -0
  420. package/lib/module/core/constants/endpoints.js +13 -0
  421. package/lib/module/core/constants/protocol.js +25 -0
  422. package/lib/module/core/constants/timings.js +26 -0
  423. package/lib/module/core/constants/version.js +12 -0
  424. package/lib/module/core/context/app.js +2 -0
  425. package/lib/module/core/context/device.js +143 -0
  426. package/lib/module/core/context/session.js +2 -0
  427. package/lib/module/core/context/user.js +2 -0
  428. package/lib/module/core/contracts/IFeature.js +2 -0
  429. package/lib/module/core/di/container.js +22 -0
  430. package/lib/module/core/encoding/base64.js +44 -0
  431. package/lib/module/core/id/deviceId.js +45 -0
  432. package/lib/module/core/id/installationId.js +50 -0
  433. package/lib/module/core/id/sessionId.js +2 -0
  434. package/lib/module/core/lifecycle/appLifecycle.js +25 -0
  435. package/lib/module/core/lifecycle/crashSafe.js +26 -0
  436. package/lib/module/core/logger/errorClassification.js +96 -0
  437. package/lib/module/core/logger/internalLogger.js +59 -0
  438. package/lib/module/core/logger/levels.js +2 -0
  439. package/lib/module/crypto/hmacSha256.js +126 -0
  440. package/lib/module/debug/bootstrap.js +393 -0
  441. package/lib/module/debug/commands.js +726 -0
  442. package/lib/module/debug/configBuilder.js +63 -0
  443. package/lib/module/debug/exportBridge.js +148 -0
  444. package/lib/module/debug/hostResolver.js +37 -0
  445. package/lib/module/debug/index.js +13 -0
  446. package/lib/module/debug/metrics.js +33 -0
  447. package/lib/module/debug/perf.js +180 -0
  448. package/lib/module/debug/perfWiring.js +102 -0
  449. package/lib/module/debug/protocol.js +19 -0
  450. package/lib/module/debug/redaction.js +411 -0
  451. package/lib/module/debug/replayWiring.js +139 -0
  452. package/lib/module/debug/screenTracking.js +53 -0
  453. package/lib/module/debug/sessionWiring.js +43 -0
  454. package/lib/module/debug/stream.js +536 -0
  455. package/lib/module/debug/transport.js +362 -0
  456. package/lib/module/features/bugreport/BugReportFeature.js +105 -0
  457. package/lib/module/features/bugreport/buildPayload.js +91 -0
  458. package/lib/module/features/bugreport/index.js +2 -0
  459. package/lib/module/features/crash/CrashFeature.js +79 -0
  460. package/lib/module/features/crash/CrashReporter.js +151 -0
  461. package/lib/module/features/crash/NativeCrashFeature.js +36 -0
  462. package/lib/module/features/crash/capture.js +42 -0
  463. package/lib/module/features/crash/globalHandler.js +36 -0
  464. package/lib/module/features/crash/index.js +8 -0
  465. package/lib/module/features/crash/nativeCrashBridge.js +350 -0
  466. package/lib/module/features/crash/rejectionHandler.js +171 -0
  467. package/lib/module/features/crash/scrubCrash.js +149 -0
  468. package/lib/module/features/engage/EngageAnchor.js +121 -0
  469. package/lib/module/features/engage/EngageArchetypeRenderers.js +4264 -0
  470. package/lib/module/features/engage/EngageInAppView.js +2656 -0
  471. package/lib/module/features/engage/EngageInlinePlacement.js +123 -0
  472. package/lib/module/features/engage/EngagePromptProvider.js +1054 -0
  473. package/lib/module/features/engage/EngagePromptView.js +1243 -0
  474. package/lib/module/features/engage/EngageTransport.js +602 -0
  475. package/lib/module/features/engage/EngageVariantContent.js +1771 -0
  476. package/lib/module/features/engage/__test-support__/reactNativeStub.js +52 -0
  477. package/lib/module/features/engage/attachmentCapture.js +42 -0
  478. package/lib/module/features/engage/captureVoiceAttachment.js +80 -0
  479. package/lib/module/features/engage/engageCoachmarkTour.js +94 -0
  480. package/lib/module/features/engage/engageGameLogic.js +287 -0
  481. package/lib/module/features/engage/engageMediaSizing.js +51 -0
  482. package/lib/module/features/engage/engageMultiStepSheet.js +35 -0
  483. package/lib/module/features/engage/engageOutcome.js +108 -0
  484. package/lib/module/features/engage/engagePushTokenBridge.js +65 -0
  485. package/lib/module/features/engage/engageShakeBridge.js +56 -0
  486. package/lib/module/features/engage/engageSignals.js +34 -0
  487. package/lib/module/features/engage/engageStoreReviewBridge.js +43 -0
  488. package/lib/module/features/engage/engageTestSeenStore.js +92 -0
  489. package/lib/module/features/engage/engageThrottle.js +390 -0
  490. package/lib/module/features/engage/engageTriggerEngine.js +360 -0
  491. package/lib/module/features/engage/engageTypes.js +110 -0
  492. package/lib/module/features/engage/engageVariantResolver.js +135 -0
  493. package/lib/module/features/engage/engageWindowInsets.js +89 -0
  494. package/lib/module/features/engage/gestureTriggerDetector.js +80 -0
  495. package/lib/module/features/engage/transcription/TranscriptionProvider.js +46 -0
  496. package/lib/module/features/install-referrer/installReferrer.js +104 -0
  497. package/lib/module/features/journey/ScaleBunDebugRoot.js +1030 -0
  498. package/lib/module/features/journey/ScaleBunFlatList.js +32 -0
  499. package/lib/module/features/journey/ScaleBunImpression.js +105 -0
  500. package/lib/module/features/journey/ScaleBunScrollView.js +95 -0
  501. package/lib/module/features/journey/ScaleBunSectionList.js +32 -0
  502. package/lib/module/features/journey/autoInstrumentScroll.js +155 -0
  503. package/lib/module/features/journey/calibrationContext.js +35 -0
  504. package/lib/module/features/journey/gestureBuffer.js +56 -0
  505. package/lib/module/features/journey/gestureDetector.js +169 -0
  506. package/lib/module/features/journey/impression.js +84 -0
  507. package/lib/module/features/journey/interactionProtocol.js +158 -0
  508. package/lib/module/features/journey/journeyManager.js +459 -0
  509. package/lib/module/features/journey/journeyTypes.js +49 -0
  510. package/lib/module/features/journey/nativeScroll.js +77 -0
  511. package/lib/module/features/journey/navDetector.js +154 -0
  512. package/lib/module/features/journey/screenshotHelper.js +129 -0
  513. package/lib/module/features/journey/scrollContext.js +142 -0
  514. package/lib/module/features/journey/targetGeometry.js +175 -0
  515. package/lib/module/features/journey/targetRegistry.js +44 -0
  516. package/lib/module/features/journey/touchTarget.js +241 -0
  517. package/lib/module/features/journey/uiState.js +176 -0
  518. package/lib/module/features/navigation/AutoScreenDetector.js +601 -0
  519. package/lib/module/features/network/NetworkFeature.js +209 -0
  520. package/lib/module/features/network/index.js +17 -0
  521. package/lib/module/features/network/thirdParty.js +142 -0
  522. package/lib/module/features/ota/OtaEventEmitter.js +123 -0
  523. package/lib/module/features/ota/OtaOrchestrator.js +1302 -0
  524. package/lib/module/features/ota/OtaTypes.js +2 -0
  525. package/lib/module/features/ota/deviceAttributes.js +43 -0
  526. package/lib/module/features/ota/environment.js +165 -0
  527. package/lib/module/features/ota/geoCountry.js +86 -0
  528. package/lib/module/features/ota/retry.js +87 -0
  529. package/lib/module/features/ota/signedDownload.js +174 -0
  530. package/lib/module/features/ota/useOtaUpdate.js +100 -0
  531. package/lib/module/features/performance/PerformanceFeature.js +643 -0
  532. package/lib/module/features/performance/collectors/AppLaunchCollector.js +115 -0
  533. package/lib/module/features/performance/collectors/AutoScreenLoadCollector.js +225 -0
  534. package/lib/module/features/performance/collectors/CustomTraceCollector.js +92 -0
  535. package/lib/module/features/performance/collectors/FrameMetricsCollector.js +177 -0
  536. package/lib/module/features/performance/collectors/JsStallCollector.js +158 -0
  537. package/lib/module/features/performance/collectors/NetworkPerfCollector.js +52 -0
  538. package/lib/module/features/performance/collectors/ScreenLoadCollector.js +71 -0
  539. package/lib/module/features/performance/collectors/UiHangCollector.js +71 -0
  540. package/lib/module/features/performance/config.js +51 -0
  541. package/lib/module/features/performance/getNativePerformanceModule.js +39 -0
  542. package/lib/module/features/performance/index.js +9 -0
  543. package/lib/module/features/performance/metrics/MetricsEngine.js +139 -0
  544. package/lib/module/features/performance/models.js +42 -0
  545. package/lib/module/features/performance/transport/PerformanceTransport.js +162 -0
  546. package/lib/module/features/profiler/ProfilerFeature.js +594 -0
  547. package/lib/module/features/profiler/config.js +143 -0
  548. package/lib/module/features/profiler/contracts.js +56 -0
  549. package/lib/module/features/profiler/index.js +11 -0
  550. package/lib/module/features/profiler/models.js +106 -0
  551. package/lib/module/features/profiler/transport/ProfilerTransport.js +87 -0
  552. package/lib/module/features/replay/bridge/adapters/bridgeAdapter.js +198 -0
  553. package/lib/module/features/replay/bridge/eventEmitter.js +122 -0
  554. package/lib/module/features/replay/bridge/nativeModule.js +89 -0
  555. package/lib/module/features/replay/bridge/nativeQuota.js +109 -0
  556. package/lib/module/features/replay/core/clock/clock.js +37 -0
  557. package/lib/module/features/replay/core/config/defaults.js +82 -0
  558. package/lib/module/features/replay/core/config/validator.js +103 -0
  559. package/lib/module/features/replay/core/env/environmentDetector.js +22 -0
  560. package/lib/module/features/replay/core/errors/safeCall.js +35 -0
  561. package/lib/module/features/replay/core/ids/sessionId.js +44 -0
  562. package/lib/module/features/replay/core/logger/logger.js +29 -0
  563. package/lib/module/features/replay/core/privacy/privacyTypes.js +27 -0
  564. package/lib/module/features/replay/core/queue/boundedQueue.js +64 -0
  565. package/lib/module/features/replay/integrations/alert/alertInstrumentation.js +252 -0
  566. package/lib/module/features/replay/integrations/logs/consoleIntegration.js +131 -0
  567. package/lib/module/features/replay/integrations/network/networkAdapter.js +70 -0
  568. package/lib/module/features/replay/integrations/react-navigation/navigationIntegration.js +82 -0
  569. package/lib/module/features/replay/integrations/touch/ReplayRoot.js +96 -0
  570. package/lib/module/features/replay/pipeline/batching/batchManager.js +113 -0
  571. package/lib/module/features/replay/pipeline/envelope/envelopeBuilder.js +43 -0
  572. package/lib/module/features/replay/pipeline/retry/retryPolicy.js +45 -0
  573. package/lib/module/features/replay/pipeline/transport/transportTypes.js +60 -0
  574. package/lib/module/features/replay/public/api.js +332 -0
  575. package/lib/module/features/replay/public/enums.js +85 -0
  576. package/lib/module/features/replay/public/types.js +2 -0
  577. package/lib/module/features/replay/replay/breadcrumbs/breadcrumbCollector.js +113 -0
  578. package/lib/module/features/replay/replay/frames/frameModels.js +33 -0
  579. package/lib/module/features/replay/replay/session/sessionOrchestrator.js +272 -0
  580. package/lib/module/features/replay/replay/timeline/timelineModels.js +108 -0
  581. package/lib/module/features/replay/transport/BackendReplayTransport.js +169 -0
  582. package/lib/module/features/replay/transport/CompositeReplayTransport.js +68 -0
  583. package/lib/module/features/replay/transport/DesktopReplayTransport.js +119 -0
  584. package/lib/module/features/replay/transport/ReplayTransport.js +2 -0
  585. package/lib/module/features/session/BackendSessionAdapter.js +1908 -0
  586. package/lib/module/features/session/DesktopSessionTransport.js +118 -0
  587. package/lib/module/features/session/JourneyEventPipeline.js +239 -0
  588. package/lib/module/features/session/ReplayCaptureManager.js +1248 -0
  589. package/lib/module/features/session/ScrollTracker.js +141 -0
  590. package/lib/module/features/session/SessionManager.js +1443 -0
  591. package/lib/module/features/session/SyncDecisionEngine.js +88 -0
  592. package/lib/module/features/session/frameLink.js +29 -0
  593. package/lib/module/features/session/frameScrollState.js +34 -0
  594. package/lib/module/features/session/index.js +35 -0
  595. package/lib/module/features/session/nativeCapture.js +45 -0
  596. package/lib/module/features/session/outboxFrameCapture.js +77 -0
  597. package/lib/module/features/session/sessionTypes.js +226 -0
  598. package/lib/module/features/session/viewportPlausibility.js +137 -0
  599. package/lib/module/features/skan/skanBridge.js +48 -0
  600. package/lib/module/features/skan/skanConversionManager.js +128 -0
  601. package/lib/module/index.js +80 -0
  602. package/lib/module/integrations/fetch/fetchInterceptor.js +169 -0
  603. package/lib/module/integrations/navigation/screenTracker.js +2 -0
  604. package/lib/module/integrations/network/bodyCapture.js +320 -0
  605. package/lib/module/integrations/xhr/xhrInterceptor.js +219 -0
  606. package/lib/module/metro/composeSourceMap.js +97 -0
  607. package/lib/module/metro/featureModules.js +123 -0
  608. package/lib/module/metro/index.js +218 -0
  609. package/lib/module/metro/optionalDependencyStub.js +14 -0
  610. package/lib/module/metro/optionalModules.js +25 -0
  611. package/lib/module/metro/serializerCompose.js +152 -0
  612. package/lib/module/pipeline/dispatcher/dispatcher.js +21 -0
  613. package/lib/module/pipeline/envelope/envelope.js +11 -0
  614. package/lib/module/pipeline/envelope/serializer.js +8 -0
  615. package/lib/module/pipeline/processors/dedupe.js +2 -0
  616. package/lib/module/pipeline/processors/enrich.js +10 -0
  617. package/lib/module/pipeline/processors/sampling.js +2 -0
  618. package/lib/module/pipeline/processors/sanitize.js +22 -0
  619. package/lib/module/pipeline/queue/flushQueue.js +102 -0
  620. package/lib/module/pipeline/queue/memoryQueue.js +24 -0
  621. package/lib/module/pipeline/queue/persistentQueue.js +336 -0
  622. package/lib/module/pipeline/queue/queuePolicy.js +2 -0
  623. package/lib/module/pipeline/scheduler/flushScheduler.js +38 -0
  624. package/lib/module/pipeline/scheduler/retryPolicy.js +9 -0
  625. package/lib/module/public/ScaleBunErrorBoundary.js +82 -0
  626. package/lib/module/public/ScaleBunFacade.js +2038 -0
  627. package/lib/module/public/ScaleBunProvider.js +54 -0
  628. package/lib/module/public/typedTracker.js +72 -0
  629. package/lib/module/public/types.js +2 -0
  630. package/lib/module/push/PushManager.js +263 -0
  631. package/lib/module/push/adapters/ManualAdapter.js +79 -0
  632. package/lib/module/push/adapters/NativeBridgeAdapter.js +124 -0
  633. package/lib/module/push/adapters/NoopAdapter.js +38 -0
  634. package/lib/module/push/adapters/RNFirebaseMessagingAdapter.js +241 -0
  635. package/lib/module/push/adapters/loadMessaging.js +23 -0
  636. package/lib/module/push/adapters/loadNotifee.js +30 -0
  637. package/lib/module/push/adapters/selectAdapter.js +147 -0
  638. package/lib/module/push/detect/capabilities.js +130 -0
  639. package/lib/module/push/index.js +9 -0
  640. package/lib/module/push/native/nativeNotifications.js +155 -0
  641. package/lib/module/push/types.js +2 -0
  642. package/lib/module/specs/NativeReplaySdk.js +24 -0
  643. package/lib/module/specs/NativeScaleBunCrash.js +26 -0
  644. package/lib/module/specs/NativeScaleBunInstallReferrer.js +20 -0
  645. package/lib/module/specs/NativeScaleBunOta.js +28 -0
  646. package/lib/module/specs/NativeScaleBunPerformance.js +21 -0
  647. package/lib/module/specs/NativeScaleBunProfiler.js +22 -0
  648. package/lib/module/specs/NativeScaleBunStorage.js +36 -0
  649. package/lib/module/storage/StorageBackend.js +231 -0
  650. package/lib/module/storage/db/sqlite.js +2 -0
  651. package/lib/module/storage/files/fileStore.js +2 -0
  652. package/lib/module/transport/auth/sdkSession.js +21 -0
  653. package/lib/module/transport/backoff/exponentialJitter.js +10 -0
  654. package/lib/module/transport/http/endpoints.js +40 -0
  655. package/lib/module/transport/http/httpClient.js +64 -0
  656. package/lib/module/transport/rateLimit/retryAfter.js +2 -0
  657. package/lib/module/transport/signing/requestSigner.js +2 -0
  658. package/lib/module/vendor/protocol/index.js +312 -0
  659. package/lib/module/vendor/protocol/internal/validation.js +423 -0
  660. package/lib/module/vendor/sdk-contracts/bridge.js +2 -0
  661. package/lib/module/vendor/sdk-contracts/config.js +2 -0
  662. package/lib/module/vendor/sdk-contracts/events.js +2 -0
  663. package/lib/module/vendor/sdk-contracts/features.js +2 -0
  664. package/lib/module/vendor/sdk-contracts/index.js +2 -0
  665. package/lib/module/vendor/sdk-contracts/platform.js +2 -0
  666. package/lib/module/vendor/sdk-contracts/session-boundary.js +2 -0
  667. package/lib/module/vendor/sdk-contracts/session.js +2 -0
  668. package/lib/module/vendor/vendor.manifest +10 -0
  669. package/lib/typescript/analytics/EventTracker.d.ts +197 -0
  670. package/lib/typescript/analytics/automaticEvents.d.ts +30 -0
  671. package/lib/typescript/analytics/batching.d.ts +33 -0
  672. package/lib/typescript/analytics/eventLane.d.ts +22 -0
  673. package/lib/typescript/analytics/revenue.d.ts +94 -0
  674. package/lib/typescript/analytics/subscription.d.ts +35 -0
  675. package/lib/typescript/bootstrap/FeatureRegistry.d.ts +36 -0
  676. package/lib/typescript/bootstrap/SDKBootstrapper.d.ts +82 -0
  677. package/lib/typescript/bucketing/fnv1a32.d.ts +20 -0
  678. package/lib/typescript/compat/codepush.d.ts +76 -0
  679. package/lib/typescript/config/ConfigManager.d.ts +82 -0
  680. package/lib/typescript/config/configTypes.d.ts +73 -0
  681. package/lib/typescript/config/otaPolicyState.d.ts +55 -0
  682. package/lib/typescript/config/quotaState.d.ts +155 -0
  683. package/lib/typescript/core/architecture.d.ts +29 -0
  684. package/lib/typescript/core/clock/now.d.ts +5 -0
  685. package/lib/typescript/core/config/defaults.d.ts +1 -0
  686. package/lib/typescript/core/config/schema.d.ts +107 -0
  687. package/lib/typescript/core/constants/endpoints.d.ts +13 -0
  688. package/lib/typescript/core/constants/protocol.d.ts +23 -0
  689. package/lib/typescript/core/constants/timings.d.ts +22 -0
  690. package/lib/typescript/core/constants/version.d.ts +12 -0
  691. package/lib/typescript/core/context/app.d.ts +1 -0
  692. package/lib/typescript/core/context/device.d.ts +61 -0
  693. package/lib/typescript/core/context/session.d.ts +1 -0
  694. package/lib/typescript/core/context/user.d.ts +24 -0
  695. package/lib/typescript/core/contracts/IFeature.d.ts +44 -0
  696. package/lib/typescript/core/di/container.d.ts +9 -0
  697. package/lib/typescript/core/encoding/base64.d.ts +13 -0
  698. package/lib/typescript/core/id/deviceId.d.ts +9 -0
  699. package/lib/typescript/core/id/installationId.d.ts +20 -0
  700. package/lib/typescript/core/id/sessionId.d.ts +1 -0
  701. package/lib/typescript/core/lifecycle/appLifecycle.d.ts +14 -0
  702. package/lib/typescript/core/lifecycle/crashSafe.d.ts +7 -0
  703. package/lib/typescript/core/logger/errorClassification.d.ts +46 -0
  704. package/lib/typescript/core/logger/internalLogger.d.ts +24 -0
  705. package/lib/typescript/core/logger/levels.d.ts +1 -0
  706. package/lib/typescript/crypto/hmacSha256.d.ts +10 -0
  707. package/lib/typescript/debug/bootstrap.d.ts +148 -0
  708. package/lib/typescript/debug/commands.d.ts +77 -0
  709. package/lib/typescript/debug/configBuilder.d.ts +13 -0
  710. package/lib/typescript/debug/exportBridge.d.ts +27 -0
  711. package/lib/typescript/debug/hostResolver.d.ts +14 -0
  712. package/lib/typescript/debug/index.d.ts +12 -0
  713. package/lib/typescript/debug/metrics.d.ts +2 -0
  714. package/lib/typescript/debug/perf.d.ts +43 -0
  715. package/lib/typescript/debug/perfWiring.d.ts +33 -0
  716. package/lib/typescript/debug/protocol.d.ts +15 -0
  717. package/lib/typescript/debug/redaction.d.ts +69 -0
  718. package/lib/typescript/debug/replayWiring.d.ts +25 -0
  719. package/lib/typescript/debug/screenTracking.d.ts +16 -0
  720. package/lib/typescript/debug/sessionWiring.d.ts +16 -0
  721. package/lib/typescript/debug/stream.d.ts +77 -0
  722. package/lib/typescript/debug/transport.d.ts +110 -0
  723. package/lib/typescript/features/bugreport/BugReportFeature.d.ts +59 -0
  724. package/lib/typescript/features/bugreport/buildPayload.d.ts +51 -0
  725. package/lib/typescript/features/bugreport/index.d.ts +1 -0
  726. package/lib/typescript/features/crash/CrashFeature.d.ts +21 -0
  727. package/lib/typescript/features/crash/CrashReporter.d.ts +107 -0
  728. package/lib/typescript/features/crash/NativeCrashFeature.d.ts +17 -0
  729. package/lib/typescript/features/crash/capture.d.ts +22 -0
  730. package/lib/typescript/features/crash/globalHandler.d.ts +14 -0
  731. package/lib/typescript/features/crash/index.d.ts +2 -0
  732. package/lib/typescript/features/crash/nativeCrashBridge.d.ts +43 -0
  733. package/lib/typescript/features/crash/rejectionHandler.d.ts +65 -0
  734. package/lib/typescript/features/crash/scrubCrash.d.ts +35 -0
  735. package/lib/typescript/features/engage/EngageAnchor.d.ts +36 -0
  736. package/lib/typescript/features/engage/EngageArchetypeRenderers.d.ts +66 -0
  737. package/lib/typescript/features/engage/EngageInAppView.d.ts +164 -0
  738. package/lib/typescript/features/engage/EngageInlinePlacement.d.ts +42 -0
  739. package/lib/typescript/features/engage/EngagePromptProvider.d.ts +233 -0
  740. package/lib/typescript/features/engage/EngagePromptView.d.ts +97 -0
  741. package/lib/typescript/features/engage/EngageTransport.d.ts +158 -0
  742. package/lib/typescript/features/engage/EngageVariantContent.d.ts +12 -0
  743. package/lib/typescript/features/engage/attachmentCapture.d.ts +17 -0
  744. package/lib/typescript/features/engage/captureVoiceAttachment.d.ts +31 -0
  745. package/lib/typescript/features/engage/engageCoachmarkTour.d.ts +18 -0
  746. package/lib/typescript/features/engage/engageGameLogic.d.ts +34 -0
  747. package/lib/typescript/features/engage/engageMediaSizing.d.ts +23 -0
  748. package/lib/typescript/features/engage/engageMultiStepSheet.d.ts +25 -0
  749. package/lib/typescript/features/engage/engageOutcome.d.ts +38 -0
  750. package/lib/typescript/features/engage/engagePushTokenBridge.d.ts +30 -0
  751. package/lib/typescript/features/engage/engageShakeBridge.d.ts +20 -0
  752. package/lib/typescript/features/engage/engageSignals.d.ts +13 -0
  753. package/lib/typescript/features/engage/engageStoreReviewBridge.d.ts +23 -0
  754. package/lib/typescript/features/engage/engageTestSeenStore.d.ts +46 -0
  755. package/lib/typescript/features/engage/engageThrottle.d.ts +180 -0
  756. package/lib/typescript/features/engage/engageTriggerEngine.d.ts +16 -0
  757. package/lib/typescript/features/engage/engageTypes.d.ts +576 -0
  758. package/lib/typescript/features/engage/engageVariantResolver.d.ts +46 -0
  759. package/lib/typescript/features/engage/engageWindowInsets.d.ts +25 -0
  760. package/lib/typescript/features/engage/gestureTriggerDetector.d.ts +20 -0
  761. package/lib/typescript/features/engage/transcription/TranscriptionProvider.d.ts +51 -0
  762. package/lib/typescript/features/install-referrer/installReferrer.d.ts +39 -0
  763. package/lib/typescript/features/journey/ScaleBunDebugRoot.d.ts +49 -0
  764. package/lib/typescript/features/journey/ScaleBunFlatList.d.ts +20 -0
  765. package/lib/typescript/features/journey/ScaleBunImpression.d.ts +30 -0
  766. package/lib/typescript/features/journey/ScaleBunScrollView.d.ts +25 -0
  767. package/lib/typescript/features/journey/ScaleBunSectionList.d.ts +20 -0
  768. package/lib/typescript/features/journey/autoInstrumentScroll.d.ts +46 -0
  769. package/lib/typescript/features/journey/calibrationContext.d.ts +26 -0
  770. package/lib/typescript/features/journey/gestureBuffer.d.ts +27 -0
  771. package/lib/typescript/features/journey/gestureDetector.d.ts +40 -0
  772. package/lib/typescript/features/journey/impression.d.ts +48 -0
  773. package/lib/typescript/features/journey/interactionProtocol.d.ts +159 -0
  774. package/lib/typescript/features/journey/journeyManager.d.ts +62 -0
  775. package/lib/typescript/features/journey/journeyTypes.d.ts +161 -0
  776. package/lib/typescript/features/journey/nativeScroll.d.ts +47 -0
  777. package/lib/typescript/features/journey/navDetector.d.ts +42 -0
  778. package/lib/typescript/features/journey/screenshotHelper.d.ts +33 -0
  779. package/lib/typescript/features/journey/scrollContext.d.ts +49 -0
  780. package/lib/typescript/features/journey/targetGeometry.d.ts +126 -0
  781. package/lib/typescript/features/journey/targetRegistry.d.ts +28 -0
  782. package/lib/typescript/features/journey/touchTarget.d.ts +174 -0
  783. package/lib/typescript/features/journey/uiState.d.ts +93 -0
  784. package/lib/typescript/features/navigation/AutoScreenDetector.d.ts +196 -0
  785. package/lib/typescript/features/network/NetworkFeature.d.ts +43 -0
  786. package/lib/typescript/features/network/index.d.ts +46 -0
  787. package/lib/typescript/features/network/thirdParty.d.ts +95 -0
  788. package/lib/typescript/features/ota/OtaEventEmitter.d.ts +93 -0
  789. package/lib/typescript/features/ota/OtaOrchestrator.d.ts +287 -0
  790. package/lib/typescript/features/ota/OtaTypes.d.ts +193 -0
  791. package/lib/typescript/features/ota/deviceAttributes.d.ts +18 -0
  792. package/lib/typescript/features/ota/environment.d.ts +99 -0
  793. package/lib/typescript/features/ota/geoCountry.d.ts +14 -0
  794. package/lib/typescript/features/ota/retry.d.ts +53 -0
  795. package/lib/typescript/features/ota/signedDownload.d.ts +81 -0
  796. package/lib/typescript/features/ota/useOtaUpdate.d.ts +72 -0
  797. package/lib/typescript/features/performance/PerformanceFeature.d.ts +132 -0
  798. package/lib/typescript/features/performance/collectors/AppLaunchCollector.d.ts +27 -0
  799. package/lib/typescript/features/performance/collectors/AutoScreenLoadCollector.d.ts +70 -0
  800. package/lib/typescript/features/performance/collectors/CustomTraceCollector.d.ts +35 -0
  801. package/lib/typescript/features/performance/collectors/FrameMetricsCollector.d.ts +74 -0
  802. package/lib/typescript/features/performance/collectors/JsStallCollector.d.ts +45 -0
  803. package/lib/typescript/features/performance/collectors/NetworkPerfCollector.d.ts +23 -0
  804. package/lib/typescript/features/performance/collectors/ScreenLoadCollector.d.ts +30 -0
  805. package/lib/typescript/features/performance/collectors/UiHangCollector.d.ts +21 -0
  806. package/lib/typescript/features/performance/config.d.ts +73 -0
  807. package/lib/typescript/features/performance/getNativePerformanceModule.d.ts +2 -0
  808. package/lib/typescript/features/performance/index.d.ts +10 -0
  809. package/lib/typescript/features/performance/metrics/MetricsEngine.d.ts +69 -0
  810. package/lib/typescript/features/performance/models.d.ts +169 -0
  811. package/lib/typescript/features/performance/transport/PerformanceTransport.d.ts +40 -0
  812. package/lib/typescript/features/profiler/ProfilerFeature.d.ts +92 -0
  813. package/lib/typescript/features/profiler/config.d.ts +85 -0
  814. package/lib/typescript/features/profiler/contracts.d.ts +142 -0
  815. package/lib/typescript/features/profiler/index.d.ts +13 -0
  816. package/lib/typescript/features/profiler/models.d.ts +332 -0
  817. package/lib/typescript/features/profiler/transport/ProfilerTransport.d.ts +30 -0
  818. package/lib/typescript/features/replay/bridge/adapters/bridgeAdapter.d.ts +52 -0
  819. package/lib/typescript/features/replay/bridge/eventEmitter.d.ts +100 -0
  820. package/lib/typescript/features/replay/bridge/nativeModule.d.ts +166 -0
  821. package/lib/typescript/features/replay/bridge/nativeQuota.d.ts +26 -0
  822. package/lib/typescript/features/replay/core/clock/clock.d.ts +16 -0
  823. package/lib/typescript/features/replay/core/config/defaults.d.ts +28 -0
  824. package/lib/typescript/features/replay/core/config/validator.d.ts +13 -0
  825. package/lib/typescript/features/replay/core/env/environmentDetector.d.ts +14 -0
  826. package/lib/typescript/features/replay/core/errors/safeCall.d.ts +12 -0
  827. package/lib/typescript/features/replay/core/ids/sessionId.d.ts +15 -0
  828. package/lib/typescript/features/replay/core/logger/logger.d.ts +15 -0
  829. package/lib/typescript/features/replay/core/privacy/privacyTypes.d.ts +24 -0
  830. package/lib/typescript/features/replay/core/queue/boundedQueue.d.ts +29 -0
  831. package/lib/typescript/features/replay/integrations/alert/alertInstrumentation.d.ts +48 -0
  832. package/lib/typescript/features/replay/integrations/logs/consoleIntegration.d.ts +18 -0
  833. package/lib/typescript/features/replay/integrations/network/networkAdapter.d.ts +31 -0
  834. package/lib/typescript/features/replay/integrations/react-navigation/navigationIntegration.d.ts +25 -0
  835. package/lib/typescript/features/replay/integrations/touch/ReplayRoot.d.ts +26 -0
  836. package/lib/typescript/features/replay/pipeline/batching/batchManager.d.ts +47 -0
  837. package/lib/typescript/features/replay/pipeline/envelope/envelopeBuilder.d.ts +12 -0
  838. package/lib/typescript/features/replay/pipeline/retry/retryPolicy.d.ts +17 -0
  839. package/lib/typescript/features/replay/pipeline/transport/transportTypes.d.ts +40 -0
  840. package/lib/typescript/features/replay/public/api.d.ts +83 -0
  841. package/lib/typescript/features/replay/public/enums.d.ts +73 -0
  842. package/lib/typescript/features/replay/public/types.d.ts +249 -0
  843. package/lib/typescript/features/replay/replay/breadcrumbs/breadcrumbCollector.d.ts +26 -0
  844. package/lib/typescript/features/replay/replay/frames/frameModels.d.ts +23 -0
  845. package/lib/typescript/features/replay/replay/session/sessionOrchestrator.d.ts +53 -0
  846. package/lib/typescript/features/replay/replay/timeline/timelineModels.d.ts +29 -0
  847. package/lib/typescript/features/replay/transport/BackendReplayTransport.d.ts +45 -0
  848. package/lib/typescript/features/replay/transport/CompositeReplayTransport.d.ts +22 -0
  849. package/lib/typescript/features/replay/transport/DesktopReplayTransport.d.ts +35 -0
  850. package/lib/typescript/features/replay/transport/ReplayTransport.d.ts +72 -0
  851. package/lib/typescript/features/session/BackendSessionAdapter.d.ts +528 -0
  852. package/lib/typescript/features/session/DesktopSessionTransport.d.ts +28 -0
  853. package/lib/typescript/features/session/JourneyEventPipeline.d.ts +74 -0
  854. package/lib/typescript/features/session/ReplayCaptureManager.d.ts +391 -0
  855. package/lib/typescript/features/session/ScrollTracker.d.ts +48 -0
  856. package/lib/typescript/features/session/SessionManager.d.ts +414 -0
  857. package/lib/typescript/features/session/SyncDecisionEngine.d.ts +33 -0
  858. package/lib/typescript/features/session/frameLink.d.ts +27 -0
  859. package/lib/typescript/features/session/frameScrollState.d.ts +27 -0
  860. package/lib/typescript/features/session/index.d.ts +23 -0
  861. package/lib/typescript/features/session/nativeCapture.d.ts +18 -0
  862. package/lib/typescript/features/session/outboxFrameCapture.d.ts +20 -0
  863. package/lib/typescript/features/session/sessionTypes.d.ts +362 -0
  864. package/lib/typescript/features/session/viewportPlausibility.d.ts +72 -0
  865. package/lib/typescript/features/skan/skanBridge.d.ts +18 -0
  866. package/lib/typescript/features/skan/skanConversionManager.d.ts +69 -0
  867. package/lib/typescript/index.d.ts +59 -0
  868. package/lib/typescript/integrations/fetch/fetchInterceptor.d.ts +41 -0
  869. package/lib/typescript/integrations/navigation/screenTracker.d.ts +1 -0
  870. package/lib/typescript/integrations/network/bodyCapture.d.ts +101 -0
  871. package/lib/typescript/integrations/xhr/xhrInterceptor.d.ts +46 -0
  872. package/lib/typescript/metro/composeSourceMap.d.ts +26 -0
  873. package/lib/typescript/metro/featureModules.d.ts +49 -0
  874. package/lib/typescript/metro/index.d.ts +99 -0
  875. package/lib/typescript/metro/optionalDependencyStub.d.ts +14 -0
  876. package/lib/typescript/metro/optionalModules.d.ts +20 -0
  877. package/lib/typescript/metro/serializerCompose.d.ts +46 -0
  878. package/lib/typescript/pipeline/dispatcher/dispatcher.d.ts +7 -0
  879. package/lib/typescript/pipeline/envelope/envelope.d.ts +16 -0
  880. package/lib/typescript/pipeline/envelope/serializer.d.ts +7 -0
  881. package/lib/typescript/pipeline/processors/dedupe.d.ts +1 -0
  882. package/lib/typescript/pipeline/processors/enrich.d.ts +3 -0
  883. package/lib/typescript/pipeline/processors/sampling.d.ts +1 -0
  884. package/lib/typescript/pipeline/processors/sanitize.d.ts +3 -0
  885. package/lib/typescript/pipeline/queue/flushQueue.d.ts +12 -0
  886. package/lib/typescript/pipeline/queue/memoryQueue.d.ts +12 -0
  887. package/lib/typescript/pipeline/queue/persistentQueue.d.ts +120 -0
  888. package/lib/typescript/pipeline/queue/queuePolicy.d.ts +1 -0
  889. package/lib/typescript/pipeline/scheduler/flushScheduler.d.ts +9 -0
  890. package/lib/typescript/pipeline/scheduler/retryPolicy.d.ts +5 -0
  891. package/lib/typescript/public/ScaleBunErrorBoundary.d.ts +44 -0
  892. package/lib/typescript/public/ScaleBunFacade.d.ts +800 -0
  893. package/lib/typescript/public/ScaleBunProvider.d.ts +23 -0
  894. package/lib/typescript/public/typedTracker.d.ts +88 -0
  895. package/lib/typescript/public/types.d.ts +316 -0
  896. package/lib/typescript/push/PushManager.d.ts +69 -0
  897. package/lib/typescript/push/adapters/ManualAdapter.d.ts +40 -0
  898. package/lib/typescript/push/adapters/NativeBridgeAdapter.d.ts +37 -0
  899. package/lib/typescript/push/adapters/NoopAdapter.d.ts +21 -0
  900. package/lib/typescript/push/adapters/RNFirebaseMessagingAdapter.d.ts +39 -0
  901. package/lib/typescript/push/adapters/loadMessaging.d.ts +17 -0
  902. package/lib/typescript/push/adapters/loadNotifee.d.ts +15 -0
  903. package/lib/typescript/push/adapters/selectAdapter.d.ts +20 -0
  904. package/lib/typescript/push/detect/capabilities.d.ts +15 -0
  905. package/lib/typescript/push/index.d.ts +10 -0
  906. package/lib/typescript/push/native/nativeNotifications.d.ts +65 -0
  907. package/lib/typescript/push/types.d.ts +143 -0
  908. package/lib/typescript/specs/NativeReplaySdk.d.ts +69 -0
  909. package/lib/typescript/specs/NativeScaleBunCrash.d.ts +58 -0
  910. package/lib/typescript/specs/NativeScaleBunInstallReferrer.d.ts +28 -0
  911. package/lib/typescript/specs/NativeScaleBunOta.d.ts +141 -0
  912. package/lib/typescript/specs/NativeScaleBunPerformance.d.ts +31 -0
  913. package/lib/typescript/specs/NativeScaleBunProfiler.d.ts +38 -0
  914. package/lib/typescript/specs/NativeScaleBunStorage.d.ts +55 -0
  915. package/lib/typescript/storage/StorageBackend.d.ts +131 -0
  916. package/lib/typescript/storage/db/sqlite.d.ts +1 -0
  917. package/lib/typescript/storage/files/fileStore.d.ts +1 -0
  918. package/lib/typescript/transport/auth/sdkSession.d.ts +10 -0
  919. package/lib/typescript/transport/backoff/exponentialJitter.d.ts +5 -0
  920. package/lib/typescript/transport/http/endpoints.d.ts +26 -0
  921. package/lib/typescript/transport/http/httpClient.d.ts +23 -0
  922. package/lib/typescript/transport/rateLimit/retryAfter.d.ts +1 -0
  923. package/lib/typescript/transport/signing/requestSigner.d.ts +1 -0
  924. package/lib/typescript/vendor/protocol/index.d.ts +345 -0
  925. package/lib/typescript/vendor/protocol/internal/validation.d.ts +114 -0
  926. package/lib/typescript/vendor/sdk-contracts/bridge.d.ts +104 -0
  927. package/lib/typescript/vendor/sdk-contracts/config.d.ts +156 -0
  928. package/lib/typescript/vendor/sdk-contracts/events.d.ts +42 -0
  929. package/lib/typescript/vendor/sdk-contracts/features.d.ts +38 -0
  930. package/lib/typescript/vendor/sdk-contracts/index.d.ts +15 -0
  931. package/lib/typescript/vendor/sdk-contracts/platform.d.ts +35 -0
  932. package/lib/typescript/vendor/sdk-contracts/session-boundary.d.ts +42 -0
  933. package/lib/typescript/vendor/sdk-contracts/session.d.ts +157 -0
  934. package/package.json +153 -0
  935. package/react-native.config.js +24 -0
  936. package/scalebun-react-native.podspec +44 -0
  937. package/src/analytics/EventTracker.ts +654 -0
  938. package/src/analytics/automaticEvents.ts +109 -0
  939. package/src/analytics/batching.ts +54 -0
  940. package/src/analytics/eventLane.ts +48 -0
  941. package/src/analytics/revenue.ts +143 -0
  942. package/src/analytics/subscription.ts +145 -0
  943. package/src/bootstrap/FeatureRegistry.ts +81 -0
  944. package/src/bootstrap/SDKBootstrapper.ts +769 -0
  945. package/src/bucketing/fnv1a32.ts +40 -0
  946. package/src/compat/codepush.ts +189 -0
  947. package/src/config/ConfigManager.ts +233 -0
  948. package/src/config/configTypes.ts +62 -0
  949. package/src/config/otaPolicyState.ts +79 -0
  950. package/src/config/quotaState.ts +484 -0
  951. package/src/core/architecture.ts +39 -0
  952. package/src/core/clock/now.ts +6 -0
  953. package/src/core/config/defaults.ts +0 -0
  954. package/src/core/config/schema.ts +455 -0
  955. package/src/core/constants/endpoints.ts +12 -0
  956. package/src/core/constants/protocol.ts +24 -0
  957. package/src/core/constants/timings.ts +25 -0
  958. package/src/core/constants/version.ts +11 -0
  959. package/src/core/context/app.ts +0 -0
  960. package/src/core/context/device.ts +169 -0
  961. package/src/core/context/session.ts +0 -0
  962. package/src/core/context/user.ts +26 -0
  963. package/src/core/contracts/IFeature.ts +53 -0
  964. package/src/core/di/container.ts +26 -0
  965. package/src/core/encoding/base64.ts +46 -0
  966. package/src/core/id/deviceId.ts +51 -0
  967. package/src/core/id/installationId.ts +52 -0
  968. package/src/core/id/sessionId.ts +0 -0
  969. package/src/core/lifecycle/appLifecycle.ts +33 -0
  970. package/src/core/lifecycle/crashSafe.ts +29 -0
  971. package/src/core/logger/errorClassification.ts +108 -0
  972. package/src/core/logger/internalLogger.ts +65 -0
  973. package/src/core/logger/levels.ts +0 -0
  974. package/src/crypto/hmacSha256.ts +106 -0
  975. package/src/debug/bootstrap.ts +436 -0
  976. package/src/debug/commands.ts +597 -0
  977. package/src/debug/configBuilder.ts +56 -0
  978. package/src/debug/exportBridge.ts +155 -0
  979. package/src/debug/hostResolver.ts +34 -0
  980. package/src/debug/index.ts +25 -0
  981. package/src/debug/metrics.ts +29 -0
  982. package/src/debug/perf.ts +212 -0
  983. package/src/debug/perfWiring.ts +119 -0
  984. package/src/debug/protocol.ts +58 -0
  985. package/src/debug/redaction.ts +483 -0
  986. package/src/debug/replayWiring.ts +148 -0
  987. package/src/debug/screenTracking.ts +55 -0
  988. package/src/debug/sessionWiring.ts +59 -0
  989. package/src/debug/stream.ts +561 -0
  990. package/src/debug/transport.ts +440 -0
  991. package/src/features/bugreport/BugReportFeature.ts +128 -0
  992. package/src/features/bugreport/buildPayload.ts +116 -0
  993. package/src/features/bugreport/index.ts +0 -0
  994. package/src/features/crash/CrashFeature.ts +87 -0
  995. package/src/features/crash/CrashReporter.ts +189 -0
  996. package/src/features/crash/NativeCrashFeature.ts +42 -0
  997. package/src/features/crash/capture.ts +48 -0
  998. package/src/features/crash/globalHandler.ts +39 -0
  999. package/src/features/crash/index.ts +8 -0
  1000. package/src/features/crash/nativeCrashBridge.ts +352 -0
  1001. package/src/features/crash/rejectionHandler.ts +196 -0
  1002. package/src/features/crash/scrubCrash.ts +175 -0
  1003. package/src/features/engage/EngageAnchor.tsx +159 -0
  1004. package/src/features/engage/EngageArchetypeRenderers.tsx +3705 -0
  1005. package/src/features/engage/EngageInAppView.tsx +2678 -0
  1006. package/src/features/engage/EngageInlinePlacement.tsx +169 -0
  1007. package/src/features/engage/EngagePromptProvider.tsx +1318 -0
  1008. package/src/features/engage/EngagePromptView.tsx +1400 -0
  1009. package/src/features/engage/EngageTransport.ts +668 -0
  1010. package/src/features/engage/EngageVariantContent.tsx +1483 -0
  1011. package/src/features/engage/__test-support__/reactNativeStub.js +40 -0
  1012. package/src/features/engage/attachmentCapture.ts +45 -0
  1013. package/src/features/engage/captureVoiceAttachment.ts +81 -0
  1014. package/src/features/engage/engageCoachmarkTour.ts +120 -0
  1015. package/src/features/engage/engageGameLogic.ts +347 -0
  1016. package/src/features/engage/engageMediaSizing.ts +76 -0
  1017. package/src/features/engage/engageMultiStepSheet.ts +53 -0
  1018. package/src/features/engage/engageOutcome.ts +157 -0
  1019. package/src/features/engage/engagePushTokenBridge.ts +84 -0
  1020. package/src/features/engage/engageShakeBridge.ts +67 -0
  1021. package/src/features/engage/engageSignals.ts +40 -0
  1022. package/src/features/engage/engageStoreReviewBridge.ts +48 -0
  1023. package/src/features/engage/engageTestSeenStore.ts +95 -0
  1024. package/src/features/engage/engageThrottle.ts +478 -0
  1025. package/src/features/engage/engageTriggerEngine.ts +350 -0
  1026. package/src/features/engage/engageTypes.ts +712 -0
  1027. package/src/features/engage/engageVariantResolver.ts +364 -0
  1028. package/src/features/engage/engageWindowInsets.ts +108 -0
  1029. package/src/features/engage/gestureTriggerDetector.ts +83 -0
  1030. package/src/features/engage/transcription/TranscriptionProvider.ts +68 -0
  1031. package/src/features/install-referrer/installReferrer.ts +112 -0
  1032. package/src/features/journey/ScaleBunDebugRoot.tsx +1045 -0
  1033. package/src/features/journey/ScaleBunFlatList.tsx +39 -0
  1034. package/src/features/journey/ScaleBunImpression.tsx +109 -0
  1035. package/src/features/journey/ScaleBunScrollView.tsx +101 -0
  1036. package/src/features/journey/ScaleBunSectionList.tsx +39 -0
  1037. package/src/features/journey/autoInstrumentScroll.ts +155 -0
  1038. package/src/features/journey/calibrationContext.ts +44 -0
  1039. package/src/features/journey/gestureBuffer.ts +59 -0
  1040. package/src/features/journey/gestureDetector.ts +162 -0
  1041. package/src/features/journey/impression.ts +92 -0
  1042. package/src/features/journey/interactionProtocol.ts +243 -0
  1043. package/src/features/journey/journeyManager.ts +469 -0
  1044. package/src/features/journey/journeyTypes.ts +215 -0
  1045. package/src/features/journey/nativeScroll.ts +94 -0
  1046. package/src/features/journey/navDetector.ts +149 -0
  1047. package/src/features/journey/screenshotHelper.ts +137 -0
  1048. package/src/features/journey/scrollContext.ts +146 -0
  1049. package/src/features/journey/targetGeometry.ts +197 -0
  1050. package/src/features/journey/targetRegistry.ts +43 -0
  1051. package/src/features/journey/touchTarget.ts +339 -0
  1052. package/src/features/journey/uiState.ts +182 -0
  1053. package/src/features/navigation/AutoScreenDetector.ts +617 -0
  1054. package/src/features/network/NetworkFeature.ts +232 -0
  1055. package/src/features/network/index.ts +59 -0
  1056. package/src/features/network/thirdParty.ts +160 -0
  1057. package/src/features/ota/OtaEventEmitter.ts +187 -0
  1058. package/src/features/ota/OtaOrchestrator.ts +1513 -0
  1059. package/src/features/ota/OtaTypes.ts +230 -0
  1060. package/src/features/ota/deviceAttributes.ts +46 -0
  1061. package/src/features/ota/environment.ts +199 -0
  1062. package/src/features/ota/geoCountry.ts +85 -0
  1063. package/src/features/ota/retry.ts +123 -0
  1064. package/src/features/ota/signedDownload.ts +202 -0
  1065. package/src/features/ota/useOtaUpdate.ts +161 -0
  1066. package/src/features/performance/PerformanceFeature.ts +729 -0
  1067. package/src/features/performance/collectors/AppLaunchCollector.ts +131 -0
  1068. package/src/features/performance/collectors/AutoScreenLoadCollector.ts +258 -0
  1069. package/src/features/performance/collectors/CustomTraceCollector.ts +116 -0
  1070. package/src/features/performance/collectors/FrameMetricsCollector.ts +210 -0
  1071. package/src/features/performance/collectors/JsStallCollector.ts +184 -0
  1072. package/src/features/performance/collectors/NetworkPerfCollector.ts +69 -0
  1073. package/src/features/performance/collectors/ScreenLoadCollector.ts +95 -0
  1074. package/src/features/performance/collectors/UiHangCollector.ts +98 -0
  1075. package/src/features/performance/config.ts +136 -0
  1076. package/src/features/performance/getNativePerformanceModule.ts +38 -0
  1077. package/src/features/performance/index.ts +28 -0
  1078. package/src/features/performance/metrics/MetricsEngine.ts +152 -0
  1079. package/src/features/performance/models.ts +235 -0
  1080. package/src/features/performance/transport/PerformanceTransport.ts +161 -0
  1081. package/src/features/profiler/ProfilerFeature.ts +661 -0
  1082. package/src/features/profiler/config.ts +230 -0
  1083. package/src/features/profiler/contracts.ts +176 -0
  1084. package/src/features/profiler/index.ts +45 -0
  1085. package/src/features/profiler/models.ts +430 -0
  1086. package/src/features/profiler/transport/ProfilerTransport.ts +93 -0
  1087. package/src/features/replay/bridge/adapters/bridgeAdapter.ts +235 -0
  1088. package/src/features/replay/bridge/eventEmitter.ts +176 -0
  1089. package/src/features/replay/bridge/nativeModule.ts +252 -0
  1090. package/src/features/replay/bridge/nativeQuota.ts +111 -0
  1091. package/src/features/replay/core/clock/clock.ts +38 -0
  1092. package/src/features/replay/core/config/defaults.ts +66 -0
  1093. package/src/features/replay/core/config/validator.ts +113 -0
  1094. package/src/features/replay/core/env/environmentDetector.ts +21 -0
  1095. package/src/features/replay/core/errors/safeCall.ts +34 -0
  1096. package/src/features/replay/core/ids/sessionId.ts +44 -0
  1097. package/src/features/replay/core/logger/logger.ts +36 -0
  1098. package/src/features/replay/core/privacy/privacyTypes.ts +41 -0
  1099. package/src/features/replay/core/queue/boundedQueue.ts +71 -0
  1100. package/src/features/replay/integrations/alert/alertInstrumentation.ts +277 -0
  1101. package/src/features/replay/integrations/logs/consoleIntegration.ts +136 -0
  1102. package/src/features/replay/integrations/network/networkAdapter.ts +73 -0
  1103. package/src/features/replay/integrations/react-navigation/navigationIntegration.ts +89 -0
  1104. package/src/features/replay/integrations/touch/ReplayRoot.tsx +114 -0
  1105. package/src/features/replay/pipeline/batching/batchManager.ts +133 -0
  1106. package/src/features/replay/pipeline/envelope/envelopeBuilder.ts +66 -0
  1107. package/src/features/replay/pipeline/retry/retryPolicy.ts +62 -0
  1108. package/src/features/replay/pipeline/transport/transportTypes.ts +85 -0
  1109. package/src/features/replay/public/api.ts +364 -0
  1110. package/src/features/replay/public/enums.ts +78 -0
  1111. package/src/features/replay/public/types.ts +297 -0
  1112. package/src/features/replay/replay/breadcrumbs/breadcrumbCollector.ts +115 -0
  1113. package/src/features/replay/replay/frames/frameModels.ts +45 -0
  1114. package/src/features/replay/replay/session/sessionOrchestrator.ts +286 -0
  1115. package/src/features/replay/replay/timeline/timelineModels.ts +129 -0
  1116. package/src/features/replay/transport/BackendReplayTransport.ts +215 -0
  1117. package/src/features/replay/transport/CompositeReplayTransport.ts +82 -0
  1118. package/src/features/replay/transport/DesktopReplayTransport.ts +140 -0
  1119. package/src/features/replay/transport/ReplayTransport.ts +84 -0
  1120. package/src/features/session/BackendSessionAdapter.ts +1977 -0
  1121. package/src/features/session/DesktopSessionTransport.ts +130 -0
  1122. package/src/features/session/JourneyEventPipeline.ts +278 -0
  1123. package/src/features/session/ReplayCaptureManager.ts +1401 -0
  1124. package/src/features/session/ScrollTracker.ts +166 -0
  1125. package/src/features/session/SessionManager.ts +1687 -0
  1126. package/src/features/session/SyncDecisionEngine.ts +117 -0
  1127. package/src/features/session/frameLink.ts +41 -0
  1128. package/src/features/session/frameScrollState.ts +36 -0
  1129. package/src/features/session/index.ts +88 -0
  1130. package/src/features/session/nativeCapture.ts +43 -0
  1131. package/src/features/session/outboxFrameCapture.ts +79 -0
  1132. package/src/features/session/sessionTypes.ts +528 -0
  1133. package/src/features/session/viewportPlausibility.ts +134 -0
  1134. package/src/features/skan/skanBridge.ts +53 -0
  1135. package/src/features/skan/skanConversionManager.ts +173 -0
  1136. package/src/index.ts +206 -0
  1137. package/src/integrations/fetch/fetchInterceptor.ts +201 -0
  1138. package/src/integrations/navigation/screenTracker.ts +0 -0
  1139. package/src/integrations/network/bodyCapture.ts +328 -0
  1140. package/src/integrations/xhr/xhrInterceptor.ts +259 -0
  1141. package/src/metro/composeSourceMap.ts +104 -0
  1142. package/src/metro/featureModules.ts +143 -0
  1143. package/src/metro/index.ts +336 -0
  1144. package/src/metro/optionalDependencyStub.ts +13 -0
  1145. package/src/metro/optionalModules.ts +27 -0
  1146. package/src/metro/serializerCompose.ts +193 -0
  1147. package/src/pipeline/dispatcher/dispatcher.ts +22 -0
  1148. package/src/pipeline/envelope/envelope.ts +31 -0
  1149. package/src/pipeline/envelope/serializer.ts +14 -0
  1150. package/src/pipeline/processors/dedupe.ts +0 -0
  1151. package/src/pipeline/processors/enrich.ts +11 -0
  1152. package/src/pipeline/processors/sampling.ts +0 -0
  1153. package/src/pipeline/processors/sanitize.ts +23 -0
  1154. package/src/pipeline/queue/flushQueue.ts +144 -0
  1155. package/src/pipeline/queue/memoryQueue.ts +31 -0
  1156. package/src/pipeline/queue/persistentQueue.ts +385 -0
  1157. package/src/pipeline/queue/queuePolicy.ts +0 -0
  1158. package/src/pipeline/scheduler/flushScheduler.ts +47 -0
  1159. package/src/pipeline/scheduler/retryPolicy.ts +8 -0
  1160. package/src/public/ScaleBunErrorBoundary.tsx +91 -0
  1161. package/src/public/ScaleBunFacade.ts +2129 -0
  1162. package/src/public/ScaleBunProvider.tsx +91 -0
  1163. package/src/public/typedTracker.ts +123 -0
  1164. package/src/public/types.ts +362 -0
  1165. package/src/push/PushManager.ts +318 -0
  1166. package/src/push/adapters/ManualAdapter.ts +100 -0
  1167. package/src/push/adapters/NativeBridgeAdapter.ts +142 -0
  1168. package/src/push/adapters/NoopAdapter.ts +46 -0
  1169. package/src/push/adapters/RNFirebaseMessagingAdapter.ts +271 -0
  1170. package/src/push/adapters/loadMessaging.ts +24 -0
  1171. package/src/push/adapters/loadNotifee.ts +29 -0
  1172. package/src/push/adapters/selectAdapter.ts +176 -0
  1173. package/src/push/detect/capabilities.ts +124 -0
  1174. package/src/push/index.ts +22 -0
  1175. package/src/push/native/nativeNotifications.ts +207 -0
  1176. package/src/push/types.ts +159 -0
  1177. package/src/specs/NativeReplaySdk.ts +101 -0
  1178. package/src/specs/NativeScaleBunCrash.ts +64 -0
  1179. package/src/specs/NativeScaleBunInstallReferrer.ts +29 -0
  1180. package/src/specs/NativeScaleBunOta.ts +154 -0
  1181. package/src/specs/NativeScaleBunPerformance.ts +34 -0
  1182. package/src/specs/NativeScaleBunProfiler.ts +41 -0
  1183. package/src/specs/NativeScaleBunStorage.ts +59 -0
  1184. package/src/storage/StorageBackend.ts +272 -0
  1185. package/src/storage/db/sqlite.ts +0 -0
  1186. package/src/storage/files/fileStore.ts +0 -0
  1187. package/src/transport/auth/sdkSession.ts +27 -0
  1188. package/src/transport/backoff/exponentialJitter.ts +9 -0
  1189. package/src/transport/http/endpoints.ts +33 -0
  1190. package/src/transport/http/httpClient.ts +73 -0
  1191. package/src/transport/rateLimit/retryAfter.ts +0 -0
  1192. package/src/transport/signing/requestSigner.ts +0 -0
  1193. package/src/vendor/protocol/index.ts +391 -0
  1194. package/src/vendor/protocol/internal/validation.ts +497 -0
  1195. package/src/vendor/sdk-contracts/bridge.ts +162 -0
  1196. package/src/vendor/sdk-contracts/config.ts +192 -0
  1197. package/src/vendor/sdk-contracts/events.ts +50 -0
  1198. package/src/vendor/sdk-contracts/features.ts +42 -0
  1199. package/src/vendor/sdk-contracts/index.ts +98 -0
  1200. package/src/vendor/sdk-contracts/platform.ts +42 -0
  1201. package/src/vendor/sdk-contracts/session-boundary.ts +55 -0
  1202. package/src/vendor/sdk-contracts/session.ts +225 -0
  1203. package/src/vendor/vendor.manifest +10 -0
@@ -0,0 +1,2670 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.EngageInAppView = EngageInAppView;
7
+ exports.INAPP_RENDERERS = void 0;
8
+ exports.resolveCoachmarkGeometry = resolveCoachmarkGeometry;
9
+ exports.resolveInAppLayout = resolveInAppLayout;
10
+ exports.resolveInAppPresentationRenderer = resolveInAppPresentationRenderer;
11
+ exports.resolveInAppRenderer = resolveInAppRenderer;
12
+ exports.resolveTheme = resolveTheme;
13
+ exports.resolveToastDuration = resolveToastDuration;
14
+ var _react = _interopRequireWildcard(require("react"));
15
+ var _reactNative = require("react-native");
16
+ var _EngageAnchor = require("./EngageAnchor");
17
+ var _engageCoachmarkTour = require("./engageCoachmarkTour");
18
+ var _engageWindowInsets = require("./engageWindowInsets");
19
+ var _internalLogger = require("../../core/logger/internalLogger");
20
+ var _EngageArchetypeRenderers = require("./EngageArchetypeRenderers");
21
+ var _EngageVariantContent = require("./EngageVariantContent");
22
+ var _engageVariantResolver = require("./engageVariantResolver");
23
+ var _engageGameLogic = require("./engageGameLogic");
24
+ var _engageOutcome = require("./engageOutcome");
25
+ var _engageMediaSizing = require("./engageMediaSizing");
26
+ var _engageMultiStepSheet = require("./engageMultiStepSheet");
27
+ var _jsxRuntime = require("react/jsx-runtime");
28
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
29
+ /**
30
+ * ScaleBun SDK — Engage In-App Message View (shared cross-platform JS overlay, D4)
31
+ *
32
+ * One renderer, seven layout branches — chosen from `InAppMessageConfig.layout`
33
+ * delivered by the config lane. App developers import and mount ONE component
34
+ * (`EngageInAppView` or via `EngagePromptProvider`) and write zero layout code:
35
+ * the SDK reads the layout field and auto-selects the correct branch.
36
+ *
37
+ * Layout → branch mapping (1:1, config-driven):
38
+ * modal → centered dialog (backdrop + rounded card)
39
+ * fullscreen → edge-to-edge takeover (no margins, no rounded corners)
40
+ * bottom_sheet → slides up from bottom (rounded top corners)
41
+ * top_banner → absolute strip pinned to top
42
+ * bottom_banner→ absolute strip pinned to bottom
43
+ * tooltip → small compact popup (anchored look, top-right close)
44
+ * toast → transient strip, auto-dismisses after 3 seconds
45
+ *
46
+ * Legacy `banner` (old wire value) gracefully maps to `top_banner`.
47
+ *
48
+ * Callbacks (unchanged):
49
+ * onShow() — fired once when first visible (provider records impression)
50
+ * onCta(cta) — primary CTA tap (provider emits `click`; deep link surfaced to host)
51
+ * onComplete() — guided flow finished (provider emits `completion`)
52
+ * onDismiss() — secondary CTA / close / backdrop / auto-dismiss (provider emits `dismiss`)
53
+ */
54
+
55
+ let gameAttemptSequence = 0;
56
+
57
+ /** The seven distinct presentation branches (config-driven, 1:1 with layout strings). */
58
+
59
+ /**
60
+ * Map the contract `layout` string onto one of the seven render branches.
61
+ * Legacy `banner` value → `top_banner` for backward compat with old configs.
62
+ * Any unknown future value → `modal` (safe default).
63
+ */
64
+ function resolveInAppLayout(layout) {
65
+ switch (layout) {
66
+ case 'modal':
67
+ return 'modal';
68
+ case 'fullscreen':
69
+ return 'fullscreen';
70
+ case 'bottom_sheet':
71
+ return 'bottom_sheet';
72
+ case 'top_banner':
73
+ return 'top_banner';
74
+ case 'bottom_banner':
75
+ return 'bottom_banner';
76
+ case 'tooltip':
77
+ return 'tooltip';
78
+ case 'toast':
79
+ return 'toast';
80
+ // legacy wire value (old configs sent 'banner' for top strip)
81
+ case 'banner':
82
+ return 'top_banner';
83
+ default:
84
+ return 'modal';
85
+ }
86
+ }
87
+
88
+ /** Props every in-app render branch receives (the Open/Closed contract). */
89
+
90
+ /** A render branch for one in-app layout. */
91
+
92
+ const clamp = (value, min, max) => Math.max(min, Math.min(value, max));
93
+ const screenPosition = value => value === 'top' || value === 'center' || value === 'bottom' ? value : undefined;
94
+ const androidInsetPadding = insets => {
95
+ if (_reactNative.Platform.OS !== 'android') return undefined;
96
+ return {
97
+ paddingTop: insets.top,
98
+ paddingRight: insets.right,
99
+ paddingBottom: insets.bottom,
100
+ paddingLeft: insets.left
101
+ };
102
+ };
103
+
104
+ /** Pure geometry shared by iOS/Android and covered without a native measurement mock. */
105
+ function resolveCoachmarkGeometry(anchor, viewport, preferred = 'auto', options = {}) {
106
+ const pad = 8;
107
+ const gap = 12;
108
+ const edge = 16;
109
+ const insets = options.insets ?? {
110
+ top: 0,
111
+ right: 0,
112
+ bottom: 0,
113
+ left: 0
114
+ };
115
+ const safeLeft = clamp(insets.left + edge, 0, viewport.width);
116
+ const safeRight = clamp(viewport.width - insets.right - edge, safeLeft, viewport.width);
117
+ const safeTop = clamp(insets.top + edge, 0, viewport.height);
118
+ const safeBottom = clamp(viewport.height - insets.bottom - edge, safeTop, viewport.height);
119
+ const requestedCardHeight = Math.min(Math.max(1, options.cardHeight ?? 160), Math.max(1, safeBottom - safeTop));
120
+ const left = clamp(anchor.x - pad, 0, viewport.width);
121
+ const top = clamp(anchor.y - pad, 0, viewport.height);
122
+ const right = clamp(anchor.x + anchor.width + pad, left, viewport.width);
123
+ const bottom = clamp(anchor.y + anchor.height + pad, top, viewport.height);
124
+ const spotlight = {
125
+ x: left,
126
+ y: top,
127
+ width: right - left,
128
+ height: bottom - top
129
+ };
130
+ const above = Math.max(0, top - gap - safeTop);
131
+ const below = Math.max(0, safeBottom - bottom - gap);
132
+ const verticalPlacement = () => preferred === 'top' ? above >= requestedCardHeight || above >= below ? 'top' : 'bottom' : preferred === 'bottom' ? below >= requestedCardHeight || below >= above ? 'bottom' : 'top' : below >= requestedCardHeight || below >= above ? 'bottom' : 'top';
133
+ const leftRoom = Math.max(0, left - gap - safeLeft);
134
+ const rightRoom = Math.max(0, safeRight - right - gap);
135
+ let placement;
136
+ if (preferred === 'left' || preferred === 'right') {
137
+ const preferredRoom = preferred === 'left' ? leftRoom : rightRoom;
138
+ const oppositeRoom = preferred === 'left' ? rightRoom : leftRoom;
139
+ if (preferredRoom >= 100 || preferredRoom >= 80 && preferredRoom >= oppositeRoom) {
140
+ placement = preferred;
141
+ } else if (oppositeRoom >= 80) {
142
+ placement = preferred === 'left' ? 'right' : 'left';
143
+ } else {
144
+ placement = below >= requestedCardHeight || below >= above ? 'bottom' : 'top';
145
+ }
146
+ } else {
147
+ placement = verticalPlacement();
148
+ }
149
+ const tooltipWidth = Math.max(0, Math.min(280, safeRight - safeLeft));
150
+ const anchorCenter = anchor.x + anchor.width / 2;
151
+ const verticalLeft = clamp(anchorCenter - tooltipWidth / 2, safeLeft, Math.max(safeLeft, safeRight - tooltipWidth));
152
+ const side = placement === 'left' || placement === 'right';
153
+ const sideWidth = Math.min(240, placement === 'left' ? leftRoom : rightRoom);
154
+ const tooltipLeft = side ? placement === 'left' ? left - gap - sideWidth : right + gap : verticalLeft;
155
+ const resolvedWidth = side ? sideWidth : tooltipWidth;
156
+ const tooltipMaxHeight = side ? Math.max(0, safeBottom - safeTop) : placement === 'top' ? above : below;
157
+ const cardHeight = Math.min(requestedCardHeight, tooltipMaxHeight);
158
+ const tooltipTop = clamp(anchor.y + anchor.height / 2 - cardHeight / 2, safeTop, Math.max(safeTop, safeBottom - cardHeight));
159
+ const verticalPosition = placement === 'bottom' ? {
160
+ top: clamp(bottom + gap, safeTop, Math.max(safeTop, safeBottom - cardHeight))
161
+ } : {
162
+ bottom: Math.max(0, viewport.height - top + gap)
163
+ };
164
+ return {
165
+ spotlight,
166
+ scrims: [{
167
+ x: 0,
168
+ y: 0,
169
+ width: viewport.width,
170
+ height: top
171
+ }, {
172
+ x: 0,
173
+ y: top,
174
+ width: left,
175
+ height: bottom - top
176
+ }, {
177
+ x: right,
178
+ y: top,
179
+ width: viewport.width - right,
180
+ height: bottom - top
181
+ }, {
182
+ x: 0,
183
+ y: bottom,
184
+ width: viewport.width,
185
+ height: viewport.height - bottom
186
+ }],
187
+ tooltip: {
188
+ left: tooltipLeft,
189
+ width: resolvedWidth,
190
+ ...(side ? {
191
+ top: tooltipTop
192
+ } : verticalPosition),
193
+ maxHeight: tooltipMaxHeight,
194
+ placement,
195
+ ...(side ? {
196
+ arrowTop: clamp(anchor.y + anchor.height / 2 - tooltipTop - 7, 20, Math.max(20, cardHeight - 34))
197
+ } : {
198
+ arrowLeft: clamp(anchorCenter - tooltipLeft - 7, 20, Math.max(20, resolvedWidth - 34))
199
+ })
200
+ }
201
+ };
202
+ }
203
+
204
+ // ─── Normalized theme contract (single source of truth, dashboard-matching) ────
205
+ // The renderer NEVER hardcodes dashboard CSS per message. Instead each token has a
206
+ // light/dark default copied ONCE from the dashboard's in-app preview look, and any
207
+ // `spec.style` key overrides it. This is the design contract the dashboard preview,
208
+ // the backend payload, and the SDK all share.
209
+
210
+ // Default tokens — values mirror the dashboard `inapp.theme.css` in-app preview so a
211
+ // message with no style overrides looks identical on device and in the dashboard.
212
+ const LIGHT_DEFAULTS = {
213
+ accent: '#5B4FE0',
214
+ cardBg: '#FFFFFF',
215
+ titleColor: '#0E1422',
216
+ bodyColor: '#697586',
217
+ ctaText: '#FFFFFF',
218
+ secondaryColor: '#697586',
219
+ couponBg: '#F2F1FD',
220
+ couponFg: '#5B4FE0',
221
+ couponBorder: '#5B4FE0',
222
+ backdrop: 'rgba(15,20,32,0.4)'
223
+ };
224
+ const DARK_DEFAULTS = {
225
+ accent: '#5B4FE0',
226
+ cardBg: '#1E2128',
227
+ titleColor: '#E6E8EC',
228
+ bodyColor: '#697586',
229
+ ctaText: '#FFFFFF',
230
+ secondaryColor: '#9AA3AF',
231
+ couponBg: '#23203A',
232
+ couponFg: '#8B81F0',
233
+ couponBorder: '#8B81F0',
234
+ backdrop: 'rgba(15,20,32,0.4)'
235
+ };
236
+ const KNOWN_STYLE_KEYS = new Set(['accent', 'cardBg', 'titleColor', 'bodyColor', 'ctaText', 'secondaryColor', 'couponBg', 'couponFg', 'couponBorder', 'backdrop']);
237
+
238
+ /** Resolve dashboard-matching tokens, applying `spec.style` overrides on top. */
239
+ function resolveTheme(spec) {
240
+ const dark = spec.dark === true;
241
+ const base = dark ? DARK_DEFAULTS : LIGHT_DEFAULTS;
242
+ const style = spec.style ?? {};
243
+ if (__DEV__) {
244
+ for (const k of Object.keys(style)) {
245
+ if (!KNOWN_STYLE_KEYS.has(k)) {
246
+ _internalLogger.logger.warn(`[Engage] in-app spec.style has unknown token "${k}" — ignored. Known: ${[...KNOWN_STYLE_KEYS].join(', ')}`);
247
+ }
248
+ }
249
+ }
250
+ const pick = k => style[k] ?? base[k];
251
+ return {
252
+ dark,
253
+ rtl: spec.rtl === true,
254
+ accent: pick('accent'),
255
+ cardBg: pick('cardBg'),
256
+ titleColor: pick('titleColor'),
257
+ bodyColor: pick('bodyColor'),
258
+ ctaText: pick('ctaText'),
259
+ secondaryColor: pick('secondaryColor'),
260
+ couponBg: pick('couponBg'),
261
+ couponFg: pick('couponFg'),
262
+ couponBorder: pick('couponBorder'),
263
+ backdrop: pick('backdrop')
264
+ };
265
+ }
266
+
267
+ // ─── Shared primitives ────────────────────────────────────────────────────────
268
+
269
+ function rtlText(theme) {
270
+ return theme.rtl ? {
271
+ writingDirection: 'rtl',
272
+ textAlign: 'right'
273
+ } : {};
274
+ }
275
+ function CouponChip({
276
+ code,
277
+ theme
278
+ }) {
279
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
280
+ style: [styles.coupon, {
281
+ backgroundColor: theme.couponBg,
282
+ borderColor: theme.couponBorder
283
+ }],
284
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
285
+ style: [styles.couponText, {
286
+ color: theme.couponFg
287
+ }],
288
+ children: code
289
+ })
290
+ });
291
+ }
292
+ function MessageContent({
293
+ spec,
294
+ theme
295
+ }) {
296
+ const mediaHeight = (0, _engageMediaSizing.resolveInAppMediaHeight)(spec, 140, 320);
297
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
298
+ style: styles.contentBlock,
299
+ children: [spec.imageUrl ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Image, {
300
+ accessibilityRole: "image",
301
+ source: {
302
+ uri: spec.imageUrl
303
+ },
304
+ style: [styles.image, mediaHeight === undefined ? null : {
305
+ height: mediaHeight
306
+ }],
307
+ resizeMode: "cover"
308
+ }) : null, spec.title ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
309
+ style: [styles.title, {
310
+ color: theme.titleColor
311
+ }, rtlText(theme)],
312
+ children: spec.title
313
+ }) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
314
+ style: [styles.body, {
315
+ color: theme.bodyColor
316
+ }, rtlText(theme)],
317
+ children: spec.body
318
+ }), spec.coupon ? /*#__PURE__*/(0, _jsxRuntime.jsx)(CouponChip, {
319
+ code: spec.coupon,
320
+ theme: theme
321
+ }) : null]
322
+ });
323
+ }
324
+ function CtaRow({
325
+ spec,
326
+ theme,
327
+ onCta,
328
+ onDismiss,
329
+ onOutcome
330
+ }) {
331
+ const cta = spec.cta;
332
+ const secondary = spec.secondaryCta;
333
+ if (!cta && !secondary) return null;
334
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
335
+ style: [styles.actions, theme.rtl ? {
336
+ flexDirection: 'row-reverse'
337
+ } : null],
338
+ children: [secondary ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
339
+ accessibilityRole: "button",
340
+ accessibilityLabel: secondary.label,
341
+ onPress: onDismiss,
342
+ style: styles.secondaryBtn,
343
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
344
+ style: [styles.secondaryText, {
345
+ color: theme.secondaryColor
346
+ }],
347
+ children: secondary.label
348
+ })
349
+ }) : null, cta ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
350
+ accessibilityRole: "button",
351
+ accessibilityLabel: cta.label,
352
+ onPress: () => {
353
+ if (onOutcome) {
354
+ onOutcome({
355
+ fallback: (0, _engageOutcome.inAppOutcomeTerminalForCta)(cta)
356
+ });
357
+ return;
358
+ }
359
+ if (cta.action === 'dismiss') onDismiss();else onCta(cta);
360
+ },
361
+ style: [styles.primaryBtn, {
362
+ backgroundColor: theme.accent
363
+ }],
364
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
365
+ style: [styles.primaryText, {
366
+ color: theme.ctaText
367
+ }],
368
+ children: cta.label
369
+ })
370
+ }) : null]
371
+ });
372
+ }
373
+ function InAppOutcomeModal({
374
+ outcome,
375
+ resultLabel,
376
+ theme,
377
+ onAction,
378
+ onRequestClose
379
+ }) {
380
+ const announcement = [outcome.title, outcome.body, resultLabel].filter(Boolean).join('. ');
381
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Modal, {
382
+ visible: true,
383
+ transparent: true,
384
+ animationType: "fade",
385
+ statusBarTranslucent: true,
386
+ onRequestClose: onRequestClose,
387
+ onShow: () => _reactNative.AccessibilityInfo.announceForAccessibility(announcement),
388
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.SafeAreaView, {
389
+ style: [outcomeStyles.backdrop, {
390
+ backgroundColor: theme.backdrop
391
+ }],
392
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
393
+ accessibilityViewIsModal: true,
394
+ style: [outcomeStyles.card, {
395
+ backgroundColor: theme.cardBg,
396
+ borderColor: theme.couponBorder
397
+ }],
398
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
399
+ accessible: true,
400
+ accessibilityRole: "alert",
401
+ accessibilityLabel: announcement,
402
+ accessibilityLiveRegion: "assertive",
403
+ style: outcomeStyles.copy,
404
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
405
+ importantForAccessibility: "no-hide-descendants",
406
+ style: [outcomeStyles.icon, {
407
+ backgroundColor: theme.couponBg
408
+ }],
409
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
410
+ style: [outcomeStyles.iconText, {
411
+ color: theme.couponFg
412
+ }],
413
+ children: (0, _engageOutcome.inAppOutcomeIconGlyph)(outcome.icon)
414
+ })
415
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
416
+ style: [outcomeStyles.title, {
417
+ color: theme.titleColor
418
+ }, rtlText(theme)],
419
+ children: outcome.title
420
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
421
+ style: [outcomeStyles.body, {
422
+ color: theme.bodyColor
423
+ }, rtlText(theme)],
424
+ children: outcome.body
425
+ }), resultLabel ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
426
+ style: [outcomeStyles.result, {
427
+ backgroundColor: theme.couponBg
428
+ }],
429
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
430
+ style: [outcomeStyles.resultText, {
431
+ color: theme.couponFg
432
+ }, rtlText(theme)],
433
+ children: resultLabel
434
+ })
435
+ }) : null]
436
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
437
+ accessibilityRole: "button",
438
+ accessibilityLabel: outcome.buttonLabel,
439
+ onPress: onAction,
440
+ style: [outcomeStyles.button, {
441
+ backgroundColor: theme.accent
442
+ }],
443
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
444
+ style: [outcomeStyles.buttonText, {
445
+ color: theme.ctaText
446
+ }],
447
+ children: outcome.buttonLabel
448
+ })
449
+ })]
450
+ })
451
+ })
452
+ });
453
+ }
454
+
455
+ /** Default legacy content when a registry mechanic does not provide a custom body. */
456
+ function BranchContent(props) {
457
+ if (props.children !== undefined) return /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
458
+ children: props.children
459
+ });
460
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
461
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(MessageContent, {
462
+ spec: props.spec,
463
+ theme: props.theme
464
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(CtaRow, {
465
+ ...props
466
+ })]
467
+ });
468
+ }
469
+ function CloseBtn({
470
+ onPress,
471
+ style
472
+ }) {
473
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
474
+ accessibilityRole: "button",
475
+ accessibilityLabel: "Dismiss",
476
+ onPress: onPress,
477
+ hitSlop: 8,
478
+ style: [styles.closeBtn, style],
479
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
480
+ style: styles.closeBtnText,
481
+ children: "\xD7"
482
+ })
483
+ });
484
+ }
485
+ function ScreenEdgeSurface({
486
+ edge,
487
+ contentStyle,
488
+ children
489
+ }) {
490
+ const insets = (0, _engageWindowInsets.useEngageWindowInsets)(true) ?? _engageWindowInsets.ZERO_ENGAGE_WINDOW_INSETS;
491
+ const content = /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
492
+ pointerEvents: "box-none",
493
+ style: contentStyle,
494
+ children: children
495
+ });
496
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.SafeAreaView, {
497
+ pointerEvents: "box-none",
498
+ style: [styles.screenEdge, edge === 'top' ? styles.screenEdgeTop : styles.screenEdgeBottom, androidInsetPadding(insets)],
499
+ children: edge === 'bottom' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.KeyboardAvoidingView, {
500
+ pointerEvents: "box-none",
501
+ behavior: _reactNative.Platform.OS === 'ios' ? 'padding' : undefined,
502
+ style: styles.screenEdgeKeyboard,
503
+ children: content
504
+ }) : content
505
+ });
506
+ }
507
+
508
+ // ─── 1. modal — centered dialog ───────────────────────────────────────────────
509
+
510
+ function ModalInApp(props) {
511
+ const {
512
+ spec,
513
+ theme,
514
+ onDismiss
515
+ } = props;
516
+ const centerDrawer = props.variantKey === 'center_drawer';
517
+ const position = screenPosition(spec.ext?.position) ?? screenPosition(spec.ext?.layoutPosition) ?? 'center';
518
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Modal, {
519
+ visible: true,
520
+ transparent: true,
521
+ animationType: "fade",
522
+ statusBarTranslucent: false,
523
+ onRequestClose: onDismiss,
524
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.SafeAreaView, {
525
+ style: [styles.modalSafeArea, {
526
+ backgroundColor: theme.backdrop
527
+ }],
528
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.KeyboardAvoidingView, {
529
+ behavior: _reactNative.Platform.OS === 'ios' ? 'padding' : 'height',
530
+ style: styles.keyboardAvoider,
531
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
532
+ style: [styles.modalBackdrop, position === 'top' ? styles.modalBackdropTop : null, position === 'bottom' ? styles.modalBackdropBottom : null, {
533
+ backgroundColor: theme.backdrop
534
+ }],
535
+ onPress: onDismiss,
536
+ accessibilityRole: "none",
537
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.Pressable, {
538
+ style: [styles.modalCard, centerDrawer && styles.centerDrawerCard, {
539
+ backgroundColor: theme.cardBg
540
+ }],
541
+ onPress: () => {},
542
+ accessibilityRole: "none",
543
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(CloseBtn, {
544
+ onPress: onDismiss,
545
+ style: styles.modalClosePos
546
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.ScrollView, {
547
+ style: styles.modalScroll,
548
+ contentContainerStyle: styles.modalScrollContent,
549
+ showsVerticalScrollIndicator: false,
550
+ keyboardShouldPersistTaps: "handled",
551
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(BranchContent, {
552
+ ...props
553
+ })
554
+ })]
555
+ })
556
+ })
557
+ })
558
+ })
559
+ });
560
+ }
561
+
562
+ // ─── 2. fullscreen — edge-to-edge takeover ────────────────────────────────────
563
+
564
+ function FullScreenInApp(props) {
565
+ const {
566
+ spec,
567
+ theme,
568
+ onDismiss
569
+ } = props;
570
+ const mediaAspectRatio = (0, _engageMediaSizing.resolveInAppMediaAspectRatio)(spec, 16 / 9);
571
+ const mediaMaxHeight = (0, _engageMediaSizing.resolveInAppMediaHeight)(spec, 320, 480);
572
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Modal, {
573
+ visible: true,
574
+ transparent: false,
575
+ animationType: "slide",
576
+ presentationStyle: "fullScreen",
577
+ onRequestClose: onDismiss,
578
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.SafeAreaView, {
579
+ style: [styles.fullscreenCard, {
580
+ backgroundColor: theme.cardBg
581
+ }],
582
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
583
+ style: styles.fullscreenHeader,
584
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(CloseBtn, {
585
+ onPress: onDismiss
586
+ })
587
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.ScrollView, {
588
+ style: styles.fullscreenScroll,
589
+ contentContainerStyle: styles.fullscreenScrollContent,
590
+ showsVerticalScrollIndicator: false,
591
+ keyboardShouldPersistTaps: "handled",
592
+ children: [props.children === undefined && spec.imageUrl ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Image, {
593
+ accessibilityRole: "image",
594
+ source: {
595
+ uri: spec.imageUrl
596
+ },
597
+ style: [styles.fullscreenImage, mediaAspectRatio === undefined ? null : {
598
+ aspectRatio: mediaAspectRatio,
599
+ maxHeight: mediaMaxHeight
600
+ }],
601
+ resizeMode: "cover"
602
+ }) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
603
+ style: styles.fullscreenContent,
604
+ children: props.children !== undefined ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
605
+ children: props.children
606
+ }) : /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
607
+ children: [spec.title ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
608
+ style: [styles.fullscreenTitle, {
609
+ color: theme.titleColor
610
+ }, rtlText(theme)],
611
+ children: spec.title
612
+ }) : null, spec.body ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
613
+ style: [styles.fullscreenBody, {
614
+ color: theme.bodyColor
615
+ }, rtlText(theme)],
616
+ children: spec.body
617
+ }) : null, spec.coupon ? /*#__PURE__*/(0, _jsxRuntime.jsx)(CouponChip, {
618
+ code: spec.coupon,
619
+ theme: theme
620
+ }) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)(CtaRow, {
621
+ ...props
622
+ })]
623
+ })
624
+ })]
625
+ })]
626
+ })
627
+ });
628
+ }
629
+
630
+ // ─── 3. bottom_sheet — slides up from bottom ──────────────────────────────────
631
+
632
+ function SheetSurface({
633
+ theme,
634
+ onDismiss,
635
+ children
636
+ }) {
637
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Modal, {
638
+ visible: true,
639
+ transparent: true,
640
+ animationType: "slide",
641
+ statusBarTranslucent: false,
642
+ onRequestClose: onDismiss,
643
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.KeyboardAvoidingView, {
644
+ behavior: _reactNative.Platform.OS === 'ios' ? 'padding' : 'height',
645
+ style: styles.keyboardAvoider,
646
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
647
+ style: [styles.sheetBackdrop, {
648
+ backgroundColor: theme.backdrop
649
+ }],
650
+ onPress: onDismiss,
651
+ accessibilityRole: "none",
652
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
653
+ style: [styles.sheetCard, {
654
+ backgroundColor: theme.cardBg
655
+ }],
656
+ onPress: () => {},
657
+ accessibilityRole: "none",
658
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.SafeAreaView, {
659
+ style: [styles.sheetSafeArea, {
660
+ backgroundColor: theme.cardBg
661
+ }],
662
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.ScrollView, {
663
+ style: styles.sheetScroll,
664
+ contentContainerStyle: styles.sheetContent,
665
+ showsVerticalScrollIndicator: false,
666
+ keyboardShouldPersistTaps: "handled",
667
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
668
+ style: styles.sheetHandle
669
+ }), children]
670
+ })
671
+ })
672
+ })
673
+ })
674
+ })
675
+ });
676
+ }
677
+ function BottomSheetInApp(props) {
678
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(SheetSurface, {
679
+ theme: props.theme,
680
+ onDismiss: props.onDismiss,
681
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(BranchContent, {
682
+ ...props
683
+ })
684
+ });
685
+ }
686
+
687
+ // ─── Additive surfaces — canonical variants outside the legacy seven ────────
688
+
689
+ function MultiStepSheetInApp(props) {
690
+ const rawSteps = Array.isArray(props.spec.ext?.steps) ? props.spec.ext.steps : [];
691
+ const steps = rawSteps.filter(step => step !== null && typeof step === 'object' && !Array.isArray(step));
692
+ const [stepIndex, setStepIndex] = (0, _react.useState)(0);
693
+ const stepCount = steps.length;
694
+ const current = steps[Math.min(stepIndex, Math.max(0, stepCount - 1))];
695
+ const title = typeof current?.title === 'string' ? current.title : props.spec.title;
696
+ const body = typeof current?.body === 'string' ? current.body : props.spec.body;
697
+ const image = typeof current?.image === 'string' ? current.image : typeof current?.stepImage === 'string' ? current.stepImage : undefined;
698
+ const mediaHeight = (0, _engageMediaSizing.resolveInAppMediaHeight)(props.spec, 140, 320);
699
+ const last = stepCount === 0 || stepIndex >= stepCount - 1;
700
+ const labels = (0, _engageMultiStepSheet.resolveMultiStepSheetLabels)(props.spec);
701
+ const progressAt = index => stepCount > 0 ? (index + 1) / stepCount : 0;
702
+ const runTerminal = action => {
703
+ if (action.kind === 'cta') props.onCta(action.cta);else props.onDismiss();
704
+ };
705
+ const back = () => {
706
+ const previousIndex = (0, _engageMultiStepSheet.resolveMultiStepSheetIndex)(stepIndex, stepCount, 'back');
707
+ setStepIndex(previousIndex);
708
+ props.onInteraction?.({
709
+ mechanic: 'multi_step_sheet',
710
+ phase: 'progress',
711
+ progress: progressAt(previousIndex),
712
+ result: 'back',
713
+ value: previousIndex + 1
714
+ });
715
+ };
716
+ const skip = () => {
717
+ props.onInteraction?.({
718
+ mechanic: 'multi_step_sheet',
719
+ phase: 'decision',
720
+ progress: progressAt(stepIndex),
721
+ result: 'skipped',
722
+ value: stepIndex + 1
723
+ });
724
+ runTerminal((0, _engageMultiStepSheet.resolveMultiStepSheetTerminalAction)(props.spec.secondaryCta));
725
+ };
726
+ const next = () => {
727
+ if (!last) {
728
+ const nextIndex = (0, _engageMultiStepSheet.resolveMultiStepSheetIndex)(stepIndex, stepCount, 'next');
729
+ setStepIndex(nextIndex);
730
+ props.onInteraction?.({
731
+ mechanic: 'multi_step_sheet',
732
+ phase: 'progress',
733
+ progress: progressAt(nextIndex),
734
+ result: 'next',
735
+ value: nextIndex + 1
736
+ });
737
+ return;
738
+ }
739
+ props.onInteraction?.({
740
+ mechanic: 'multi_step_sheet',
741
+ phase: 'completed',
742
+ progress: 1,
743
+ result: 'finished',
744
+ value: stepCount > 0 ? stepCount : 1
745
+ });
746
+ const terminal = (0, _engageMultiStepSheet.resolveMultiStepSheetTerminalAction)(props.spec.cta);
747
+ if (props.onOutcome) {
748
+ props.onOutcome({
749
+ fallback: terminal.kind === 'cta' ? terminal : {
750
+ kind: 'dismiss'
751
+ }
752
+ });
753
+ return;
754
+ }
755
+ runTerminal(terminal);
756
+ };
757
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(SheetSurface, {
758
+ theme: props.theme,
759
+ onDismiss: props.onDismiss,
760
+ children: [stepCount > 1 ? /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
761
+ accessibilityRole: "progressbar",
762
+ accessibilityLabel: `Step ${stepIndex + 1} of ${stepCount}`,
763
+ accessibilityValue: {
764
+ min: 1,
765
+ max: stepCount,
766
+ now: stepIndex + 1
767
+ },
768
+ style: styles.stepProgress,
769
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
770
+ style: [styles.stepLabel, {
771
+ color: props.theme.secondaryColor
772
+ }],
773
+ children: `Step ${stepIndex + 1} of ${stepCount}`
774
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
775
+ style: styles.stepTrack,
776
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
777
+ style: [styles.stepFill, {
778
+ backgroundColor: props.theme.accent,
779
+ width: `${(stepIndex + 1) / stepCount * 100}%`
780
+ }]
781
+ })
782
+ })]
783
+ }) : null, /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
784
+ style: styles.contentBlock,
785
+ children: [image ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Image, {
786
+ source: {
787
+ uri: image
788
+ },
789
+ resizeMode: "cover",
790
+ style: [styles.image, mediaHeight === undefined ? null : {
791
+ height: mediaHeight
792
+ }]
793
+ }) : null, title ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
794
+ style: [styles.title, {
795
+ color: props.theme.titleColor
796
+ }],
797
+ children: title
798
+ }) : null, body ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
799
+ style: [styles.body, {
800
+ color: props.theme.bodyColor
801
+ }],
802
+ children: body
803
+ }) : null]
804
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
805
+ style: styles.actions,
806
+ children: [stepIndex > 0 ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
807
+ accessibilityRole: "button",
808
+ accessibilityLabel: labels.back,
809
+ onPress: back,
810
+ style: styles.secondaryBtn,
811
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
812
+ style: [styles.secondaryText, {
813
+ color: props.theme.secondaryColor
814
+ }],
815
+ children: labels.back
816
+ })
817
+ }) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
818
+ accessibilityRole: "button",
819
+ accessibilityLabel: labels.skip,
820
+ onPress: skip,
821
+ style: styles.secondaryBtn,
822
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
823
+ style: [styles.secondaryText, {
824
+ color: props.theme.secondaryColor
825
+ }],
826
+ children: labels.skip
827
+ })
828
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
829
+ accessibilityRole: "button",
830
+ accessibilityLabel: last ? labels.finish : labels.next,
831
+ onPress: next,
832
+ style: [styles.primaryBtn, {
833
+ backgroundColor: props.theme.accent
834
+ }],
835
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
836
+ style: [styles.primaryText, {
837
+ color: props.theme.ctaText
838
+ }],
839
+ children: last ? labels.finish : labels.next
840
+ })
841
+ })]
842
+ })]
843
+ });
844
+ }
845
+ function SideSheetInApp(props) {
846
+ const {
847
+ theme,
848
+ onDismiss
849
+ } = props;
850
+ const side = props.spec.ext?.sidePosition === 'left' ? 'left' : 'right';
851
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Modal, {
852
+ visible: true,
853
+ transparent: true,
854
+ animationType: "fade",
855
+ statusBarTranslucent: false,
856
+ onRequestClose: onDismiss,
857
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.KeyboardAvoidingView, {
858
+ behavior: _reactNative.Platform.OS === 'ios' ? 'padding' : 'height',
859
+ style: styles.keyboardAvoider,
860
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
861
+ accessibilityRole: "none",
862
+ onPress: onDismiss,
863
+ style: [styles.sideSheetBackdrop, {
864
+ backgroundColor: theme.backdrop
865
+ }, side === 'left' ? styles.sideSheetLeft : styles.sideSheetRight],
866
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
867
+ accessibilityRole: "none",
868
+ onPress: () => {},
869
+ style: [styles.sideSheetPanel, {
870
+ backgroundColor: theme.cardBg
871
+ }, side === 'left' ? styles.sideSheetPanelLeft : styles.sideSheetPanelRight],
872
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.SafeAreaView, {
873
+ style: styles.sideSheetSafeArea,
874
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
875
+ style: styles.sideSheetHeader,
876
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(CloseBtn, {
877
+ onPress: onDismiss
878
+ })
879
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.ScrollView, {
880
+ style: styles.sideSheetScroll,
881
+ contentContainerStyle: styles.sideSheetContent,
882
+ showsVerticalScrollIndicator: false,
883
+ keyboardShouldPersistTaps: "handled",
884
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(BranchContent, {
885
+ ...props
886
+ })
887
+ })]
888
+ })
889
+ })
890
+ })
891
+ })
892
+ });
893
+ }
894
+ function PeekCardInApp(props) {
895
+ const [expanded, setExpanded] = (0, _react.useState)(false);
896
+ const peekLabel = typeof props.spec.ext?.peekLabel === 'string' ? props.spec.ext.peekLabel : 'View more';
897
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Modal, {
898
+ visible: true,
899
+ transparent: true,
900
+ animationType: "slide",
901
+ statusBarTranslucent: false,
902
+ onRequestClose: props.onDismiss,
903
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.KeyboardAvoidingView, {
904
+ behavior: _reactNative.Platform.OS === 'ios' ? 'padding' : 'height',
905
+ style: styles.peekRoot,
906
+ pointerEvents: "box-none",
907
+ children: expanded ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
908
+ style: [styles.peekExpanded, {
909
+ backgroundColor: props.theme.cardBg
910
+ }],
911
+ onPress: () => {},
912
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.SafeAreaView, {
913
+ style: [styles.peekSafeArea, {
914
+ backgroundColor: props.theme.cardBg
915
+ }],
916
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.ScrollView, {
917
+ style: styles.peekScroll,
918
+ contentContainerStyle: styles.peekExpandedContent,
919
+ showsVerticalScrollIndicator: false,
920
+ keyboardShouldPersistTaps: "handled",
921
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
922
+ style: styles.sheetHandle
923
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(CloseBtn, {
924
+ onPress: props.onDismiss,
925
+ style: styles.peekClose
926
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(BranchContent, {
927
+ ...props
928
+ })]
929
+ })
930
+ })
931
+ }) : /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
932
+ accessibilityRole: "button",
933
+ accessibilityLabel: peekLabel,
934
+ onPress: () => {
935
+ setExpanded(true);
936
+ props.onInteraction?.({
937
+ mechanic: 'peek_card',
938
+ phase: 'started'
939
+ });
940
+ },
941
+ style: [styles.peekCollapsed, {
942
+ backgroundColor: props.theme.cardBg,
943
+ borderColor: props.theme.accent
944
+ }],
945
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.SafeAreaView, {
946
+ style: [styles.peekSafeArea, {
947
+ backgroundColor: props.theme.cardBg
948
+ }],
949
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
950
+ style: styles.peekCollapsedContent,
951
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
952
+ style: styles.sheetHandle
953
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
954
+ style: [styles.peekLabel, {
955
+ color: props.theme.titleColor
956
+ }],
957
+ children: peekLabel
958
+ })]
959
+ })
960
+ })
961
+ })
962
+ })
963
+ });
964
+ }
965
+ const ADDITIVE_INAPP_RENDERERS = {
966
+ multiStepSheet: MultiStepSheetInApp,
967
+ sideSheet: SideSheetInApp
968
+ };
969
+
970
+ // ─── 4. top_banner — strip pinned to top ─────────────────────────────────────
971
+
972
+ function TopBannerInApp(props) {
973
+ const {
974
+ spec,
975
+ theme,
976
+ onDismiss
977
+ } = props;
978
+ const window = (0, _reactNative.useWindowDimensions)();
979
+ const edge = screenPosition(spec.ext?.position) ?? screenPosition(spec.ext?.layoutPosition) ?? 'top';
980
+ const rawProgress = spec.ext?.progress;
981
+ const stickyProgress = props.variantKey === 'sticky_header_bar' && typeof rawProgress === 'number' ? clamp(rawProgress <= 1 ? rawProgress * 100 : rawProgress, 0, 100) : null;
982
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(ScreenEdgeSurface, {
983
+ edge: edge === 'bottom' ? 'bottom' : 'top',
984
+ contentStyle: styles.bannerWrap,
985
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
986
+ style: [styles.bannerCard, {
987
+ backgroundColor: theme.cardBg
988
+ }, theme.rtl ? {
989
+ flexDirection: 'row-reverse'
990
+ } : null],
991
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.ScrollView, {
992
+ style: [styles.bannerContent, {
993
+ maxHeight: Math.max(120, window.height * 0.45)
994
+ }],
995
+ showsVerticalScrollIndicator: false,
996
+ keyboardShouldPersistTaps: "handled",
997
+ children: [props.variantKey === 'sticky_header_bar' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
998
+ style: [styles.stickyLabel, {
999
+ color: theme.accent
1000
+ }],
1001
+ children: "PINNED"
1002
+ }) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)(BranchContent, {
1003
+ ...props
1004
+ }), stickyProgress !== null ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
1005
+ accessibilityRole: "progressbar",
1006
+ accessibilityValue: {
1007
+ min: 0,
1008
+ max: 100,
1009
+ now: Math.round(stickyProgress)
1010
+ },
1011
+ style: styles.stickyTrack,
1012
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
1013
+ style: [styles.stickyFill, {
1014
+ backgroundColor: theme.accent,
1015
+ width: `${stickyProgress}%`
1016
+ }]
1017
+ })
1018
+ }) : null]
1019
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(CloseBtn, {
1020
+ onPress: onDismiss,
1021
+ style: styles.bannerClosePos
1022
+ })]
1023
+ })
1024
+ });
1025
+ }
1026
+
1027
+ // ─── 5. bottom_banner — strip pinned to bottom ───────────────────────────────
1028
+
1029
+ function BottomBannerInApp(props) {
1030
+ const {
1031
+ spec,
1032
+ theme,
1033
+ onDismiss
1034
+ } = props;
1035
+ const window = (0, _reactNative.useWindowDimensions)();
1036
+ const edge = screenPosition(spec.ext?.position) ?? screenPosition(spec.ext?.layoutPosition) ?? 'bottom';
1037
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(ScreenEdgeSurface, {
1038
+ edge: edge === 'top' ? 'top' : 'bottom',
1039
+ contentStyle: styles.bannerWrap,
1040
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
1041
+ style: [styles.bannerCard, {
1042
+ backgroundColor: theme.cardBg
1043
+ }, theme.rtl ? {
1044
+ flexDirection: 'row-reverse'
1045
+ } : null],
1046
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.ScrollView, {
1047
+ style: [styles.bannerContent, {
1048
+ maxHeight: Math.max(120, window.height * 0.45)
1049
+ }],
1050
+ showsVerticalScrollIndicator: false,
1051
+ keyboardShouldPersistTaps: "handled",
1052
+ children: [props.variantKey === 'sticky_footer_bar' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
1053
+ style: [styles.stickyLabel, {
1054
+ color: theme.accent
1055
+ }],
1056
+ children: "PINNED"
1057
+ }) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)(BranchContent, {
1058
+ ...props
1059
+ })]
1060
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(CloseBtn, {
1061
+ onPress: onDismiss,
1062
+ style: styles.bannerClosePos
1063
+ })]
1064
+ })
1065
+ });
1066
+ }
1067
+
1068
+ // ─── 6. floating tooltip (bubble fallback only) ──────────────────────────────
1069
+
1070
+ function FloatingTooltipInApp(props) {
1071
+ const {
1072
+ spec,
1073
+ theme,
1074
+ onDismiss
1075
+ } = props;
1076
+ const window = (0, _reactNative.useWindowDimensions)();
1077
+ const floatingBubble = props.variantKey === 'floating_bubble';
1078
+ const [expanded, setExpanded] = (0, _react.useState)(!floatingBubble);
1079
+ const authoredPosition = typeof spec.ext?.position === 'string' ? spec.ext.position.toLowerCase() : typeof spec.ext?.layoutPosition === 'string' ? spec.ext.layoutPosition.toLowerCase() : 'bottom-right';
1080
+ const edge = authoredPosition.includes('top') ? 'top' : 'bottom';
1081
+ const edgeStyle = [styles.floatingEdge, authoredPosition.includes('left') ? styles.edgeAlignLeft : styles.edgeAlignRight];
1082
+ if (floatingBubble && !expanded) {
1083
+ const label = typeof spec.ext?.bubbleLabel === 'string' ? spec.ext.bubbleLabel : 'Open';
1084
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(ScreenEdgeSurface, {
1085
+ edge: edge,
1086
+ contentStyle: edgeStyle,
1087
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
1088
+ accessibilityRole: "button",
1089
+ accessibilityLabel: label,
1090
+ onPress: () => {
1091
+ setExpanded(true);
1092
+ props.onInteraction?.({
1093
+ mechanic: 'floating_bubble',
1094
+ phase: 'started',
1095
+ value: spec.ext?.tapAction
1096
+ });
1097
+ },
1098
+ style: [styles.floatingBubble, {
1099
+ backgroundColor: theme.accent
1100
+ }],
1101
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
1102
+ style: [styles.floatingBubbleText, {
1103
+ color: theme.ctaText
1104
+ }],
1105
+ children: label
1106
+ })
1107
+ })
1108
+ });
1109
+ }
1110
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(ScreenEdgeSurface, {
1111
+ edge: edge,
1112
+ contentStyle: edgeStyle,
1113
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
1114
+ style: [styles.floatingPanel, {
1115
+ maxHeight: Math.max(120, window.height * 0.6)
1116
+ }],
1117
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
1118
+ style: [styles.tooltipCard, {
1119
+ backgroundColor: theme.cardBg
1120
+ }],
1121
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(CloseBtn, {
1122
+ onPress: onDismiss,
1123
+ style: styles.tooltipClosePos
1124
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.ScrollView, {
1125
+ style: styles.floatingScroll,
1126
+ showsVerticalScrollIndicator: false,
1127
+ keyboardShouldPersistTaps: "handled",
1128
+ children: props.children !== undefined ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
1129
+ children: props.children
1130
+ }) : /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
1131
+ children: [spec.title ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
1132
+ style: [styles.tooltipTitle, {
1133
+ color: theme.titleColor
1134
+ }, rtlText(theme)],
1135
+ children: spec.title
1136
+ }) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
1137
+ style: [styles.tooltipBody, {
1138
+ color: theme.bodyColor
1139
+ }, rtlText(theme)],
1140
+ children: spec.body
1141
+ }), spec.coupon ? /*#__PURE__*/(0, _jsxRuntime.jsx)(CouponChip, {
1142
+ code: spec.coupon,
1143
+ theme: theme
1144
+ }) : null, spec.cta ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
1145
+ accessibilityRole: "button",
1146
+ accessibilityLabel: spec.cta.label,
1147
+ onPress: () => spec.cta.action === 'dismiss' ? onDismiss() : props.onCta(spec.cta),
1148
+ style: styles.tooltipCta,
1149
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
1150
+ style: [styles.tooltipCtaText, {
1151
+ color: theme.accent
1152
+ }],
1153
+ children: spec.cta.label
1154
+ })
1155
+ }) : null]
1156
+ })
1157
+ })]
1158
+ })
1159
+ })
1160
+ });
1161
+ }
1162
+
1163
+ /** A placement-only micro popover; unlike coachmarks it does not require a measured anchor. */
1164
+ function MiniPopoverInApp(props) {
1165
+ const placement = props.spec.ext?.placement;
1166
+ const atBottom = placement === 'bottom';
1167
+ const window = (0, _reactNative.useWindowDimensions)();
1168
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(ScreenEdgeSurface, {
1169
+ edge: atBottom ? 'bottom' : 'top',
1170
+ contentStyle: [styles.floatingEdge, placement === 'left' ? styles.edgeAlignLeft : styles.edgeAlignRight],
1171
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
1172
+ style: [styles.miniPopoverPanel, {
1173
+ maxHeight: Math.max(120, window.height * 0.6)
1174
+ }],
1175
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
1176
+ style: [styles.tooltipCard, {
1177
+ backgroundColor: props.theme.cardBg
1178
+ }],
1179
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(CloseBtn, {
1180
+ onPress: props.onDismiss,
1181
+ style: styles.tooltipClosePos
1182
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.ScrollView, {
1183
+ style: styles.floatingScroll,
1184
+ showsVerticalScrollIndicator: false,
1185
+ keyboardShouldPersistTaps: "handled",
1186
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(BranchContent, {
1187
+ ...props
1188
+ })
1189
+ })]
1190
+ })
1191
+ })
1192
+ });
1193
+ }
1194
+ const rectStyle = rect => ({
1195
+ position: 'absolute',
1196
+ left: rect.x,
1197
+ top: rect.y,
1198
+ width: rect.width,
1199
+ height: rect.height
1200
+ });
1201
+ /** Measure an anchor relative to its overlay and repeat after rotation/layout changes. */
1202
+ function useMeasuredAnchor({
1203
+ anchorKey,
1204
+ readyKey = anchorKey,
1205
+ onReady,
1206
+ onRenderError
1207
+ }) {
1208
+ const registry = (0, _EngageAnchor.useEngageAnchorRegistry)();
1209
+ const overlayRef = (0, _react.useRef)(null);
1210
+ const onReadyRef = (0, _react.useRef)(onReady);
1211
+ const onErrorRef = (0, _react.useRef)(onRenderError);
1212
+ const readyKeyRef = (0, _react.useRef)(null);
1213
+ const [measured, setMeasured] = (0, _react.useState)(null);
1214
+ const [overlayRevision, setOverlayRevision] = (0, _react.useState)(0);
1215
+ const window = (0, _reactNative.useWindowDimensions)();
1216
+ onReadyRef.current = onReady;
1217
+ onErrorRef.current = onRenderError;
1218
+ const remeasureOverlay = (0, _react.useCallback)(() => {
1219
+ setOverlayRevision(revision => revision + 1);
1220
+ }, []);
1221
+ (0, _react.useEffect)(() => {
1222
+ setMeasured(null);
1223
+ readyKeyRef.current = null;
1224
+ if (!anchorKey) {
1225
+ onErrorRef.current?.('missing_anchor_key');
1226
+ return;
1227
+ }
1228
+ let cancelled = false;
1229
+ let exhausted = false;
1230
+ let attempts = 0;
1231
+ let retry = null;
1232
+ const failOrRetry = () => {
1233
+ if (cancelled || exhausted) return;
1234
+ if (attempts >= 20) {
1235
+ exhausted = true;
1236
+ onErrorRef.current?.((0, _engageCoachmarkTour.coachmarkAnchorError)(anchorKey));
1237
+ return;
1238
+ }
1239
+ attempts += 1;
1240
+ retry = setTimeout(measure, 100);
1241
+ };
1242
+ const measure = () => {
1243
+ if (cancelled || exhausted) return;
1244
+ const overlay = overlayRef.current;
1245
+ if (!overlay) {
1246
+ failOrRetry();
1247
+ return;
1248
+ }
1249
+ overlay.measureInWindow((overlayX, overlayY, overlayWidth, overlayHeight) => {
1250
+ if (cancelled || overlayWidth <= 0 || overlayHeight <= 0) {
1251
+ failOrRetry();
1252
+ return;
1253
+ }
1254
+ const found = registry.measure(anchorKey, anchor => {
1255
+ if (cancelled) return;
1256
+ if (!anchor) {
1257
+ failOrRetry();
1258
+ return;
1259
+ }
1260
+ const local = {
1261
+ x: anchor.x - overlayX,
1262
+ y: anchor.y - overlayY,
1263
+ width: anchor.width,
1264
+ height: anchor.height
1265
+ };
1266
+ const visible = local.x + local.width > 0 && local.y + local.height > 0 && local.x < overlayWidth && local.y < overlayHeight;
1267
+ if (!visible) {
1268
+ failOrRetry();
1269
+ return;
1270
+ }
1271
+ setMeasured({
1272
+ anchorKey,
1273
+ anchor: local,
1274
+ viewport: {
1275
+ width: overlayWidth,
1276
+ height: overlayHeight
1277
+ }
1278
+ });
1279
+ if (readyKeyRef.current !== readyKey) {
1280
+ readyKeyRef.current = readyKey;
1281
+ onReadyRef.current?.();
1282
+ }
1283
+ });
1284
+ if (!found) failOrRetry();
1285
+ });
1286
+ };
1287
+ const unsubscribe = registry.subscribe(anchorKey, () => {
1288
+ attempts = 0;
1289
+ if (retry) clearTimeout(retry);
1290
+ measure();
1291
+ });
1292
+ const kickoff = setTimeout(measure, 0);
1293
+ return () => {
1294
+ cancelled = true;
1295
+ clearTimeout(kickoff);
1296
+ if (retry) clearTimeout(retry);
1297
+ unsubscribe();
1298
+ };
1299
+ }, [anchorKey, overlayRevision, readyKey, registry, window.height, window.width]);
1300
+ return {
1301
+ overlayRef,
1302
+ measured: measured?.anchorKey === anchorKey ? measured : null,
1303
+ remeasureOverlay
1304
+ };
1305
+ }
1306
+ /** Shared measured card/arrow; spotlight and tooltip differ only in their root. */
1307
+ function AnchoredCard({
1308
+ geometry,
1309
+ theme,
1310
+ onDismiss,
1311
+ onLayout,
1312
+ children
1313
+ }) {
1314
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
1315
+ style: [styles.coachmarkTooltipWrap, {
1316
+ left: geometry.tooltip.left,
1317
+ width: geometry.tooltip.width,
1318
+ ...(geometry.tooltip.top !== undefined ? {
1319
+ top: geometry.tooltip.top
1320
+ } : {
1321
+ bottom: geometry.tooltip.bottom
1322
+ })
1323
+ }],
1324
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
1325
+ pointerEvents: "none",
1326
+ style: [styles.coachmarkArrow, {
1327
+ ...(geometry.tooltip.arrowLeft !== undefined ? {
1328
+ left: geometry.tooltip.arrowLeft
1329
+ } : {
1330
+ top: geometry.tooltip.arrowTop
1331
+ }),
1332
+ backgroundColor: theme.cardBg
1333
+ }, geometry.tooltip.placement === 'bottom' ? styles.coachmarkArrowTop : geometry.tooltip.placement === 'top' ? styles.coachmarkArrowBottom : geometry.tooltip.placement === 'left' ? styles.coachmarkArrowRight : styles.coachmarkArrowLeft]
1334
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
1335
+ onLayout: onLayout,
1336
+ style: [styles.coachmarkCard, {
1337
+ backgroundColor: theme.cardBg,
1338
+ maxHeight: geometry.tooltip.maxHeight
1339
+ }],
1340
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(CloseBtn, {
1341
+ onPress: onDismiss,
1342
+ style: styles.tooltipClosePos
1343
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.ScrollView, {
1344
+ style: styles.coachmarkScroll,
1345
+ showsVerticalScrollIndicator: false,
1346
+ keyboardShouldPersistTaps: "handled",
1347
+ children: children
1348
+ })]
1349
+ })]
1350
+ });
1351
+ }
1352
+ const coachmarkLabel = (value, fallback) => typeof value === 'string' && value.trim() ? value.trim() : fallback;
1353
+
1354
+ /** Plain tooltip: attached to an anchor without dimming or blocking the host screen. */
1355
+ function AnchoredTooltipInApp(props) {
1356
+ const {
1357
+ spec,
1358
+ theme,
1359
+ onDismiss
1360
+ } = props;
1361
+ const step = (0, _react.useMemo)(() => (0, _engageCoachmarkTour.normalizeLegacyAnchoredStep)(spec), [spec]);
1362
+ const [cardHeight, setCardHeight] = (0, _react.useState)(160);
1363
+ // Android's RN content root commonly consumes system bars; iOS needs the raw
1364
+ // safe-area because an absolute sibling can extend beneath a cutout.
1365
+ const nativeInsets = (0, _engageWindowInsets.useEngageWindowInsets)(_reactNative.Platform.OS === 'android');
1366
+ const safeInsets = nativeInsets ?? (_reactNative.Platform.OS === 'ios' ? {
1367
+ top: 44,
1368
+ right: 0,
1369
+ bottom: 34,
1370
+ left: 0
1371
+ } : _engageWindowInsets.ZERO_ENGAGE_WINDOW_INSETS);
1372
+ const {
1373
+ overlayRef,
1374
+ measured,
1375
+ remeasureOverlay
1376
+ } = useMeasuredAnchor({
1377
+ anchorKey: step?.anchorKey ?? '',
1378
+ onReady: props.onReady,
1379
+ onRenderError: props.onRenderError
1380
+ });
1381
+ const geometry = measured && step ? resolveCoachmarkGeometry(measured.anchor, measured.viewport, step.placement, {
1382
+ cardHeight,
1383
+ insets: safeInsets
1384
+ }) : null;
1385
+ const measureCard = (0, _react.useCallback)(event => {
1386
+ const next = Math.round(event.nativeEvent.layout.height);
1387
+ if (next > 0) setCardHeight(current => Math.abs(current - next) > 1 ? next : current);
1388
+ }, []);
1389
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
1390
+ ref: overlayRef,
1391
+ collapsable: false,
1392
+ pointerEvents: "box-none",
1393
+ style: styles.anchoredTooltipRoot,
1394
+ onLayout: remeasureOverlay,
1395
+ children: geometry && step ? /*#__PURE__*/(0, _jsxRuntime.jsxs)(AnchoredCard, {
1396
+ geometry: geometry,
1397
+ theme: theme,
1398
+ onDismiss: onDismiss,
1399
+ onLayout: measureCard,
1400
+ children: [props.variantKey === 'fab_prompt' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
1401
+ style: [styles.coachmarkEyebrow, {
1402
+ color: theme.accent
1403
+ }],
1404
+ children: "\uFF0B QUICK ACTION"
1405
+ }) : null, step.title ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
1406
+ style: [styles.tooltipTitle, {
1407
+ color: theme.titleColor
1408
+ }, rtlText(theme)],
1409
+ children: step.title
1410
+ }) : null, step.body ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
1411
+ style: [styles.tooltipBody, {
1412
+ color: theme.bodyColor
1413
+ }, rtlText(theme)],
1414
+ children: step.body
1415
+ }) : null, step.cta ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
1416
+ accessibilityRole: "button",
1417
+ accessibilityLabel: step.cta.label,
1418
+ onPress: () => step.cta.action === 'dismiss' ? onDismiss() : props.onCta(step.cta),
1419
+ style: styles.tooltipCta,
1420
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
1421
+ style: [styles.tooltipCtaText, {
1422
+ color: theme.accent
1423
+ }],
1424
+ children: step.cta.label
1425
+ })
1426
+ }) : null]
1427
+ }) : null
1428
+ });
1429
+ }
1430
+
1431
+ /** Guided tour: one measured spotlight per ordered step, with full-screen scrim. */
1432
+ function CoachmarkSpotlightInApp(props) {
1433
+ const {
1434
+ spec,
1435
+ theme,
1436
+ onDismiss
1437
+ } = props;
1438
+ const steps = (0, _react.useMemo)(() => (0, _engageCoachmarkTour.normalizeCoachmarkSteps)(spec), [spec]);
1439
+ const [stepIndex, setStepIndex] = (0, _react.useState)(0);
1440
+ const [cardHeight, setCardHeight] = (0, _react.useState)(160);
1441
+ const viewedStepsRef = (0, _react.useRef)(new Set());
1442
+ const step = steps[stepIndex];
1443
+ const nativeInsets = (0, _engageWindowInsets.useEngageWindowInsets)();
1444
+ const safeInsets = nativeInsets ?? (_reactNative.Platform.OS === 'ios' ? {
1445
+ top: 59,
1446
+ right: 44,
1447
+ bottom: 34,
1448
+ left: 44
1449
+ } : {
1450
+ top: _reactNative.StatusBar.currentHeight ?? 0,
1451
+ right: 0,
1452
+ bottom: 16,
1453
+ left: 0
1454
+ });
1455
+ (0, _react.useEffect)(() => {
1456
+ setStepIndex(0);
1457
+ setCardHeight(160);
1458
+ viewedStepsRef.current.clear();
1459
+ }, [steps]);
1460
+ const handleStepReady = (0, _react.useCallback)(() => {
1461
+ props.onReady?.();
1462
+ if (viewedStepsRef.current.has(stepIndex)) return;
1463
+ viewedStepsRef.current.add(stepIndex);
1464
+ props.onInteraction?.({
1465
+ mechanic: 'coachmark_spotlight',
1466
+ phase: stepIndex === 0 ? 'started' : 'progress',
1467
+ result: 'step_viewed',
1468
+ meta: {
1469
+ anchorKey: step?.anchorKey,
1470
+ step: stepIndex + 1,
1471
+ totalSteps: steps.length
1472
+ }
1473
+ });
1474
+ }, [props, step?.anchorKey, stepIndex, steps.length]);
1475
+ const {
1476
+ overlayRef,
1477
+ measured,
1478
+ remeasureOverlay
1479
+ } = useMeasuredAnchor({
1480
+ anchorKey: step?.anchorKey ?? '',
1481
+ readyKey: `${stepIndex}:${step?.anchorKey ?? ''}`,
1482
+ onReady: handleStepReady,
1483
+ onRenderError: props.onRenderError
1484
+ });
1485
+ const geometry = measured ? resolveCoachmarkGeometry(measured.anchor, measured.viewport, step?.placement, {
1486
+ cardHeight,
1487
+ insets: safeInsets
1488
+ }) : null;
1489
+ const measureCard = (0, _react.useCallback)(event => {
1490
+ const next = Math.round(event.nativeEvent.layout.height);
1491
+ if (next > 0) setCardHeight(current => Math.abs(current - next) > 1 ? next : current);
1492
+ }, []);
1493
+ const scrim = spec.style?.backdrop ?? 'rgba(0,0,0,0.68)';
1494
+ const radius = typeof spec.ext?.spotlightRadius === 'number' ? clamp(spec.ext.spotlightRadius, 0, 40) : 14;
1495
+ const finalCta = stepIndex === steps.length - 1 ? step?.cta ?? spec.cta : undefined;
1496
+ const goTo = result => {
1497
+ const nextIndex = (0, _engageCoachmarkTour.resolveCoachmarkStepIndex)(stepIndex, steps.length, result);
1498
+ props.onInteraction?.({
1499
+ mechanic: 'coachmark_spotlight',
1500
+ phase: 'progress',
1501
+ result,
1502
+ meta: {
1503
+ anchorKey: step?.anchorKey,
1504
+ fromStep: stepIndex + 1,
1505
+ toStep: nextIndex + 1,
1506
+ totalSteps: steps.length
1507
+ }
1508
+ });
1509
+ setCardHeight(160);
1510
+ setStepIndex(nextIndex);
1511
+ };
1512
+ const skip = () => {
1513
+ props.onInteraction?.({
1514
+ mechanic: 'coachmark_spotlight',
1515
+ phase: 'decision',
1516
+ result: 'skipped',
1517
+ meta: {
1518
+ anchorKey: step?.anchorKey,
1519
+ step: stepIndex + 1,
1520
+ totalSteps: steps.length
1521
+ }
1522
+ });
1523
+ onDismiss();
1524
+ };
1525
+ const finish = () => {
1526
+ props.onInteraction?.({
1527
+ mechanic: 'coachmark_spotlight',
1528
+ phase: 'completed',
1529
+ result: 'finished',
1530
+ meta: {
1531
+ anchorKey: step?.anchorKey,
1532
+ step: stepIndex + 1,
1533
+ totalSteps: steps.length
1534
+ }
1535
+ });
1536
+ if ((0, _engageCoachmarkTour.resolveCoachmarkFinishMode)(finalCta) === 'cta' && finalCta) props.onCta(finalCta);else if (props.onComplete) props.onComplete();else onDismiss();
1537
+ };
1538
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Modal, {
1539
+ visible: true,
1540
+ transparent: true,
1541
+ animationType: "fade",
1542
+ statusBarTranslucent: true,
1543
+ onRequestClose: onDismiss,
1544
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
1545
+ ref: overlayRef,
1546
+ collapsable: false,
1547
+ style: styles.coachmarkRoot,
1548
+ onLayout: remeasureOverlay,
1549
+ pointerEvents: "box-none",
1550
+ children: geometry && step ? /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
1551
+ children: [geometry.scrims.map((rect, index) => /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
1552
+ accessibilityRole: "none",
1553
+ onPress: onDismiss,
1554
+ style: [rectStyle(rect), {
1555
+ backgroundColor: scrim
1556
+ }]
1557
+ }, index)), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
1558
+ pointerEvents: "none",
1559
+ style: [styles.coachmarkSpotlight, rectStyle(geometry.spotlight), {
1560
+ borderRadius: radius,
1561
+ borderColor: theme.accent
1562
+ }]
1563
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(AnchoredCard, {
1564
+ geometry: geometry,
1565
+ theme: theme,
1566
+ onDismiss: skip,
1567
+ onLayout: measureCard,
1568
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.Text, {
1569
+ style: [styles.coachmarkEyebrow, {
1570
+ color: theme.accent
1571
+ }],
1572
+ children: ["STEP ", stepIndex + 1, " OF ", steps.length]
1573
+ }), step.title ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
1574
+ style: [styles.tooltipTitle, {
1575
+ color: theme.titleColor
1576
+ }, rtlText(theme)],
1577
+ children: step.title
1578
+ }) : null, step.body ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
1579
+ style: [styles.tooltipBody, {
1580
+ color: theme.bodyColor
1581
+ }, rtlText(theme)],
1582
+ children: step.body
1583
+ }) : null, /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
1584
+ style: styles.coachmarkActions,
1585
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
1586
+ accessibilityRole: "button",
1587
+ accessibilityLabel: coachmarkLabel(spec.ext?.skipLabel, 'Skip tour'),
1588
+ onPress: skip,
1589
+ style: styles.coachmarkTextButton,
1590
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
1591
+ style: [styles.coachmarkSecondaryText, {
1592
+ color: theme.bodyColor
1593
+ }],
1594
+ children: coachmarkLabel(spec.ext?.skipLabel, 'Skip')
1595
+ })
1596
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
1597
+ style: styles.coachmarkNavActions,
1598
+ children: [stepIndex > 0 ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
1599
+ accessibilityRole: "button",
1600
+ accessibilityLabel: coachmarkLabel(spec.ext?.backLabel, 'Previous step'),
1601
+ onPress: () => goTo('back'),
1602
+ style: styles.coachmarkTextButton,
1603
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
1604
+ style: [styles.coachmarkSecondaryText, {
1605
+ color: theme.bodyColor
1606
+ }],
1607
+ children: coachmarkLabel(spec.ext?.backLabel, 'Back')
1608
+ })
1609
+ }) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
1610
+ accessibilityRole: "button",
1611
+ accessibilityLabel: stepIndex < steps.length - 1 ? coachmarkLabel(spec.ext?.nextLabel, 'Next step') : coachmarkLabel(spec.ext?.finishLabel, finalCta?.label ?? spec.cta?.label ?? 'Finish tour'),
1612
+ onPress: () => stepIndex < steps.length - 1 ? goTo('next') : finish(),
1613
+ style: [styles.coachmarkPrimaryButton, {
1614
+ backgroundColor: theme.accent
1615
+ }],
1616
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
1617
+ style: [styles.coachmarkPrimaryText, {
1618
+ color: theme.ctaText
1619
+ }],
1620
+ children: stepIndex < steps.length - 1 ? coachmarkLabel(spec.ext?.nextLabel, 'Next') : coachmarkLabel(spec.ext?.finishLabel, finalCta?.label ?? spec.cta?.label ?? 'Finish')
1621
+ })
1622
+ })]
1623
+ })]
1624
+ })]
1625
+ })]
1626
+ }) : null
1627
+ })
1628
+ });
1629
+ }
1630
+ function AnchoredInApp(props) {
1631
+ return (0, _engageCoachmarkTour.resolveAnchoredSurfaceKind)(props.variantKey) === 'spotlight' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(CoachmarkSpotlightInApp, {
1632
+ ...props
1633
+ }) : /*#__PURE__*/(0, _jsxRuntime.jsx)(AnchoredTooltipInApp, {
1634
+ ...props
1635
+ });
1636
+ }
1637
+
1638
+ // ─── inline — participates in host layout and never opens an overlay ─────────
1639
+
1640
+ function InlineInApp(props) {
1641
+ const {
1642
+ theme,
1643
+ onDismiss
1644
+ } = props;
1645
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
1646
+ style: [styles.inlineCard, {
1647
+ backgroundColor: theme.cardBg
1648
+ }],
1649
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(CloseBtn, {
1650
+ onPress: onDismiss,
1651
+ style: styles.inlineClosePos
1652
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(BranchContent, {
1653
+ ...props
1654
+ })]
1655
+ });
1656
+ }
1657
+
1658
+ // ─── 7. toast — transient strip, auto-dismisses after 3 s ────────────────────
1659
+
1660
+ function resolveToastDuration(value) {
1661
+ return clamp(typeof value === 'number' && Number.isFinite(value) ? value : 3000, 1000, 60_000);
1662
+ }
1663
+ function ToastInApp(props) {
1664
+ const {
1665
+ spec,
1666
+ onDismiss
1667
+ } = props;
1668
+ const window = (0, _reactNative.useWindowDimensions)();
1669
+ const timerRef = (0, _react.useRef)(null);
1670
+ const autoDismiss = spec.ext?.autoDismiss !== false;
1671
+ const duration = resolveToastDuration(typeof spec.ext?.autoDismiss === 'number' ? spec.ext.autoDismiss : spec.ext?.durationMs);
1672
+ (0, _react.useEffect)(() => {
1673
+ if (!autoDismiss) return;
1674
+ timerRef.current = setTimeout(onDismiss, duration);
1675
+ return () => {
1676
+ if (timerRef.current) clearTimeout(timerRef.current);
1677
+ };
1678
+ // onDismiss identity stable (memoized in provider); exhaustive-deps would re-arm on every render
1679
+ // eslint-disable-next-line react-hooks/exhaustive-deps
1680
+ }, [autoDismiss, duration]);
1681
+ const {
1682
+ theme
1683
+ } = props;
1684
+ const position = screenPosition(spec.ext?.position) ?? screenPosition(spec.ext?.layoutPosition) ?? 'bottom';
1685
+ const edge = position === 'top' ? 'top' : 'bottom';
1686
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(ScreenEdgeSurface, {
1687
+ edge: edge,
1688
+ contentStyle: styles.toastWrap,
1689
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
1690
+ style: [styles.toastCard, {
1691
+ backgroundColor: theme.cardBg
1692
+ }],
1693
+ onPress: onDismiss,
1694
+ accessibilityRole: "none",
1695
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.ScrollView, {
1696
+ style: [styles.toastScroll, {
1697
+ maxHeight: Math.max(96, window.height * 0.4)
1698
+ }],
1699
+ showsVerticalScrollIndicator: false,
1700
+ keyboardShouldPersistTaps: "handled",
1701
+ children: props.children !== undefined ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
1702
+ children: props.children
1703
+ }) : /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
1704
+ children: [spec.title ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
1705
+ style: [styles.toastTitle, {
1706
+ color: theme.titleColor
1707
+ }, rtlText(theme)],
1708
+ children: spec.title
1709
+ }) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
1710
+ style: [styles.toastBody, {
1711
+ color: theme.bodyColor
1712
+ }, rtlText(theme)],
1713
+ numberOfLines: 2,
1714
+ children: spec.body
1715
+ }), spec.cta ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
1716
+ accessibilityRole: "button",
1717
+ accessibilityLabel: spec.cta.label,
1718
+ onPress: () => spec.cta.action === 'dismiss' ? onDismiss() : props.onCta(spec.cta),
1719
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
1720
+ style: [styles.toastCtaText, {
1721
+ color: theme.accent
1722
+ }],
1723
+ children: spec.cta.label
1724
+ })
1725
+ }) : null]
1726
+ })
1727
+ })
1728
+ })
1729
+ });
1730
+ }
1731
+
1732
+ // ─── Open/Closed registry ─────────────────────────────────────────────────────
1733
+
1734
+ const INAPP_RENDERERS = exports.INAPP_RENDERERS = {
1735
+ modal: ModalInApp,
1736
+ fullscreen: FullScreenInApp,
1737
+ bottom_sheet: BottomSheetInApp,
1738
+ top_banner: TopBannerInApp,
1739
+ bottom_banner: BottomBannerInApp,
1740
+ tooltip: AnchoredInApp,
1741
+ toast: ToastInApp
1742
+ };
1743
+ const MOUNT_MODEL_RENDERERS = {
1744
+ overlay: ModalInApp,
1745
+ sheet: BottomSheetInApp,
1746
+ banner: TopBannerInApp,
1747
+ fullscreen: FullScreenInApp,
1748
+ toast: ToastInApp,
1749
+ bubble: FloatingTooltipInApp,
1750
+ anchored: AnchoredInApp,
1751
+ inline: InlineInApp
1752
+ };
1753
+
1754
+ /** Resolve the render branch for a config layout (always defined). */
1755
+ function resolveInAppRenderer(layout) {
1756
+ return INAPP_RENDERERS[resolveInAppLayout(layout)];
1757
+ }
1758
+
1759
+ /**
1760
+ * Resolve canonical additive surfaces before degrading to the stable seven-layout
1761
+ * registry. Content remains a child of the selected surface in either path.
1762
+ */
1763
+ function resolveInAppPresentationRenderer(presentation, mountModelOverride) {
1764
+ if (mountModelOverride) return MOUNT_MODEL_RENDERERS[mountModelOverride];
1765
+ const additive = ADDITIVE_INAPP_RENDERERS[presentation.archetype];
1766
+ if (additive) return additive;
1767
+ if (presentation.variantKey === 'mini_popover') return MiniPopoverInApp;
1768
+ if (presentation.variantKey === 'peek_card') return PeekCardInApp;
1769
+ if (presentation.mountModel === 'banner' && presentation.legacyLayout === 'bottom_banner') {
1770
+ return BottomBannerInApp;
1771
+ }
1772
+ return MOUNT_MODEL_RENDERERS[presentation.mountModel];
1773
+ }
1774
+
1775
+ // ─── Render-failure boundary (T1 G/render honesty) ────────────────────────────
1776
+ // A malformed render spec (or a downstream render throw) must NEVER crash the host
1777
+ // app and must NEVER silently vanish. This boundary catches the render error, reports
1778
+ // it via `onError(reason)` (provider → `render_failed` diagnostic, which also marks a
1779
+ // test preview failed server-side), and renders nothing in its place. Reset keys on
1780
+ // the message id so a new message after a failure gets a fresh attempt.
1781
+
1782
+ class InAppErrorBoundary extends _react.Component {
1783
+ constructor(props) {
1784
+ super(props);
1785
+ this.state = {
1786
+ failed: false
1787
+ };
1788
+ }
1789
+ static getDerivedStateFromError() {
1790
+ return {
1791
+ failed: true
1792
+ };
1793
+ }
1794
+ componentDidUpdate(prev) {
1795
+ // New message after a prior failure → clear the failed state and retry render.
1796
+ if (prev.resetKey !== this.props.resetKey && this.state.failed) {
1797
+ this.setState({
1798
+ failed: false
1799
+ });
1800
+ }
1801
+ }
1802
+ componentDidCatch(error) {
1803
+ this.props.onError(error?.message || 'render_error');
1804
+ }
1805
+ render() {
1806
+ return this.state.failed ? null : this.props.children;
1807
+ }
1808
+ }
1809
+
1810
+ // ─── Public mount point ───────────────────────────────────────────────────────
1811
+
1812
+ /**
1813
+ * Single mount point for in-app messages. Reads `message.layout`, auto-selects
1814
+ * the correct renderer from the registry, fires `onShow()` exactly once per
1815
+ * message. App developers write zero layout code.
1816
+ */
1817
+ function EngageInAppView({
1818
+ message,
1819
+ visible,
1820
+ spec,
1821
+ mountModelOverride,
1822
+ onShow,
1823
+ onCta,
1824
+ onDismiss,
1825
+ onComplete,
1826
+ onInteraction,
1827
+ onInAppGameRequest,
1828
+ onRenderError
1829
+ }) {
1830
+ const effectiveSpec = spec ?? message?.spec;
1831
+ const presentation = message && effectiveSpec ? (0, _engageVariantResolver.resolveInAppPresentation)({
1832
+ layout: message.layout,
1833
+ variantKey: message.variantKey,
1834
+ spec: effectiveSpec
1835
+ }) : null;
1836
+ const effectiveMountModel = mountModelOverride ?? presentation?.mountModel;
1837
+ const gameAttemptsRef = (0, _react.useRef)({
1838
+ messageId: null,
1839
+ ids: new Map()
1840
+ });
1841
+ if (gameAttemptsRef.current.messageId !== (message?.id ?? null)) {
1842
+ gameAttemptsRef.current = {
1843
+ messageId: message?.id ?? null,
1844
+ ids: new Map()
1845
+ };
1846
+ }
1847
+ const requestGameResult = (0, _react.useCallback)(async (rawAttempt = 1, input) => {
1848
+ if (!message || !effectiveSpec || !(0, _engageGameLogic.isInAppGameVariant)(presentation?.variantKey)) {
1849
+ throw new Error('Game result requested by a non-gamified message');
1850
+ }
1851
+ const variantKey = presentation.variantKey;
1852
+ const attempt = Number.isFinite(rawAttempt) ? Math.max(1, Math.floor(rawAttempt)) : 1;
1853
+ const idKey = `${variantKey}:${attempt}`;
1854
+ let attemptId = gameAttemptsRef.current.ids.get(idKey);
1855
+ if (!attemptId) {
1856
+ gameAttemptSequence += 1;
1857
+ attemptId = `scalebun_game_${Date.now().toString(36)}_${gameAttemptSequence.toString(36)}`;
1858
+ gameAttemptsRef.current.ids.set(idKey, attemptId);
1859
+ }
1860
+ const rawExt = effectiveSpec.ext;
1861
+ const gameKey = typeof rawExt?.gameKey === 'string' ? rawExt.gameKey.trim() : '';
1862
+ const isPreview = message.preview === true || message.isTest === true;
1863
+ if (!isPreview && !gameKey) throw new Error('Game key is missing');
1864
+ const request = (0, _engageGameLogic.buildInAppGameRequest)({
1865
+ campaignId: message.id,
1866
+ gameKey: gameKey || `preview:${variantKey}`,
1867
+ variantKey,
1868
+ attemptId,
1869
+ attempt,
1870
+ payload: input,
1871
+ allowedOutcomeIds: (0, _engageGameLogic.inAppGameAllowedOutcomeIds)(effectiveSpec)
1872
+ });
1873
+ if (isPreview) {
1874
+ const previewResult = (0, _engageGameLogic.authoredPreviewGameResult)(request, effectiveSpec);
1875
+ if (!previewResult) throw new Error('Preview outcome is not configured');
1876
+ return previewResult;
1877
+ }
1878
+ if (!onInAppGameRequest) throw new Error('Game result handler is not configured');
1879
+ return (0, _engageGameLogic.validateInAppGameResult)(request, await onInAppGameRequest(request));
1880
+ }, [message, effectiveSpec, presentation?.variantKey, onInAppGameRequest]);
1881
+ const outcomeConfig = (0, _react.useMemo)(() => (0, _engageOutcome.resolveInAppOutcomeConfig)(effectiveSpec), [effectiveSpec]);
1882
+ const [pendingOutcome, setPendingOutcome] = (0, _react.useState)(null);
1883
+ (0, _react.useEffect)(() => {
1884
+ setPendingOutcome(null);
1885
+ }, [message?.id, visible]);
1886
+ const presentOutcome = (0, _react.useCallback)(request => {
1887
+ setPendingOutcome(current => current ?? request);
1888
+ }, []);
1889
+ const outcomeAwareCta = (0, _react.useCallback)(cta => {
1890
+ if (outcomeConfig) {
1891
+ presentOutcome({
1892
+ fallback: (0, _engageOutcome.inAppOutcomeTerminalForCta)(cta)
1893
+ });
1894
+ return;
1895
+ }
1896
+ onCta(cta);
1897
+ }, [onCta, outcomeConfig, presentOutcome]);
1898
+ const outcomeAwareComplete = (0, _react.useCallback)(() => {
1899
+ if (outcomeConfig) {
1900
+ presentOutcome({
1901
+ fallback: {
1902
+ kind: 'complete'
1903
+ }
1904
+ });
1905
+ return;
1906
+ }
1907
+ if (onComplete) onComplete();else onDismiss();
1908
+ }, [onComplete, onDismiss, outcomeConfig, presentOutcome]);
1909
+ const runOutcomeAction = (0, _react.useCallback)(() => {
1910
+ if (!outcomeConfig || !pendingOutcome) return;
1911
+ const terminal = (0, _engageOutcome.resolveInAppOutcomeTerminal)(outcomeConfig, pendingOutcome.fallback);
1912
+ setPendingOutcome(null);
1913
+ if (terminal.kind === 'cta') {
1914
+ onCta(terminal.cta);
1915
+ } else if (terminal.kind === 'complete') {
1916
+ if (onComplete) onComplete();else onDismiss();
1917
+ } else {
1918
+ onDismiss();
1919
+ }
1920
+ }, [onComplete, onCta, onDismiss, outcomeConfig, pendingOutcome]);
1921
+ const waitsForAnchor = presentation !== null && effectiveMountModel === 'anchored';
1922
+ const [readyMessageId, setReadyMessageId] = (0, _react.useState)(null);
1923
+ // Mechanics such as wheel, quiz, and checklist can be fully authored in `ext`
1924
+ // without generic body copy. Reject only a truly empty render model.
1925
+ const contentMissing = !effectiveSpec || !(effectiveSpec.title || effectiveSpec.body || effectiveSpec.imageUrl || effectiveSpec.coupon || effectiveSpec.cta || effectiveSpec.assets && Object.keys(effectiveSpec.assets).length > 0 || effectiveSpec.ext && Object.keys(effectiveSpec.ext).length > 0);
1926
+ const shownIdRef = (0, _react.useRef)(null);
1927
+ (0, _react.useEffect)(() => {
1928
+ if (visible && message && shownIdRef.current !== message.id) {
1929
+ if (contentMissing) {
1930
+ shownIdRef.current = message.id;
1931
+ onRenderError?.('missing_content');
1932
+ } else if (!waitsForAnchor || readyMessageId === message.id) {
1933
+ shownIdRef.current = message.id;
1934
+ onShow();
1935
+ }
1936
+ }
1937
+ if (!visible) shownIdRef.current = null;
1938
+ }, [visible, message, onShow, onRenderError, contentMissing, waitsForAnchor, readyMessageId]);
1939
+ if (!message || !visible || contentMissing || !effectiveSpec || !presentation) return null;
1940
+ const mechanic = (0, _engageVariantResolver.resolveInAppMechanic)({
1941
+ variantKey: message.variantKey,
1942
+ spec: effectiveSpec
1943
+ });
1944
+ const MechanicContent = (0, _EngageArchetypeRenderers.resolveArchetypeContent)(mechanic ?? presentation.archetype);
1945
+ const Content = MechanicContent ?? (0, _EngageVariantContent.resolveVariantContent)(presentation.variantKey ?? undefined);
1946
+ const Branch = resolveInAppPresentationRenderer(presentation, mountModelOverride);
1947
+ const theme = resolveTheme(effectiveSpec);
1948
+ if (__DEV__) {
1949
+ __DEV__ && _internalLogger.logger.debug(`[Engage] in-app ${message.id} rendering variant="${presentation.variantKey ?? 'legacy'}" archetype="${presentation.archetype}" mount="${effectiveMountModel}" layout="${presentation.legacyLayout}" fallback="${presentation.fallback?.reason ?? 'none'}"${message.isTest ? ` (test ${message.testRunId ?? message.previewId ?? message.id})` : ''}`);
1950
+ }
1951
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(InAppErrorBoundary, {
1952
+ resetKey: message.id,
1953
+ onError: reason => onRenderError?.(reason),
1954
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(Branch, {
1955
+ spec: effectiveSpec,
1956
+ variantKey: presentation.variantKey ?? undefined,
1957
+ theme: theme,
1958
+ onCta: outcomeAwareCta,
1959
+ onDismiss: onDismiss,
1960
+ onComplete: outcomeAwareComplete,
1961
+ onOutcome: outcomeConfig ? presentOutcome : undefined,
1962
+ onInteraction: onInteraction,
1963
+ requestGameResult: requestGameResult,
1964
+ onReady: () => setReadyMessageId(message.id),
1965
+ onRenderError: onRenderError,
1966
+ children: Content ? /*#__PURE__*/(0, _jsxRuntime.jsx)(Content, {
1967
+ spec: effectiveSpec,
1968
+ variantKey: presentation.variantKey ?? undefined,
1969
+ theme: theme,
1970
+ onCta: outcomeAwareCta,
1971
+ onDismiss: onDismiss,
1972
+ onComplete: outcomeAwareComplete,
1973
+ onOutcome: outcomeConfig ? presentOutcome : undefined,
1974
+ onInteraction: onInteraction,
1975
+ requestGameResult: requestGameResult
1976
+ }) : undefined
1977
+ }, `${message.id}:${presentation.variantKey ?? presentation.archetype}`), pendingOutcome && outcomeConfig ? /*#__PURE__*/(0, _jsxRuntime.jsx)(InAppOutcomeModal, {
1978
+ outcome: outcomeConfig,
1979
+ resultLabel: pendingOutcome.resultLabel,
1980
+ theme: theme,
1981
+ onAction: runOutcomeAction,
1982
+ onRequestClose: () => {
1983
+ setPendingOutcome(null);
1984
+ onDismiss();
1985
+ }
1986
+ }) : null]
1987
+ });
1988
+ }
1989
+
1990
+ // ─── Styles ───────────────────────────────────────────────────────────────────
1991
+
1992
+ const CARD_BG = '#FFFFFF';
1993
+ const SHADOW = {
1994
+ shadowColor: '#000000',
1995
+ shadowOpacity: 0.15,
1996
+ shadowRadius: 12,
1997
+ shadowOffset: {
1998
+ width: 0,
1999
+ height: 4
2000
+ },
2001
+ elevation: 6
2002
+ };
2003
+ const outcomeStyles = {
2004
+ backdrop: {
2005
+ flex: 1,
2006
+ alignItems: 'center',
2007
+ justifyContent: 'center',
2008
+ padding: 24
2009
+ },
2010
+ card: {
2011
+ width: '100%',
2012
+ maxWidth: 340,
2013
+ borderWidth: 1,
2014
+ borderRadius: 24,
2015
+ padding: 24,
2016
+ alignItems: 'center',
2017
+ ...SHADOW
2018
+ },
2019
+ copy: {
2020
+ alignSelf: 'stretch',
2021
+ alignItems: 'center'
2022
+ },
2023
+ icon: {
2024
+ width: 64,
2025
+ height: 64,
2026
+ borderRadius: 20,
2027
+ alignItems: 'center',
2028
+ justifyContent: 'center',
2029
+ marginBottom: 14
2030
+ },
2031
+ iconText: {
2032
+ fontSize: 30,
2033
+ fontWeight: '800'
2034
+ },
2035
+ title: {
2036
+ fontSize: 21,
2037
+ fontWeight: '800',
2038
+ textAlign: 'center'
2039
+ },
2040
+ body: {
2041
+ fontSize: 14,
2042
+ lineHeight: 20,
2043
+ textAlign: 'center',
2044
+ marginTop: 7
2045
+ },
2046
+ result: {
2047
+ alignSelf: 'stretch',
2048
+ borderRadius: 12,
2049
+ padding: 10,
2050
+ marginTop: 12
2051
+ },
2052
+ resultText: {
2053
+ fontSize: 17,
2054
+ fontWeight: '800',
2055
+ textAlign: 'center'
2056
+ },
2057
+ button: {
2058
+ alignSelf: 'stretch',
2059
+ minHeight: 44,
2060
+ borderRadius: 12,
2061
+ alignItems: 'center',
2062
+ justifyContent: 'center',
2063
+ paddingHorizontal: 16,
2064
+ marginTop: 18
2065
+ },
2066
+ buttonText: {
2067
+ fontSize: 15,
2068
+ fontWeight: '800',
2069
+ textAlign: 'center'
2070
+ }
2071
+ };
2072
+ const styles = {
2073
+ // ── shared content ──
2074
+ contentBlock: {
2075
+ marginBottom: 12
2076
+ },
2077
+ image: {
2078
+ width: '100%',
2079
+ height: 140,
2080
+ borderRadius: 12,
2081
+ marginBottom: 12
2082
+ },
2083
+ title: {
2084
+ fontSize: 17,
2085
+ fontWeight: '700',
2086
+ color: '#11151C',
2087
+ marginBottom: 6
2088
+ },
2089
+ body: {
2090
+ fontSize: 14,
2091
+ color: '#3A4250',
2092
+ lineHeight: 20
2093
+ },
2094
+ actions: {
2095
+ flexDirection: 'row',
2096
+ flexWrap: 'wrap',
2097
+ justifyContent: 'flex-end',
2098
+ alignItems: 'center',
2099
+ gap: 8
2100
+ },
2101
+ primaryBtn: {
2102
+ flexGrow: 1,
2103
+ flexShrink: 1,
2104
+ minWidth: 120,
2105
+ maxWidth: '100%',
2106
+ paddingVertical: 10,
2107
+ paddingHorizontal: 20,
2108
+ borderRadius: 10,
2109
+ backgroundColor: '#2F6BFF'
2110
+ },
2111
+ primaryText: {
2112
+ fontSize: 15,
2113
+ color: '#FFFFFF',
2114
+ fontWeight: '600',
2115
+ textAlign: 'center',
2116
+ flexShrink: 1
2117
+ },
2118
+ secondaryBtn: {
2119
+ maxWidth: '100%',
2120
+ flexShrink: 1,
2121
+ paddingVertical: 10,
2122
+ paddingHorizontal: 16
2123
+ },
2124
+ secondaryText: {
2125
+ fontSize: 15,
2126
+ color: '#6B7280',
2127
+ fontWeight: '500',
2128
+ textAlign: 'center',
2129
+ flexShrink: 1
2130
+ },
2131
+ coupon: {
2132
+ marginTop: 10,
2133
+ borderWidth: 1.5,
2134
+ borderStyle: 'dashed',
2135
+ borderRadius: 8,
2136
+ paddingVertical: 8,
2137
+ paddingHorizontal: 10,
2138
+ alignItems: 'center'
2139
+ },
2140
+ couponText: {
2141
+ fontSize: 14,
2142
+ fontWeight: '700',
2143
+ letterSpacing: 1.2
2144
+ },
2145
+ closeBtn: {
2146
+ width: 32,
2147
+ height: 32,
2148
+ padding: 0,
2149
+ alignItems: 'center',
2150
+ justifyContent: 'center'
2151
+ },
2152
+ closeBtnText: {
2153
+ fontSize: 18,
2154
+ color: '#9097A3',
2155
+ fontWeight: '600',
2156
+ lineHeight: 20,
2157
+ textAlign: 'center',
2158
+ includeFontPadding: false,
2159
+ transform: [{
2160
+ translateY: -1
2161
+ }]
2162
+ },
2163
+ keyboardAvoider: {
2164
+ flex: 1
2165
+ },
2166
+ screenEdgeKeyboard: {
2167
+ width: '100%'
2168
+ },
2169
+ screenEdge: {
2170
+ position: 'absolute',
2171
+ top: 0,
2172
+ bottom: 0,
2173
+ left: 0,
2174
+ right: 0,
2175
+ zIndex: 1000
2176
+ },
2177
+ screenEdgeTop: {
2178
+ justifyContent: 'flex-start'
2179
+ },
2180
+ screenEdgeBottom: {
2181
+ justifyContent: 'flex-end'
2182
+ },
2183
+ // ── modal ──
2184
+ modalSafeArea: {
2185
+ flex: 1
2186
+ },
2187
+ modalBackdrop: {
2188
+ flex: 1,
2189
+ backgroundColor: 'rgba(0,0,0,0.52)',
2190
+ justifyContent: 'center',
2191
+ alignItems: 'center',
2192
+ padding: 20
2193
+ },
2194
+ modalBackdropTop: {
2195
+ justifyContent: 'flex-start'
2196
+ },
2197
+ modalBackdropBottom: {
2198
+ justifyContent: 'flex-end'
2199
+ },
2200
+ modalCard: {
2201
+ width: '100%',
2202
+ maxWidth: 420,
2203
+ maxHeight: '100%',
2204
+ backgroundColor: CARD_BG,
2205
+ borderRadius: 18,
2206
+ padding: 22,
2207
+ ...SHADOW
2208
+ },
2209
+ modalScroll: {
2210
+ flexShrink: 1
2211
+ },
2212
+ modalScrollContent: {},
2213
+ centerDrawerCard: {
2214
+ maxHeight: '78%'
2215
+ },
2216
+ modalClosePos: {
2217
+ position: 'absolute',
2218
+ top: 12,
2219
+ right: 12,
2220
+ zIndex: 1
2221
+ },
2222
+ // ── fullscreen ──
2223
+ fullscreenCard: {
2224
+ flex: 1,
2225
+ backgroundColor: CARD_BG
2226
+ },
2227
+ fullscreenHeader: {
2228
+ minHeight: 44,
2229
+ paddingHorizontal: 16,
2230
+ alignItems: 'flex-end',
2231
+ justifyContent: 'center'
2232
+ },
2233
+ fullscreenScroll: {
2234
+ flex: 1
2235
+ },
2236
+ fullscreenScrollContent: {
2237
+ flexGrow: 1
2238
+ },
2239
+ fullscreenImage: {
2240
+ width: '100%',
2241
+ maxWidth: 600,
2242
+ alignSelf: 'center',
2243
+ aspectRatio: 16 / 9,
2244
+ maxHeight: 320
2245
+ },
2246
+ fullscreenContent: {
2247
+ flexGrow: 1,
2248
+ width: '100%',
2249
+ maxWidth: 600,
2250
+ alignSelf: 'center',
2251
+ paddingHorizontal: 24,
2252
+ paddingTop: 8,
2253
+ paddingBottom: 24
2254
+ },
2255
+ fullscreenTitle: {
2256
+ fontSize: 22,
2257
+ fontWeight: '800',
2258
+ color: '#11151C',
2259
+ marginBottom: 10
2260
+ },
2261
+ fullscreenBody: {
2262
+ fontSize: 15,
2263
+ color: '#3A4250',
2264
+ lineHeight: 22,
2265
+ marginBottom: 24
2266
+ },
2267
+ // ── bottom_sheet ──
2268
+ sheetBackdrop: {
2269
+ flex: 1,
2270
+ backgroundColor: 'rgba(0,0,0,0.48)',
2271
+ justifyContent: 'flex-end',
2272
+ alignItems: 'center'
2273
+ },
2274
+ sheetCard: {
2275
+ width: '100%',
2276
+ maxWidth: 600,
2277
+ maxHeight: '92%',
2278
+ backgroundColor: CARD_BG,
2279
+ borderTopLeftRadius: 22,
2280
+ borderTopRightRadius: 22,
2281
+ overflow: 'hidden',
2282
+ ...SHADOW
2283
+ },
2284
+ sheetSafeArea: {
2285
+ width: '100%'
2286
+ },
2287
+ sheetScroll: {
2288
+ flexShrink: 1
2289
+ },
2290
+ sheetContent: {
2291
+ padding: 22,
2292
+ paddingBottom: 20
2293
+ },
2294
+ sheetHandle: {
2295
+ width: 38,
2296
+ height: 4,
2297
+ borderRadius: 2,
2298
+ backgroundColor: '#D1D5DB',
2299
+ alignSelf: 'center',
2300
+ marginBottom: 16
2301
+ },
2302
+ stepProgress: {
2303
+ marginBottom: 16
2304
+ },
2305
+ stepLabel: {
2306
+ fontSize: 12,
2307
+ fontWeight: '600',
2308
+ marginBottom: 7
2309
+ },
2310
+ stepTrack: {
2311
+ height: 4,
2312
+ borderRadius: 2,
2313
+ backgroundColor: '#E5E7EB',
2314
+ overflow: 'hidden'
2315
+ },
2316
+ stepFill: {
2317
+ height: '100%',
2318
+ borderRadius: 2
2319
+ },
2320
+ // ── additive side_sheet ──
2321
+ sideSheetBackdrop: {
2322
+ flex: 1,
2323
+ flexDirection: 'row'
2324
+ },
2325
+ sideSheetLeft: {
2326
+ justifyContent: 'flex-start'
2327
+ },
2328
+ sideSheetRight: {
2329
+ justifyContent: 'flex-end'
2330
+ },
2331
+ sideSheetPanel: {
2332
+ width: '82%',
2333
+ maxWidth: 420,
2334
+ height: '100%',
2335
+ ...SHADOW
2336
+ },
2337
+ sideSheetPanelLeft: {
2338
+ borderTopRightRadius: 22,
2339
+ borderBottomRightRadius: 22
2340
+ },
2341
+ sideSheetPanelRight: {
2342
+ borderTopLeftRadius: 22,
2343
+ borderBottomLeftRadius: 22
2344
+ },
2345
+ sideSheetSafeArea: {
2346
+ flex: 1
2347
+ },
2348
+ sideSheetHeader: {
2349
+ minHeight: 44,
2350
+ paddingHorizontal: 14,
2351
+ alignItems: 'flex-end',
2352
+ justifyContent: 'center'
2353
+ },
2354
+ sideSheetScroll: {
2355
+ flex: 1
2356
+ },
2357
+ sideSheetContent: {
2358
+ flexGrow: 1,
2359
+ paddingHorizontal: 22,
2360
+ paddingTop: 8,
2361
+ paddingBottom: 24
2362
+ },
2363
+ peekRoot: {
2364
+ flex: 1,
2365
+ justifyContent: 'flex-end',
2366
+ alignItems: 'center',
2367
+ paddingHorizontal: 14
2368
+ },
2369
+ peekExpanded: {
2370
+ width: '100%',
2371
+ maxWidth: 600,
2372
+ maxHeight: '92%',
2373
+ borderTopLeftRadius: 22,
2374
+ borderTopRightRadius: 22,
2375
+ overflow: 'hidden',
2376
+ ...SHADOW
2377
+ },
2378
+ peekCollapsed: {
2379
+ width: '100%',
2380
+ maxWidth: 600,
2381
+ minHeight: 72,
2382
+ borderTopLeftRadius: 18,
2383
+ borderTopRightRadius: 18,
2384
+ borderWidth: 1,
2385
+ borderBottomWidth: 0,
2386
+ overflow: 'hidden',
2387
+ ...SHADOW
2388
+ },
2389
+ peekSafeArea: {
2390
+ width: '100%'
2391
+ },
2392
+ peekScroll: {
2393
+ flexShrink: 1
2394
+ },
2395
+ peekExpandedContent: {
2396
+ padding: 22,
2397
+ paddingBottom: 20
2398
+ },
2399
+ peekCollapsedContent: {
2400
+ padding: 14
2401
+ },
2402
+ peekClose: {
2403
+ position: 'absolute',
2404
+ top: 10,
2405
+ right: 12
2406
+ },
2407
+ peekLabel: {
2408
+ fontSize: 15,
2409
+ fontWeight: '800',
2410
+ textAlign: 'center'
2411
+ },
2412
+ // ── banners (shared card shape) ──
2413
+ bannerWrap: {
2414
+ padding: 12,
2415
+ alignItems: 'center'
2416
+ },
2417
+ bannerCard: {
2418
+ width: '100%',
2419
+ maxWidth: 420,
2420
+ backgroundColor: CARD_BG,
2421
+ borderRadius: 14,
2422
+ padding: 14,
2423
+ flexDirection: 'row',
2424
+ alignItems: 'flex-start',
2425
+ ...SHADOW
2426
+ },
2427
+ bannerContent: {
2428
+ flex: 1,
2429
+ paddingRight: 8
2430
+ },
2431
+ bannerClosePos: {
2432
+ alignSelf: 'flex-start',
2433
+ marginTop: -2
2434
+ },
2435
+ stickyLabel: {
2436
+ fontSize: 9,
2437
+ fontWeight: '900',
2438
+ letterSpacing: 1,
2439
+ marginBottom: 3
2440
+ },
2441
+ stickyTrack: {
2442
+ height: 4,
2443
+ borderRadius: 2,
2444
+ backgroundColor: '#E5E7EB',
2445
+ overflow: 'hidden',
2446
+ marginTop: 7
2447
+ },
2448
+ stickyFill: {
2449
+ height: '100%',
2450
+ borderRadius: 2
2451
+ },
2452
+ // ── tooltip ──
2453
+ floatingEdge: {
2454
+ padding: 16
2455
+ },
2456
+ edgeAlignLeft: {
2457
+ alignItems: 'flex-start'
2458
+ },
2459
+ edgeAlignRight: {
2460
+ alignItems: 'flex-end'
2461
+ },
2462
+ floatingBubble: {
2463
+ minWidth: 62,
2464
+ minHeight: 62,
2465
+ borderRadius: 31,
2466
+ alignItems: 'center',
2467
+ justifyContent: 'center',
2468
+ paddingHorizontal: 14,
2469
+ ...SHADOW
2470
+ },
2471
+ floatingBubbleText: {
2472
+ fontSize: 12,
2473
+ fontWeight: '800',
2474
+ textAlign: 'center'
2475
+ },
2476
+ floatingPanel: {
2477
+ width: '100%',
2478
+ maxWidth: 260,
2479
+ overflow: 'hidden',
2480
+ borderRadius: 12
2481
+ },
2482
+ floatingScroll: {
2483
+ flexShrink: 1
2484
+ },
2485
+ miniPopoverPanel: {
2486
+ width: '100%',
2487
+ maxWidth: 240,
2488
+ overflow: 'hidden',
2489
+ borderRadius: 12
2490
+ },
2491
+ tooltipCard: {
2492
+ width: '100%',
2493
+ maxHeight: '100%',
2494
+ backgroundColor: CARD_BG,
2495
+ borderRadius: 12,
2496
+ padding: 14,
2497
+ ...SHADOW
2498
+ },
2499
+ tooltipClosePos: {
2500
+ position: 'absolute',
2501
+ top: 4,
2502
+ right: 4
2503
+ },
2504
+ tooltipTitle: {
2505
+ fontSize: 13,
2506
+ fontWeight: '700',
2507
+ color: '#11151C',
2508
+ marginBottom: 4,
2509
+ paddingRight: 20
2510
+ },
2511
+ tooltipBody: {
2512
+ fontSize: 12,
2513
+ color: '#3A4250',
2514
+ lineHeight: 17
2515
+ },
2516
+ tooltipCta: {
2517
+ marginTop: 8
2518
+ },
2519
+ tooltipCtaText: {
2520
+ fontSize: 12,
2521
+ color: '#2F6BFF',
2522
+ fontWeight: '600'
2523
+ },
2524
+ anchoredTooltipRoot: {
2525
+ position: 'absolute',
2526
+ top: 0,
2527
+ right: 0,
2528
+ bottom: 0,
2529
+ left: 0,
2530
+ zIndex: 9999,
2531
+ elevation: 9999
2532
+ },
2533
+ coachmarkRoot: {
2534
+ flex: 1
2535
+ },
2536
+ coachmarkSpotlight: {
2537
+ borderWidth: 2,
2538
+ shadowColor: '#FFFFFF',
2539
+ shadowOpacity: 0.45,
2540
+ shadowRadius: 8,
2541
+ elevation: 2
2542
+ },
2543
+ coachmarkTooltipWrap: {
2544
+ position: 'absolute',
2545
+ zIndex: 2
2546
+ },
2547
+ coachmarkArrow: {
2548
+ position: 'absolute',
2549
+ width: 14,
2550
+ height: 14,
2551
+ transform: [{
2552
+ rotate: '45deg'
2553
+ }],
2554
+ zIndex: 0
2555
+ },
2556
+ coachmarkArrowTop: {
2557
+ top: -6
2558
+ },
2559
+ coachmarkArrowBottom: {
2560
+ bottom: -6
2561
+ },
2562
+ coachmarkArrowLeft: {
2563
+ left: -6
2564
+ },
2565
+ coachmarkArrowRight: {
2566
+ right: -6
2567
+ },
2568
+ coachmarkCard: {
2569
+ borderRadius: 14,
2570
+ padding: 16,
2571
+ overflow: 'hidden',
2572
+ zIndex: 1,
2573
+ ...SHADOW
2574
+ },
2575
+ coachmarkScroll: {
2576
+ flexShrink: 1
2577
+ },
2578
+ coachmarkEyebrow: {
2579
+ fontSize: 10,
2580
+ fontWeight: '800',
2581
+ letterSpacing: 0.8,
2582
+ marginBottom: 5
2583
+ },
2584
+ coachmarkActions: {
2585
+ alignItems: 'center',
2586
+ flexDirection: 'row',
2587
+ flexWrap: 'wrap',
2588
+ justifyContent: 'space-between',
2589
+ gap: 8,
2590
+ marginTop: 14
2591
+ },
2592
+ coachmarkNavActions: {
2593
+ alignItems: 'center',
2594
+ flexDirection: 'row',
2595
+ flexWrap: 'wrap',
2596
+ justifyContent: 'flex-end',
2597
+ gap: 6
2598
+ },
2599
+ coachmarkTextButton: {
2600
+ minHeight: 44,
2601
+ minWidth: 44,
2602
+ alignItems: 'center',
2603
+ justifyContent: 'center',
2604
+ paddingHorizontal: 8
2605
+ },
2606
+ coachmarkSecondaryText: {
2607
+ fontSize: 13,
2608
+ fontWeight: '700'
2609
+ },
2610
+ coachmarkPrimaryButton: {
2611
+ minHeight: 44,
2612
+ minWidth: 72,
2613
+ alignItems: 'center',
2614
+ justifyContent: 'center',
2615
+ borderRadius: 10,
2616
+ paddingHorizontal: 14
2617
+ },
2618
+ coachmarkPrimaryText: {
2619
+ fontSize: 13,
2620
+ fontWeight: '800'
2621
+ },
2622
+ // ── inline ──
2623
+ inlineCard: {
2624
+ width: '100%',
2625
+ borderRadius: 14,
2626
+ padding: 16,
2627
+ ...SHADOW
2628
+ },
2629
+ inlineClosePos: {
2630
+ position: 'absolute',
2631
+ top: 6,
2632
+ right: 6,
2633
+ zIndex: 1
2634
+ },
2635
+ // ── toast ──
2636
+ toastWrap: {
2637
+ paddingHorizontal: 16,
2638
+ paddingVertical: 12,
2639
+ alignItems: 'center'
2640
+ },
2641
+ toastCard: {
2642
+ width: '100%',
2643
+ maxWidth: 420,
2644
+ backgroundColor: '#1C1C1E',
2645
+ borderRadius: 12,
2646
+ paddingVertical: 12,
2647
+ paddingHorizontal: 16,
2648
+ ...SHADOW
2649
+ },
2650
+ toastScroll: {
2651
+ flexShrink: 1
2652
+ },
2653
+ toastTitle: {
2654
+ fontSize: 13,
2655
+ fontWeight: '700',
2656
+ color: '#FFFFFF',
2657
+ marginBottom: 2
2658
+ },
2659
+ toastBody: {
2660
+ fontSize: 13,
2661
+ color: 'rgba(255,255,255,0.8)'
2662
+ },
2663
+ toastCtaText: {
2664
+ fontSize: 13,
2665
+ color: '#60A5FA',
2666
+ fontWeight: '600',
2667
+ marginTop: 6
2668
+ }
2669
+ };
2670
+ //# sourceMappingURL=EngageInAppView.js.map