@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.
- package/README.md +270 -8
- package/android/build.gradle +0 -1
- package/android/src/main/java/com/margelo/nitro/crumbsdk/reactnative/CrumbReactNative.kt +121 -3
- package/app.plugin.js +22 -0
- package/ios/CrumbReactNative.swift +135 -3
- package/lib/module/NativeCrumbReactNative.web.js +5 -1
- package/lib/module/NativeCrumbReactNative.web.js.map +1 -1
- package/lib/module/index.js +91 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/javascript-crash-capture.js +497 -0
- package/lib/module/javascript-crash-capture.js.map +1 -0
- package/lib/module/log-buffer.js +22 -2
- package/lib/module/log-buffer.js.map +1 -1
- package/lib/module/screen-context.js +127 -0
- package/lib/module/screen-context.js.map +1 -0
- package/lib/typescript/src/CrumbReactNative.nitro.d.ts +5 -1
- package/lib/typescript/src/CrumbReactNative.nitro.d.ts.map +1 -1
- package/lib/typescript/src/NativeCrumbReactNative.web.d.ts.map +1 -1
- package/lib/typescript/src/index.d.ts +7 -1
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/javascript-crash-capture.d.ts +74 -0
- package/lib/typescript/src/javascript-crash-capture.d.ts.map +1 -0
- package/lib/typescript/src/log-buffer.d.ts +1 -0
- package/lib/typescript/src/log-buffer.d.ts.map +1 -1
- package/lib/typescript/src/screen-context.d.ts +19 -0
- package/lib/typescript/src/screen-context.d.ts.map +1 -0
- package/lib/typescript/src/types.d.ts +38 -0
- package/lib/typescript/src/types.d.ts.map +1 -1
- package/native/ios/CrumbSDKCore.podspec +28 -0
- package/native/ios/CrumbSDKUI.podspec +38 -0
- package/native/ios/LICENSE +201 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/Info.plist +96 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/CrashReporter +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/CrashReporter.h +366 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashFeatureConfig.h +108 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashMacros.h +143 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashNamespace.h +320 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReport.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportApplicationInfo.h +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportBinaryImageInfo.h +76 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportExceptionInfo.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportFormatter.h +55 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportMachExceptionInfo.h +41 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportMachineInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportProcessInfo.h +80 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportProcessorInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportRegisterInfo.h +45 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportSignalInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportStackFrameInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportSymbolInfo.h +51 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportSystemInfo.h +158 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportTextFormatter.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReportThreadInfo.h +75 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReporter.h +131 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Headers/PLCrashReporterConfig.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Info.plist +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/Modules/module.modulemap +8 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_arm64e/CrashReporter.framework/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/CrashReporter +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/CrashReporter.h +366 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashFeatureConfig.h +108 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashMacros.h +143 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashNamespace.h +320 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReport.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportApplicationInfo.h +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportBinaryImageInfo.h +76 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportExceptionInfo.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportFormatter.h +55 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportMachExceptionInfo.h +41 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportMachineInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportProcessInfo.h +80 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportProcessorInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportRegisterInfo.h +45 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportSignalInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportStackFrameInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportSymbolInfo.h +51 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportSystemInfo.h +158 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportTextFormatter.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReportThreadInfo.h +75 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReporter.h +131 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Headers/PLCrashReporterConfig.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Modules/module.modulemap +8 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Resources/Info.plist +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Resources/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/CrashReporter +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/CrashReporter.h +366 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashFeatureConfig.h +108 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashMacros.h +143 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashNamespace.h +320 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReport.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportApplicationInfo.h +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportBinaryImageInfo.h +76 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportExceptionInfo.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportFormatter.h +55 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportMachExceptionInfo.h +41 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportMachineInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportProcessInfo.h +80 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportProcessorInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportRegisterInfo.h +45 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportSignalInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportStackFrameInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportSymbolInfo.h +51 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportSystemInfo.h +158 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportTextFormatter.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReportThreadInfo.h +75 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReporter.h +131 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Headers/PLCrashReporterConfig.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Modules/module.modulemap +8 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Resources/Info.plist +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/A/Resources/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/CrashReporter +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/CrashReporter.h +366 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashFeatureConfig.h +108 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashMacros.h +143 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashNamespace.h +320 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReport.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportApplicationInfo.h +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportBinaryImageInfo.h +76 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportExceptionInfo.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportFormatter.h +55 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportMachExceptionInfo.h +41 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportMachineInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportProcessInfo.h +80 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportProcessorInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportRegisterInfo.h +45 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportSignalInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportStackFrameInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportSymbolInfo.h +51 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportSystemInfo.h +158 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportTextFormatter.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReportThreadInfo.h +75 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReporter.h +131 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Headers/PLCrashReporterConfig.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Modules/module.modulemap +8 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Resources/Info.plist +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-maccatalyst/CrashReporter.framework/Versions/Current/Resources/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/CrashReporter +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/CrashReporter.h +366 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashFeatureConfig.h +108 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashMacros.h +143 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashNamespace.h +320 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReport.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportApplicationInfo.h +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportBinaryImageInfo.h +76 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportExceptionInfo.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportFormatter.h +55 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportMachExceptionInfo.h +41 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportMachineInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportProcessInfo.h +80 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportProcessorInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportRegisterInfo.h +45 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportSignalInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportStackFrameInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportSymbolInfo.h +51 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportSystemInfo.h +158 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportTextFormatter.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportThreadInfo.h +75 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReporter.h +131 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReporterConfig.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Info.plist +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/Modules/module.modulemap +8 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeDirectory +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeRequirements +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeRequirements-1 +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeResources +462 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/ios-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeSignature +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/CrashReporter +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/CrashReporter.h +366 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashFeatureConfig.h +108 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashMacros.h +143 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashNamespace.h +320 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReport.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportApplicationInfo.h +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportBinaryImageInfo.h +76 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportExceptionInfo.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportFormatter.h +55 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportMachExceptionInfo.h +41 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportMachineInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportProcessInfo.h +80 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportProcessorInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportRegisterInfo.h +45 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportSignalInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportStackFrameInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportSymbolInfo.h +51 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportSystemInfo.h +158 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportTextFormatter.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReportThreadInfo.h +75 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReporter.h +131 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Headers/PLCrashReporterConfig.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Modules/module.modulemap +8 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Resources/Info.plist +48 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Resources/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/CrashReporter +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/CrashReporter.h +366 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashFeatureConfig.h +108 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashMacros.h +143 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashNamespace.h +320 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReport.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportApplicationInfo.h +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportBinaryImageInfo.h +76 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportExceptionInfo.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportFormatter.h +55 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportMachExceptionInfo.h +41 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportMachineInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportProcessInfo.h +80 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportProcessorInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportRegisterInfo.h +45 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportSignalInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportStackFrameInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportSymbolInfo.h +51 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportSystemInfo.h +158 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportTextFormatter.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReportThreadInfo.h +75 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReporter.h +131 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Headers/PLCrashReporterConfig.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Modules/module.modulemap +8 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Resources/Info.plist +48 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/A/Resources/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/CrashReporter +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/CrashReporter.h +366 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashFeatureConfig.h +108 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashMacros.h +143 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashNamespace.h +320 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReport.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportApplicationInfo.h +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportBinaryImageInfo.h +76 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportExceptionInfo.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportFormatter.h +55 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportMachExceptionInfo.h +41 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportMachineInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportProcessInfo.h +80 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportProcessorInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportRegisterInfo.h +45 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportSignalInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportStackFrameInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportSymbolInfo.h +51 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportSystemInfo.h +158 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportTextFormatter.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReportThreadInfo.h +75 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReporter.h +131 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Headers/PLCrashReporterConfig.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Modules/module.modulemap +8 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Resources/Info.plist +48 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/macos-arm64_x86_64/CrashReporter.framework/Versions/Current/Resources/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/CrashReporter +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/CrashReporter.h +366 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashFeatureConfig.h +108 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashMacros.h +143 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashNamespace.h +320 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReport.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportApplicationInfo.h +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportBinaryImageInfo.h +76 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportExceptionInfo.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportFormatter.h +55 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportMachExceptionInfo.h +41 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportMachineInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportProcessInfo.h +80 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportProcessorInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportRegisterInfo.h +45 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportSignalInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportStackFrameInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportSymbolInfo.h +51 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportSystemInfo.h +158 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportTextFormatter.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReportThreadInfo.h +75 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReporter.h +131 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Headers/PLCrashReporterConfig.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Info.plist +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/Modules/module.modulemap +8 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64/CrashReporter.framework/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/CrashReporter +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/CrashReporter.h +366 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashFeatureConfig.h +108 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashMacros.h +143 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashNamespace.h +320 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReport.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportApplicationInfo.h +52 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportBinaryImageInfo.h +76 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportExceptionInfo.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportFormatter.h +55 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportMachExceptionInfo.h +41 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportMachineInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportProcessInfo.h +80 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportProcessorInfo.h +64 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportRegisterInfo.h +45 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportSignalInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportStackFrameInfo.h +50 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportSymbolInfo.h +51 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportSystemInfo.h +158 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportTextFormatter.h +59 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReportThreadInfo.h +75 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReporter.h +131 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Headers/PLCrashReporterConfig.h +193 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Info.plist +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/Modules/module.modulemap +8 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/PrivacyInfo.xcprivacy +39 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeDirectory +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeRequirements +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeRequirements-1 +0 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeResources +462 -0
- package/native/ios/PLCrashReporter/CrashReporter.xcframework/tvos-arm64_x86_64-simulator/CrashReporter.framework/_CodeSignature/CodeSignature +0 -0
- package/native/ios/PLCrashReporter/LICENSE.txt +54 -0
- package/native/ios/PLCrashReporter/PLCrashReporter.podspec +19 -0
- package/native/ios/VERSION +1 -0
- package/native/ios/packages/ios/Sources/CrumbCore/Crumb.swift +108 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbConfiguration.swift +212 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbDiagnostics.swift +158 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbFailureStacks.swift +94 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbInfrastructureHealthProbe.swift +110 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbJavaScriptCrashRecovery.swift +136 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbJavaScriptCrashStore.swift +502 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbJavaScriptFailureContext.swift +166 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbLogs.swift +138 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbPolicy.swift +336 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbRendering.swift +68 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbReportEnvelope.swift +666 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbReportQueue.swift +543 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbReportUploader.swift +304 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbRuntime.swift +306 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbSDKVersion.swift +5 -0
- package/native/ios/packages/ios/Sources/CrumbCore/CrumbScreenContext.swift +29 -0
- package/native/ios/packages/ios/Sources/CrumbUI/CrumbDesign.swift +151 -0
- package/native/ios/packages/ios/Sources/CrumbUI/CrumbLocalization.swift +23 -0
- package/native/ios/packages/ios/Sources/CrumbUI/CrumbQualityInstrumentation.swift +30 -0
- package/native/ios/packages/ios/Sources/CrumbUI/CrumbRenderingMonitor.swift +40 -0
- package/native/ios/packages/ios/Sources/CrumbUI/CrumbReporter.swift +1705 -0
- package/native/ios/packages/ios/Sources/CrumbUI/CrumbReporterLifecycle.swift +119 -0
- package/native/ios/packages/ios/Sources/CrumbUI/CrumbScreenshotArtifact.swift +186 -0
- package/native/ios/packages/ios/Sources/CrumbUI/CrumbShakeGestureRecognizer.swift +62 -0
- package/native/ios/packages/ios/Sources/CrumbUI/CrumbUploadCoordinator.swift +113 -0
- package/native/ios/packages/ios/Sources/CrumbUI/CrumbWorkspacePolicyCoordinator.swift +86 -0
- package/native/ios/packages/ios/Sources/CrumbUI/OnDemandDiagnosticsCollector.swift +269 -0
- package/native/ios/packages/ios/Sources/CrumbUI/OnDemandLogCollector.swift +213 -0
- package/native/ios/packages/ios/Sources/CrumbUI/Resources/en.lproj/Localizable.strings +75 -0
- package/native/ios/provenance.json +8 -0
- package/nitrogen/generated/android/c++/JHybridCrumbReactNativeSpec.cpp +32 -3
- package/nitrogen/generated/android/c++/JHybridCrumbReactNativeSpec.hpp +5 -1
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/crumbsdk/reactnative/HybridCrumbReactNativeSpec.kt +17 -1
- package/nitrogen/generated/ios/CrumbReactNative-Swift-Cxx-Bridge.hpp +9 -0
- package/nitrogen/generated/ios/c++/HybridCrumbReactNativeSpecSwift.hpp +30 -2
- package/nitrogen/generated/ios/swift/HybridCrumbReactNativeSpec.swift +5 -1
- package/nitrogen/generated/ios/swift/HybridCrumbReactNativeSpec_cxx.swift +55 -2
- package/nitrogen/generated/shared/c++/HybridCrumbReactNativeSpec.cpp +4 -0
- package/nitrogen/generated/shared/c++/HybridCrumbReactNativeSpec.hpp +5 -1
- package/package.json +15 -5
- package/plugin/podfile.cjs +21 -0
- package/scripts/ios.rb +23 -0
- package/src/CrumbReactNative.nitro.ts +5 -1
- package/src/NativeCrumbReactNative.web.ts +4 -0
- package/src/index.ts +218 -1
- package/src/javascript-crash-capture.ts +774 -0
- package/src/log-buffer.ts +27 -2
- package/src/screen-context.ts +154 -0
- package/src/types.ts +53 -0
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { useEffect } from 'react';
|
|
4
|
+
import NativeCrumbReactNative from './NativeCrumbReactNative';
|
|
5
|
+
|
|
6
|
+
/** Compatible with a React Navigation container ref; no navigation dependency required. */
|
|
7
|
+
|
|
8
|
+
let owner = null;
|
|
9
|
+
let screenJson = 'null';
|
|
10
|
+
|
|
11
|
+
/** Snapshot before crossing the async native UI dispatch boundary. */
|
|
12
|
+
export function currentScreenJson() {
|
|
13
|
+
return screenJson;
|
|
14
|
+
}
|
|
15
|
+
function validLabel(value) {
|
|
16
|
+
// UTF-8 bytes, including surrogate pairs, without requiring TextEncoder in Hermes.
|
|
17
|
+
if (typeof value !== 'string' || !value.trim() || value.length > 128 ||
|
|
18
|
+
// Reject control characters in untrusted screen labels.
|
|
19
|
+
// eslint-disable-next-line no-control-regex
|
|
20
|
+
/[\u0000-\u001f\u007f-\u009f?#]|:\/\//.test(value)) return false;
|
|
21
|
+
let bytes = 0;
|
|
22
|
+
for (const char of value) {
|
|
23
|
+
const point = char.codePointAt(0) ?? 0;
|
|
24
|
+
bytes += point <= 0x7f ? 1 : point <= 0x7ff ? 2 : point <= 0xffff ? 3 : 4;
|
|
25
|
+
}
|
|
26
|
+
return bytes <= 128;
|
|
27
|
+
}
|
|
28
|
+
function publish(context, token) {
|
|
29
|
+
owner = token;
|
|
30
|
+
screenJson = JSON.stringify(context);
|
|
31
|
+
NativeCrumbReactNative.setScreenContext(screenJson);
|
|
32
|
+
}
|
|
33
|
+
function release(token) {
|
|
34
|
+
if (owner === token) publish(null, token);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/** Supply a static screen name. Call with null when the app no longer has an active screen. */
|
|
38
|
+
export function setScreen(name, options) {
|
|
39
|
+
const token = {};
|
|
40
|
+
if (name === null) {
|
|
41
|
+
publish(null, token);
|
|
42
|
+
return;
|
|
43
|
+
}
|
|
44
|
+
const route = options?.route ?? [name];
|
|
45
|
+
if (!validLabel(name) || route.length < 1 || route.length > 8 || !route.every(validLabel)) {
|
|
46
|
+
publish(null, token);
|
|
47
|
+
throw new Error('Crumb screen names must be static labels of at most 128 UTF-8 bytes, with one to eight route names and no URL, query or fragment.');
|
|
48
|
+
}
|
|
49
|
+
publish({
|
|
50
|
+
name,
|
|
51
|
+
route: [...route],
|
|
52
|
+
source: 'manual'
|
|
53
|
+
}, token);
|
|
54
|
+
}
|
|
55
|
+
function record(value) {
|
|
56
|
+
return value !== null && typeof value === 'object' && !Array.isArray(value);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/** Register once at the container; handles initial ready, nested state changes and cleanup. */
|
|
60
|
+
export function trackReactNavigation(ref) {
|
|
61
|
+
const token = {};
|
|
62
|
+
let active = true;
|
|
63
|
+
const update = () => {
|
|
64
|
+
if (!active) return;
|
|
65
|
+
try {
|
|
66
|
+
if (!ref.isReady()) {
|
|
67
|
+
publish(null, token);
|
|
68
|
+
return;
|
|
69
|
+
}
|
|
70
|
+
let state = ref.getRootState();
|
|
71
|
+
const route = [];
|
|
72
|
+
while (record(state) && Array.isArray(state.routes)) {
|
|
73
|
+
if (route.length === 8 || !Number.isInteger(state.index)) {
|
|
74
|
+
publish(null, token);
|
|
75
|
+
return;
|
|
76
|
+
}
|
|
77
|
+
const focused = state.routes[Number(state.index)];
|
|
78
|
+
if (!record(focused) || !validLabel(focused.name)) {
|
|
79
|
+
publish(null, token);
|
|
80
|
+
return;
|
|
81
|
+
}
|
|
82
|
+
route.push(focused.name);
|
|
83
|
+
state = focused.state;
|
|
84
|
+
}
|
|
85
|
+
const name = route[route.length - 1];
|
|
86
|
+
publish(name ? {
|
|
87
|
+
name,
|
|
88
|
+
route,
|
|
89
|
+
source: 'react_navigation'
|
|
90
|
+
} : null, token);
|
|
91
|
+
} catch {
|
|
92
|
+
publish(null, token);
|
|
93
|
+
}
|
|
94
|
+
};
|
|
95
|
+
const ready = ref.addListener('ready', update);
|
|
96
|
+
const state = ref.addListener('state', update);
|
|
97
|
+
update();
|
|
98
|
+
return () => {
|
|
99
|
+
active = false;
|
|
100
|
+
ready();
|
|
101
|
+
state();
|
|
102
|
+
release(token);
|
|
103
|
+
};
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
/** Pass Expo Router useSegments(), never usePathname() or search parameters. */
|
|
107
|
+
export function useExpoRouterScreen(segments) {
|
|
108
|
+
const key = JSON.stringify(segments);
|
|
109
|
+
useEffect(() => {
|
|
110
|
+
const token = {};
|
|
111
|
+
// Reconstruct only validated strings; dynamic segments remain templates such as [id].
|
|
112
|
+
const value = JSON.parse(key);
|
|
113
|
+
const route = Array.isArray(value) && value.length === 0 ? ['/'] : value;
|
|
114
|
+
const name = Array.isArray(route) ? '/' + route.filter(part => part !== '/').join('/') : '';
|
|
115
|
+
if (Array.isArray(route) && route.length <= 8 && route.every(validLabel) && validLabel(name)) {
|
|
116
|
+
publish({
|
|
117
|
+
name,
|
|
118
|
+
route,
|
|
119
|
+
source: 'expo_router'
|
|
120
|
+
}, token);
|
|
121
|
+
} else {
|
|
122
|
+
publish(null, token);
|
|
123
|
+
}
|
|
124
|
+
return () => release(token);
|
|
125
|
+
}, [key]);
|
|
126
|
+
}
|
|
127
|
+
//# sourceMappingURL=screen-context.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["useEffect","NativeCrumbReactNative","owner","screenJson","currentScreenJson","validLabel","value","trim","length","test","bytes","char","point","codePointAt","publish","context","token","JSON","stringify","setScreenContext","release","setScreen","name","options","route","every","Error","source","record","Array","isArray","trackReactNavigation","ref","active","update","isReady","state","getRootState","routes","Number","isInteger","index","focused","push","ready","addListener","useExpoRouterScreen","segments","key","parse","filter","part","join"],"sourceRoot":"../../src","sources":["screen-context.ts"],"mappings":";;AAAA,SAASA,SAAS,QAAQ,OAAO;AACjC,OAAOC,sBAAsB,MAAM,0BAA0B;;AAa7D;;AAOA,IAAIC,KAAoB,GAAG,IAAI;AAC/B,IAAIC,UAAU,GAAG,MAAM;;AAEvB;AACA,OAAO,SAASC,iBAAiBA,CAAA,EAAW;EAC1C,OAAOD,UAAU;AACnB;AAEA,SAASE,UAAUA,CAACC,KAAc,EAAmB;EACnD;EACA,IACE,OAAOA,KAAK,KAAK,QAAQ,IACzB,CAACA,KAAK,CAACC,IAAI,CAAC,CAAC,IACbD,KAAK,CAACE,MAAM,GAAG,GAAG;EAClB;EACA;EACA,sCAAsC,CAACC,IAAI,CAACH,KAAK,CAAC,EAElD,OAAO,KAAK;EACd,IAAII,KAAK,GAAG,CAAC;EACb,KAAK,MAAMC,IAAI,IAAIL,KAAK,EAAE;IACxB,MAAMM,KAAK,GAAGD,IAAI,CAACE,WAAW,CAAC,CAAC,CAAC,IAAI,CAAC;IACtCH,KAAK,IAAIE,KAAK,IAAI,IAAI,GAAG,CAAC,GAAGA,KAAK,IAAI,KAAK,GAAG,CAAC,GAAGA,KAAK,IAAI,MAAM,GAAG,CAAC,GAAG,CAAC;EAC3E;EACA,OAAOF,KAAK,IAAI,GAAG;AACrB;AAEA,SAASI,OAAOA,CAACC,OAA6B,EAAEC,KAAa,EAAQ;EACnEd,KAAK,GAAGc,KAAK;EACbb,UAAU,GAAGc,IAAI,CAACC,SAAS,CAACH,OAAO,CAAC;EACpCd,sBAAsB,CAACkB,gBAAgB,CAAChB,UAAU,CAAC;AACrD;AAEA,SAASiB,OAAOA,CAACJ,KAAa,EAAQ;EACpC,IAAId,KAAK,KAAKc,KAAK,EAAEF,OAAO,CAAC,IAAI,EAAEE,KAAK,CAAC;AAC3C;;AAEA;AACA,OAAO,SAASK,SAASA,CACvBC,IAAmB,EACnBC,OAA4B,EACtB;EACN,MAAMP,KAAK,GAAG,CAAC,CAAC;EAChB,IAAIM,IAAI,KAAK,IAAI,EAAE;IACjBR,OAAO,CAAC,IAAI,EAAEE,KAAK,CAAC;IACpB;EACF;EACA,MAAMQ,KAAK,GAAGD,OAAO,EAAEC,KAAK,IAAI,CAACF,IAAI,CAAC;EACtC,IACE,CAACjB,UAAU,CAACiB,IAAI,CAAC,IACjBE,KAAK,CAAChB,MAAM,GAAG,CAAC,IAChBgB,KAAK,CAAChB,MAAM,GAAG,CAAC,IAChB,CAACgB,KAAK,CAACC,KAAK,CAACpB,UAAU,CAAC,EACxB;IACAS,OAAO,CAAC,IAAI,EAAEE,KAAK,CAAC;IACpB,MAAM,IAAIU,KAAK,CACb,mIACF,CAAC;EACH;EACAZ,OAAO,CAAC;IAAEQ,IAAI;IAAEE,KAAK,EAAE,CAAC,GAAGA,KAAK,CAAC;IAAEG,MAAM,EAAE;EAAS,CAAC,EAAEX,KAAK,CAAC;AAC/D;AAEA,SAASY,MAAMA,CAACtB,KAAc,EAAoC;EAChE,OAAOA,KAAK,KAAK,IAAI,IAAI,OAAOA,KAAK,KAAK,QAAQ,IAAI,CAACuB,KAAK,CAACC,OAAO,CAACxB,KAAK,CAAC;AAC7E;;AAEA;AACA,OAAO,SAASyB,oBAAoBA,CAACC,GAAuB,EAAc;EACxE,MAAMhB,KAAK,GAAG,CAAC,CAAC;EAChB,IAAIiB,MAAM,GAAG,IAAI;EACjB,MAAMC,MAAM,GAAGA,CAAA,KAAM;IACnB,IAAI,CAACD,MAAM,EAAE;IACb,IAAI;MACF,IAAI,CAACD,GAAG,CAACG,OAAO,CAAC,CAAC,EAAE;QAClBrB,OAAO,CAAC,IAAI,EAAEE,KAAK,CAAC;QACpB;MACF;MACA,IAAIoB,KAAc,GAAGJ,GAAG,CAACK,YAAY,CAAC,CAAC;MACvC,MAAMb,KAAe,GAAG,EAAE;MAC1B,OAAOI,MAAM,CAACQ,KAAK,CAAC,IAAIP,KAAK,CAACC,OAAO,CAACM,KAAK,CAACE,MAAM,CAAC,EAAE;QACnD,IAAId,KAAK,CAAChB,MAAM,KAAK,CAAC,IAAI,CAAC+B,MAAM,CAACC,SAAS,CAACJ,KAAK,CAACK,KAAK,CAAC,EAAE;UACxD3B,OAAO,CAAC,IAAI,EAAEE,KAAK,CAAC;UACpB;QACF;QACA,MAAM0B,OAAgB,GAAGN,KAAK,CAACE,MAAM,CAACC,MAAM,CAACH,KAAK,CAACK,KAAK,CAAC,CAAC;QAC1D,IAAI,CAACb,MAAM,CAACc,OAAO,CAAC,IAAI,CAACrC,UAAU,CAACqC,OAAO,CAACpB,IAAI,CAAC,EAAE;UACjDR,OAAO,CAAC,IAAI,EAAEE,KAAK,CAAC;UACpB;QACF;QACAQ,KAAK,CAACmB,IAAI,CAACD,OAAO,CAACpB,IAAI,CAAC;QACxBc,KAAK,GAAGM,OAAO,CAACN,KAAK;MACvB;MACA,MAAMd,IAAI,GAAGE,KAAK,CAACA,KAAK,CAAChB,MAAM,GAAG,CAAC,CAAC;MACpCM,OAAO,CAACQ,IAAI,GAAG;QAAEA,IAAI;QAAEE,KAAK;QAAEG,MAAM,EAAE;MAAmB,CAAC,GAAG,IAAI,EAAEX,KAAK,CAAC;IAC3E,CAAC,CAAC,MAAM;MACNF,OAAO,CAAC,IAAI,EAAEE,KAAK,CAAC;IACtB;EACF,CAAC;EACD,MAAM4B,KAAK,GAAGZ,GAAG,CAACa,WAAW,CAAC,OAAO,EAAEX,MAAM,CAAC;EAC9C,MAAME,KAAK,GAAGJ,GAAG,CAACa,WAAW,CAAC,OAAO,EAAEX,MAAM,CAAC;EAC9CA,MAAM,CAAC,CAAC;EACR,OAAO,MAAM;IACXD,MAAM,GAAG,KAAK;IACdW,KAAK,CAAC,CAAC;IACPR,KAAK,CAAC,CAAC;IACPhB,OAAO,CAACJ,KAAK,CAAC;EAChB,CAAC;AACH;;AAEA;AACA,OAAO,SAAS8B,mBAAmBA,CAACC,QAA2B,EAAQ;EACrE,MAAMC,GAAG,GAAG/B,IAAI,CAACC,SAAS,CAAC6B,QAAQ,CAAC;EACpC/C,SAAS,CAAC,MAAM;IACd,MAAMgB,KAAK,GAAG,CAAC,CAAC;IAChB;IACA,MAAMV,KAAc,GAAGW,IAAI,CAACgC,KAAK,CAACD,GAAG,CAAC;IACtC,MAAMxB,KAAK,GAAGK,KAAK,CAACC,OAAO,CAACxB,KAAK,CAAC,IAAIA,KAAK,CAACE,MAAM,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,GAAGF,KAAK;IACxE,MAAMgB,IAAI,GAAGO,KAAK,CAACC,OAAO,CAACN,KAAK,CAAC,GAC7B,GAAG,GAAGA,KAAK,CAAC0B,MAAM,CAAEC,IAAI,IAAKA,IAAI,KAAK,GAAG,CAAC,CAACC,IAAI,CAAC,GAAG,CAAC,GACpD,EAAE;IACN,IACEvB,KAAK,CAACC,OAAO,CAACN,KAAK,CAAC,IACpBA,KAAK,CAAChB,MAAM,IAAI,CAAC,IACjBgB,KAAK,CAACC,KAAK,CAACpB,UAAU,CAAC,IACvBA,UAAU,CAACiB,IAAI,CAAC,EAChB;MACAR,OAAO,CAAC;QAAEQ,IAAI;QAAEE,KAAK;QAAEG,MAAM,EAAE;MAAc,CAAC,EAAEX,KAAK,CAAC;IACxD,CAAC,MAAM;MACLF,OAAO,CAAC,IAAI,EAAEE,KAAK,CAAC;IACtB;IACA,OAAO,MAAMI,OAAO,CAACJ,KAAK,CAAC;EAC7B,CAAC,EAAE,CAACgC,GAAG,CAAC,CAAC;AACX","ignoreList":[]}
|
|
@@ -4,9 +4,13 @@ export interface CrumbReactNative extends HybridObject<{
|
|
|
4
4
|
android: 'kotlin';
|
|
5
5
|
}> {
|
|
6
6
|
start(configurationJson: string): void;
|
|
7
|
+
setScreenContext(screenJson: string): void;
|
|
8
|
+
canCollectLogs(): boolean;
|
|
7
9
|
installReporter(): Promise<boolean>;
|
|
8
|
-
show(): Promise<boolean>;
|
|
10
|
+
show(screenJson: string): Promise<boolean>;
|
|
9
11
|
addLog(entryJson: string): void;
|
|
10
12
|
clearLogs(): void;
|
|
13
|
+
recordJavaScriptCrash(recordJson: string): void;
|
|
14
|
+
recoverJavaScriptCrashes(): Promise<boolean>;
|
|
11
15
|
}
|
|
12
16
|
//# sourceMappingURL=CrumbReactNative.nitro.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CrumbReactNative.nitro.d.ts","sourceRoot":"","sources":["../../../src/CrumbReactNative.nitro.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAE/D,MAAM,WAAW,gBAAiB,SAAQ,YAAY,CAAC;IACrD,GAAG,EAAE,OAAO,CAAC;IACb,OAAO,EAAE,QAAQ,CAAC;CACnB,CAAC;IACA,KAAK,CAAC,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAC;IACvC,eAAe,IAAI,OAAO,CAAC,OAAO,CAAC,CAAC;IACpC,IAAI,
|
|
1
|
+
{"version":3,"file":"CrumbReactNative.nitro.d.ts","sourceRoot":"","sources":["../../../src/CrumbReactNative.nitro.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAE/D,MAAM,WAAW,gBAAiB,SAAQ,YAAY,CAAC;IACrD,GAAG,EAAE,OAAO,CAAC;IACb,OAAO,EAAE,QAAQ,CAAC;CACnB,CAAC;IACA,KAAK,CAAC,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAC;IACvC,gBAAgB,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3C,cAAc,IAAI,OAAO,CAAC;IAC1B,eAAe,IAAI,OAAO,CAAC,OAAO,CAAC,CAAC;IACpC,IAAI,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAC3C,MAAM,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC,SAAS,IAAI,IAAI,CAAC;IAClB,qBAAqB,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAChD,wBAAwB,IAAI,OAAO,CAAC,OAAO,CAAC,CAAC;CAC9C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NativeCrumbReactNative.web.d.ts","sourceRoot":"","sources":["../../../src/NativeCrumbReactNative.web.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,6BAA0B,CAAC;AAKjE,QAAA,MAAM,iBAAiB,EAAE,
|
|
1
|
+
{"version":3,"file":"NativeCrumbReactNative.web.d.ts","sourceRoot":"","sources":["../../../src/NativeCrumbReactNative.web.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,6BAA0B,CAAC;AAKjE,QAAA,MAAM,iBAAiB,EAAE,gBAgBxB,CAAC;AAEF,eAAe,iBAAiB,CAAC"}
|
|
@@ -1,12 +1,18 @@
|
|
|
1
|
+
import { setScreen, trackReactNavigation, useExpoRouterScreen } from './screen-context.js';
|
|
2
|
+
export { setScreen, trackReactNavigation, useExpoRouterScreen };
|
|
3
|
+
export type { CrumbScreenOptions, CrumbNavigationRef } from './screen-context.js';
|
|
1
4
|
import { clearLogs, disableConsoleCapture, enableConsoleCapture } from './log-buffer.js';
|
|
2
5
|
import type { CrumbConfiguration, CrumbLogLevel, CrumbLogMetadata } from './types.js';
|
|
3
|
-
export type { CrumbCaptureOptions, CrumbConfiguration, CrumbDiagnosticsOptions, CrumbInvocation, CrumbLogLevel, CrumbLogMetadata, CrumbLogOptions, CrumbPrivacyOptions, CrumbRelease, CrumbUploadOptions, } from './types.js';
|
|
6
|
+
export type { CrumbApplicationMetadata, CrumbCaptureOptions, CrumbConfiguration, CrumbCustomContextOptions, CrumbDiagnosticsOptions, CrumbJavaScriptCrashCaptureOptions, CrumbEvidenceCategory, CrumbInvocation, CrumbLogLevel, CrumbLogMetadata, CrumbLogOptions, CrumbPrivacyOptions, CrumbReporterField, CrumbReporterOptions, CrumbRelease, CrumbTheme, CrumbUploadOptions, CrumbWorkspacePolicyOptions, } from './types.js';
|
|
4
7
|
export declare function start(configuration: CrumbConfiguration): Promise<void>;
|
|
5
8
|
export declare function installReporter(): Promise<boolean>;
|
|
6
9
|
export declare function show(): Promise<boolean>;
|
|
7
10
|
export declare function log(level: CrumbLogLevel, message: string, metadata?: CrumbLogMetadata): void;
|
|
8
11
|
export { clearLogs, disableConsoleCapture, enableConsoleCapture };
|
|
9
12
|
declare const Crumb: Readonly<{
|
|
13
|
+
setScreen: typeof setScreen;
|
|
14
|
+
trackReactNavigation: typeof trackReactNavigation;
|
|
15
|
+
useExpoRouterScreen: typeof useExpoRouterScreen;
|
|
10
16
|
start: typeof start;
|
|
11
17
|
installReporter: typeof installReporter;
|
|
12
18
|
show: typeof show;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EACL,SAAS,EAET,qBAAqB,EACrB,oBAAoB,EAGrB,MAAM,iBAAc,CAAC;AACtB,OAAO,KAAK,EACV,kBAAkB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,SAAS,EACT,oBAAoB,EACpB,mBAAmB,EACpB,MAAM,qBAAkB,CAAC;AAC1B,OAAO,EAAE,SAAS,EAAE,oBAAoB,EAAE,mBAAmB,EAAE,CAAC;AAChE,YAAY,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,MAAM,qBAAkB,CAAC;AAK/E,OAAO,EACL,SAAS,EAET,qBAAqB,EACrB,oBAAoB,EAGrB,MAAM,iBAAc,CAAC;AACtB,OAAO,KAAK,EACV,kBAAkB,EAElB,aAAa,EACb,gBAAgB,EACjB,MAAM,YAAS,CAAC;AAEjB,YAAY,EACV,wBAAwB,EACxB,mBAAmB,EACnB,kBAAkB,EAClB,yBAAyB,EACzB,uBAAuB,EACvB,kCAAkC,EAClC,qBAAqB,EACrB,eAAe,EACf,aAAa,EACb,gBAAgB,EAChB,eAAe,EACf,mBAAmB,EACnB,kBAAkB,EAClB,oBAAoB,EACpB,YAAY,EACZ,UAAU,EACV,kBAAkB,EAClB,2BAA2B,GAC5B,MAAM,YAAS,CAAC;AAEjB,wBAAsB,KAAK,CAAC,aAAa,EAAE,kBAAkB,GAAG,OAAO,CAAC,IAAI,CAAC,CAoB5E;AAED,wBAAgB,eAAe,IAAI,OAAO,CAAC,OAAO,CAAC,CAElD;AAED,wBAAgB,IAAI,IAAI,OAAO,CAAC,OAAO,CAAC,CAEvC;AAED,wBAAgB,GAAG,CACjB,KAAK,EAAE,aAAa,EACpB,OAAO,EAAE,MAAM,EACf,QAAQ,CAAC,EAAE,gBAAgB,GAC1B,IAAI,CAKN;AAED,OAAO,EAAE,SAAS,EAAE,qBAAqB,EAAE,oBAAoB,EAAE,CAAC;AAoOlE,QAAA,MAAM,KAAK;;;;;;;;;;;EAWT,CAAC;AAEH,eAAe,KAAK,CAAC"}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import type { CrumbConfiguration, CrumbJavaScriptCrashCaptureOptions, CrumbRelease } from './types.js';
|
|
2
|
+
import type { CrumbReactNative } from './CrumbReactNative.nitro.js';
|
|
3
|
+
type GlobalErrorHandler = (error: unknown, isFatal?: boolean) => unknown;
|
|
4
|
+
type UnhandledRejectionHandler = (event: UnhandledRejectionEventLike) => unknown;
|
|
5
|
+
interface ErrorUtilsLike {
|
|
6
|
+
getGlobalHandler: () => GlobalErrorHandler;
|
|
7
|
+
setGlobalHandler: (handler: GlobalErrorHandler) => void;
|
|
8
|
+
}
|
|
9
|
+
interface UnhandledRejectionEventLike {
|
|
10
|
+
reason: unknown;
|
|
11
|
+
promise?: unknown;
|
|
12
|
+
}
|
|
13
|
+
interface ProcessLike {
|
|
14
|
+
on?: (event: string, listener: (...args: unknown[]) => void) => unknown;
|
|
15
|
+
removeListener?: (event: string, listener: (...args: unknown[]) => void) => unknown;
|
|
16
|
+
}
|
|
17
|
+
interface ReactNativeExceptionsManagerLike {
|
|
18
|
+
handleException: (error: unknown, isFatal: boolean) => unknown;
|
|
19
|
+
}
|
|
20
|
+
interface HermesInternalLike {
|
|
21
|
+
hasPromise?: () => boolean;
|
|
22
|
+
enablePromiseRejectionTracker?: (options: {
|
|
23
|
+
allRejections: boolean;
|
|
24
|
+
onUnhandled: (id: number, rejection?: unknown) => void;
|
|
25
|
+
onHandled: (id: number) => void;
|
|
26
|
+
}) => void;
|
|
27
|
+
}
|
|
28
|
+
interface GlobalObjectLike {
|
|
29
|
+
ErrorUtils?: ErrorUtilsLike;
|
|
30
|
+
onunhandledrejection?: UnhandledRejectionHandler;
|
|
31
|
+
addEventListener?: (event: string, handler: UnhandledRejectionHandler) => void;
|
|
32
|
+
removeEventListener?: (event: string, handler: UnhandledRejectionHandler) => void;
|
|
33
|
+
process?: ProcessLike;
|
|
34
|
+
HermesInternal?: HermesInternalLike;
|
|
35
|
+
}
|
|
36
|
+
interface CrashCaptureState {
|
|
37
|
+
native: Pick<CrumbReactNative, 'recordJavaScriptCrash' | 'recoverJavaScriptCrashes'>;
|
|
38
|
+
release?: CrumbRelease;
|
|
39
|
+
context: Readonly<Record<string, string>>;
|
|
40
|
+
maximumBreadcrumbs: number;
|
|
41
|
+
maximumBreadcrumbBytes: number;
|
|
42
|
+
configured: boolean;
|
|
43
|
+
errorUtils?: {
|
|
44
|
+
target: ErrorUtilsLike;
|
|
45
|
+
previous: GlobalErrorHandler;
|
|
46
|
+
wrapper: GlobalErrorHandler;
|
|
47
|
+
};
|
|
48
|
+
property?: {
|
|
49
|
+
target: GlobalObjectLike;
|
|
50
|
+
previous?: UnhandledRejectionHandler;
|
|
51
|
+
wrapper: UnhandledRejectionHandler;
|
|
52
|
+
};
|
|
53
|
+
eventTarget?: {
|
|
54
|
+
target: GlobalObjectLike;
|
|
55
|
+
wrapper: UnhandledRejectionHandler;
|
|
56
|
+
};
|
|
57
|
+
process?: {
|
|
58
|
+
target: ProcessLike;
|
|
59
|
+
wrapper: (...args: unknown[]) => void;
|
|
60
|
+
};
|
|
61
|
+
reactNativeExceptionsManager?: {
|
|
62
|
+
target: ReactNativeExceptionsManagerLike;
|
|
63
|
+
previous: ReactNativeExceptionsManagerLike['handleException'];
|
|
64
|
+
wrapper: ReactNativeExceptionsManagerLike['handleException'];
|
|
65
|
+
};
|
|
66
|
+
fingerprints: Map<string, number>;
|
|
67
|
+
}
|
|
68
|
+
export declare function configureJavaScriptCrashCapture(options: CrumbJavaScriptCrashCaptureOptions | undefined, configuration: CrumbConfiguration, native?: CrashCaptureState['native']): void;
|
|
69
|
+
export declare function recoverJavaScriptCrashes(): Promise<void>;
|
|
70
|
+
export declare function disableJavaScriptCrashCapture(): void;
|
|
71
|
+
/** Used by the deterministic adapter tests to release process-global handlers. */
|
|
72
|
+
export declare function resetJavaScriptCrashCaptureForTesting(): void;
|
|
73
|
+
export {};
|
|
74
|
+
//# sourceMappingURL=javascript-crash-capture.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"javascript-crash-capture.d.ts","sourceRoot":"","sources":["../../../src/javascript-crash-capture.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,6 +2,7 @@ import type { CrumbLogEntry, CrumbLogLevel, CrumbLogMetadata, CrumbLogOptions }
|
|
|
2
2
|
export declare function configureLogBuffer(options: CrumbLogOptions | undefined): void;
|
|
3
3
|
export declare function markNativeStarted(): void;
|
|
4
4
|
export declare function clearLogs(): void;
|
|
5
|
+
export declare function snapshotLogEntries(): readonly CrumbLogEntry[];
|
|
5
6
|
export declare function writeLog(level: CrumbLogLevel, message: string, metadata?: CrumbLogMetadata, category?: CrumbLogEntry['category']): void;
|
|
6
7
|
export declare function enableConsoleCapture(): void;
|
|
7
8
|
export declare function disableConsoleCapture(): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"log-buffer.d.ts","sourceRoot":"","sources":["../../../src/log-buffer.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,aAAa,EACb,aAAa,EACb,gBAAgB,EAChB,eAAe,EAChB,MAAM,YAAS,CAAC;AAgCjB,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,eAAe,GAAG,SAAS,GAAG,IAAI,CAO7E;AAED,wBAAgB,iBAAiB,IAAI,IAAI,
|
|
1
|
+
{"version":3,"file":"log-buffer.d.ts","sourceRoot":"","sources":["../../../src/log-buffer.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,aAAa,EACb,aAAa,EACb,gBAAgB,EAChB,eAAe,EAChB,MAAM,YAAS,CAAC;AAgCjB,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,eAAe,GAAG,SAAS,GAAG,IAAI,CAO7E;AAED,wBAAgB,iBAAiB,IAAI,IAAI,CAUxC;AAED,wBAAgB,SAAS,IAAI,IAAI,CAKhC;AAED,wBAAgB,kBAAkB,IAAI,SAAS,aAAa,EAAE,CAO7D;AAED,wBAAgB,QAAQ,CACtB,KAAK,EAAE,aAAa,EACpB,OAAO,EAAE,MAAM,EACf,QAAQ,CAAC,EAAE,gBAAgB,EAC3B,QAAQ,GAAE,aAAa,CAAC,UAAU,CAAgB,GACjD,IAAI,CAwBN;AAED,wBAAgB,oBAAoB,IAAI,IAAI,CAe3C;AAED,wBAAgB,qBAAqB,IAAI,IAAI,CAW5C"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export interface CrumbScreenOptions {
|
|
2
|
+
/** Static names from root to focused screen, never route parameters. Maximum eight. */
|
|
3
|
+
readonly route?: readonly string[];
|
|
4
|
+
}
|
|
5
|
+
/** Compatible with a React Navigation container ref; no navigation dependency required. */
|
|
6
|
+
export interface CrumbNavigationRef {
|
|
7
|
+
isReady(): boolean;
|
|
8
|
+
getRootState(): unknown;
|
|
9
|
+
addListener(event: 'ready' | 'state', listener: () => void): () => void;
|
|
10
|
+
}
|
|
11
|
+
/** Snapshot before crossing the async native UI dispatch boundary. */
|
|
12
|
+
export declare function currentScreenJson(): string;
|
|
13
|
+
/** Supply a static screen name. Call with null when the app no longer has an active screen. */
|
|
14
|
+
export declare function setScreen(name: string | null, options?: CrumbScreenOptions): void;
|
|
15
|
+
/** Register once at the container; handles initial ready, nested state changes and cleanup. */
|
|
16
|
+
export declare function trackReactNavigation(ref: CrumbNavigationRef): () => void;
|
|
17
|
+
/** Pass Expo Router useSegments(), never usePathname() or search parameters. */
|
|
18
|
+
export declare function useExpoRouterScreen(segments: readonly string[]): void;
|
|
19
|
+
//# sourceMappingURL=screen-context.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"screen-context.d.ts","sourceRoot":"","sources":["../../../src/screen-context.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,kBAAkB;IACjC,uFAAuF;IACvF,QAAQ,CAAC,KAAK,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;CACpC;AAQD,2FAA2F;AAC3F,MAAM,WAAW,kBAAkB;IACjC,OAAO,IAAI,OAAO,CAAC;IACnB,YAAY,IAAI,OAAO,CAAC;IACxB,WAAW,CAAC,KAAK,EAAE,OAAO,GAAG,OAAO,EAAE,QAAQ,EAAE,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC;CACzE;AAKD,sEAAsE;AACtE,wBAAgB,iBAAiB,IAAI,MAAM,CAE1C;AA+BD,+FAA+F;AAC/F,wBAAgB,SAAS,CACvB,IAAI,EAAE,MAAM,GAAG,IAAI,EACnB,OAAO,CAAC,EAAE,kBAAkB,GAC3B,IAAI,CAmBN;AAMD,+FAA+F;AAC/F,wBAAgB,oBAAoB,CAAC,GAAG,EAAE,kBAAkB,GAAG,MAAM,IAAI,CAwCxE;AAED,gFAAgF;AAChF,wBAAgB,mBAAmB,CAAC,QAAQ,EAAE,SAAS,MAAM,EAAE,GAAG,IAAI,CAsBrE"}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export type CrumbInvocation = 'shake' | 'programmatic';
|
|
2
|
+
export type CrumbTheme = 'system' | 'light' | 'dark';
|
|
3
|
+
export type CrumbReporterField = 'category' | 'description';
|
|
4
|
+
export type CrumbEvidenceCategory = 'screenshot' | 'performance' | 'network' | 'logs' | 'thread_stacks' | 'health_check' | 'custom_context';
|
|
2
5
|
export type CrumbLogLevel = 'debug' | 'info' | 'notice' | 'warning' | 'error' | 'fault';
|
|
3
6
|
export interface CrumbRelease {
|
|
4
7
|
/** Defaults to the native bundle version name. */
|
|
@@ -21,15 +24,45 @@ export interface CrumbLogOptions {
|
|
|
21
24
|
/** Captures console.warn and console.error while preserving their behavior. */
|
|
22
25
|
captureConsole?: boolean;
|
|
23
26
|
}
|
|
27
|
+
export interface CrumbJavaScriptCrashCaptureOptions {
|
|
28
|
+
/** Captures fatal JavaScript exceptions and unhandled promise rejections. */
|
|
29
|
+
enabled?: boolean;
|
|
30
|
+
/** Maximum number of recent Crumb breadcrumbs attached to a crash. */
|
|
31
|
+
maximumBreadcrumbs?: number;
|
|
32
|
+
/** Maximum UTF-8 bytes used by the attached breadcrumbs. */
|
|
33
|
+
maximumBreadcrumbBytes?: number;
|
|
34
|
+
}
|
|
24
35
|
export interface CrumbDiagnosticsOptions {
|
|
25
36
|
healthCheckUrl?: string;
|
|
26
37
|
timeoutMs?: number;
|
|
27
38
|
logs?: CrumbLogOptions;
|
|
39
|
+
javascriptCrashCapture?: CrumbJavaScriptCrashCaptureOptions;
|
|
40
|
+
/** Opt-in rolling five-second rendering statistics; no screen content is recorded. */
|
|
41
|
+
renderingEnabled?: boolean;
|
|
28
42
|
}
|
|
29
43
|
export interface CrumbPrivacyOptions {
|
|
30
44
|
maskAllTextInputs?: boolean;
|
|
31
45
|
maskScreenshotsBeforeUpload?: boolean;
|
|
32
46
|
}
|
|
47
|
+
export interface CrumbReporterOptions {
|
|
48
|
+
/** Controls only the built-in reporter appearance. */
|
|
49
|
+
theme?: CrumbTheme;
|
|
50
|
+
/** The description field is always required by the report contract. */
|
|
51
|
+
visibleFields?: readonly CrumbReporterField[];
|
|
52
|
+
}
|
|
53
|
+
export interface CrumbApplicationMetadata {
|
|
54
|
+
name?: string;
|
|
55
|
+
}
|
|
56
|
+
export interface CrumbCustomContextOptions {
|
|
57
|
+
/** String-only context values; only explicitly allowed keys are persisted. */
|
|
58
|
+
values?: Readonly<Record<string, string>>;
|
|
59
|
+
allowedKeys?: readonly string[];
|
|
60
|
+
}
|
|
61
|
+
export interface CrumbWorkspacePolicyOptions {
|
|
62
|
+
/** Public policy endpoint. Omit to keep configuration local-only. */
|
|
63
|
+
url?: string;
|
|
64
|
+
timeoutMs?: number;
|
|
65
|
+
}
|
|
33
66
|
export interface CrumbUploadOptions {
|
|
34
67
|
/** Base URL of the Crumb ingestion API. Omit to keep reports local-only. */
|
|
35
68
|
ingestionUrl?: string;
|
|
@@ -43,6 +76,11 @@ export interface CrumbConfiguration {
|
|
|
43
76
|
diagnostics?: CrumbDiagnosticsOptions;
|
|
44
77
|
privacy?: CrumbPrivacyOptions;
|
|
45
78
|
upload?: CrumbUploadOptions;
|
|
79
|
+
reporter?: CrumbReporterOptions;
|
|
80
|
+
evidence?: readonly CrumbEvidenceCategory[];
|
|
81
|
+
application?: CrumbApplicationMetadata;
|
|
82
|
+
customContext?: CrumbCustomContextOptions;
|
|
83
|
+
workspacePolicy?: CrumbWorkspacePolicyOptions;
|
|
46
84
|
}
|
|
47
85
|
export type CrumbLogMetadata = Readonly<Record<string, unknown>>;
|
|
48
86
|
export interface CrumbLogEntry {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,eAAe,GAAG,OAAO,GAAG,cAAc,CAAC;AAEvD,MAAM,MAAM,aAAa,GACrB,OAAO,GACP,MAAM,GACN,QAAQ,GACR,SAAS,GACT,OAAO,GACP,OAAO,CAAC;AAEZ,MAAM,WAAW,YAAY;IAC3B,kDAAkD;IAClD,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,kDAAkD;IAClD,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kEAAkE;IAClE,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,mBAAmB;IAClC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,0BAA0B,CAAC,EAAE,MAAM,CAAC;IACpC,sBAAsB,CAAC,EAAE,MAAM,CAAC;CACjC;AAED,MAAM,WAAW,eAAe;IAC9B,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,+EAA+E;IAC/E,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED,MAAM,WAAW,uBAAuB;IACtC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
version = File.read(File.expand_path("VERSION", __dir__)).strip
|
|
2
|
+
|
|
3
|
+
Pod::Spec.new do |spec|
|
|
4
|
+
spec.name = "CrumbSDKCore"
|
|
5
|
+
spec.version = version
|
|
6
|
+
spec.summary = "Configuration, reports, queues, and upload transport for Crumb"
|
|
7
|
+
spec.description = <<-DESC
|
|
8
|
+
The non-visual Crumb SDK module: configuration, privacy-bounded report
|
|
9
|
+
envelopes, durable local queueing, and reliable report upload.
|
|
10
|
+
DESC
|
|
11
|
+
spec.homepage = "https://github.com/alexander126/crumb"
|
|
12
|
+
spec.license = { type: "Apache-2.0", file: "LICENSE" }
|
|
13
|
+
spec.authors = "Crumb contributors"
|
|
14
|
+
spec.source = {
|
|
15
|
+
git: "https://github.com/alexander126/crumb.git",
|
|
16
|
+
tag: spec.version.to_s
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
spec.ios.deployment_target = "15.0"
|
|
20
|
+
spec.swift_version = "6.0"
|
|
21
|
+
spec.module_name = "CrumbCore"
|
|
22
|
+
spec.source_files = "packages/ios/Sources/CrumbCore/**/*.swift"
|
|
23
|
+
spec.frameworks = ["CryptoKit"]
|
|
24
|
+
spec.dependency "PLCrashReporter", "1.12.0"
|
|
25
|
+
spec.pod_target_xcconfig = {
|
|
26
|
+
"OTHER_SWIFT_FLAGS" => "$(inherited) -package-name Crumb"
|
|
27
|
+
}
|
|
28
|
+
end
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
version = File.read(File.expand_path("VERSION", __dir__)).strip
|
|
2
|
+
|
|
3
|
+
Pod::Spec.new do |spec|
|
|
4
|
+
spec.name = "CrumbSDKUI"
|
|
5
|
+
spec.version = version
|
|
6
|
+
spec.summary = "The native, on-demand issue reporter interface for Crumb"
|
|
7
|
+
spec.description = <<-DESC
|
|
8
|
+
Crumb's UIKit reporter, foreground shake lifecycle, screenshot masking, and
|
|
9
|
+
report-time diagnostics. It stays idle until the reporter is invoked.
|
|
10
|
+
DESC
|
|
11
|
+
spec.homepage = "https://github.com/alexander126/crumb"
|
|
12
|
+
spec.license = { type: "Apache-2.0", file: "LICENSE" }
|
|
13
|
+
spec.authors = "Crumb contributors"
|
|
14
|
+
spec.source = {
|
|
15
|
+
git: "https://github.com/alexander126/crumb.git",
|
|
16
|
+
tag: spec.version.to_s
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
spec.ios.deployment_target = "15.0"
|
|
20
|
+
spec.swift_version = "6.0"
|
|
21
|
+
spec.module_name = "CrumbUI"
|
|
22
|
+
spec.source_files = "packages/ios/Sources/CrumbUI/**/*.swift"
|
|
23
|
+
spec.resource_bundles = {
|
|
24
|
+
"CrumbUI" => "packages/ios/Sources/CrumbUI/Resources/**/*"
|
|
25
|
+
}
|
|
26
|
+
spec.dependency "CrumbSDKCore", spec.version.to_s
|
|
27
|
+
spec.frameworks = [
|
|
28
|
+
"CoreMotion",
|
|
29
|
+
"CoreTelephony",
|
|
30
|
+
"CryptoKit",
|
|
31
|
+
"Network",
|
|
32
|
+
"OSLog",
|
|
33
|
+
"UIKit"
|
|
34
|
+
]
|
|
35
|
+
spec.pod_target_xcconfig = {
|
|
36
|
+
"OTHER_SWIFT_FLAGS" => "$(inherited) -package-name Crumb"
|
|
37
|
+
}
|
|
38
|
+
end
|