@crumbsdk/react-native 0.0.1-rc.3 → 0.0.1-rc.4

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 (356) hide show
  1. package/README.md +270 -8
  2. package/android/build.gradle +0 -1
  3. package/android/src/main/java/com/margelo/nitro/crumbsdk/reactnative/CrumbReactNative.kt +121 -3
  4. package/app.plugin.js +22 -0
  5. package/ios/CrumbReactNative.swift +135 -3
  6. package/lib/module/NativeCrumbReactNative.web.js +5 -1
  7. package/lib/module/NativeCrumbReactNative.web.js.map +1 -1
  8. package/lib/module/index.js +91 -1
  9. package/lib/module/index.js.map +1 -1
  10. package/lib/module/javascript-crash-capture.js +497 -0
  11. package/lib/module/javascript-crash-capture.js.map +1 -0
  12. package/lib/module/log-buffer.js +22 -2
  13. package/lib/module/log-buffer.js.map +1 -1
  14. package/lib/module/screen-context.js +127 -0
  15. package/lib/module/screen-context.js.map +1 -0
  16. package/lib/typescript/src/CrumbReactNative.nitro.d.ts +5 -1
  17. package/lib/typescript/src/CrumbReactNative.nitro.d.ts.map +1 -1
  18. package/lib/typescript/src/NativeCrumbReactNative.web.d.ts.map +1 -1
  19. package/lib/typescript/src/index.d.ts +7 -1
  20. package/lib/typescript/src/index.d.ts.map +1 -1
  21. package/lib/typescript/src/javascript-crash-capture.d.ts +74 -0
  22. package/lib/typescript/src/javascript-crash-capture.d.ts.map +1 -0
  23. package/lib/typescript/src/log-buffer.d.ts +1 -0
  24. package/lib/typescript/src/log-buffer.d.ts.map +1 -1
  25. package/lib/typescript/src/screen-context.d.ts +19 -0
  26. package/lib/typescript/src/screen-context.d.ts.map +1 -0
  27. package/lib/typescript/src/types.d.ts +38 -0
  28. package/lib/typescript/src/types.d.ts.map +1 -1
  29. package/native/ios/CrumbSDKCore.podspec +28 -0
  30. package/native/ios/CrumbSDKUI.podspec +38 -0
  31. package/native/ios/LICENSE +201 -0
  32. package/native/ios/PLCrashReporter/CrashReporter.xcframework/Info.plist +96 -0
  33. package/native/ios/PLCrashReporter/CrashReporter.xcframework/PrivacyInfo.xcprivacy +39 -0
  34. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/CrashReporter +0 -0
  35. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/CrashReporter.h +366 -0
  36. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashFeatureConfig.h +108 -0
  37. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashMacros.h +143 -0
  38. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashNamespace.h +320 -0
  39. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReport.h +193 -0
  40. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportApplicationInfo.h +52 -0
  41. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportBinaryImageInfo.h +76 -0
  42. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportExceptionInfo.h +59 -0
  43. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportFormatter.h +55 -0
  44. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportMachExceptionInfo.h +41 -0
  45. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportMachineInfo.h +64 -0
  46. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportProcessInfo.h +80 -0
  47. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportProcessorInfo.h +64 -0
  48. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportRegisterInfo.h +45 -0
  49. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportSignalInfo.h +50 -0
  50. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportStackFrameInfo.h +50 -0
  51. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportSymbolInfo.h +51 -0
  52. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportSystemInfo.h +158 -0
  53. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportTextFormatter.h +59 -0
  54. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportThreadInfo.h +75 -0
  55. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReporter.h +131 -0
  56. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReporterConfig.h +193 -0
  57. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Info.plist +0 -0
  58. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Modules/module.modulemap +8 -0
  59. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/PrivacyInfo.xcprivacy +39 -0
  60. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/CrashReporter +0 -0
  61. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/CrashReporter.h +366 -0
  62. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashFeatureConfig.h +108 -0
  63. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashMacros.h +143 -0
  64. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashNamespace.h +320 -0
  65. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReport.h +193 -0
  66. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportApplicationInfo.h +52 -0
  67. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportBinaryImageInfo.h +76 -0
  68. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportExceptionInfo.h +59 -0
  69. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportFormatter.h +55 -0
  70. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportMachExceptionInfo.h +41 -0
  71. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportMachineInfo.h +64 -0
  72. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportProcessInfo.h +80 -0
  73. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportProcessorInfo.h +64 -0
  74. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportRegisterInfo.h +45 -0
  75. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportSignalInfo.h +50 -0
  76. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportStackFrameInfo.h +50 -0
  77. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportSymbolInfo.h +51 -0
  78. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportSystemInfo.h +158 -0
  79. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportTextFormatter.h +59 -0
  80. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportThreadInfo.h +75 -0
  81. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReporter.h +131 -0
  82. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReporterConfig.h +193 -0
  83. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Modules/module.modulemap +8 -0
  84. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Resources/Info.plist +52 -0
  85. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Resources/PrivacyInfo.xcprivacy +39 -0
  86. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/CrashReporter +0 -0
  87. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/CrashReporter.h +366 -0
  88. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashFeatureConfig.h +108 -0
  89. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashMacros.h +143 -0
  90. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashNamespace.h +320 -0
  91. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReport.h +193 -0
  92. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportApplicationInfo.h +52 -0
  93. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportBinaryImageInfo.h +76 -0
  94. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportExceptionInfo.h +59 -0
  95. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportFormatter.h +55 -0
  96. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportMachExceptionInfo.h +41 -0
  97. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportMachineInfo.h +64 -0
  98. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportProcessInfo.h +80 -0
  99. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportProcessorInfo.h +64 -0
  100. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportRegisterInfo.h +45 -0
  101. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportSignalInfo.h +50 -0
  102. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportStackFrameInfo.h +50 -0
  103. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportSymbolInfo.h +51 -0
  104. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportSystemInfo.h +158 -0
  105. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportTextFormatter.h +59 -0
  106. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportThreadInfo.h +75 -0
  107. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReporter.h +131 -0
  108. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReporterConfig.h +193 -0
  109. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Modules/module.modulemap +8 -0
  110. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Resources/Info.plist +52 -0
  111. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Resources/PrivacyInfo.xcprivacy +39 -0
  112. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/CrashReporter +0 -0
  113. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/CrashReporter.h +366 -0
  114. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashFeatureConfig.h +108 -0
  115. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashMacros.h +143 -0
  116. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashNamespace.h +320 -0
  117. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReport.h +193 -0
  118. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportApplicationInfo.h +52 -0
  119. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportBinaryImageInfo.h +76 -0
  120. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportExceptionInfo.h +59 -0
  121. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportFormatter.h +55 -0
  122. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportMachExceptionInfo.h +41 -0
  123. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportMachineInfo.h +64 -0
  124. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportProcessInfo.h +80 -0
  125. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportProcessorInfo.h +64 -0
  126. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportRegisterInfo.h +45 -0
  127. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportSignalInfo.h +50 -0
  128. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportStackFrameInfo.h +50 -0
  129. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportSymbolInfo.h +51 -0
  130. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportSystemInfo.h +158 -0
  131. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportTextFormatter.h +59 -0
  132. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportThreadInfo.h +75 -0
  133. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReporter.h +131 -0
  134. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReporterConfig.h +193 -0
  135. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Modules/module.modulemap +8 -0
  136. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Resources/Info.plist +52 -0
  137. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Resources/PrivacyInfo.xcprivacy +39 -0
  138. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/CrashReporter +0 -0
  139. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/CrashReporter.h +366 -0
  140. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashFeatureConfig.h +108 -0
  141. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashMacros.h +143 -0
  142. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashNamespace.h +320 -0
  143. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReport.h +193 -0
  144. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportApplicationInfo.h +52 -0
  145. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportBinaryImageInfo.h +76 -0
  146. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportExceptionInfo.h +59 -0
  147. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportFormatter.h +55 -0
  148. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportMachExceptionInfo.h +41 -0
  149. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportMachineInfo.h +64 -0
  150. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportProcessInfo.h +80 -0
  151. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportProcessorInfo.h +64 -0
  152. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportRegisterInfo.h +45 -0
  153. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportSignalInfo.h +50 -0
  154. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportStackFrameInfo.h +50 -0
  155. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportSymbolInfo.h +51 -0
  156. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportSystemInfo.h +158 -0
  157. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportTextFormatter.h +59 -0
  158. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportThreadInfo.h +75 -0
  159. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReporter.h +131 -0
  160. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReporterConfig.h +193 -0
  161. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Info.plist +0 -0
  162. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Modules/module.modulemap +8 -0
  163. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/PrivacyInfo.xcprivacy +39 -0
  164. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeDirectory +0 -0
  165. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeRequirements +0 -0
  166. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeRequirements-1 +0 -0
  167. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeResources +462 -0
  168. package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeSignature +0 -0
  169. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/CrashReporter +0 -0
  170. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/CrashReporter.h +366 -0
  171. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashFeatureConfig.h +108 -0
  172. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashMacros.h +143 -0
  173. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashNamespace.h +320 -0
  174. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReport.h +193 -0
  175. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportApplicationInfo.h +52 -0
  176. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportBinaryImageInfo.h +76 -0
  177. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportExceptionInfo.h +59 -0
  178. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportFormatter.h +55 -0
  179. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportMachExceptionInfo.h +41 -0
  180. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportMachineInfo.h +64 -0
  181. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportProcessInfo.h +80 -0
  182. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportProcessorInfo.h +64 -0
  183. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportRegisterInfo.h +45 -0
  184. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportSignalInfo.h +50 -0
  185. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportStackFrameInfo.h +50 -0
  186. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportSymbolInfo.h +51 -0
  187. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportSystemInfo.h +158 -0
  188. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportTextFormatter.h +59 -0
  189. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportThreadInfo.h +75 -0
  190. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReporter.h +131 -0
  191. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReporterConfig.h +193 -0
  192. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Modules/module.modulemap +8 -0
  193. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Resources/Info.plist +48 -0
  194. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Resources/PrivacyInfo.xcprivacy +39 -0
  195. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/CrashReporter +0 -0
  196. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/CrashReporter.h +366 -0
  197. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashFeatureConfig.h +108 -0
  198. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashMacros.h +143 -0
  199. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashNamespace.h +320 -0
  200. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReport.h +193 -0
  201. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportApplicationInfo.h +52 -0
  202. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportBinaryImageInfo.h +76 -0
  203. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportExceptionInfo.h +59 -0
  204. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportFormatter.h +55 -0
  205. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportMachExceptionInfo.h +41 -0
  206. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportMachineInfo.h +64 -0
  207. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportProcessInfo.h +80 -0
  208. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportProcessorInfo.h +64 -0
  209. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportRegisterInfo.h +45 -0
  210. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportSignalInfo.h +50 -0
  211. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportStackFrameInfo.h +50 -0
  212. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportSymbolInfo.h +51 -0
  213. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportSystemInfo.h +158 -0
  214. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportTextFormatter.h +59 -0
  215. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportThreadInfo.h +75 -0
  216. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReporter.h +131 -0
  217. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReporterConfig.h +193 -0
  218. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Modules/module.modulemap +8 -0
  219. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Resources/Info.plist +48 -0
  220. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Resources/PrivacyInfo.xcprivacy +39 -0
  221. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/CrashReporter +0 -0
  222. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/CrashReporter.h +366 -0
  223. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashFeatureConfig.h +108 -0
  224. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashMacros.h +143 -0
  225. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashNamespace.h +320 -0
  226. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReport.h +193 -0
  227. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportApplicationInfo.h +52 -0
  228. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportBinaryImageInfo.h +76 -0
  229. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportExceptionInfo.h +59 -0
  230. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportFormatter.h +55 -0
  231. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportMachExceptionInfo.h +41 -0
  232. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportMachineInfo.h +64 -0
  233. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportProcessInfo.h +80 -0
  234. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportProcessorInfo.h +64 -0
  235. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportRegisterInfo.h +45 -0
  236. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportSignalInfo.h +50 -0
  237. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportStackFrameInfo.h +50 -0
  238. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportSymbolInfo.h +51 -0
  239. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportSystemInfo.h +158 -0
  240. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportTextFormatter.h +59 -0
  241. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportThreadInfo.h +75 -0
  242. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReporter.h +131 -0
  243. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReporterConfig.h +193 -0
  244. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Modules/module.modulemap +8 -0
  245. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Resources/Info.plist +48 -0
  246. package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Resources/PrivacyInfo.xcprivacy +39 -0
  247. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/CrashReporter +0 -0
  248. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/CrashReporter.h +366 -0
  249. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashFeatureConfig.h +108 -0
  250. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashMacros.h +143 -0
  251. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashNamespace.h +320 -0
  252. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReport.h +193 -0
  253. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportApplicationInfo.h +52 -0
  254. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportBinaryImageInfo.h +76 -0
  255. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportExceptionInfo.h +59 -0
  256. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportFormatter.h +55 -0
  257. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportMachExceptionInfo.h +41 -0
  258. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportMachineInfo.h +64 -0
  259. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportProcessInfo.h +80 -0
  260. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportProcessorInfo.h +64 -0
  261. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportRegisterInfo.h +45 -0
  262. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportSignalInfo.h +50 -0
  263. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportStackFrameInfo.h +50 -0
  264. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportSymbolInfo.h +51 -0
  265. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportSystemInfo.h +158 -0
  266. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportTextFormatter.h +59 -0
  267. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportThreadInfo.h +75 -0
  268. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReporter.h +131 -0
  269. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReporterConfig.h +193 -0
  270. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Info.plist +0 -0
  271. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Modules/module.modulemap +8 -0
  272. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/PrivacyInfo.xcprivacy +39 -0
  273. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/CrashReporter +0 -0
  274. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/CrashReporter.h +366 -0
  275. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashFeatureConfig.h +108 -0
  276. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashMacros.h +143 -0
  277. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashNamespace.h +320 -0
  278. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReport.h +193 -0
  279. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportApplicationInfo.h +52 -0
  280. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportBinaryImageInfo.h +76 -0
  281. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportExceptionInfo.h +59 -0
  282. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportFormatter.h +55 -0
  283. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportMachExceptionInfo.h +41 -0
  284. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportMachineInfo.h +64 -0
  285. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportProcessInfo.h +80 -0
  286. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportProcessorInfo.h +64 -0
  287. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportRegisterInfo.h +45 -0
  288. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportSignalInfo.h +50 -0
  289. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportStackFrameInfo.h +50 -0
  290. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportSymbolInfo.h +51 -0
  291. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportSystemInfo.h +158 -0
  292. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportTextFormatter.h +59 -0
  293. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportThreadInfo.h +75 -0
  294. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReporter.h +131 -0
  295. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReporterConfig.h +193 -0
  296. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Info.plist +0 -0
  297. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Modules/module.modulemap +8 -0
  298. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/PrivacyInfo.xcprivacy +39 -0
  299. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeDirectory +0 -0
  300. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeRequirements +0 -0
  301. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeRequirements-1 +0 -0
  302. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeResources +462 -0
  303. package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeSignature +0 -0
  304. package/native/ios/PLCrashReporter/LICENSE.txt +54 -0
  305. package/native/ios/PLCrashReporter/PLCrashReporter.podspec +19 -0
  306. package/native/ios/VERSION +1 -0
  307. package/native/ios/packages/ios/Sources/CrumbCore/Crumb.swift +108 -0
  308. package/native/ios/packages/ios/Sources/CrumbCore/CrumbConfiguration.swift +212 -0
  309. package/native/ios/packages/ios/Sources/CrumbCore/CrumbDiagnostics.swift +158 -0
  310. package/native/ios/packages/ios/Sources/CrumbCore/CrumbFailureStacks.swift +94 -0
  311. package/native/ios/packages/ios/Sources/CrumbCore/CrumbInfrastructureHealthProbe.swift +110 -0
  312. package/native/ios/packages/ios/Sources/CrumbCore/CrumbJavaScriptCrashRecovery.swift +136 -0
  313. package/native/ios/packages/ios/Sources/CrumbCore/CrumbJavaScriptCrashStore.swift +502 -0
  314. package/native/ios/packages/ios/Sources/CrumbCore/CrumbJavaScriptFailureContext.swift +166 -0
  315. package/native/ios/packages/ios/Sources/CrumbCore/CrumbLogs.swift +138 -0
  316. package/native/ios/packages/ios/Sources/CrumbCore/CrumbPolicy.swift +336 -0
  317. package/native/ios/packages/ios/Sources/CrumbCore/CrumbRendering.swift +68 -0
  318. package/native/ios/packages/ios/Sources/CrumbCore/CrumbReportEnvelope.swift +666 -0
  319. package/native/ios/packages/ios/Sources/CrumbCore/CrumbReportQueue.swift +543 -0
  320. package/native/ios/packages/ios/Sources/CrumbCore/CrumbReportUploader.swift +304 -0
  321. package/native/ios/packages/ios/Sources/CrumbCore/CrumbRuntime.swift +306 -0
  322. package/native/ios/packages/ios/Sources/CrumbCore/CrumbSDKVersion.swift +5 -0
  323. package/native/ios/packages/ios/Sources/CrumbCore/CrumbScreenContext.swift +29 -0
  324. package/native/ios/packages/ios/Sources/CrumbUI/CrumbDesign.swift +151 -0
  325. package/native/ios/packages/ios/Sources/CrumbUI/CrumbLocalization.swift +23 -0
  326. package/native/ios/packages/ios/Sources/CrumbUI/CrumbQualityInstrumentation.swift +30 -0
  327. package/native/ios/packages/ios/Sources/CrumbUI/CrumbRenderingMonitor.swift +40 -0
  328. package/native/ios/packages/ios/Sources/CrumbUI/CrumbReporter.swift +1705 -0
  329. package/native/ios/packages/ios/Sources/CrumbUI/CrumbReporterLifecycle.swift +119 -0
  330. package/native/ios/packages/ios/Sources/CrumbUI/CrumbScreenshotArtifact.swift +186 -0
  331. package/native/ios/packages/ios/Sources/CrumbUI/CrumbShakeGestureRecognizer.swift +62 -0
  332. package/native/ios/packages/ios/Sources/CrumbUI/CrumbUploadCoordinator.swift +113 -0
  333. package/native/ios/packages/ios/Sources/CrumbUI/CrumbWorkspacePolicyCoordinator.swift +86 -0
  334. package/native/ios/packages/ios/Sources/CrumbUI/OnDemandDiagnosticsCollector.swift +269 -0
  335. package/native/ios/packages/ios/Sources/CrumbUI/OnDemandLogCollector.swift +213 -0
  336. package/native/ios/packages/ios/Sources/CrumbUI/Resources/en.lproj/Localizable.strings +75 -0
  337. package/native/ios/provenance.json +8 -0
  338. package/nitrogen/generated/android/c++/JHybridCrumbReactNativeSpec.cpp +32 -3
  339. package/nitrogen/generated/android/c++/JHybridCrumbReactNativeSpec.hpp +5 -1
  340. package/nitrogen/generated/android/kotlin/com/margelo/nitro/crumbsdk/reactnative/HybridCrumbReactNativeSpec.kt +17 -1
  341. package/nitrogen/generated/ios/CrumbReactNative-Swift-Cxx-Bridge.hpp +9 -0
  342. package/nitrogen/generated/ios/c++/HybridCrumbReactNativeSpecSwift.hpp +30 -2
  343. package/nitrogen/generated/ios/swift/HybridCrumbReactNativeSpec.swift +5 -1
  344. package/nitrogen/generated/ios/swift/HybridCrumbReactNativeSpec_cxx.swift +55 -2
  345. package/nitrogen/generated/shared/c++/HybridCrumbReactNativeSpec.cpp +4 -0
  346. package/nitrogen/generated/shared/c++/HybridCrumbReactNativeSpec.hpp +5 -1
  347. package/package.json +15 -5
  348. package/plugin/podfile.cjs +21 -0
  349. package/scripts/ios.rb +23 -0
  350. package/src/CrumbReactNative.nitro.ts +5 -1
  351. package/src/NativeCrumbReactNative.web.ts +4 -0
  352. package/src/index.ts +218 -1
  353. package/src/javascript-crash-capture.ts +774 -0
  354. package/src/log-buffer.ts +27 -2
  355. package/src/screen-context.ts +154 -0
  356. package/src/types.ts +53 -0
@@ -55,7 +55,10 @@ final class CrumbReactNative: HybridCrumbReactNativeSpec {
55
55
  maximumEntries: logOptions.maximumEntries ?? 200,
56
56
  maximumBytes: logOptions.maximumBytes ?? 65_536,
57
57
  provider: logBuffer
58
- )
58
+ ),
59
+ javascriptCrashCaptureEnabled:
60
+ payload.diagnostics?.javascriptCrashCapture?.enabled ?? false,
61
+ renderingEnabled: payload.diagnostics?.renderingEnabled ?? false
59
62
  ),
60
63
  privacy: CrumbPrivacyOptions(
61
64
  maskAllTextInputs: payload.privacy?.maskAllTextInputs ?? true,
@@ -64,24 +67,52 @@ final class CrumbReactNative: HybridCrumbReactNativeSpec {
64
67
  ),
65
68
  upload: CrumbUploadOptions(
66
69
  ingestionURL: try payload.upload?.ingestionURL()
70
+ ),
71
+ reporter: CrumbReporterOptions(
72
+ theme: payload.reporter?.theme?.native ?? .system,
73
+ visibleFields: Set(
74
+ (payload.reporter?.visibleFields ?? [.category, .description]).map(\.native)
75
+ )
76
+ ),
77
+ evidence: Set(
78
+ (payload.evidence ?? EvidencePayload.allCases).map(\.native)
79
+ ),
80
+ application: CrumbApplicationMetadata(name: payload.application?.name),
81
+ customContext: CrumbCustomContextOptions(
82
+ values: payload.customContext?.values ?? [:],
83
+ allowedKeys: Set(payload.customContext?.allowedKeys ?? [])
84
+ ),
85
+ workspacePolicy: CrumbWorkspacePolicyOptions(
86
+ url: try payload.workspacePolicy?.url(),
87
+ timeout: payload.workspacePolicy?.timeoutMs
88
+ .map { TimeInterval(milliseconds: $0) } ?? 2
67
89
  )
68
90
  )
69
91
  )
70
92
  }
71
93
 
94
+ func setScreenContext(screenJson: String) {
95
+ Crumb.setScreenContext(screenJson)
96
+ }
97
+
98
+ func canCollectLogs() -> Bool {
99
+ Crumb.canCollectLogs()
100
+ }
101
+
72
102
  func installReporter() throws -> Promise<Bool> {
73
103
  Promise.async { @MainActor in
74
104
  Crumb.installReporter()
75
105
  }
76
106
  }
77
107
 
78
- func show() throws -> Promise<Bool> {
108
+ func show(screenJson: String) throws -> Promise<Bool> {
79
109
  Promise.async { @MainActor in
80
- Crumb.show()
110
+ Crumb.show(screenContextJSON: screenJson)
81
111
  }
82
112
  }
83
113
 
84
114
  func addLog(entryJson: String) throws {
115
+ guard Crumb.canCollectLogs() else { return }
85
116
  let data = Data(entryJson.utf8)
86
117
  let entry = try decoder.decode(LogEntryPayload.self, from: data)
87
118
  logBuffer.append(entry.native)
@@ -90,6 +121,16 @@ final class CrumbReactNative: HybridCrumbReactNativeSpec {
90
121
  func clearLogs() throws {
91
122
  logBuffer.clear()
92
123
  }
124
+
125
+ func recordJavaScriptCrash(recordJson: String) throws {
126
+ Crumb.recordJavaScriptCrash(recordJson)
127
+ }
128
+
129
+ func recoverJavaScriptCrashes() throws -> Promise<Bool> {
130
+ Promise.async {
131
+ await Crumb.recoverJavaScriptCrashes()
132
+ }
133
+ }
93
134
  }
94
135
 
95
136
  private struct ConfigurationPayload: Decodable {
@@ -100,6 +141,11 @@ private struct ConfigurationPayload: Decodable {
100
141
  let capture: CapturePayload?
101
142
  let diagnostics: DiagnosticsPayload?
102
143
  let privacy: PrivacyPayload?
144
+ let reporter: ReporterPayload?
145
+ let evidence: [EvidencePayload]?
146
+ let application: ApplicationPayload?
147
+ let customContext: CustomContextPayload?
148
+ let workspacePolicy: WorkspacePolicyPayload?
103
149
  let upload: UploadPayload?
104
150
  }
105
151
 
@@ -131,6 +177,8 @@ private struct DiagnosticsPayload: Decodable {
131
177
  let healthCheckUrl: String?
132
178
  let timeoutMs: Int?
133
179
  let logs: LogOptionsPayload?
180
+ let javascriptCrashCapture: JavaScriptCrashCapturePayload?
181
+ let renderingEnabled: Bool?
134
182
 
135
183
  func healthCheckURL() throws -> URL? {
136
184
  guard let healthCheckUrl else { return nil }
@@ -141,6 +189,10 @@ private struct DiagnosticsPayload: Decodable {
141
189
  }
142
190
  }
143
191
 
192
+ private struct JavaScriptCrashCapturePayload: Decodable {
193
+ let enabled: Bool?
194
+ }
195
+
144
196
  private struct LogOptionsPayload: Decodable {
145
197
  let enabled: Bool?
146
198
  let lookbackMs: Int?
@@ -165,6 +217,86 @@ private struct PrivacyPayload: Decodable {
165
217
  let maskScreenshotsBeforeUpload: Bool?
166
218
  }
167
219
 
220
+ private struct ReporterPayload: Decodable {
221
+ let theme: ThemePayload?
222
+ let visibleFields: [ReporterFieldPayload]?
223
+ }
224
+
225
+ private enum ThemePayload: String, Decodable {
226
+ case system
227
+ case light
228
+ case dark
229
+
230
+ var native: CrumbTheme {
231
+ switch self {
232
+ case .system: .system
233
+ case .light: .light
234
+ case .dark: .dark
235
+ }
236
+ }
237
+ }
238
+
239
+ private enum ReporterFieldPayload: String, Decodable {
240
+ case category
241
+ case description
242
+
243
+ var native: CrumbReporterField {
244
+ switch self {
245
+ case .category: .category
246
+ case .description: .description
247
+ }
248
+ }
249
+ }
250
+
251
+ private enum EvidencePayload: String, CaseIterable, Decodable {
252
+ case screenshot
253
+ case performance
254
+ case network
255
+ case logs
256
+ case threadStacks = "thread_stacks"
257
+ case healthCheck = "health_check"
258
+ case customContext = "custom_context"
259
+
260
+ var native: CrumbEvidenceCategory {
261
+ switch self {
262
+ case .screenshot: .screenshot
263
+ case .performance: .performance
264
+ case .network: .network
265
+ case .logs: .logs
266
+ case .threadStacks: .threadStacks
267
+ case .healthCheck: .healthCheck
268
+ case .customContext: .customContext
269
+ }
270
+ }
271
+ }
272
+
273
+ private struct ApplicationPayload: Decodable {
274
+ let name: String?
275
+ }
276
+
277
+ private struct CustomContextPayload: Decodable {
278
+ let values: [String: String]?
279
+ let allowedKeys: [String]?
280
+ }
281
+
282
+ private struct WorkspacePolicyPayload: Decodable {
283
+ let urlString: String?
284
+ let timeoutMs: Int?
285
+
286
+ enum CodingKeys: String, CodingKey {
287
+ case urlString = "url"
288
+ case timeoutMs
289
+ }
290
+
291
+ func url() throws -> URL? {
292
+ guard let urlString else { return nil }
293
+ guard let url = URL(string: urlString) else {
294
+ throw BridgeConfigurationError.invalidURL("workspacePolicy.url")
295
+ }
296
+ return url
297
+ }
298
+ }
299
+
168
300
  private struct UploadPayload: Decodable {
169
301
  let ingestionUrl: String?
170
302
 
@@ -9,10 +9,14 @@ const unsupportedModule = {
9
9
  start: () => {
10
10
  throw new Error(unsupportedMessage);
11
11
  },
12
+ setScreenContext: () => undefined,
13
+ canCollectLogs: () => false,
12
14
  installReporter: () => Promise.resolve(false),
13
15
  show: () => Promise.resolve(false),
14
16
  addLog: () => undefined,
15
- clearLogs: () => undefined
17
+ clearLogs: () => undefined,
18
+ recordJavaScriptCrash: () => undefined,
19
+ recoverJavaScriptCrashes: () => Promise.resolve(false)
16
20
  };
17
21
  export default unsupportedModule;
18
22
  //# sourceMappingURL=NativeCrumbReactNative.web.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["unsupportedMessage","unsupportedModule","name","dispose","undefined","equals","toString","start","Error","installReporter","Promise","resolve","show","addLog","clearLogs"],"sourceRoot":"../../src","sources":["NativeCrumbReactNative.web.ts"],"mappings":";;AAEA,MAAMA,kBAAkB,GACtB,wFAAwF;AAE1F,MAAMC,iBAAmC,GAAG;EAC1CC,IAAI,EAAE,kBAAkB;EACxBC,OAAO,EAAEA,CAAA,KAAMC,SAAS;EACxBC,MAAM,EAAEA,CAAA,KAAM,KAAK;EACnBC,QAAQ,EAAEA,CAAA,KAAM,oDAAoD;EACpEC,KAAK,EAAEA,CAAA,KAAM;IACX,MAAM,IAAIC,KAAK,CAACR,kBAAkB,CAAC;EACrC,CAAC;EACDS,eAAe,EAAEA,CAAA,KAAMC,OAAO,CAACC,OAAO,CAAC,KAAK,CAAC;EAC7CC,IAAI,EAAEA,CAAA,KAAMF,OAAO,CAACC,OAAO,CAAC,KAAK,CAAC;EAClCE,MAAM,EAAEA,CAAA,KAAMT,SAAS;EACvBU,SAAS,EAAEA,CAAA,KAAMV;AACnB,CAAC;AAED,eAAeH,iBAAiB","ignoreList":[]}
1
+ {"version":3,"names":["unsupportedMessage","unsupportedModule","name","dispose","undefined","equals","toString","start","Error","setScreenContext","canCollectLogs","installReporter","Promise","resolve","show","addLog","clearLogs","recordJavaScriptCrash","recoverJavaScriptCrashes"],"sourceRoot":"../../src","sources":["NativeCrumbReactNative.web.ts"],"mappings":";;AAEA,MAAMA,kBAAkB,GACtB,wFAAwF;AAE1F,MAAMC,iBAAmC,GAAG;EAC1CC,IAAI,EAAE,kBAAkB;EACxBC,OAAO,EAAEA,CAAA,KAAMC,SAAS;EACxBC,MAAM,EAAEA,CAAA,KAAM,KAAK;EACnBC,QAAQ,EAAEA,CAAA,KAAM,oDAAoD;EACpEC,KAAK,EAAEA,CAAA,KAAM;IACX,MAAM,IAAIC,KAAK,CAACR,kBAAkB,CAAC;EACrC,CAAC;EACDS,gBAAgB,EAAEA,CAAA,KAAML,SAAS;EACjCM,cAAc,EAAEA,CAAA,KAAM,KAAK;EAC3BC,eAAe,EAAEA,CAAA,KAAMC,OAAO,CAACC,OAAO,CAAC,KAAK,CAAC;EAC7CC,IAAI,EAAEA,CAAA,KAAMF,OAAO,CAACC,OAAO,CAAC,KAAK,CAAC;EAClCE,MAAM,EAAEA,CAAA,KAAMX,SAAS;EACvBY,SAAS,EAAEA,CAAA,KAAMZ,SAAS;EAC1Ba,qBAAqB,EAAEA,CAAA,KAAMb,SAAS;EACtCc,wBAAwB,EAAEA,CAAA,KAAMN,OAAO,CAACC,OAAO,CAAC,KAAK;AACvD,CAAC;AAED,eAAeZ,iBAAiB","ignoreList":[]}
@@ -1,6 +1,9 @@
1
1
  "use strict";
2
2
 
3
3
  import NativeCrumbReactNative from './NativeCrumbReactNative';
4
+ import { currentScreenJson, setScreen, trackReactNavigation, useExpoRouterScreen } from "./screen-context.js";
5
+ export { setScreen, trackReactNavigation, useExpoRouterScreen };
6
+ import { configureJavaScriptCrashCapture, recoverJavaScriptCrashes } from "./javascript-crash-capture.js";
4
7
  import { clearLogs, configureLogBuffer, disableConsoleCapture, enableConsoleCapture, markNativeStarted, writeLog } from "./log-buffer.js";
5
8
  export async function start(configuration) {
6
9
  validateConfiguration(configuration);
@@ -13,12 +16,16 @@ export async function start(configuration) {
13
16
  } else {
14
17
  disableConsoleCapture();
15
18
  }
19
+ configureJavaScriptCrashCapture(configuration.diagnostics?.javascriptCrashCapture, configuration);
20
+ if (configuration.diagnostics?.javascriptCrashCapture?.enabled) {
21
+ await recoverJavaScriptCrashes();
22
+ }
16
23
  }
17
24
  export function installReporter() {
18
25
  return NativeCrumbReactNative.installReporter();
19
26
  }
20
27
  export function show() {
21
- return NativeCrumbReactNative.show();
28
+ return NativeCrumbReactNative.show(currentScreenJson());
22
29
  }
23
30
  export function log(level, message, metadata) {
24
31
  if (!message.trim()) {
@@ -40,6 +47,86 @@ function validateConfiguration(configuration) {
40
47
  assertPositiveInteger(configuration.diagnostics?.logs?.lookbackMs, 'diagnostics.logs.lookbackMs');
41
48
  assertPositiveInteger(configuration.diagnostics?.logs?.maximumEntries, 'diagnostics.logs.maximumEntries');
42
49
  assertPositiveInteger(configuration.diagnostics?.logs?.maximumBytes, 'diagnostics.logs.maximumBytes');
50
+ if (configuration.diagnostics?.renderingEnabled !== undefined && typeof configuration.diagnostics.renderingEnabled !== 'boolean') {
51
+ throw new TypeError('Crumb diagnostics.renderingEnabled must be a boolean.');
52
+ }
53
+ assertJavaScriptCrashCapture(configuration.diagnostics?.javascriptCrashCapture);
54
+ if (configuration.reporter?.theme !== undefined && !['system', 'light', 'dark'].includes(configuration.reporter.theme)) {
55
+ throw new TypeError('Crumb reporter.theme is unsupported.');
56
+ }
57
+ assertReporterFields(configuration.reporter?.visibleFields);
58
+ assertEvidence(configuration.evidence);
59
+ assertApplicationMetadata(configuration.application?.name);
60
+ assertCustomContext(configuration.customContext);
61
+ assertWorkspacePolicy(configuration.workspacePolicy);
62
+ }
63
+ function assertJavaScriptCrashCapture(value) {
64
+ if (value === undefined) return;
65
+ assertPositiveInteger(value.maximumBreadcrumbs, 'diagnostics.javascriptCrashCapture.maximumBreadcrumbs');
66
+ assertPositiveInteger(value.maximumBreadcrumbBytes, 'diagnostics.javascriptCrashCapture.maximumBreadcrumbBytes');
67
+ if (value.maximumBreadcrumbs !== undefined && value.maximumBreadcrumbs > 50) {
68
+ throw new TypeError('Crumb diagnostics.javascriptCrashCapture.maximumBreadcrumbs must be at most 50.');
69
+ }
70
+ if (value.maximumBreadcrumbBytes !== undefined && value.maximumBreadcrumbBytes > 65_536) {
71
+ throw new TypeError('Crumb diagnostics.javascriptCrashCapture.maximumBreadcrumbBytes must be at most 65536.');
72
+ }
73
+ }
74
+ function assertReporterFields(value) {
75
+ if (value === undefined) return;
76
+ if (new Set(value).size !== value.length || value.some(field => !['category', 'description'].includes(field)) || !value.includes('description')) {
77
+ throw new TypeError('Crumb reporter.visibleFields must contain unique supported fields including description.');
78
+ }
79
+ }
80
+ function assertEvidence(value) {
81
+ if (value === undefined) return;
82
+ const supported = ['screenshot', 'performance', 'network', 'logs', 'thread_stacks', 'health_check', 'custom_context'];
83
+ if (new Set(value).size !== value.length || value.some(item => !supported.includes(item))) {
84
+ throw new TypeError('Crumb evidence must contain unique supported categories.');
85
+ }
86
+ }
87
+ function assertApplicationMetadata(value) {
88
+ if (value === undefined) return;
89
+ if (typeof value !== 'string' || !value.trim() || value.length > 256 || hasControlCharacters(value)) {
90
+ throw new TypeError('Crumb application.name must be printable and at most 256 characters.');
91
+ }
92
+ }
93
+ function assertCustomContext(value) {
94
+ if (value === undefined) return;
95
+ const allowedKeys = value.allowedKeys ?? [];
96
+ const values = value.values ?? {};
97
+ if (!Array.isArray(allowedKeys) || new Set(allowedKeys).size !== allowedKeys.length || allowedKeys.length > 16 || allowedKeys.some(key => !isValidContextKey(key))) {
98
+ throw new TypeError('Crumb customContext.allowedKeys contains an invalid key.');
99
+ }
100
+ if (values === null || typeof values !== 'object' || Array.isArray(values)) {
101
+ throw new TypeError('Crumb customContext.values must be a string map.');
102
+ }
103
+ const entries = Object.entries(values);
104
+ if (entries.length > 16 || entries.some(([key, item]) => !isValidContextKey(key) || typeof item !== 'string')) {
105
+ throw new TypeError('Crumb customContext.values must contain bounded string values.');
106
+ }
107
+ }
108
+ function assertWorkspacePolicy(value) {
109
+ if (value === undefined) return;
110
+ assertPositiveInteger(value.timeoutMs, 'workspacePolicy.timeoutMs');
111
+ if (value.timeoutMs !== undefined && (value.timeoutMs < 250 || value.timeoutMs > 5000)) {
112
+ throw new TypeError('Crumb workspacePolicy.timeoutMs must be between 250 and 5000.');
113
+ }
114
+ if (value.url === undefined) return;
115
+ let url;
116
+ try {
117
+ url = new URL(value.url);
118
+ } catch {
119
+ throw new TypeError('Crumb workspacePolicy.url must be a valid HTTP or HTTPS URL.');
120
+ }
121
+ if (!['http:', 'https:'].includes(url.protocol) || url.username || url.password || url.search || url.hash) {
122
+ throw new TypeError('Crumb workspacePolicy.url must be an HTTP or HTTPS URL without credentials or query values.');
123
+ }
124
+ }
125
+ function isValidContextKey(value) {
126
+ return typeof value === 'string' && value.length <= 64 && /^[A-Za-z][A-Za-z0-9_.-]*$/.test(value);
127
+ }
128
+ function hasControlCharacters(value) {
129
+ return [...value].some(character => character < ' ' || character === '\u007f');
43
130
  }
44
131
  function assertPositiveInteger(value, field) {
45
132
  if (value === undefined) return;
@@ -48,6 +135,9 @@ function assertPositiveInteger(value, field) {
48
135
  }
49
136
  }
50
137
  const Crumb = Object.freeze({
138
+ setScreen,
139
+ trackReactNavigation,
140
+ useExpoRouterScreen,
51
141
  start,
52
142
  installReporter,
53
143
  show,
@@ -1 +1 @@
1
- {"version":3,"names":["NativeCrumbReactNative","clearLogs","configureLogBuffer","disableConsoleCapture","enableConsoleCapture","markNativeStarted","writeLog","start","configuration","validateConfiguration","logOptions","diagnostics","logs","JSON","stringify","captureConsole","installReporter","show","log","level","message","metadata","trim","TypeError","projectKey","environment","assertPositiveInteger","capture","maximumScreenshotDimension","maximumScreenshotBytes","timeoutMs","lookbackMs","maximumEntries","maximumBytes","value","field","undefined","Number","isSafeInteger","Crumb","Object","freeze"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":";;AAAA,OAAOA,sBAAsB,MAAM,0BAA0B;AAC7D,SACEC,SAAS,EACTC,kBAAkB,EAClBC,qBAAqB,EACrBC,oBAAoB,EACpBC,iBAAiB,EACjBC,QAAQ,QACH,iBAAc;AAoBrB,OAAO,eAAeC,KAAKA,CAACC,aAAiC,EAAiB;EAC5EC,qBAAqB,CAACD,aAAa,CAAC;EACpC,MAAME,UAAU,GAAGF,aAAa,CAACG,WAAW,EAAEC,IAAI;EAClDV,kBAAkB,CAACQ,UAAU,CAAC;EAC9BV,sBAAsB,CAACO,KAAK,CAACM,IAAI,CAACC,SAAS,CAACN,aAAa,CAAC,CAAC;EAC3DH,iBAAiB,CAAC,CAAC;EAEnB,IAAIK,UAAU,EAAEK,cAAc,EAAE;IAC9BX,oBAAoB,CAAC,CAAC;EACxB,CAAC,MAAM;IACLD,qBAAqB,CAAC,CAAC;EACzB;AACF;AAEA,OAAO,SAASa,eAAeA,CAAA,EAAqB;EAClD,OAAOhB,sBAAsB,CAACgB,eAAe,CAAC,CAAC;AACjD;AAEA,OAAO,SAASC,IAAIA,CAAA,EAAqB;EACvC,OAAOjB,sBAAsB,CAACiB,IAAI,CAAC,CAAC;AACtC;AAEA,OAAO,SAASC,GAAGA,CACjBC,KAAoB,EACpBC,OAAe,EACfC,QAA2B,EACrB;EACN,IAAI,CAACD,OAAO,CAACE,IAAI,CAAC,CAAC,EAAE;IACnB,MAAM,IAAIC,SAAS,CAAC,sCAAsC,CAAC;EAC7D;EACAjB,QAAQ,CAACa,KAAK,EAAEC,OAAO,EAAEC,QAAQ,CAAC;AACpC;AAEA,SAASpB,SAAS,EAAEE,qBAAqB,EAAEC,oBAAoB;AAE/D,SAASK,qBAAqBA,CAACD,aAAiC,EAAQ;EACtE,IAAI,CAACA,aAAa,CAACgB,UAAU,EAAEF,IAAI,CAAC,CAAC,EAAE;IACrC,MAAM,IAAIC,SAAS,CAAC,qCAAqC,CAAC;EAC5D;EACA,IAAI,CAACf,aAAa,CAACiB,WAAW,EAAEH,IAAI,CAAC,CAAC,EAAE;IACtC,MAAM,IAAIC,SAAS,CAAC,sCAAsC,CAAC;EAC7D;EAEAG,qBAAqB,CACnBlB,aAAa,CAACmB,OAAO,EAAEC,0BAA0B,EACjD,oCACF,CAAC;EACDF,qBAAqB,CACnBlB,aAAa,CAACmB,OAAO,EAAEE,sBAAsB,EAC7C,gCACF,CAAC;EACDH,qBAAqB,CACnBlB,aAAa,CAACG,WAAW,EAAEmB,SAAS,EACpC,uBACF,CAAC;EACDJ,qBAAqB,CACnBlB,aAAa,CAACG,WAAW,EAAEC,IAAI,EAAEmB,UAAU,EAC3C,6BACF,CAAC;EACDL,qBAAqB,CACnBlB,aAAa,CAACG,WAAW,EAAEC,IAAI,EAAEoB,cAAc,EAC/C,iCACF,CAAC;EACDN,qBAAqB,CACnBlB,aAAa,CAACG,WAAW,EAAEC,IAAI,EAAEqB,YAAY,EAC7C,+BACF,CAAC;AACH;AAEA,SAASP,qBAAqBA,CAACQ,KAAyB,EAAEC,KAAa,EAAQ;EAC7E,IAAID,KAAK,KAAKE,SAAS,EAAE;EACzB,IAAI,CAACC,MAAM,CAACC,aAAa,CAACJ,KAAK,CAAC,IAAIA,KAAK,IAAI,CAAC,EAAE;IAC9C,MAAM,IAAIX,SAAS,CAAC,SAASY,KAAK,8BAA8B,CAAC;EACnE;AACF;AAEA,MAAMI,KAAK,GAAGC,MAAM,CAACC,MAAM,CAAC;EAC1BlC,KAAK;EACLS,eAAe;EACfC,IAAI;EACJC,GAAG;EACHjB,SAAS;EACTG,oBAAoB;EACpBD;AACF,CAAC,CAAC;AAEF,eAAeoC,KAAK","ignoreList":[]}
1
+ {"version":3,"names":["NativeCrumbReactNative","currentScreenJson","setScreen","trackReactNavigation","useExpoRouterScreen","configureJavaScriptCrashCapture","recoverJavaScriptCrashes","clearLogs","configureLogBuffer","disableConsoleCapture","enableConsoleCapture","markNativeStarted","writeLog","start","configuration","validateConfiguration","logOptions","diagnostics","logs","JSON","stringify","captureConsole","javascriptCrashCapture","enabled","installReporter","show","log","level","message","metadata","trim","TypeError","projectKey","environment","assertPositiveInteger","capture","maximumScreenshotDimension","maximumScreenshotBytes","timeoutMs","lookbackMs","maximumEntries","maximumBytes","renderingEnabled","undefined","assertJavaScriptCrashCapture","reporter","theme","includes","assertReporterFields","visibleFields","assertEvidence","evidence","assertApplicationMetadata","application","name","assertCustomContext","customContext","assertWorkspacePolicy","workspacePolicy","value","maximumBreadcrumbs","maximumBreadcrumbBytes","Set","size","length","some","field","supported","item","hasControlCharacters","allowedKeys","values","Array","isArray","key","isValidContextKey","entries","Object","url","URL","protocol","username","password","search","hash","test","character","Number","isSafeInteger","Crumb","freeze"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":";;AAAA,OAAOA,sBAAsB,MAAM,0BAA0B;AAC7D,SACEC,iBAAiB,EACjBC,SAAS,EACTC,oBAAoB,EACpBC,mBAAmB,QACd,qBAAkB;AACzB,SAASF,SAAS,EAAEC,oBAAoB,EAAEC,mBAAmB;AAE7D,SACEC,+BAA+B,EAC/BC,wBAAwB,QACnB,+BAA4B;AACnC,SACEC,SAAS,EACTC,kBAAkB,EAClBC,qBAAqB,EACrBC,oBAAoB,EACpBC,iBAAiB,EACjBC,QAAQ,QACH,iBAAc;AA6BrB,OAAO,eAAeC,KAAKA,CAACC,aAAiC,EAAiB;EAC5EC,qBAAqB,CAACD,aAAa,CAAC;EACpC,MAAME,UAAU,GAAGF,aAAa,CAACG,WAAW,EAAEC,IAAI;EAClDV,kBAAkB,CAACQ,UAAU,CAAC;EAC9BhB,sBAAsB,CAACa,KAAK,CAACM,IAAI,CAACC,SAAS,CAACN,aAAa,CAAC,CAAC;EAC3DH,iBAAiB,CAAC,CAAC;EAEnB,IAAIK,UAAU,EAAEK,cAAc,EAAE;IAC9BX,oBAAoB,CAAC,CAAC;EACxB,CAAC,MAAM;IACLD,qBAAqB,CAAC,CAAC;EACzB;EAEAJ,+BAA+B,CAC7BS,aAAa,CAACG,WAAW,EAAEK,sBAAsB,EACjDR,aACF,CAAC;EACD,IAAIA,aAAa,CAACG,WAAW,EAAEK,sBAAsB,EAAEC,OAAO,EAAE;IAC9D,MAAMjB,wBAAwB,CAAC,CAAC;EAClC;AACF;AAEA,OAAO,SAASkB,eAAeA,CAAA,EAAqB;EAClD,OAAOxB,sBAAsB,CAACwB,eAAe,CAAC,CAAC;AACjD;AAEA,OAAO,SAASC,IAAIA,CAAA,EAAqB;EACvC,OAAOzB,sBAAsB,CAACyB,IAAI,CAACxB,iBAAiB,CAAC,CAAC,CAAC;AACzD;AAEA,OAAO,SAASyB,GAAGA,CACjBC,KAAoB,EACpBC,OAAe,EACfC,QAA2B,EACrB;EACN,IAAI,CAACD,OAAO,CAACE,IAAI,CAAC,CAAC,EAAE;IACnB,MAAM,IAAIC,SAAS,CAAC,sCAAsC,CAAC;EAC7D;EACAnB,QAAQ,CAACe,KAAK,EAAEC,OAAO,EAAEC,QAAQ,CAAC;AACpC;AAEA,SAAStB,SAAS,EAAEE,qBAAqB,EAAEC,oBAAoB;AAE/D,SAASK,qBAAqBA,CAACD,aAAiC,EAAQ;EACtE,IAAI,CAACA,aAAa,CAACkB,UAAU,EAAEF,IAAI,CAAC,CAAC,EAAE;IACrC,MAAM,IAAIC,SAAS,CAAC,qCAAqC,CAAC;EAC5D;EACA,IAAI,CAACjB,aAAa,CAACmB,WAAW,EAAEH,IAAI,CAAC,CAAC,EAAE;IACtC,MAAM,IAAIC,SAAS,CAAC,sCAAsC,CAAC;EAC7D;EAEAG,qBAAqB,CACnBpB,aAAa,CAACqB,OAAO,EAAEC,0BAA0B,EACjD,oCACF,CAAC;EACDF,qBAAqB,CACnBpB,aAAa,CAACqB,OAAO,EAAEE,sBAAsB,EAC7C,gCACF,CAAC;EACDH,qBAAqB,CACnBpB,aAAa,CAACG,WAAW,EAAEqB,SAAS,EACpC,uBACF,CAAC;EACDJ,qBAAqB,CACnBpB,aAAa,CAACG,WAAW,EAAEC,IAAI,EAAEqB,UAAU,EAC3C,6BACF,CAAC;EACDL,qBAAqB,CACnBpB,aAAa,CAACG,WAAW,EAAEC,IAAI,EAAEsB,cAAc,EAC/C,iCACF,CAAC;EACDN,qBAAqB,CACnBpB,aAAa,CAACG,WAAW,EAAEC,IAAI,EAAEuB,YAAY,EAC7C,+BACF,CAAC;EACD,IACE3B,aAAa,CAACG,WAAW,EAAEyB,gBAAgB,KAAKC,SAAS,IACzD,OAAO7B,aAAa,CAACG,WAAW,CAACyB,gBAAgB,KAAK,SAAS,EAC/D;IACA,MAAM,IAAIX,SAAS,CACjB,uDACF,CAAC;EACH;EACAa,4BAA4B,CAC1B9B,aAAa,CAACG,WAAW,EAAEK,sBAC7B,CAAC;EAED,IACER,aAAa,CAAC+B,QAAQ,EAAEC,KAAK,KAAKH,SAAS,IAC3C,CAAC,CAAC,QAAQ,EAAE,OAAO,EAAE,MAAM,CAAC,CAACI,QAAQ,CAACjC,aAAa,CAAC+B,QAAQ,CAACC,KAAK,CAAC,EACnE;IACA,MAAM,IAAIf,SAAS,CAAC,sCAAsC,CAAC;EAC7D;EACAiB,oBAAoB,CAAClC,aAAa,CAAC+B,QAAQ,EAAEI,aAAa,CAAC;EAC3DC,cAAc,CAACpC,aAAa,CAACqC,QAAQ,CAAC;EACtCC,yBAAyB,CAACtC,aAAa,CAACuC,WAAW,EAAEC,IAAI,CAAC;EAC1DC,mBAAmB,CAACzC,aAAa,CAAC0C,aAAa,CAAC;EAChDC,qBAAqB,CAAC3C,aAAa,CAAC4C,eAAe,CAAC;AACtD;AAEA,SAASd,4BAA4BA,CACnCe,KAAqD,EAC/C;EACN,IAAIA,KAAK,KAAKhB,SAAS,EAAE;EACzBT,qBAAqB,CACnByB,KAAK,CAACC,kBAAkB,EACxB,uDACF,CAAC;EACD1B,qBAAqB,CACnByB,KAAK,CAACE,sBAAsB,EAC5B,2DACF,CAAC;EACD,IAAIF,KAAK,CAACC,kBAAkB,KAAKjB,SAAS,IAAIgB,KAAK,CAACC,kBAAkB,GAAG,EAAE,EAAE;IAC3E,MAAM,IAAI7B,SAAS,CACjB,iFACF,CAAC;EACH;EACA,IACE4B,KAAK,CAACE,sBAAsB,KAAKlB,SAAS,IAC1CgB,KAAK,CAACE,sBAAsB,GAAG,MAAM,EACrC;IACA,MAAM,IAAI9B,SAAS,CACjB,wFACF,CAAC;EACH;AACF;AAEA,SAASiB,oBAAoBA,CAACW,KAAoC,EAAQ;EACxE,IAAIA,KAAK,KAAKhB,SAAS,EAAE;EACzB,IACE,IAAImB,GAAG,CAACH,KAAK,CAAC,CAACI,IAAI,KAAKJ,KAAK,CAACK,MAAM,IACpCL,KAAK,CAACM,IAAI,CAAEC,KAAK,IAAK,CAAC,CAAC,UAAU,EAAE,aAAa,CAAC,CAACnB,QAAQ,CAACmB,KAAK,CAAC,CAAC,IACnE,CAACP,KAAK,CAACZ,QAAQ,CAAC,aAAa,CAAC,EAC9B;IACA,MAAM,IAAIhB,SAAS,CACjB,0FACF,CAAC;EACH;AACF;AAEA,SAASmB,cAAcA,CAACS,KAAoC,EAAQ;EAClE,IAAIA,KAAK,KAAKhB,SAAS,EAAE;EACzB,MAAMwB,SAAS,GAAG,CAChB,YAAY,EACZ,aAAa,EACb,SAAS,EACT,MAAM,EACN,eAAe,EACf,cAAc,EACd,gBAAgB,CACjB;EACD,IACE,IAAIL,GAAG,CAACH,KAAK,CAAC,CAACI,IAAI,KAAKJ,KAAK,CAACK,MAAM,IACpCL,KAAK,CAACM,IAAI,CAAEG,IAAI,IAAK,CAACD,SAAS,CAACpB,QAAQ,CAACqB,IAAI,CAAC,CAAC,EAC/C;IACA,MAAM,IAAIrC,SAAS,CACjB,0DACF,CAAC;EACH;AACF;AAEA,SAASqB,yBAAyBA,CAACO,KAAyB,EAAQ;EAClE,IAAIA,KAAK,KAAKhB,SAAS,EAAE;EACzB,IACE,OAAOgB,KAAK,KAAK,QAAQ,IACzB,CAACA,KAAK,CAAC7B,IAAI,CAAC,CAAC,IACb6B,KAAK,CAACK,MAAM,GAAG,GAAG,IAClBK,oBAAoB,CAACV,KAAK,CAAC,EAC3B;IACA,MAAM,IAAI5B,SAAS,CACjB,sEACF,CAAC;EACH;AACF;AAEA,SAASwB,mBAAmBA,CAACI,KAA0C,EAAQ;EAC7E,IAAIA,KAAK,KAAKhB,SAAS,EAAE;EACzB,MAAM2B,WAAW,GAAGX,KAAK,CAACW,WAAW,IAAI,EAAE;EAC3C,MAAMC,MAAM,GAAGZ,KAAK,CAACY,MAAM,IAAI,CAAC,CAAC;EACjC,IACE,CAACC,KAAK,CAACC,OAAO,CAACH,WAAW,CAAC,IAC3B,IAAIR,GAAG,CAACQ,WAAW,CAAC,CAACP,IAAI,KAAKO,WAAW,CAACN,MAAM,IAChDM,WAAW,CAACN,MAAM,GAAG,EAAE,IACvBM,WAAW,CAACL,IAAI,CAAES,GAAG,IAAK,CAACC,iBAAiB,CAACD,GAAG,CAAC,CAAC,EAClD;IACA,MAAM,IAAI3C,SAAS,CACjB,0DACF,CAAC;EACH;EACA,IAAIwC,MAAM,KAAK,IAAI,IAAI,OAAOA,MAAM,KAAK,QAAQ,IAAIC,KAAK,CAACC,OAAO,CAACF,MAAM,CAAC,EAAE;IAC1E,MAAM,IAAIxC,SAAS,CAAC,kDAAkD,CAAC;EACzE;EACA,MAAM6C,OAAO,GAAGC,MAAM,CAACD,OAAO,CAACL,MAAM,CAAC;EACtC,IACEK,OAAO,CAACZ,MAAM,GAAG,EAAE,IACnBY,OAAO,CAACX,IAAI,CACV,CAAC,CAACS,GAAG,EAAEN,IAAI,CAAC,KAAK,CAACO,iBAAiB,CAACD,GAAG,CAAC,IAAI,OAAON,IAAI,KAAK,QAC9D,CAAC,EACD;IACA,MAAM,IAAIrC,SAAS,CACjB,gEACF,CAAC;EACH;AACF;AAEA,SAAS0B,qBAAqBA,CAC5BE,KAA4C,EACtC;EACN,IAAIA,KAAK,KAAKhB,SAAS,EAAE;EACzBT,qBAAqB,CAACyB,KAAK,CAACrB,SAAS,EAAE,2BAA2B,CAAC;EACnE,IACEqB,KAAK,CAACrB,SAAS,KAAKK,SAAS,KAC5BgB,KAAK,CAACrB,SAAS,GAAG,GAAG,IAAIqB,KAAK,CAACrB,SAAS,GAAG,IAAI,CAAC,EACjD;IACA,MAAM,IAAIP,SAAS,CACjB,+DACF,CAAC;EACH;EACA,IAAI4B,KAAK,CAACmB,GAAG,KAAKnC,SAAS,EAAE;EAC7B,IAAImC,GAAuB;EAC3B,IAAI;IACFA,GAAG,GAAG,IAAIC,GAAG,CAACpB,KAAK,CAACmB,GAAG,CAAkC;EAC3D,CAAC,CAAC,MAAM;IACN,MAAM,IAAI/C,SAAS,CACjB,8DACF,CAAC;EACH;EACA,IACE,CAAC,CAAC,OAAO,EAAE,QAAQ,CAAC,CAACgB,QAAQ,CAAC+B,GAAG,CAACE,QAAQ,CAAC,IAC3CF,GAAG,CAACG,QAAQ,IACZH,GAAG,CAACI,QAAQ,IACZJ,GAAG,CAACK,MAAM,IACVL,GAAG,CAACM,IAAI,EACR;IACA,MAAM,IAAIrD,SAAS,CACjB,6FACF,CAAC;EACH;AACF;AAUA,SAAS4C,iBAAiBA,CAAChB,KAAc,EAAmB;EAC1D,OACE,OAAOA,KAAK,KAAK,QAAQ,IACzBA,KAAK,CAACK,MAAM,IAAI,EAAE,IAClB,2BAA2B,CAACqB,IAAI,CAAC1B,KAAK,CAAC;AAE3C;AAEA,SAASU,oBAAoBA,CAACV,KAAa,EAAW;EACpD,OAAO,CAAC,GAAGA,KAAK,CAAC,CAACM,IAAI,CACnBqB,SAAS,IAAKA,SAAS,GAAG,GAAG,IAAIA,SAAS,KAAK,QAClD,CAAC;AACH;AAEA,SAASpD,qBAAqBA,CAACyB,KAAyB,EAAEO,KAAa,EAAQ;EAC7E,IAAIP,KAAK,KAAKhB,SAAS,EAAE;EACzB,IAAI,CAAC4C,MAAM,CAACC,aAAa,CAAC7B,KAAK,CAAC,IAAIA,KAAK,IAAI,CAAC,EAAE;IAC9C,MAAM,IAAI5B,SAAS,CAAC,SAASmC,KAAK,8BAA8B,CAAC;EACnE;AACF;AAEA,MAAMuB,KAAK,GAAGZ,MAAM,CAACa,MAAM,CAAC;EAC1BxF,SAAS;EACTC,oBAAoB;EACpBC,mBAAmB;EACnBS,KAAK;EACLW,eAAe;EACfC,IAAI;EACJC,GAAG;EACHnB,SAAS;EACTG,oBAAoB;EACpBD;AACF,CAAC,CAAC;AAEF,eAAegF,KAAK","ignoreList":[]}