@jmartins-tillster/analytics-react-native 2.21.3

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 (602) hide show
  1. package/.editorconfig +10 -0
  2. package/.eslintignore +11 -0
  3. package/.eslintrc.js +60 -0
  4. package/.gitattributes +4 -0
  5. package/.github/ISSUE_TEMPLATE/BUG_REPORT.md +23 -0
  6. package/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md +18 -0
  7. package/.github/workflows/ci.yml +158 -0
  8. package/.github/workflows/create_jira.yml +41 -0
  9. package/.github/workflows/publish.yml +57 -0
  10. package/.husky/commit-msg +4 -0
  11. package/.husky/pre-commit +4 -0
  12. package/.prettierrc.js +7 -0
  13. package/.yarnrc.yml +2 -0
  14. package/CODE_OF_CONDUCT.md +84 -0
  15. package/CONTRIBUTING.md +141 -0
  16. package/LICENSE +21 -0
  17. package/MIGRATION_GUIDE.md +185 -0
  18. package/README.md +944 -0
  19. package/babel.config.js +3 -0
  20. package/commitlint.config.js +13 -0
  21. package/examples/AnalyticsReactNativeExample/.bundle/config +2 -0
  22. package/examples/AnalyticsReactNativeExample/.eslintrc.js +4 -0
  23. package/examples/AnalyticsReactNativeExample/.prettierrc.js +7 -0
  24. package/examples/AnalyticsReactNativeExample/.watchmanconfig +1 -0
  25. package/examples/AnalyticsReactNativeExample/App.tsx +164 -0
  26. package/examples/AnalyticsReactNativeExample/Gemfile +9 -0
  27. package/examples/AnalyticsReactNativeExample/Gemfile.lock +106 -0
  28. package/examples/AnalyticsReactNativeExample/Home.tsx +206 -0
  29. package/examples/AnalyticsReactNativeExample/Modal.tsx +25 -0
  30. package/examples/AnalyticsReactNativeExample/README.md +79 -0
  31. package/examples/AnalyticsReactNativeExample/SecondPage.tsx +25 -0
  32. package/examples/AnalyticsReactNativeExample/android/app/build.gradle +119 -0
  33. package/examples/AnalyticsReactNativeExample/android/app/debug.keystore +0 -0
  34. package/examples/AnalyticsReactNativeExample/android/app/proguard-rules.pro +10 -0
  35. package/examples/AnalyticsReactNativeExample/android/app/src/debug/AndroidManifest.xml +9 -0
  36. package/examples/AnalyticsReactNativeExample/android/app/src/main/AndroidManifest.xml +26 -0
  37. package/examples/AnalyticsReactNativeExample/android/app/src/main/java/com/analyticsreactnativeexample/MainActivity.kt +22 -0
  38. package/examples/AnalyticsReactNativeExample/android/app/src/main/java/com/analyticsreactnativeexample/MainApplication.kt +44 -0
  39. package/examples/AnalyticsReactNativeExample/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
  40. package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  41. package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  42. package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  43. package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  44. package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  45. package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  46. package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  47. package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  48. package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  49. package/examples/AnalyticsReactNativeExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  50. package/examples/AnalyticsReactNativeExample/android/app/src/main/res/values/strings.xml +3 -0
  51. package/examples/AnalyticsReactNativeExample/android/app/src/main/res/values/styles.xml +9 -0
  52. package/examples/AnalyticsReactNativeExample/android/build.gradle +21 -0
  53. package/examples/AnalyticsReactNativeExample/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  54. package/examples/AnalyticsReactNativeExample/android/gradle/wrapper/gradle-wrapper.properties +8 -0
  55. package/examples/AnalyticsReactNativeExample/android/gradle.properties +39 -0
  56. package/examples/AnalyticsReactNativeExample/android/gradlew +252 -0
  57. package/examples/AnalyticsReactNativeExample/android/gradlew.bat +94 -0
  58. package/examples/AnalyticsReactNativeExample/android/settings.gradle +6 -0
  59. package/examples/AnalyticsReactNativeExample/app.json +4 -0
  60. package/examples/AnalyticsReactNativeExample/babel.config.js +3 -0
  61. package/examples/AnalyticsReactNativeExample/index.js +9 -0
  62. package/examples/AnalyticsReactNativeExample/ios/.xcode.env +11 -0
  63. package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/AppDelegate.h +6 -0
  64. package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/AppDelegate.mm +31 -0
  65. package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  66. package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/Images.xcassets/Contents.json +6 -0
  67. package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/Info.plist +52 -0
  68. package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/LaunchScreen.storyboard +47 -0
  69. package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/PrivacyInfo.xcprivacy +37 -0
  70. package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample/main.m +10 -0
  71. package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample.xcodeproj/project.pbxproj +705 -0
  72. package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample.xcodeproj/xcshareddata/xcschemes/AnalyticsReactNativeExample.xcscheme +88 -0
  73. package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample.xcworkspace/contents.xcworkspacedata +10 -0
  74. package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  75. package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExampleTests/AnalyticsReactNativeExampleTests.m +66 -0
  76. package/examples/AnalyticsReactNativeExample/ios/AnalyticsReactNativeExampleTests/Info.plist +24 -0
  77. package/examples/AnalyticsReactNativeExample/ios/Podfile +40 -0
  78. package/examples/AnalyticsReactNativeExample/ios/Podfile.lock +1961 -0
  79. package/examples/AnalyticsReactNativeExample/metro.config.js +11 -0
  80. package/examples/AnalyticsReactNativeExample/package.json +55 -0
  81. package/examples/AnalyticsReactNativeExample/plugins/ConsentManager.tsx +75 -0
  82. package/examples/AnalyticsReactNativeExample/plugins/Logger.ts +16 -0
  83. package/examples/AnalyticsReactNativeExample/react-native.config.js +9 -0
  84. package/examples/AnalyticsReactNativeExample/tsconfig.json +3 -0
  85. package/examples/AnalyticsReactNativeExample/workspace.js +5 -0
  86. package/examples/AnalyticsReactNativeExample/yarn.lock +11110 -0
  87. package/examples/E2E/.bundle/config +2 -0
  88. package/examples/E2E/.detoxrc.js +96 -0
  89. package/examples/E2E/.mise.toml +5 -0
  90. package/examples/E2E/.prettierrc.js +7 -0
  91. package/examples/E2E/.watchmanconfig +1 -0
  92. package/examples/E2E/App.tsx +176 -0
  93. package/examples/E2E/Gemfile +7 -0
  94. package/examples/E2E/Gemfile.lock +101 -0
  95. package/examples/E2E/Home.tsx +206 -0
  96. package/examples/E2E/Modal.tsx +25 -0
  97. package/examples/E2E/README.md +79 -0
  98. package/examples/E2E/SecondPage.tsx +25 -0
  99. package/examples/E2E/android/app/build.gradle +128 -0
  100. package/examples/E2E/android/app/debug.keystore +0 -0
  101. package/examples/E2E/android/app/proguard-rules.pro +10 -0
  102. package/examples/E2E/android/app/src/androidTest/java/com/segmentanalyticsreactnativeexample/DetoxTest.java +29 -0
  103. package/examples/E2E/android/app/src/debug/AndroidManifest.xml +13 -0
  104. package/examples/E2E/android/app/src/debug/java/com/analyticsreactnativeexample/ReactNativeFlipper.java +75 -0
  105. package/examples/E2E/android/app/src/main/AndroidManifest.xml +26 -0
  106. package/examples/E2E/android/app/src/main/java/com/analyticsreactnativeexample/MainActivity.java +32 -0
  107. package/examples/E2E/android/app/src/main/java/com/analyticsreactnativeexample/MainApplication.java +62 -0
  108. package/examples/E2E/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
  109. package/examples/E2E/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  110. package/examples/E2E/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  111. package/examples/E2E/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  112. package/examples/E2E/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  113. package/examples/E2E/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  114. package/examples/E2E/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  115. package/examples/E2E/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  116. package/examples/E2E/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  117. package/examples/E2E/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  118. package/examples/E2E/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  119. package/examples/E2E/android/app/src/main/res/values/strings.xml +3 -0
  120. package/examples/E2E/android/app/src/main/res/values/styles.xml +9 -0
  121. package/examples/E2E/android/app/src/main/res/xml/network_security_config.xml +7 -0
  122. package/examples/E2E/android/app/src/release/java/com/analyticsreactnativeexample/ReactNativeFlipper.java +20 -0
  123. package/examples/E2E/android/build.gradle +37 -0
  124. package/examples/E2E/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  125. package/examples/E2E/android/gradle/wrapper/gradle-wrapper.properties +6 -0
  126. package/examples/E2E/android/gradle.properties +44 -0
  127. package/examples/E2E/android/gradlew +244 -0
  128. package/examples/E2E/android/gradlew.bat +92 -0
  129. package/examples/E2E/android/settings.gradle +4 -0
  130. package/examples/E2E/app.json +4 -0
  131. package/examples/E2E/babel.config.js +14 -0
  132. package/examples/E2E/e2e/jest.config.js +13 -0
  133. package/examples/E2E/e2e/main.e2e.js +192 -0
  134. package/examples/E2E/e2e/matchers.js +34 -0
  135. package/examples/E2E/e2e/mockServer.js +56 -0
  136. package/examples/E2E/index.js +11 -0
  137. package/examples/E2E/ios/.xcode.env +11 -0
  138. package/examples/E2E/ios/AnalyticsReactNativeE2E/AppDelegate.h +6 -0
  139. package/examples/E2E/ios/AnalyticsReactNativeE2E/AppDelegate.mm +26 -0
  140. package/examples/E2E/ios/AnalyticsReactNativeE2E/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  141. package/examples/E2E/ios/AnalyticsReactNativeE2E/Images.xcassets/Contents.json +6 -0
  142. package/examples/E2E/ios/AnalyticsReactNativeE2E/Info.plist +55 -0
  143. package/examples/E2E/ios/AnalyticsReactNativeE2E/LaunchScreen.storyboard +47 -0
  144. package/examples/E2E/ios/AnalyticsReactNativeE2E/main.m +10 -0
  145. package/examples/E2E/ios/AnalyticsReactNativeE2E.xcodeproj/project.pbxproj +721 -0
  146. package/examples/E2E/ios/AnalyticsReactNativeE2E.xcworkspace/contents.xcworkspacedata +10 -0
  147. package/examples/E2E/ios/AnalyticsReactNativeE2E.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  148. package/examples/E2E/ios/AnalyticsReactNativeE2ETests/AnalyticsReactNativeExampleTests.m +66 -0
  149. package/examples/E2E/ios/AnalyticsReactNativeE2ETests/Info.plist +24 -0
  150. package/examples/E2E/ios/Podfile +62 -0
  151. package/examples/E2E/ios/Podfile.lock +763 -0
  152. package/examples/E2E/jest.config.js +3 -0
  153. package/examples/E2E/metro.config.js +45 -0
  154. package/examples/E2E/package.json +65 -0
  155. package/examples/E2E/plugins/Logger.ts +16 -0
  156. package/examples/E2E/react-native.config.js +7 -0
  157. package/examples/E2E/workspace.js +5 -0
  158. package/examples/E2E/yarn.lock +10898 -0
  159. package/examples/E2E-73/.bundle/config +2 -0
  160. package/examples/E2E-73/.detoxrc.js +96 -0
  161. package/examples/E2E-73/.eslintrc.js +4 -0
  162. package/examples/E2E-73/.mise.toml +5 -0
  163. package/examples/E2E-73/.prettierrc.js +7 -0
  164. package/examples/E2E-73/.watchmanconfig +1 -0
  165. package/examples/E2E-73/App.tsx +175 -0
  166. package/examples/E2E-73/Gemfile +7 -0
  167. package/examples/E2E-73/Gemfile.lock +99 -0
  168. package/examples/E2E-73/Home.tsx +206 -0
  169. package/examples/E2E-73/Modal.tsx +25 -0
  170. package/examples/E2E-73/README.md +79 -0
  171. package/examples/E2E-73/SecondPage.tsx +25 -0
  172. package/examples/E2E-73/android/app/build.gradle +119 -0
  173. package/examples/E2E-73/android/app/debug.keystore +0 -0
  174. package/examples/E2E-73/android/app/proguard-rules.pro +10 -0
  175. package/examples/E2E-73/android/app/src/debug/AndroidManifest.xml +9 -0
  176. package/examples/E2E-73/android/app/src/main/AndroidManifest.xml +25 -0
  177. package/examples/E2E-73/android/app/src/main/java/com/analyticsreactnativee2e73/MainActivity.kt +22 -0
  178. package/examples/E2E-73/android/app/src/main/java/com/analyticsreactnativee2e73/MainApplication.kt +45 -0
  179. package/examples/E2E-73/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
  180. package/examples/E2E-73/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  181. package/examples/E2E-73/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  182. package/examples/E2E-73/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  183. package/examples/E2E-73/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  184. package/examples/E2E-73/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  185. package/examples/E2E-73/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  186. package/examples/E2E-73/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  187. package/examples/E2E-73/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  188. package/examples/E2E-73/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  189. package/examples/E2E-73/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  190. package/examples/E2E-73/android/app/src/main/res/values/strings.xml +3 -0
  191. package/examples/E2E-73/android/app/src/main/res/values/styles.xml +9 -0
  192. package/examples/E2E-73/android/build.gradle +21 -0
  193. package/examples/E2E-73/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  194. package/examples/E2E-73/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  195. package/examples/E2E-73/android/gradle.properties +41 -0
  196. package/examples/E2E-73/android/gradlew +249 -0
  197. package/examples/E2E-73/android/gradlew.bat +92 -0
  198. package/examples/E2E-73/android/settings.gradle +4 -0
  199. package/examples/E2E-73/app.json +4 -0
  200. package/examples/E2E-73/babel.config.js +14 -0
  201. package/examples/E2E-73/e2e/jest.config.js +13 -0
  202. package/examples/E2E-73/e2e/main.e2e.js +192 -0
  203. package/examples/E2E-73/e2e/matchers.js +34 -0
  204. package/examples/E2E-73/e2e/mockServer.js +56 -0
  205. package/examples/E2E-73/index.js +9 -0
  206. package/examples/E2E-73/ios/.xcode.env +11 -0
  207. package/examples/E2E-73/ios/AnalyticsReactNativeE2E73/AppDelegate.h +6 -0
  208. package/examples/E2E-73/ios/AnalyticsReactNativeE2E73/AppDelegate.mm +31 -0
  209. package/examples/E2E-73/ios/AnalyticsReactNativeE2E73/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  210. package/examples/E2E-73/ios/AnalyticsReactNativeE2E73/Images.xcassets/Contents.json +6 -0
  211. package/examples/E2E-73/ios/AnalyticsReactNativeE2E73/Info.plist +51 -0
  212. package/examples/E2E-73/ios/AnalyticsReactNativeE2E73/LaunchScreen.storyboard +47 -0
  213. package/examples/E2E-73/ios/AnalyticsReactNativeE2E73/main.m +10 -0
  214. package/examples/E2E-73/ios/AnalyticsReactNativeE2E73.xcodeproj/project.pbxproj +700 -0
  215. package/examples/E2E-73/ios/AnalyticsReactNativeE2E73.xcodeproj/xcshareddata/xcschemes/AnalyticsReactNativeE2E73.xcscheme +88 -0
  216. package/examples/E2E-73/ios/AnalyticsReactNativeE2E73.xcworkspace/contents.xcworkspacedata +10 -0
  217. package/examples/E2E-73/ios/AnalyticsReactNativeE2E73Tests/AnalyticsReactNativeE2E73Tests.m +66 -0
  218. package/examples/E2E-73/ios/AnalyticsReactNativeE2E73Tests/Info.plist +24 -0
  219. package/examples/E2E-73/ios/Podfile +55 -0
  220. package/examples/E2E-73/ios/Podfile.lock +1425 -0
  221. package/examples/E2E-73/jest.config.js +3 -0
  222. package/examples/E2E-73/metro.config.js +45 -0
  223. package/examples/E2E-73/package.json +62 -0
  224. package/examples/E2E-73/plugins/Logger.ts +16 -0
  225. package/examples/E2E-73/react-native.config.js +12 -0
  226. package/examples/E2E-73/tsconfig.json +3 -0
  227. package/examples/E2E-73/workspace.js +5 -0
  228. package/examples/E2E-73/yarn.lock +10789 -0
  229. package/examples/README.md +142 -0
  230. package/examples/linkHelper.js +45 -0
  231. package/jest.config.js +7 -0
  232. package/multi-release.config.js +7 -0
  233. package/package.json +79 -0
  234. package/packages/core/CHANGELOG.md +274 -0
  235. package/packages/core/LICENSE +21 -0
  236. package/packages/core/README.md +3 -0
  237. package/packages/core/android/build.gradle +96 -0
  238. package/packages/core/android/gradle.properties +5 -0
  239. package/packages/core/android/src/main/AndroidManifest.xml +4 -0
  240. package/packages/core/android/src/main/AndroidManifestNew.xml +3 -0
  241. package/packages/core/android/src/main/java/com/segmentanalyticsreactnative/AnalyticsReactNativeModule.kt +265 -0
  242. package/packages/core/android/src/main/java/com/segmentanalyticsreactnative/AnalyticsReactNativePackage.kt +43 -0
  243. package/packages/core/babel.config.js +3 -0
  244. package/packages/core/constants-generator.js +17 -0
  245. package/packages/core/ios/AnalyticsReactNative-Bridging-Header.h +1 -0
  246. package/packages/core/ios/AnalyticsReactNative.m +7 -0
  247. package/packages/core/ios/AnalyticsReactNative.swift +142 -0
  248. package/packages/core/ios/AnalyticsReactNative.xcodeproj/project.pbxproj +281 -0
  249. package/packages/core/ios/PrivacyInfo.xcprivacy +70 -0
  250. package/packages/core/jest.config.js +5 -0
  251. package/packages/core/package.json +85 -0
  252. package/packages/core/release.config.js +3 -0
  253. package/packages/core/segment-analytics-react-native.podspec +35 -0
  254. package/packages/core/src/__tests__/__snapshots__/mapTransform.test.ts.snap +20 -0
  255. package/packages/core/src/__tests__/analytics.test.ts +252 -0
  256. package/packages/core/src/__tests__/api.test.ts +91 -0
  257. package/packages/core/src/__tests__/client.test.ts +27 -0
  258. package/packages/core/src/__tests__/context.test.ts +122 -0
  259. package/packages/core/src/__tests__/events.test.ts +234 -0
  260. package/packages/core/src/__tests__/internal/checkInstalledVersion.test.ts +221 -0
  261. package/packages/core/src/__tests__/internal/fetchSettings.test.ts +438 -0
  262. package/packages/core/src/__tests__/internal/handleAppStateChange.test.ts +178 -0
  263. package/packages/core/src/__tests__/internal/trackDeepLinks.test.ts +121 -0
  264. package/packages/core/src/__tests__/logger.test.ts +83 -0
  265. package/packages/core/src/__tests__/mapTransform.test.ts +63 -0
  266. package/packages/core/src/__tests__/methods/alias.test.ts +89 -0
  267. package/packages/core/src/__tests__/methods/flush.test.ts +120 -0
  268. package/packages/core/src/__tests__/methods/group.test.ts +48 -0
  269. package/packages/core/src/__tests__/methods/identify.test.ts +132 -0
  270. package/packages/core/src/__tests__/methods/process.test.ts +162 -0
  271. package/packages/core/src/__tests__/methods/screen.test.ts +48 -0
  272. package/packages/core/src/__tests__/methods/track.test.ts +49 -0
  273. package/packages/core/src/__tests__/timeline.test.ts +130 -0
  274. package/packages/core/src/__tests__/util.test.ts +200 -0
  275. package/packages/core/src/analytics.ts +1030 -0
  276. package/packages/core/src/api.ts +23 -0
  277. package/packages/core/src/client.tsx +76 -0
  278. package/packages/core/src/constants.ts +18 -0
  279. package/packages/core/src/context.ts +107 -0
  280. package/packages/core/src/errors.ts +123 -0
  281. package/packages/core/src/events.ts +75 -0
  282. package/packages/core/src/flushPolicies/__tests__/background-flush-policy.test.ts +39 -0
  283. package/packages/core/src/flushPolicies/__tests__/count-flush-policy.test.ts +28 -0
  284. package/packages/core/src/flushPolicies/__tests__/flush-policy-executer.test.ts +85 -0
  285. package/packages/core/src/flushPolicies/__tests__/timer-flush-policy.test.ts +30 -0
  286. package/packages/core/src/flushPolicies/background-flush-policy.ts +21 -0
  287. package/packages/core/src/flushPolicies/count-flush-policy.ts +31 -0
  288. package/packages/core/src/flushPolicies/flush-policy-executer.ts +100 -0
  289. package/packages/core/src/flushPolicies/index.ts +5 -0
  290. package/packages/core/src/flushPolicies/startup-flush-policy.ts +20 -0
  291. package/packages/core/src/flushPolicies/timer-flush-policy.ts +45 -0
  292. package/packages/core/src/flushPolicies/types.ts +93 -0
  293. package/packages/core/src/index.ts +28 -0
  294. package/packages/core/src/logger.ts +37 -0
  295. package/packages/core/src/mapTransform.ts +48 -0
  296. package/packages/core/src/plugin.ts +212 -0
  297. package/packages/core/src/plugins/ConsentPlugin.ts +200 -0
  298. package/packages/core/src/plugins/DestinationMetadataEnrichment.ts +67 -0
  299. package/packages/core/src/plugins/QueueFlushingPlugin.ts +149 -0
  300. package/packages/core/src/plugins/SegmentDestination.ts +153 -0
  301. package/packages/core/src/plugins/__tests__/QueueFlushingPlugin.test.ts +143 -0
  302. package/packages/core/src/plugins/__tests__/SegmentDestination.test.ts +549 -0
  303. package/packages/core/src/plugins/__tests__/consent/consentNotEnabledAtSegment.test.ts +123 -0
  304. package/packages/core/src/plugins/__tests__/consent/destinationMultipleCategories.test.ts +147 -0
  305. package/packages/core/src/plugins/__tests__/consent/idfa.test.ts +101 -0
  306. package/packages/core/src/plugins/__tests__/consent/mockSettings/ConsentNotEnabledAtSegment.json +70 -0
  307. package/packages/core/src/plugins/__tests__/consent/mockSettings/DestinationsMultipleCategories.json +73 -0
  308. package/packages/core/src/plugins/__tests__/consent/mockSettings/NoUnmappedDestinations.json +105 -0
  309. package/packages/core/src/plugins/__tests__/consent/mockSettings/UnmappedDestinations.json +101 -0
  310. package/packages/core/src/plugins/__tests__/consent/noUnmapped.test.ts +234 -0
  311. package/packages/core/src/plugins/__tests__/consent/unmapped.test.ts +265 -0
  312. package/packages/core/src/plugins/__tests__/consent/utils.ts +75 -0
  313. package/packages/core/src/storage/__tests__/sovranStorage.test.ts +153 -0
  314. package/packages/core/src/storage/helpers.ts +25 -0
  315. package/packages/core/src/storage/index.ts +3 -0
  316. package/packages/core/src/storage/sovranStorage.ts +558 -0
  317. package/packages/core/src/storage/types.ts +106 -0
  318. package/packages/core/src/test-helpers/index.ts +7 -0
  319. package/packages/core/src/test-helpers/mockDestinationPlugin.ts +7 -0
  320. package/packages/core/src/test-helpers/mockEventStore.ts +35 -0
  321. package/packages/core/src/test-helpers/mockLogger.ts +10 -0
  322. package/packages/core/src/test-helpers/mockSegmentStore.ts +266 -0
  323. package/packages/core/src/test-helpers/mockTimeline.ts +9 -0
  324. package/packages/core/src/test-helpers/setupSegmentClient.ts +59 -0
  325. package/packages/core/src/test-helpers/utils.ts +23 -0
  326. package/packages/core/src/timeline.ts +136 -0
  327. package/packages/core/src/types.ts +392 -0
  328. package/packages/core/src/util.ts +288 -0
  329. package/packages/core/src/uuid.ts +7 -0
  330. package/packages/core/tsconfig.json +10 -0
  331. package/packages/core/tsconfig.linter.json +11 -0
  332. package/packages/plugins/plugin-adjust/CHANGELOG.md +60 -0
  333. package/packages/plugins/plugin-adjust/LICENSE +21 -0
  334. package/packages/plugins/plugin-adjust/README.md +72 -0
  335. package/packages/plugins/plugin-adjust/babel.config.js +3 -0
  336. package/packages/plugins/plugin-adjust/jest.config.js +5 -0
  337. package/packages/plugins/plugin-adjust/package.json +72 -0
  338. package/packages/plugins/plugin-adjust/release.config.js +3 -0
  339. package/packages/plugins/plugin-adjust/src/AdjustPlugin.tsx +92 -0
  340. package/packages/plugins/plugin-adjust/src/index.ts +1 -0
  341. package/packages/plugins/plugin-adjust/src/methods/__mocks__/react-native-adjust.ts +19 -0
  342. package/packages/plugins/plugin-adjust/src/methods/__tests__/identify.test.ts +34 -0
  343. package/packages/plugins/plugin-adjust/src/methods/__tests__/reset.test.ts +15 -0
  344. package/packages/plugins/plugin-adjust/src/methods/__tests__/track.test.ts +148 -0
  345. package/packages/plugins/plugin-adjust/src/methods/identify.ts +14 -0
  346. package/packages/plugins/plugin-adjust/src/methods/reset.ts +9 -0
  347. package/packages/plugins/plugin-adjust/src/methods/track.ts +47 -0
  348. package/packages/plugins/plugin-adjust/src/util.ts +29 -0
  349. package/packages/plugins/plugin-adjust/tsconfig.json +10 -0
  350. package/packages/plugins/plugin-advertising-id/CHANGELOG.md +101 -0
  351. package/packages/plugins/plugin-advertising-id/CONTRIBUTING.md +196 -0
  352. package/packages/plugins/plugin-advertising-id/LICENSE +21 -0
  353. package/packages/plugins/plugin-advertising-id/README.md +40 -0
  354. package/packages/plugins/plugin-advertising-id/android/build.gradle +96 -0
  355. package/packages/plugins/plugin-advertising-id/android/gradle.properties +5 -0
  356. package/packages/plugins/plugin-advertising-id/android/src/main/AndroidManifest.xml +4 -0
  357. package/packages/plugins/plugin-advertising-id/android/src/main/AndroidManifestNew.xml +3 -0
  358. package/packages/plugins/plugin-advertising-id/android/src/main/java/com/reactnativeanalyticsreactnativepluginadvertisingid/AnalyticsReactNativePluginAdvertisingIdModule.kt +64 -0
  359. package/packages/plugins/plugin-advertising-id/android/src/main/java/com/reactnativeanalyticsreactnativepluginadvertisingid/AnalyticsReactNativePluginAdvertisingIdPackage.kt +17 -0
  360. package/packages/plugins/plugin-advertising-id/babel.config.js +3 -0
  361. package/packages/plugins/plugin-advertising-id/jest.config.js +5 -0
  362. package/packages/plugins/plugin-advertising-id/package.json +70 -0
  363. package/packages/plugins/plugin-advertising-id/release.config.js +3 -0
  364. package/packages/plugins/plugin-advertising-id/src/AdvertisingIdPlugin.ts +172 -0
  365. package/packages/plugins/plugin-advertising-id/src/index.ts +1 -0
  366. package/packages/plugins/plugin-advertising-id/src/types.ts +3 -0
  367. package/packages/plugins/plugin-advertising-id/tsconfig.json +10 -0
  368. package/packages/plugins/plugin-amplitudeSession/CHANGELOG.md +46 -0
  369. package/packages/plugins/plugin-amplitudeSession/LICENSE +21 -0
  370. package/packages/plugins/plugin-amplitudeSession/README.md +66 -0
  371. package/packages/plugins/plugin-amplitudeSession/babel.config.js +3 -0
  372. package/packages/plugins/plugin-amplitudeSession/jest.config.js +5 -0
  373. package/packages/plugins/plugin-amplitudeSession/package.json +71 -0
  374. package/packages/plugins/plugin-amplitudeSession/release.config.js +3 -0
  375. package/packages/plugins/plugin-amplitudeSession/src/AmplitudeSessionPlugin.tsx +327 -0
  376. package/packages/plugins/plugin-amplitudeSession/src/__tests__/AmplitudeSessionPlugin.test.ts +769 -0
  377. package/packages/plugins/plugin-amplitudeSession/src/index.ts +1 -0
  378. package/packages/plugins/plugin-amplitudeSession/tsconfig.json +10 -0
  379. package/packages/plugins/plugin-appsflyer/CHANGELOG.md +64 -0
  380. package/packages/plugins/plugin-appsflyer/LICENSE +21 -0
  381. package/packages/plugins/plugin-appsflyer/README.md +90 -0
  382. package/packages/plugins/plugin-appsflyer/babel.config.js +3 -0
  383. package/packages/plugins/plugin-appsflyer/jest.config.js +5 -0
  384. package/packages/plugins/plugin-appsflyer/package.json +74 -0
  385. package/packages/plugins/plugin-appsflyer/release.config.js +3 -0
  386. package/packages/plugins/plugin-appsflyer/src/AppsflyerPlugin.tsx +218 -0
  387. package/packages/plugins/plugin-appsflyer/src/__tests__/AppsflyerPlugin.test.ts +20 -0
  388. package/packages/plugins/plugin-appsflyer/src/index.ts +1 -0
  389. package/packages/plugins/plugin-appsflyer/src/methods/__mocks__/react-native-appsflyer.ts +11 -0
  390. package/packages/plugins/plugin-appsflyer/src/methods/__tests__/identify.test.ts +57 -0
  391. package/packages/plugins/plugin-appsflyer/src/methods/__tests__/track.test.ts +99 -0
  392. package/packages/plugins/plugin-appsflyer/src/methods/identify.ts +42 -0
  393. package/packages/plugins/plugin-appsflyer/src/methods/track.ts +61 -0
  394. package/packages/plugins/plugin-appsflyer/src/types.ts +9 -0
  395. package/packages/plugins/plugin-appsflyer/tsconfig.json +10 -0
  396. package/packages/plugins/plugin-branch/CHANGELOG.md +51 -0
  397. package/packages/plugins/plugin-branch/LICENSE +21 -0
  398. package/packages/plugins/plugin-branch/README.md +71 -0
  399. package/packages/plugins/plugin-branch/babel.config.js +3 -0
  400. package/packages/plugins/plugin-branch/jest.config.js +5 -0
  401. package/packages/plugins/plugin-branch/package.json +74 -0
  402. package/packages/plugins/plugin-branch/release.config.js +3 -0
  403. package/packages/plugins/plugin-branch/src/BranchPlugin.ts +42 -0
  404. package/packages/plugins/plugin-branch/src/index.ts +1 -0
  405. package/packages/plugins/plugin-branch/src/methods/__mocks__/react-native-branch.ts +16 -0
  406. package/packages/plugins/plugin-branch/src/methods/__tests__/alias.test.ts +23 -0
  407. package/packages/plugins/plugin-branch/src/methods/__tests__/identify.test.ts +23 -0
  408. package/packages/plugins/plugin-branch/src/methods/__tests__/screen.test.ts +38 -0
  409. package/packages/plugins/plugin-branch/src/methods/__tests__/track.test.ts +73 -0
  410. package/packages/plugins/plugin-branch/src/methods/alias.ts +9 -0
  411. package/packages/plugins/plugin-branch/src/methods/identify.ts +9 -0
  412. package/packages/plugins/plugin-branch/src/methods/parameterMapping.ts +109 -0
  413. package/packages/plugins/plugin-branch/src/methods/reset.ts +5 -0
  414. package/packages/plugins/plugin-branch/src/methods/screen.ts +17 -0
  415. package/packages/plugins/plugin-branch/src/methods/track.ts +18 -0
  416. package/packages/plugins/plugin-branch/src/methods/util.ts +64 -0
  417. package/packages/plugins/plugin-branch/tsconfig.json +10 -0
  418. package/packages/plugins/plugin-braze/CHANGELOG.md +101 -0
  419. package/packages/plugins/plugin-braze/LICENSE +21 -0
  420. package/packages/plugins/plugin-braze/README.md +72 -0
  421. package/packages/plugins/plugin-braze/babel.config.js +3 -0
  422. package/packages/plugins/plugin-braze/jest.config.js +5 -0
  423. package/packages/plugins/plugin-braze/package.json +74 -0
  424. package/packages/plugins/plugin-braze/release.config.js +3 -0
  425. package/packages/plugins/plugin-braze/src/BrazePlugin.tsx +346 -0
  426. package/packages/plugins/plugin-braze/src/index.ts +1 -0
  427. package/packages/plugins/plugin-braze/src/methods/__mocks__/@braze/react-native-sdk.ts +31 -0
  428. package/packages/plugins/plugin-braze/src/methods/__tests__/flush.test.ts +15 -0
  429. package/packages/plugins/plugin-braze/src/methods/__tests__/identify.test.ts +114 -0
  430. package/packages/plugins/plugin-braze/src/methods/__tests__/track.test.ts +321 -0
  431. package/packages/plugins/plugin-braze/src/methods/flush.ts +5 -0
  432. package/packages/plugins/plugin-braze/tsconfig.json +10 -0
  433. package/packages/plugins/plugin-braze-middleware/CHANGELOG.md +32 -0
  434. package/packages/plugins/plugin-braze-middleware/LICENSE +21 -0
  435. package/packages/plugins/plugin-braze-middleware/README.md +67 -0
  436. package/packages/plugins/plugin-braze-middleware/babel.config.js +3 -0
  437. package/packages/plugins/plugin-braze-middleware/jest.config.js +5 -0
  438. package/packages/plugins/plugin-braze-middleware/package.json +72 -0
  439. package/packages/plugins/plugin-braze-middleware/release.config.js +3 -0
  440. package/packages/plugins/plugin-braze-middleware/src/BrazeMiddlewarePlugin.tsx +38 -0
  441. package/packages/plugins/plugin-braze-middleware/src/index.ts +1 -0
  442. package/packages/plugins/plugin-braze-middleware/tsconfig.json +10 -0
  443. package/packages/plugins/plugin-clevertap/CHANGELOG.md +32 -0
  444. package/packages/plugins/plugin-clevertap/LICENSE +21 -0
  445. package/packages/plugins/plugin-clevertap/README.md +71 -0
  446. package/packages/plugins/plugin-clevertap/babel.config.js +3 -0
  447. package/packages/plugins/plugin-clevertap/jest.config.js +5 -0
  448. package/packages/plugins/plugin-clevertap/package.json +72 -0
  449. package/packages/plugins/plugin-clevertap/release.config.js +3 -0
  450. package/packages/plugins/plugin-clevertap/src/ClevertapPlugin.ts +75 -0
  451. package/packages/plugins/plugin-clevertap/src/__mocks__/clevertap-react-native.ts +5 -0
  452. package/packages/plugins/plugin-clevertap/src/__tests__/ClevertapPlugin.test.ts +164 -0
  453. package/packages/plugins/plugin-clevertap/src/index.ts +1 -0
  454. package/packages/plugins/plugin-clevertap/src/parameterMapping.ts +19 -0
  455. package/packages/plugins/plugin-clevertap/tsconfig.json +10 -0
  456. package/packages/plugins/plugin-destination-filters/CHANGELOG.md +39 -0
  457. package/packages/plugins/plugin-destination-filters/LICENSE +21 -0
  458. package/packages/plugins/plugin-destination-filters/README.md +71 -0
  459. package/packages/plugins/plugin-destination-filters/babel.config.js +3 -0
  460. package/packages/plugins/plugin-destination-filters/jest.config.js +5 -0
  461. package/packages/plugins/plugin-destination-filters/package.json +77 -0
  462. package/packages/plugins/plugin-destination-filters/release.config.js +3 -0
  463. package/packages/plugins/plugin-destination-filters/src/DestinationFilters.ts +90 -0
  464. package/packages/plugins/plugin-destination-filters/src/__tests__/DestinationFilters.test.ts +102 -0
  465. package/packages/plugins/plugin-destination-filters/src/index.tsx +1 -0
  466. package/packages/plugins/plugin-destination-filters/tsconfig.json +10 -0
  467. package/packages/plugins/plugin-device-token/CHANGELOG.md +71 -0
  468. package/packages/plugins/plugin-device-token/LICENSE +21 -0
  469. package/packages/plugins/plugin-device-token/README.md +98 -0
  470. package/packages/plugins/plugin-device-token/babel.config.js +3 -0
  471. package/packages/plugins/plugin-device-token/jest.config.js +5 -0
  472. package/packages/plugins/plugin-device-token/package.json +76 -0
  473. package/packages/plugins/plugin-device-token/release.config.js +3 -0
  474. package/packages/plugins/plugin-device-token/src/DeviceTokenPlugin.tsx +94 -0
  475. package/packages/plugins/plugin-device-token/src/index.ts +1 -0
  476. package/packages/plugins/plugin-device-token/src/methods/___tests__/DeviceTokenPlugin.test.ts +94 -0
  477. package/packages/plugins/plugin-device-token/tsconfig.json +10 -0
  478. package/packages/plugins/plugin-facebook-app-events/CHANGELOG.md +78 -0
  479. package/packages/plugins/plugin-facebook-app-events/LICENSE +21 -0
  480. package/packages/plugins/plugin-facebook-app-events/README.md +73 -0
  481. package/packages/plugins/plugin-facebook-app-events/babel.config.js +3 -0
  482. package/packages/plugins/plugin-facebook-app-events/jest.config.js +5 -0
  483. package/packages/plugins/plugin-facebook-app-events/package.json +72 -0
  484. package/packages/plugins/plugin-facebook-app-events/release.config.js +3 -0
  485. package/packages/plugins/plugin-facebook-app-events/src/FacebookAppEventsPlugin.ts +192 -0
  486. package/packages/plugins/plugin-facebook-app-events/src/__tests__/FacebookAppEventsPlugin.test.ts +284 -0
  487. package/packages/plugins/plugin-facebook-app-events/src/index.ts +1 -0
  488. package/packages/plugins/plugin-facebook-app-events/src/methods/__tests__/screen.test.ts +33 -0
  489. package/packages/plugins/plugin-facebook-app-events/src/methods/screen.ts +35 -0
  490. package/packages/plugins/plugin-facebook-app-events/src/parameterMapping.ts +46 -0
  491. package/packages/plugins/plugin-facebook-app-events/src/utils.ts +12 -0
  492. package/packages/plugins/plugin-facebook-app-events/tsconfig.json +10 -0
  493. package/packages/plugins/plugin-firebase/CHANGELOG.md +102 -0
  494. package/packages/plugins/plugin-firebase/LICENSE +21 -0
  495. package/packages/plugins/plugin-firebase/README.md +72 -0
  496. package/packages/plugins/plugin-firebase/babel.config.js +3 -0
  497. package/packages/plugins/plugin-firebase/jest.config.js +5 -0
  498. package/packages/plugins/plugin-firebase/package.json +74 -0
  499. package/packages/plugins/plugin-firebase/release.config.js +3 -0
  500. package/packages/plugins/plugin-firebase/src/FirebasePlugin.tsx +96 -0
  501. package/packages/plugins/plugin-firebase/src/index.ts +1 -0
  502. package/packages/plugins/plugin-firebase/src/methods/___tests__/identify.test.ts +73 -0
  503. package/packages/plugins/plugin-firebase/src/methods/___tests__/reset.test.ts +20 -0
  504. package/packages/plugins/plugin-firebase/src/methods/___tests__/screen.test.ts +33 -0
  505. package/packages/plugins/plugin-firebase/src/methods/___tests__/track.test.ts +85 -0
  506. package/packages/plugins/plugin-firebase/src/methods/parameterMapping.ts +45 -0
  507. package/packages/plugins/plugin-firebase/src/methods/reset.ts +5 -0
  508. package/packages/plugins/plugin-firebase/src/methods/screen.ts +12 -0
  509. package/packages/plugins/plugin-firebase/src/methods/track.ts +26 -0
  510. package/packages/plugins/plugin-firebase/tsconfig.json +10 -0
  511. package/packages/plugins/plugin-idfa/CHANGELOG.md +62 -0
  512. package/packages/plugins/plugin-idfa/LICENSE +21 -0
  513. package/packages/plugins/plugin-idfa/README.md +105 -0
  514. package/packages/plugins/plugin-idfa/babel.config.js +3 -0
  515. package/packages/plugins/plugin-idfa/ios/AnalyticsReactNativePluginIdfa-Bridging-Header.h +2 -0
  516. package/packages/plugins/plugin-idfa/ios/AnalyticsReactNativePluginIdfa.m +11 -0
  517. package/packages/plugins/plugin-idfa/ios/AnalyticsReactNativePluginIdfa.swift +68 -0
  518. package/packages/plugins/plugin-idfa/ios/AnalyticsReactNativePluginIdfa.xcodeproj/project.pbxproj +293 -0
  519. package/packages/plugins/plugin-idfa/jest.config.js +5 -0
  520. package/packages/plugins/plugin-idfa/package.json +70 -0
  521. package/packages/plugins/plugin-idfa/release.config.js +3 -0
  522. package/packages/plugins/plugin-idfa/segment-analytics-react-native-plugin-idfa.podspec +19 -0
  523. package/packages/plugins/plugin-idfa/src/AnalyticsReactNativePluginIdfa.e2e.mock.ts +12 -0
  524. package/packages/plugins/plugin-idfa/src/AnalyticsReactNativePluginIdfa.ts +18 -0
  525. package/packages/plugins/plugin-idfa/src/IdfaPlugin.tsx +80 -0
  526. package/packages/plugins/plugin-idfa/src/index.ts +1 -0
  527. package/packages/plugins/plugin-idfa/src/types.ts +13 -0
  528. package/packages/plugins/plugin-idfa/tsconfig.json +10 -0
  529. package/packages/plugins/plugin-mixpanel/CHANGELOG.md +73 -0
  530. package/packages/plugins/plugin-mixpanel/LICENSE +21 -0
  531. package/packages/plugins/plugin-mixpanel/README.md +71 -0
  532. package/packages/plugins/plugin-mixpanel/babel.config.js +3 -0
  533. package/packages/plugins/plugin-mixpanel/jest.config.js +5 -0
  534. package/packages/plugins/plugin-mixpanel/package.json +72 -0
  535. package/packages/plugins/plugin-mixpanel/release.config.js +3 -0
  536. package/packages/plugins/plugin-mixpanel/src/MixpanelPlugin.ts +106 -0
  537. package/packages/plugins/plugin-mixpanel/src/index.ts +1 -0
  538. package/packages/plugins/plugin-mixpanel/src/methods/__mocks__/mixpanel-react-native.ts +67 -0
  539. package/packages/plugins/plugin-mixpanel/src/methods/__tests__/MixpanelPlugin.test.ts +57 -0
  540. package/packages/plugins/plugin-mixpanel/src/methods/__tests__/__helpers__/constants.ts +18 -0
  541. package/packages/plugins/plugin-mixpanel/src/methods/__tests__/alias.test.ts +47 -0
  542. package/packages/plugins/plugin-mixpanel/src/methods/__tests__/group.test.ts +49 -0
  543. package/packages/plugins/plugin-mixpanel/src/methods/__tests__/identify.test.ts +103 -0
  544. package/packages/plugins/plugin-mixpanel/src/methods/__tests__/screen.test.ts +119 -0
  545. package/packages/plugins/plugin-mixpanel/src/methods/__tests__/track.test.ts +110 -0
  546. package/packages/plugins/plugin-mixpanel/src/methods/alias.ts +28 -0
  547. package/packages/plugins/plugin-mixpanel/src/methods/group.ts +26 -0
  548. package/packages/plugins/plugin-mixpanel/src/methods/identify.ts +72 -0
  549. package/packages/plugins/plugin-mixpanel/src/methods/screen.ts +43 -0
  550. package/packages/plugins/plugin-mixpanel/src/methods/track.ts +60 -0
  551. package/packages/plugins/plugin-mixpanel/src/types.ts +15 -0
  552. package/packages/plugins/plugin-mixpanel/tsconfig.json +10 -0
  553. package/packages/plugins/plugin-onetrust/CHANGELOG.md +16 -0
  554. package/packages/plugins/plugin-onetrust/LICENSE +21 -0
  555. package/packages/plugins/plugin-onetrust/README.md +155 -0
  556. package/packages/plugins/plugin-onetrust/babel.config.js +3 -0
  557. package/packages/plugins/plugin-onetrust/jest.config.js +6 -0
  558. package/packages/plugins/plugin-onetrust/package.json +75 -0
  559. package/packages/plugins/plugin-onetrust/release.config.js +3 -0
  560. package/packages/plugins/plugin-onetrust/src/OneTrustProvider.ts +71 -0
  561. package/packages/plugins/plugin-onetrust/src/index.tsx +1 -0
  562. package/packages/plugins/plugin-onetrust/tsconfig.json +10 -0
  563. package/packages/shared/__mocks__/context.ts +35 -0
  564. package/packages/shared/__mocks__/react-native-get-random-values.ts +1 -0
  565. package/packages/shared/__mocks__/react-native.ts +53 -0
  566. package/packages/shared/__mocks__/uuid.ts +3 -0
  567. package/packages/shared/jest.config.base.js +38 -0
  568. package/packages/shared/package.json +19 -0
  569. package/packages/shared/src/setup.ts +7 -0
  570. package/packages/shared/tsconfig.json +15 -0
  571. package/packages/sovran/CHANGELOG.md +42 -0
  572. package/packages/sovran/CONTRIBUTING.md +196 -0
  573. package/packages/sovran/LICENSE +21 -0
  574. package/packages/sovran/README.md +174 -0
  575. package/packages/sovran/android/build.gradle +94 -0
  576. package/packages/sovran/android/gradle.properties +5 -0
  577. package/packages/sovran/android/src/main/AndroidManifest.xml +4 -0
  578. package/packages/sovran/android/src/main/AndroidManifestNew.xml +3 -0
  579. package/packages/sovran/android/src/main/java/com/reactnativesovran/Sovran.kt +45 -0
  580. package/packages/sovran/android/src/main/java/com/reactnativesovran/SovranModule.kt +55 -0
  581. package/packages/sovran/babel.config.js +3 -0
  582. package/packages/sovran/ios/Sovran-Bridging-Header.h +3 -0
  583. package/packages/sovran/ios/Sovran.m +8 -0
  584. package/packages/sovran/ios/Sovran.swift +67 -0
  585. package/packages/sovran/ios/Sovran.xcodeproj/project.pbxproj +279 -0
  586. package/packages/sovran/jest.config.js +5 -0
  587. package/packages/sovran/package.json +89 -0
  588. package/packages/sovran/release.config.js +3 -0
  589. package/packages/sovran/sovran-react-native.podspec +33 -0
  590. package/packages/sovran/src/__tests__/bridge.test.ts +39 -0
  591. package/packages/sovran/src/__tests__/index.test.tsx +1 -0
  592. package/packages/sovran/src/__tests__/store.test.ts +397 -0
  593. package/packages/sovran/src/bridge.ts +48 -0
  594. package/packages/sovran/src/index.tsx +52 -0
  595. package/packages/sovran/src/persistor/async-storage-persistor.ts +63 -0
  596. package/packages/sovran/src/persistor/index.ts +2 -0
  597. package/packages/sovran/src/persistor/persistor.ts +31 -0
  598. package/packages/sovran/src/store.ts +232 -0
  599. package/packages/sovran/tsconfig.json +9 -0
  600. package/release.config.js +13 -0
  601. package/tsconfig.json +44 -0
  602. package/tsconfig.linter.json +36 -0
@@ -0,0 +1,1961 @@
1
+ PODS:
2
+ - boost (1.84.0)
3
+ - braze-react-native-sdk (13.2.0):
4
+ - BrazeKit (~> 11.2.0)
5
+ - BrazeLocation (~> 11.2.0)
6
+ - BrazeUI (~> 11.2.0)
7
+ - DoubleConversion
8
+ - glog
9
+ - hermes-engine
10
+ - RCT-Folly (= 2024.01.01.00)
11
+ - RCTRequired
12
+ - RCTTypeSafety
13
+ - React-Core
14
+ - React-debug
15
+ - React-Fabric
16
+ - React-featureflags
17
+ - React-graphics
18
+ - React-ImageManager
19
+ - React-NativeModulesApple
20
+ - React-RCTFabric
21
+ - React-rendererdebug
22
+ - React-utils
23
+ - ReactCodegen
24
+ - ReactCommon/turbomodule/bridging
25
+ - ReactCommon/turbomodule/core
26
+ - Yoga
27
+ - BrazeKit (11.2.0)
28
+ - BrazeLocation (11.2.0):
29
+ - BrazeKit (= 11.2.0)
30
+ - BrazeUI (11.2.0):
31
+ - BrazeKit (= 11.2.0)
32
+ - DoubleConversion (1.1.6)
33
+ - FBLazyVector (0.76.1)
34
+ - fmt (9.1.0)
35
+ - glog (0.3.5)
36
+ - hermes-engine (0.76.1):
37
+ - hermes-engine/Pre-built (= 0.76.1)
38
+ - hermes-engine/Pre-built (0.76.1)
39
+ - RCT-Folly (2024.01.01.00):
40
+ - boost
41
+ - DoubleConversion
42
+ - fmt (= 9.1.0)
43
+ - glog
44
+ - RCT-Folly/Default (= 2024.01.01.00)
45
+ - RCT-Folly/Default (2024.01.01.00):
46
+ - boost
47
+ - DoubleConversion
48
+ - fmt (= 9.1.0)
49
+ - glog
50
+ - RCT-Folly/Fabric (2024.01.01.00):
51
+ - boost
52
+ - DoubleConversion
53
+ - fmt (= 9.1.0)
54
+ - glog
55
+ - RCTDeprecation (0.76.1)
56
+ - RCTRequired (0.76.1)
57
+ - RCTTypeSafety (0.76.1):
58
+ - FBLazyVector (= 0.76.1)
59
+ - RCTRequired (= 0.76.1)
60
+ - React-Core (= 0.76.1)
61
+ - React (0.76.1):
62
+ - React-Core (= 0.76.1)
63
+ - React-Core/DevSupport (= 0.76.1)
64
+ - React-Core/RCTWebSocket (= 0.76.1)
65
+ - React-RCTActionSheet (= 0.76.1)
66
+ - React-RCTAnimation (= 0.76.1)
67
+ - React-RCTBlob (= 0.76.1)
68
+ - React-RCTImage (= 0.76.1)
69
+ - React-RCTLinking (= 0.76.1)
70
+ - React-RCTNetwork (= 0.76.1)
71
+ - React-RCTSettings (= 0.76.1)
72
+ - React-RCTText (= 0.76.1)
73
+ - React-RCTVibration (= 0.76.1)
74
+ - React-callinvoker (0.76.1)
75
+ - React-Core (0.76.1):
76
+ - glog
77
+ - hermes-engine
78
+ - RCT-Folly (= 2024.01.01.00)
79
+ - RCTDeprecation
80
+ - React-Core/Default (= 0.76.1)
81
+ - React-cxxreact
82
+ - React-featureflags
83
+ - React-hermes
84
+ - React-jsi
85
+ - React-jsiexecutor
86
+ - React-jsinspector
87
+ - React-perflogger
88
+ - React-runtimescheduler
89
+ - React-utils
90
+ - SocketRocket (= 0.7.1)
91
+ - Yoga
92
+ - React-Core/CoreModulesHeaders (0.76.1):
93
+ - glog
94
+ - hermes-engine
95
+ - RCT-Folly (= 2024.01.01.00)
96
+ - RCTDeprecation
97
+ - React-Core/Default
98
+ - React-cxxreact
99
+ - React-featureflags
100
+ - React-hermes
101
+ - React-jsi
102
+ - React-jsiexecutor
103
+ - React-jsinspector
104
+ - React-perflogger
105
+ - React-runtimescheduler
106
+ - React-utils
107
+ - SocketRocket (= 0.7.1)
108
+ - Yoga
109
+ - React-Core/Default (0.76.1):
110
+ - glog
111
+ - hermes-engine
112
+ - RCT-Folly (= 2024.01.01.00)
113
+ - RCTDeprecation
114
+ - React-cxxreact
115
+ - React-featureflags
116
+ - React-hermes
117
+ - React-jsi
118
+ - React-jsiexecutor
119
+ - React-jsinspector
120
+ - React-perflogger
121
+ - React-runtimescheduler
122
+ - React-utils
123
+ - SocketRocket (= 0.7.1)
124
+ - Yoga
125
+ - React-Core/DevSupport (0.76.1):
126
+ - glog
127
+ - hermes-engine
128
+ - RCT-Folly (= 2024.01.01.00)
129
+ - RCTDeprecation
130
+ - React-Core/Default (= 0.76.1)
131
+ - React-Core/RCTWebSocket (= 0.76.1)
132
+ - React-cxxreact
133
+ - React-featureflags
134
+ - React-hermes
135
+ - React-jsi
136
+ - React-jsiexecutor
137
+ - React-jsinspector
138
+ - React-perflogger
139
+ - React-runtimescheduler
140
+ - React-utils
141
+ - SocketRocket (= 0.7.1)
142
+ - Yoga
143
+ - React-Core/RCTActionSheetHeaders (0.76.1):
144
+ - glog
145
+ - hermes-engine
146
+ - RCT-Folly (= 2024.01.01.00)
147
+ - RCTDeprecation
148
+ - React-Core/Default
149
+ - React-cxxreact
150
+ - React-featureflags
151
+ - React-hermes
152
+ - React-jsi
153
+ - React-jsiexecutor
154
+ - React-jsinspector
155
+ - React-perflogger
156
+ - React-runtimescheduler
157
+ - React-utils
158
+ - SocketRocket (= 0.7.1)
159
+ - Yoga
160
+ - React-Core/RCTAnimationHeaders (0.76.1):
161
+ - glog
162
+ - hermes-engine
163
+ - RCT-Folly (= 2024.01.01.00)
164
+ - RCTDeprecation
165
+ - React-Core/Default
166
+ - React-cxxreact
167
+ - React-featureflags
168
+ - React-hermes
169
+ - React-jsi
170
+ - React-jsiexecutor
171
+ - React-jsinspector
172
+ - React-perflogger
173
+ - React-runtimescheduler
174
+ - React-utils
175
+ - SocketRocket (= 0.7.1)
176
+ - Yoga
177
+ - React-Core/RCTBlobHeaders (0.76.1):
178
+ - glog
179
+ - hermes-engine
180
+ - RCT-Folly (= 2024.01.01.00)
181
+ - RCTDeprecation
182
+ - React-Core/Default
183
+ - React-cxxreact
184
+ - React-featureflags
185
+ - React-hermes
186
+ - React-jsi
187
+ - React-jsiexecutor
188
+ - React-jsinspector
189
+ - React-perflogger
190
+ - React-runtimescheduler
191
+ - React-utils
192
+ - SocketRocket (= 0.7.1)
193
+ - Yoga
194
+ - React-Core/RCTImageHeaders (0.76.1):
195
+ - glog
196
+ - hermes-engine
197
+ - RCT-Folly (= 2024.01.01.00)
198
+ - RCTDeprecation
199
+ - React-Core/Default
200
+ - React-cxxreact
201
+ - React-featureflags
202
+ - React-hermes
203
+ - React-jsi
204
+ - React-jsiexecutor
205
+ - React-jsinspector
206
+ - React-perflogger
207
+ - React-runtimescheduler
208
+ - React-utils
209
+ - SocketRocket (= 0.7.1)
210
+ - Yoga
211
+ - React-Core/RCTLinkingHeaders (0.76.1):
212
+ - glog
213
+ - hermes-engine
214
+ - RCT-Folly (= 2024.01.01.00)
215
+ - RCTDeprecation
216
+ - React-Core/Default
217
+ - React-cxxreact
218
+ - React-featureflags
219
+ - React-hermes
220
+ - React-jsi
221
+ - React-jsiexecutor
222
+ - React-jsinspector
223
+ - React-perflogger
224
+ - React-runtimescheduler
225
+ - React-utils
226
+ - SocketRocket (= 0.7.1)
227
+ - Yoga
228
+ - React-Core/RCTNetworkHeaders (0.76.1):
229
+ - glog
230
+ - hermes-engine
231
+ - RCT-Folly (= 2024.01.01.00)
232
+ - RCTDeprecation
233
+ - React-Core/Default
234
+ - React-cxxreact
235
+ - React-featureflags
236
+ - React-hermes
237
+ - React-jsi
238
+ - React-jsiexecutor
239
+ - React-jsinspector
240
+ - React-perflogger
241
+ - React-runtimescheduler
242
+ - React-utils
243
+ - SocketRocket (= 0.7.1)
244
+ - Yoga
245
+ - React-Core/RCTSettingsHeaders (0.76.1):
246
+ - glog
247
+ - hermes-engine
248
+ - RCT-Folly (= 2024.01.01.00)
249
+ - RCTDeprecation
250
+ - React-Core/Default
251
+ - React-cxxreact
252
+ - React-featureflags
253
+ - React-hermes
254
+ - React-jsi
255
+ - React-jsiexecutor
256
+ - React-jsinspector
257
+ - React-perflogger
258
+ - React-runtimescheduler
259
+ - React-utils
260
+ - SocketRocket (= 0.7.1)
261
+ - Yoga
262
+ - React-Core/RCTTextHeaders (0.76.1):
263
+ - glog
264
+ - hermes-engine
265
+ - RCT-Folly (= 2024.01.01.00)
266
+ - RCTDeprecation
267
+ - React-Core/Default
268
+ - React-cxxreact
269
+ - React-featureflags
270
+ - React-hermes
271
+ - React-jsi
272
+ - React-jsiexecutor
273
+ - React-jsinspector
274
+ - React-perflogger
275
+ - React-runtimescheduler
276
+ - React-utils
277
+ - SocketRocket (= 0.7.1)
278
+ - Yoga
279
+ - React-Core/RCTVibrationHeaders (0.76.1):
280
+ - glog
281
+ - hermes-engine
282
+ - RCT-Folly (= 2024.01.01.00)
283
+ - RCTDeprecation
284
+ - React-Core/Default
285
+ - React-cxxreact
286
+ - React-featureflags
287
+ - React-hermes
288
+ - React-jsi
289
+ - React-jsiexecutor
290
+ - React-jsinspector
291
+ - React-perflogger
292
+ - React-runtimescheduler
293
+ - React-utils
294
+ - SocketRocket (= 0.7.1)
295
+ - Yoga
296
+ - React-Core/RCTWebSocket (0.76.1):
297
+ - glog
298
+ - hermes-engine
299
+ - RCT-Folly (= 2024.01.01.00)
300
+ - RCTDeprecation
301
+ - React-Core/Default (= 0.76.1)
302
+ - React-cxxreact
303
+ - React-featureflags
304
+ - React-hermes
305
+ - React-jsi
306
+ - React-jsiexecutor
307
+ - React-jsinspector
308
+ - React-perflogger
309
+ - React-runtimescheduler
310
+ - React-utils
311
+ - SocketRocket (= 0.7.1)
312
+ - Yoga
313
+ - React-CoreModules (0.76.1):
314
+ - DoubleConversion
315
+ - fmt (= 9.1.0)
316
+ - RCT-Folly (= 2024.01.01.00)
317
+ - RCTTypeSafety (= 0.76.1)
318
+ - React-Core/CoreModulesHeaders (= 0.76.1)
319
+ - React-jsi (= 0.76.1)
320
+ - React-jsinspector
321
+ - React-NativeModulesApple
322
+ - React-RCTBlob
323
+ - React-RCTImage (= 0.76.1)
324
+ - ReactCodegen
325
+ - ReactCommon
326
+ - SocketRocket (= 0.7.1)
327
+ - React-cxxreact (0.76.1):
328
+ - boost
329
+ - DoubleConversion
330
+ - fmt (= 9.1.0)
331
+ - glog
332
+ - hermes-engine
333
+ - RCT-Folly (= 2024.01.01.00)
334
+ - React-callinvoker (= 0.76.1)
335
+ - React-debug (= 0.76.1)
336
+ - React-jsi (= 0.76.1)
337
+ - React-jsinspector
338
+ - React-logger (= 0.76.1)
339
+ - React-perflogger (= 0.76.1)
340
+ - React-runtimeexecutor (= 0.76.1)
341
+ - React-timing (= 0.76.1)
342
+ - React-debug (0.76.1)
343
+ - React-defaultsnativemodule (0.76.1):
344
+ - DoubleConversion
345
+ - glog
346
+ - hermes-engine
347
+ - RCT-Folly (= 2024.01.01.00)
348
+ - RCTRequired
349
+ - RCTTypeSafety
350
+ - React-Core
351
+ - React-debug
352
+ - React-domnativemodule
353
+ - React-Fabric
354
+ - React-featureflags
355
+ - React-featureflagsnativemodule
356
+ - React-graphics
357
+ - React-idlecallbacksnativemodule
358
+ - React-ImageManager
359
+ - React-microtasksnativemodule
360
+ - React-NativeModulesApple
361
+ - React-RCTFabric
362
+ - React-rendererdebug
363
+ - React-utils
364
+ - ReactCodegen
365
+ - ReactCommon/turbomodule/bridging
366
+ - ReactCommon/turbomodule/core
367
+ - Yoga
368
+ - React-domnativemodule (0.76.1):
369
+ - DoubleConversion
370
+ - glog
371
+ - hermes-engine
372
+ - RCT-Folly (= 2024.01.01.00)
373
+ - RCTRequired
374
+ - RCTTypeSafety
375
+ - React-Core
376
+ - React-debug
377
+ - React-Fabric
378
+ - React-FabricComponents
379
+ - React-featureflags
380
+ - React-graphics
381
+ - React-ImageManager
382
+ - React-NativeModulesApple
383
+ - React-RCTFabric
384
+ - React-rendererdebug
385
+ - React-utils
386
+ - ReactCodegen
387
+ - ReactCommon/turbomodule/bridging
388
+ - ReactCommon/turbomodule/core
389
+ - Yoga
390
+ - React-Fabric (0.76.1):
391
+ - DoubleConversion
392
+ - fmt (= 9.1.0)
393
+ - glog
394
+ - hermes-engine
395
+ - RCT-Folly/Fabric (= 2024.01.01.00)
396
+ - RCTRequired
397
+ - RCTTypeSafety
398
+ - React-Core
399
+ - React-cxxreact
400
+ - React-debug
401
+ - React-Fabric/animations (= 0.76.1)
402
+ - React-Fabric/attributedstring (= 0.76.1)
403
+ - React-Fabric/componentregistry (= 0.76.1)
404
+ - React-Fabric/componentregistrynative (= 0.76.1)
405
+ - React-Fabric/components (= 0.76.1)
406
+ - React-Fabric/core (= 0.76.1)
407
+ - React-Fabric/dom (= 0.76.1)
408
+ - React-Fabric/imagemanager (= 0.76.1)
409
+ - React-Fabric/leakchecker (= 0.76.1)
410
+ - React-Fabric/mounting (= 0.76.1)
411
+ - React-Fabric/observers (= 0.76.1)
412
+ - React-Fabric/scheduler (= 0.76.1)
413
+ - React-Fabric/telemetry (= 0.76.1)
414
+ - React-Fabric/templateprocessor (= 0.76.1)
415
+ - React-Fabric/uimanager (= 0.76.1)
416
+ - React-featureflags
417
+ - React-graphics
418
+ - React-jsi
419
+ - React-jsiexecutor
420
+ - React-logger
421
+ - React-rendererdebug
422
+ - React-runtimescheduler
423
+ - React-utils
424
+ - ReactCommon/turbomodule/core
425
+ - React-Fabric/animations (0.76.1):
426
+ - DoubleConversion
427
+ - fmt (= 9.1.0)
428
+ - glog
429
+ - hermes-engine
430
+ - RCT-Folly/Fabric (= 2024.01.01.00)
431
+ - RCTRequired
432
+ - RCTTypeSafety
433
+ - React-Core
434
+ - React-cxxreact
435
+ - React-debug
436
+ - React-featureflags
437
+ - React-graphics
438
+ - React-jsi
439
+ - React-jsiexecutor
440
+ - React-logger
441
+ - React-rendererdebug
442
+ - React-runtimescheduler
443
+ - React-utils
444
+ - ReactCommon/turbomodule/core
445
+ - React-Fabric/attributedstring (0.76.1):
446
+ - DoubleConversion
447
+ - fmt (= 9.1.0)
448
+ - glog
449
+ - hermes-engine
450
+ - RCT-Folly/Fabric (= 2024.01.01.00)
451
+ - RCTRequired
452
+ - RCTTypeSafety
453
+ - React-Core
454
+ - React-cxxreact
455
+ - React-debug
456
+ - React-featureflags
457
+ - React-graphics
458
+ - React-jsi
459
+ - React-jsiexecutor
460
+ - React-logger
461
+ - React-rendererdebug
462
+ - React-runtimescheduler
463
+ - React-utils
464
+ - ReactCommon/turbomodule/core
465
+ - React-Fabric/componentregistry (0.76.1):
466
+ - DoubleConversion
467
+ - fmt (= 9.1.0)
468
+ - glog
469
+ - hermes-engine
470
+ - RCT-Folly/Fabric (= 2024.01.01.00)
471
+ - RCTRequired
472
+ - RCTTypeSafety
473
+ - React-Core
474
+ - React-cxxreact
475
+ - React-debug
476
+ - React-featureflags
477
+ - React-graphics
478
+ - React-jsi
479
+ - React-jsiexecutor
480
+ - React-logger
481
+ - React-rendererdebug
482
+ - React-runtimescheduler
483
+ - React-utils
484
+ - ReactCommon/turbomodule/core
485
+ - React-Fabric/componentregistrynative (0.76.1):
486
+ - DoubleConversion
487
+ - fmt (= 9.1.0)
488
+ - glog
489
+ - hermes-engine
490
+ - RCT-Folly/Fabric (= 2024.01.01.00)
491
+ - RCTRequired
492
+ - RCTTypeSafety
493
+ - React-Core
494
+ - React-cxxreact
495
+ - React-debug
496
+ - React-featureflags
497
+ - React-graphics
498
+ - React-jsi
499
+ - React-jsiexecutor
500
+ - React-logger
501
+ - React-rendererdebug
502
+ - React-runtimescheduler
503
+ - React-utils
504
+ - ReactCommon/turbomodule/core
505
+ - React-Fabric/components (0.76.1):
506
+ - DoubleConversion
507
+ - fmt (= 9.1.0)
508
+ - glog
509
+ - hermes-engine
510
+ - RCT-Folly/Fabric (= 2024.01.01.00)
511
+ - RCTRequired
512
+ - RCTTypeSafety
513
+ - React-Core
514
+ - React-cxxreact
515
+ - React-debug
516
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.76.1)
517
+ - React-Fabric/components/root (= 0.76.1)
518
+ - React-Fabric/components/view (= 0.76.1)
519
+ - React-featureflags
520
+ - React-graphics
521
+ - React-jsi
522
+ - React-jsiexecutor
523
+ - React-logger
524
+ - React-rendererdebug
525
+ - React-runtimescheduler
526
+ - React-utils
527
+ - ReactCommon/turbomodule/core
528
+ - React-Fabric/components/legacyviewmanagerinterop (0.76.1):
529
+ - DoubleConversion
530
+ - fmt (= 9.1.0)
531
+ - glog
532
+ - hermes-engine
533
+ - RCT-Folly/Fabric (= 2024.01.01.00)
534
+ - RCTRequired
535
+ - RCTTypeSafety
536
+ - React-Core
537
+ - React-cxxreact
538
+ - React-debug
539
+ - React-featureflags
540
+ - React-graphics
541
+ - React-jsi
542
+ - React-jsiexecutor
543
+ - React-logger
544
+ - React-rendererdebug
545
+ - React-runtimescheduler
546
+ - React-utils
547
+ - ReactCommon/turbomodule/core
548
+ - React-Fabric/components/root (0.76.1):
549
+ - DoubleConversion
550
+ - fmt (= 9.1.0)
551
+ - glog
552
+ - hermes-engine
553
+ - RCT-Folly/Fabric (= 2024.01.01.00)
554
+ - RCTRequired
555
+ - RCTTypeSafety
556
+ - React-Core
557
+ - React-cxxreact
558
+ - React-debug
559
+ - React-featureflags
560
+ - React-graphics
561
+ - React-jsi
562
+ - React-jsiexecutor
563
+ - React-logger
564
+ - React-rendererdebug
565
+ - React-runtimescheduler
566
+ - React-utils
567
+ - ReactCommon/turbomodule/core
568
+ - React-Fabric/components/view (0.76.1):
569
+ - DoubleConversion
570
+ - fmt (= 9.1.0)
571
+ - glog
572
+ - hermes-engine
573
+ - RCT-Folly/Fabric (= 2024.01.01.00)
574
+ - RCTRequired
575
+ - RCTTypeSafety
576
+ - React-Core
577
+ - React-cxxreact
578
+ - React-debug
579
+ - React-featureflags
580
+ - React-graphics
581
+ - React-jsi
582
+ - React-jsiexecutor
583
+ - React-logger
584
+ - React-rendererdebug
585
+ - React-runtimescheduler
586
+ - React-utils
587
+ - ReactCommon/turbomodule/core
588
+ - Yoga
589
+ - React-Fabric/core (0.76.1):
590
+ - DoubleConversion
591
+ - fmt (= 9.1.0)
592
+ - glog
593
+ - hermes-engine
594
+ - RCT-Folly/Fabric (= 2024.01.01.00)
595
+ - RCTRequired
596
+ - RCTTypeSafety
597
+ - React-Core
598
+ - React-cxxreact
599
+ - React-debug
600
+ - React-featureflags
601
+ - React-graphics
602
+ - React-jsi
603
+ - React-jsiexecutor
604
+ - React-logger
605
+ - React-rendererdebug
606
+ - React-runtimescheduler
607
+ - React-utils
608
+ - ReactCommon/turbomodule/core
609
+ - React-Fabric/dom (0.76.1):
610
+ - DoubleConversion
611
+ - fmt (= 9.1.0)
612
+ - glog
613
+ - hermes-engine
614
+ - RCT-Folly/Fabric (= 2024.01.01.00)
615
+ - RCTRequired
616
+ - RCTTypeSafety
617
+ - React-Core
618
+ - React-cxxreact
619
+ - React-debug
620
+ - React-featureflags
621
+ - React-graphics
622
+ - React-jsi
623
+ - React-jsiexecutor
624
+ - React-logger
625
+ - React-rendererdebug
626
+ - React-runtimescheduler
627
+ - React-utils
628
+ - ReactCommon/turbomodule/core
629
+ - React-Fabric/imagemanager (0.76.1):
630
+ - DoubleConversion
631
+ - fmt (= 9.1.0)
632
+ - glog
633
+ - hermes-engine
634
+ - RCT-Folly/Fabric (= 2024.01.01.00)
635
+ - RCTRequired
636
+ - RCTTypeSafety
637
+ - React-Core
638
+ - React-cxxreact
639
+ - React-debug
640
+ - React-featureflags
641
+ - React-graphics
642
+ - React-jsi
643
+ - React-jsiexecutor
644
+ - React-logger
645
+ - React-rendererdebug
646
+ - React-runtimescheduler
647
+ - React-utils
648
+ - ReactCommon/turbomodule/core
649
+ - React-Fabric/leakchecker (0.76.1):
650
+ - DoubleConversion
651
+ - fmt (= 9.1.0)
652
+ - glog
653
+ - hermes-engine
654
+ - RCT-Folly/Fabric (= 2024.01.01.00)
655
+ - RCTRequired
656
+ - RCTTypeSafety
657
+ - React-Core
658
+ - React-cxxreact
659
+ - React-debug
660
+ - React-featureflags
661
+ - React-graphics
662
+ - React-jsi
663
+ - React-jsiexecutor
664
+ - React-logger
665
+ - React-rendererdebug
666
+ - React-runtimescheduler
667
+ - React-utils
668
+ - ReactCommon/turbomodule/core
669
+ - React-Fabric/mounting (0.76.1):
670
+ - DoubleConversion
671
+ - fmt (= 9.1.0)
672
+ - glog
673
+ - hermes-engine
674
+ - RCT-Folly/Fabric (= 2024.01.01.00)
675
+ - RCTRequired
676
+ - RCTTypeSafety
677
+ - React-Core
678
+ - React-cxxreact
679
+ - React-debug
680
+ - React-featureflags
681
+ - React-graphics
682
+ - React-jsi
683
+ - React-jsiexecutor
684
+ - React-logger
685
+ - React-rendererdebug
686
+ - React-runtimescheduler
687
+ - React-utils
688
+ - ReactCommon/turbomodule/core
689
+ - React-Fabric/observers (0.76.1):
690
+ - DoubleConversion
691
+ - fmt (= 9.1.0)
692
+ - glog
693
+ - hermes-engine
694
+ - RCT-Folly/Fabric (= 2024.01.01.00)
695
+ - RCTRequired
696
+ - RCTTypeSafety
697
+ - React-Core
698
+ - React-cxxreact
699
+ - React-debug
700
+ - React-Fabric/observers/events (= 0.76.1)
701
+ - React-featureflags
702
+ - React-graphics
703
+ - React-jsi
704
+ - React-jsiexecutor
705
+ - React-logger
706
+ - React-rendererdebug
707
+ - React-runtimescheduler
708
+ - React-utils
709
+ - ReactCommon/turbomodule/core
710
+ - React-Fabric/observers/events (0.76.1):
711
+ - DoubleConversion
712
+ - fmt (= 9.1.0)
713
+ - glog
714
+ - hermes-engine
715
+ - RCT-Folly/Fabric (= 2024.01.01.00)
716
+ - RCTRequired
717
+ - RCTTypeSafety
718
+ - React-Core
719
+ - React-cxxreact
720
+ - React-debug
721
+ - React-featureflags
722
+ - React-graphics
723
+ - React-jsi
724
+ - React-jsiexecutor
725
+ - React-logger
726
+ - React-rendererdebug
727
+ - React-runtimescheduler
728
+ - React-utils
729
+ - ReactCommon/turbomodule/core
730
+ - React-Fabric/scheduler (0.76.1):
731
+ - DoubleConversion
732
+ - fmt (= 9.1.0)
733
+ - glog
734
+ - hermes-engine
735
+ - RCT-Folly/Fabric (= 2024.01.01.00)
736
+ - RCTRequired
737
+ - RCTTypeSafety
738
+ - React-Core
739
+ - React-cxxreact
740
+ - React-debug
741
+ - React-Fabric/observers/events
742
+ - React-featureflags
743
+ - React-graphics
744
+ - React-jsi
745
+ - React-jsiexecutor
746
+ - React-logger
747
+ - React-performancetimeline
748
+ - React-rendererdebug
749
+ - React-runtimescheduler
750
+ - React-utils
751
+ - ReactCommon/turbomodule/core
752
+ - React-Fabric/telemetry (0.76.1):
753
+ - DoubleConversion
754
+ - fmt (= 9.1.0)
755
+ - glog
756
+ - hermes-engine
757
+ - RCT-Folly/Fabric (= 2024.01.01.00)
758
+ - RCTRequired
759
+ - RCTTypeSafety
760
+ - React-Core
761
+ - React-cxxreact
762
+ - React-debug
763
+ - React-featureflags
764
+ - React-graphics
765
+ - React-jsi
766
+ - React-jsiexecutor
767
+ - React-logger
768
+ - React-rendererdebug
769
+ - React-runtimescheduler
770
+ - React-utils
771
+ - ReactCommon/turbomodule/core
772
+ - React-Fabric/templateprocessor (0.76.1):
773
+ - DoubleConversion
774
+ - fmt (= 9.1.0)
775
+ - glog
776
+ - hermes-engine
777
+ - RCT-Folly/Fabric (= 2024.01.01.00)
778
+ - RCTRequired
779
+ - RCTTypeSafety
780
+ - React-Core
781
+ - React-cxxreact
782
+ - React-debug
783
+ - React-featureflags
784
+ - React-graphics
785
+ - React-jsi
786
+ - React-jsiexecutor
787
+ - React-logger
788
+ - React-rendererdebug
789
+ - React-runtimescheduler
790
+ - React-utils
791
+ - ReactCommon/turbomodule/core
792
+ - React-Fabric/uimanager (0.76.1):
793
+ - DoubleConversion
794
+ - fmt (= 9.1.0)
795
+ - glog
796
+ - hermes-engine
797
+ - RCT-Folly/Fabric (= 2024.01.01.00)
798
+ - RCTRequired
799
+ - RCTTypeSafety
800
+ - React-Core
801
+ - React-cxxreact
802
+ - React-debug
803
+ - React-Fabric/uimanager/consistency (= 0.76.1)
804
+ - React-featureflags
805
+ - React-graphics
806
+ - React-jsi
807
+ - React-jsiexecutor
808
+ - React-logger
809
+ - React-rendererconsistency
810
+ - React-rendererdebug
811
+ - React-runtimescheduler
812
+ - React-utils
813
+ - ReactCommon/turbomodule/core
814
+ - React-Fabric/uimanager/consistency (0.76.1):
815
+ - DoubleConversion
816
+ - fmt (= 9.1.0)
817
+ - glog
818
+ - hermes-engine
819
+ - RCT-Folly/Fabric (= 2024.01.01.00)
820
+ - RCTRequired
821
+ - RCTTypeSafety
822
+ - React-Core
823
+ - React-cxxreact
824
+ - React-debug
825
+ - React-featureflags
826
+ - React-graphics
827
+ - React-jsi
828
+ - React-jsiexecutor
829
+ - React-logger
830
+ - React-rendererconsistency
831
+ - React-rendererdebug
832
+ - React-runtimescheduler
833
+ - React-utils
834
+ - ReactCommon/turbomodule/core
835
+ - React-FabricComponents (0.76.1):
836
+ - DoubleConversion
837
+ - fmt (= 9.1.0)
838
+ - glog
839
+ - hermes-engine
840
+ - RCT-Folly/Fabric (= 2024.01.01.00)
841
+ - RCTRequired
842
+ - RCTTypeSafety
843
+ - React-Core
844
+ - React-cxxreact
845
+ - React-debug
846
+ - React-Fabric
847
+ - React-FabricComponents/components (= 0.76.1)
848
+ - React-FabricComponents/textlayoutmanager (= 0.76.1)
849
+ - React-featureflags
850
+ - React-graphics
851
+ - React-jsi
852
+ - React-jsiexecutor
853
+ - React-logger
854
+ - React-rendererdebug
855
+ - React-runtimescheduler
856
+ - React-utils
857
+ - ReactCodegen
858
+ - ReactCommon/turbomodule/core
859
+ - Yoga
860
+ - React-FabricComponents/components (0.76.1):
861
+ - DoubleConversion
862
+ - fmt (= 9.1.0)
863
+ - glog
864
+ - hermes-engine
865
+ - RCT-Folly/Fabric (= 2024.01.01.00)
866
+ - RCTRequired
867
+ - RCTTypeSafety
868
+ - React-Core
869
+ - React-cxxreact
870
+ - React-debug
871
+ - React-Fabric
872
+ - React-FabricComponents/components/inputaccessory (= 0.76.1)
873
+ - React-FabricComponents/components/iostextinput (= 0.76.1)
874
+ - React-FabricComponents/components/modal (= 0.76.1)
875
+ - React-FabricComponents/components/rncore (= 0.76.1)
876
+ - React-FabricComponents/components/safeareaview (= 0.76.1)
877
+ - React-FabricComponents/components/scrollview (= 0.76.1)
878
+ - React-FabricComponents/components/text (= 0.76.1)
879
+ - React-FabricComponents/components/textinput (= 0.76.1)
880
+ - React-FabricComponents/components/unimplementedview (= 0.76.1)
881
+ - React-featureflags
882
+ - React-graphics
883
+ - React-jsi
884
+ - React-jsiexecutor
885
+ - React-logger
886
+ - React-rendererdebug
887
+ - React-runtimescheduler
888
+ - React-utils
889
+ - ReactCodegen
890
+ - ReactCommon/turbomodule/core
891
+ - Yoga
892
+ - React-FabricComponents/components/inputaccessory (0.76.1):
893
+ - DoubleConversion
894
+ - fmt (= 9.1.0)
895
+ - glog
896
+ - hermes-engine
897
+ - RCT-Folly/Fabric (= 2024.01.01.00)
898
+ - RCTRequired
899
+ - RCTTypeSafety
900
+ - React-Core
901
+ - React-cxxreact
902
+ - React-debug
903
+ - React-Fabric
904
+ - React-featureflags
905
+ - React-graphics
906
+ - React-jsi
907
+ - React-jsiexecutor
908
+ - React-logger
909
+ - React-rendererdebug
910
+ - React-runtimescheduler
911
+ - React-utils
912
+ - ReactCodegen
913
+ - ReactCommon/turbomodule/core
914
+ - Yoga
915
+ - React-FabricComponents/components/iostextinput (0.76.1):
916
+ - DoubleConversion
917
+ - fmt (= 9.1.0)
918
+ - glog
919
+ - hermes-engine
920
+ - RCT-Folly/Fabric (= 2024.01.01.00)
921
+ - RCTRequired
922
+ - RCTTypeSafety
923
+ - React-Core
924
+ - React-cxxreact
925
+ - React-debug
926
+ - React-Fabric
927
+ - React-featureflags
928
+ - React-graphics
929
+ - React-jsi
930
+ - React-jsiexecutor
931
+ - React-logger
932
+ - React-rendererdebug
933
+ - React-runtimescheduler
934
+ - React-utils
935
+ - ReactCodegen
936
+ - ReactCommon/turbomodule/core
937
+ - Yoga
938
+ - React-FabricComponents/components/modal (0.76.1):
939
+ - DoubleConversion
940
+ - fmt (= 9.1.0)
941
+ - glog
942
+ - hermes-engine
943
+ - RCT-Folly/Fabric (= 2024.01.01.00)
944
+ - RCTRequired
945
+ - RCTTypeSafety
946
+ - React-Core
947
+ - React-cxxreact
948
+ - React-debug
949
+ - React-Fabric
950
+ - React-featureflags
951
+ - React-graphics
952
+ - React-jsi
953
+ - React-jsiexecutor
954
+ - React-logger
955
+ - React-rendererdebug
956
+ - React-runtimescheduler
957
+ - React-utils
958
+ - ReactCodegen
959
+ - ReactCommon/turbomodule/core
960
+ - Yoga
961
+ - React-FabricComponents/components/rncore (0.76.1):
962
+ - DoubleConversion
963
+ - fmt (= 9.1.0)
964
+ - glog
965
+ - hermes-engine
966
+ - RCT-Folly/Fabric (= 2024.01.01.00)
967
+ - RCTRequired
968
+ - RCTTypeSafety
969
+ - React-Core
970
+ - React-cxxreact
971
+ - React-debug
972
+ - React-Fabric
973
+ - React-featureflags
974
+ - React-graphics
975
+ - React-jsi
976
+ - React-jsiexecutor
977
+ - React-logger
978
+ - React-rendererdebug
979
+ - React-runtimescheduler
980
+ - React-utils
981
+ - ReactCodegen
982
+ - ReactCommon/turbomodule/core
983
+ - Yoga
984
+ - React-FabricComponents/components/safeareaview (0.76.1):
985
+ - DoubleConversion
986
+ - fmt (= 9.1.0)
987
+ - glog
988
+ - hermes-engine
989
+ - RCT-Folly/Fabric (= 2024.01.01.00)
990
+ - RCTRequired
991
+ - RCTTypeSafety
992
+ - React-Core
993
+ - React-cxxreact
994
+ - React-debug
995
+ - React-Fabric
996
+ - React-featureflags
997
+ - React-graphics
998
+ - React-jsi
999
+ - React-jsiexecutor
1000
+ - React-logger
1001
+ - React-rendererdebug
1002
+ - React-runtimescheduler
1003
+ - React-utils
1004
+ - ReactCodegen
1005
+ - ReactCommon/turbomodule/core
1006
+ - Yoga
1007
+ - React-FabricComponents/components/scrollview (0.76.1):
1008
+ - DoubleConversion
1009
+ - fmt (= 9.1.0)
1010
+ - glog
1011
+ - hermes-engine
1012
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1013
+ - RCTRequired
1014
+ - RCTTypeSafety
1015
+ - React-Core
1016
+ - React-cxxreact
1017
+ - React-debug
1018
+ - React-Fabric
1019
+ - React-featureflags
1020
+ - React-graphics
1021
+ - React-jsi
1022
+ - React-jsiexecutor
1023
+ - React-logger
1024
+ - React-rendererdebug
1025
+ - React-runtimescheduler
1026
+ - React-utils
1027
+ - ReactCodegen
1028
+ - ReactCommon/turbomodule/core
1029
+ - Yoga
1030
+ - React-FabricComponents/components/text (0.76.1):
1031
+ - DoubleConversion
1032
+ - fmt (= 9.1.0)
1033
+ - glog
1034
+ - hermes-engine
1035
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1036
+ - RCTRequired
1037
+ - RCTTypeSafety
1038
+ - React-Core
1039
+ - React-cxxreact
1040
+ - React-debug
1041
+ - React-Fabric
1042
+ - React-featureflags
1043
+ - React-graphics
1044
+ - React-jsi
1045
+ - React-jsiexecutor
1046
+ - React-logger
1047
+ - React-rendererdebug
1048
+ - React-runtimescheduler
1049
+ - React-utils
1050
+ - ReactCodegen
1051
+ - ReactCommon/turbomodule/core
1052
+ - Yoga
1053
+ - React-FabricComponents/components/textinput (0.76.1):
1054
+ - DoubleConversion
1055
+ - fmt (= 9.1.0)
1056
+ - glog
1057
+ - hermes-engine
1058
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1059
+ - RCTRequired
1060
+ - RCTTypeSafety
1061
+ - React-Core
1062
+ - React-cxxreact
1063
+ - React-debug
1064
+ - React-Fabric
1065
+ - React-featureflags
1066
+ - React-graphics
1067
+ - React-jsi
1068
+ - React-jsiexecutor
1069
+ - React-logger
1070
+ - React-rendererdebug
1071
+ - React-runtimescheduler
1072
+ - React-utils
1073
+ - ReactCodegen
1074
+ - ReactCommon/turbomodule/core
1075
+ - Yoga
1076
+ - React-FabricComponents/components/unimplementedview (0.76.1):
1077
+ - DoubleConversion
1078
+ - fmt (= 9.1.0)
1079
+ - glog
1080
+ - hermes-engine
1081
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1082
+ - RCTRequired
1083
+ - RCTTypeSafety
1084
+ - React-Core
1085
+ - React-cxxreact
1086
+ - React-debug
1087
+ - React-Fabric
1088
+ - React-featureflags
1089
+ - React-graphics
1090
+ - React-jsi
1091
+ - React-jsiexecutor
1092
+ - React-logger
1093
+ - React-rendererdebug
1094
+ - React-runtimescheduler
1095
+ - React-utils
1096
+ - ReactCodegen
1097
+ - ReactCommon/turbomodule/core
1098
+ - Yoga
1099
+ - React-FabricComponents/textlayoutmanager (0.76.1):
1100
+ - DoubleConversion
1101
+ - fmt (= 9.1.0)
1102
+ - glog
1103
+ - hermes-engine
1104
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1105
+ - RCTRequired
1106
+ - RCTTypeSafety
1107
+ - React-Core
1108
+ - React-cxxreact
1109
+ - React-debug
1110
+ - React-Fabric
1111
+ - React-featureflags
1112
+ - React-graphics
1113
+ - React-jsi
1114
+ - React-jsiexecutor
1115
+ - React-logger
1116
+ - React-rendererdebug
1117
+ - React-runtimescheduler
1118
+ - React-utils
1119
+ - ReactCodegen
1120
+ - ReactCommon/turbomodule/core
1121
+ - Yoga
1122
+ - React-FabricImage (0.76.1):
1123
+ - DoubleConversion
1124
+ - fmt (= 9.1.0)
1125
+ - glog
1126
+ - hermes-engine
1127
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1128
+ - RCTRequired (= 0.76.1)
1129
+ - RCTTypeSafety (= 0.76.1)
1130
+ - React-Fabric
1131
+ - React-graphics
1132
+ - React-ImageManager
1133
+ - React-jsi
1134
+ - React-jsiexecutor (= 0.76.1)
1135
+ - React-logger
1136
+ - React-rendererdebug
1137
+ - React-utils
1138
+ - ReactCommon
1139
+ - Yoga
1140
+ - React-featureflags (0.76.1)
1141
+ - React-featureflagsnativemodule (0.76.1):
1142
+ - DoubleConversion
1143
+ - glog
1144
+ - hermes-engine
1145
+ - RCT-Folly (= 2024.01.01.00)
1146
+ - RCTRequired
1147
+ - RCTTypeSafety
1148
+ - React-Core
1149
+ - React-debug
1150
+ - React-Fabric
1151
+ - React-featureflags
1152
+ - React-graphics
1153
+ - React-ImageManager
1154
+ - React-NativeModulesApple
1155
+ - React-RCTFabric
1156
+ - React-rendererdebug
1157
+ - React-utils
1158
+ - ReactCodegen
1159
+ - ReactCommon/turbomodule/bridging
1160
+ - ReactCommon/turbomodule/core
1161
+ - Yoga
1162
+ - React-graphics (0.76.1):
1163
+ - DoubleConversion
1164
+ - fmt (= 9.1.0)
1165
+ - glog
1166
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1167
+ - React-jsi
1168
+ - React-jsiexecutor
1169
+ - React-utils
1170
+ - React-hermes (0.76.1):
1171
+ - DoubleConversion
1172
+ - fmt (= 9.1.0)
1173
+ - glog
1174
+ - hermes-engine
1175
+ - RCT-Folly (= 2024.01.01.00)
1176
+ - React-cxxreact (= 0.76.1)
1177
+ - React-jsi
1178
+ - React-jsiexecutor (= 0.76.1)
1179
+ - React-jsinspector
1180
+ - React-perflogger (= 0.76.1)
1181
+ - React-runtimeexecutor
1182
+ - React-idlecallbacksnativemodule (0.76.1):
1183
+ - DoubleConversion
1184
+ - glog
1185
+ - hermes-engine
1186
+ - RCT-Folly (= 2024.01.01.00)
1187
+ - RCTRequired
1188
+ - RCTTypeSafety
1189
+ - React-Core
1190
+ - React-debug
1191
+ - React-Fabric
1192
+ - React-featureflags
1193
+ - React-graphics
1194
+ - React-ImageManager
1195
+ - React-NativeModulesApple
1196
+ - React-RCTFabric
1197
+ - React-rendererdebug
1198
+ - React-runtimescheduler
1199
+ - React-utils
1200
+ - ReactCodegen
1201
+ - ReactCommon/turbomodule/bridging
1202
+ - ReactCommon/turbomodule/core
1203
+ - Yoga
1204
+ - React-ImageManager (0.76.1):
1205
+ - glog
1206
+ - RCT-Folly/Fabric
1207
+ - React-Core/Default
1208
+ - React-debug
1209
+ - React-Fabric
1210
+ - React-graphics
1211
+ - React-rendererdebug
1212
+ - React-utils
1213
+ - React-jserrorhandler (0.76.1):
1214
+ - glog
1215
+ - hermes-engine
1216
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1217
+ - React-cxxreact
1218
+ - React-debug
1219
+ - React-jsi
1220
+ - React-jsi (0.76.1):
1221
+ - boost
1222
+ - DoubleConversion
1223
+ - fmt (= 9.1.0)
1224
+ - glog
1225
+ - hermes-engine
1226
+ - RCT-Folly (= 2024.01.01.00)
1227
+ - React-jsiexecutor (0.76.1):
1228
+ - DoubleConversion
1229
+ - fmt (= 9.1.0)
1230
+ - glog
1231
+ - hermes-engine
1232
+ - RCT-Folly (= 2024.01.01.00)
1233
+ - React-cxxreact (= 0.76.1)
1234
+ - React-jsi (= 0.76.1)
1235
+ - React-jsinspector
1236
+ - React-perflogger (= 0.76.1)
1237
+ - React-jsinspector (0.76.1):
1238
+ - DoubleConversion
1239
+ - glog
1240
+ - hermes-engine
1241
+ - RCT-Folly (= 2024.01.01.00)
1242
+ - React-featureflags
1243
+ - React-jsi
1244
+ - React-perflogger (= 0.76.1)
1245
+ - React-runtimeexecutor (= 0.76.1)
1246
+ - React-jsitracing (0.76.1):
1247
+ - React-jsi
1248
+ - React-logger (0.76.1):
1249
+ - glog
1250
+ - React-Mapbuffer (0.76.1):
1251
+ - glog
1252
+ - React-debug
1253
+ - React-microtasksnativemodule (0.76.1):
1254
+ - DoubleConversion
1255
+ - glog
1256
+ - hermes-engine
1257
+ - RCT-Folly (= 2024.01.01.00)
1258
+ - RCTRequired
1259
+ - RCTTypeSafety
1260
+ - React-Core
1261
+ - React-debug
1262
+ - React-Fabric
1263
+ - React-featureflags
1264
+ - React-graphics
1265
+ - React-ImageManager
1266
+ - React-NativeModulesApple
1267
+ - React-RCTFabric
1268
+ - React-rendererdebug
1269
+ - React-utils
1270
+ - ReactCodegen
1271
+ - ReactCommon/turbomodule/bridging
1272
+ - ReactCommon/turbomodule/core
1273
+ - Yoga
1274
+ - react-native-get-random-values (1.11.0):
1275
+ - React-Core
1276
+ - react-native-safe-area-context (4.14.0):
1277
+ - DoubleConversion
1278
+ - glog
1279
+ - hermes-engine
1280
+ - RCT-Folly (= 2024.01.01.00)
1281
+ - RCTRequired
1282
+ - RCTTypeSafety
1283
+ - React-Core
1284
+ - React-debug
1285
+ - React-Fabric
1286
+ - React-featureflags
1287
+ - React-graphics
1288
+ - React-ImageManager
1289
+ - react-native-safe-area-context/common (= 4.14.0)
1290
+ - react-native-safe-area-context/fabric (= 4.14.0)
1291
+ - React-NativeModulesApple
1292
+ - React-RCTFabric
1293
+ - React-rendererdebug
1294
+ - React-utils
1295
+ - ReactCodegen
1296
+ - ReactCommon/turbomodule/bridging
1297
+ - ReactCommon/turbomodule/core
1298
+ - Yoga
1299
+ - react-native-safe-area-context/common (4.14.0):
1300
+ - DoubleConversion
1301
+ - glog
1302
+ - hermes-engine
1303
+ - RCT-Folly (= 2024.01.01.00)
1304
+ - RCTRequired
1305
+ - RCTTypeSafety
1306
+ - React-Core
1307
+ - React-debug
1308
+ - React-Fabric
1309
+ - React-featureflags
1310
+ - React-graphics
1311
+ - React-ImageManager
1312
+ - React-NativeModulesApple
1313
+ - React-RCTFabric
1314
+ - React-rendererdebug
1315
+ - React-utils
1316
+ - ReactCodegen
1317
+ - ReactCommon/turbomodule/bridging
1318
+ - ReactCommon/turbomodule/core
1319
+ - Yoga
1320
+ - react-native-safe-area-context/fabric (4.14.0):
1321
+ - DoubleConversion
1322
+ - glog
1323
+ - hermes-engine
1324
+ - RCT-Folly (= 2024.01.01.00)
1325
+ - RCTRequired
1326
+ - RCTTypeSafety
1327
+ - React-Core
1328
+ - React-debug
1329
+ - React-Fabric
1330
+ - React-featureflags
1331
+ - React-graphics
1332
+ - React-ImageManager
1333
+ - react-native-safe-area-context/common
1334
+ - React-NativeModulesApple
1335
+ - React-RCTFabric
1336
+ - React-rendererdebug
1337
+ - React-utils
1338
+ - ReactCodegen
1339
+ - ReactCommon/turbomodule/bridging
1340
+ - ReactCommon/turbomodule/core
1341
+ - Yoga
1342
+ - React-nativeconfig (0.76.1)
1343
+ - React-NativeModulesApple (0.76.1):
1344
+ - glog
1345
+ - hermes-engine
1346
+ - React-callinvoker
1347
+ - React-Core
1348
+ - React-cxxreact
1349
+ - React-jsi
1350
+ - React-jsinspector
1351
+ - React-runtimeexecutor
1352
+ - ReactCommon/turbomodule/bridging
1353
+ - ReactCommon/turbomodule/core
1354
+ - React-perflogger (0.76.1):
1355
+ - DoubleConversion
1356
+ - RCT-Folly (= 2024.01.01.00)
1357
+ - React-performancetimeline (0.76.1):
1358
+ - RCT-Folly (= 2024.01.01.00)
1359
+ - React-cxxreact
1360
+ - React-timing
1361
+ - React-RCTActionSheet (0.76.1):
1362
+ - React-Core/RCTActionSheetHeaders (= 0.76.1)
1363
+ - React-RCTAnimation (0.76.1):
1364
+ - RCT-Folly (= 2024.01.01.00)
1365
+ - RCTTypeSafety
1366
+ - React-Core/RCTAnimationHeaders
1367
+ - React-jsi
1368
+ - React-NativeModulesApple
1369
+ - ReactCodegen
1370
+ - ReactCommon
1371
+ - React-RCTAppDelegate (0.76.1):
1372
+ - RCT-Folly (= 2024.01.01.00)
1373
+ - RCTRequired
1374
+ - RCTTypeSafety
1375
+ - React-Core
1376
+ - React-CoreModules
1377
+ - React-debug
1378
+ - React-defaultsnativemodule
1379
+ - React-Fabric
1380
+ - React-featureflags
1381
+ - React-graphics
1382
+ - React-hermes
1383
+ - React-nativeconfig
1384
+ - React-NativeModulesApple
1385
+ - React-RCTFabric
1386
+ - React-RCTImage
1387
+ - React-RCTNetwork
1388
+ - React-rendererdebug
1389
+ - React-RuntimeApple
1390
+ - React-RuntimeCore
1391
+ - React-RuntimeHermes
1392
+ - React-runtimescheduler
1393
+ - React-utils
1394
+ - ReactCodegen
1395
+ - ReactCommon
1396
+ - React-RCTBlob (0.76.1):
1397
+ - DoubleConversion
1398
+ - fmt (= 9.1.0)
1399
+ - hermes-engine
1400
+ - RCT-Folly (= 2024.01.01.00)
1401
+ - React-Core/RCTBlobHeaders
1402
+ - React-Core/RCTWebSocket
1403
+ - React-jsi
1404
+ - React-jsinspector
1405
+ - React-NativeModulesApple
1406
+ - React-RCTNetwork
1407
+ - ReactCodegen
1408
+ - ReactCommon
1409
+ - React-RCTFabric (0.76.1):
1410
+ - glog
1411
+ - hermes-engine
1412
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1413
+ - React-Core
1414
+ - React-debug
1415
+ - React-Fabric
1416
+ - React-FabricComponents
1417
+ - React-FabricImage
1418
+ - React-featureflags
1419
+ - React-graphics
1420
+ - React-ImageManager
1421
+ - React-jsi
1422
+ - React-jsinspector
1423
+ - React-nativeconfig
1424
+ - React-performancetimeline
1425
+ - React-RCTImage
1426
+ - React-RCTText
1427
+ - React-rendererconsistency
1428
+ - React-rendererdebug
1429
+ - React-runtimescheduler
1430
+ - React-utils
1431
+ - Yoga
1432
+ - React-RCTImage (0.76.1):
1433
+ - RCT-Folly (= 2024.01.01.00)
1434
+ - RCTTypeSafety
1435
+ - React-Core/RCTImageHeaders
1436
+ - React-jsi
1437
+ - React-NativeModulesApple
1438
+ - React-RCTNetwork
1439
+ - ReactCodegen
1440
+ - ReactCommon
1441
+ - React-RCTLinking (0.76.1):
1442
+ - React-Core/RCTLinkingHeaders (= 0.76.1)
1443
+ - React-jsi (= 0.76.1)
1444
+ - React-NativeModulesApple
1445
+ - ReactCodegen
1446
+ - ReactCommon
1447
+ - ReactCommon/turbomodule/core (= 0.76.1)
1448
+ - React-RCTNetwork (0.76.1):
1449
+ - RCT-Folly (= 2024.01.01.00)
1450
+ - RCTTypeSafety
1451
+ - React-Core/RCTNetworkHeaders
1452
+ - React-jsi
1453
+ - React-NativeModulesApple
1454
+ - ReactCodegen
1455
+ - ReactCommon
1456
+ - React-RCTSettings (0.76.1):
1457
+ - RCT-Folly (= 2024.01.01.00)
1458
+ - RCTTypeSafety
1459
+ - React-Core/RCTSettingsHeaders
1460
+ - React-jsi
1461
+ - React-NativeModulesApple
1462
+ - ReactCodegen
1463
+ - ReactCommon
1464
+ - React-RCTText (0.76.1):
1465
+ - React-Core/RCTTextHeaders (= 0.76.1)
1466
+ - Yoga
1467
+ - React-RCTVibration (0.76.1):
1468
+ - RCT-Folly (= 2024.01.01.00)
1469
+ - React-Core/RCTVibrationHeaders
1470
+ - React-jsi
1471
+ - React-NativeModulesApple
1472
+ - ReactCodegen
1473
+ - ReactCommon
1474
+ - React-rendererconsistency (0.76.1)
1475
+ - React-rendererdebug (0.76.1):
1476
+ - DoubleConversion
1477
+ - fmt (= 9.1.0)
1478
+ - RCT-Folly (= 2024.01.01.00)
1479
+ - React-debug
1480
+ - React-rncore (0.76.1)
1481
+ - React-RuntimeApple (0.76.1):
1482
+ - hermes-engine
1483
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1484
+ - React-callinvoker
1485
+ - React-Core/Default
1486
+ - React-CoreModules
1487
+ - React-cxxreact
1488
+ - React-jserrorhandler
1489
+ - React-jsi
1490
+ - React-jsiexecutor
1491
+ - React-jsinspector
1492
+ - React-Mapbuffer
1493
+ - React-NativeModulesApple
1494
+ - React-RCTFabric
1495
+ - React-RuntimeCore
1496
+ - React-runtimeexecutor
1497
+ - React-RuntimeHermes
1498
+ - React-runtimescheduler
1499
+ - React-utils
1500
+ - React-RuntimeCore (0.76.1):
1501
+ - glog
1502
+ - hermes-engine
1503
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1504
+ - React-cxxreact
1505
+ - React-featureflags
1506
+ - React-jserrorhandler
1507
+ - React-jsi
1508
+ - React-jsiexecutor
1509
+ - React-jsinspector
1510
+ - React-performancetimeline
1511
+ - React-runtimeexecutor
1512
+ - React-runtimescheduler
1513
+ - React-utils
1514
+ - React-runtimeexecutor (0.76.1):
1515
+ - React-jsi (= 0.76.1)
1516
+ - React-RuntimeHermes (0.76.1):
1517
+ - hermes-engine
1518
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1519
+ - React-featureflags
1520
+ - React-hermes
1521
+ - React-jsi
1522
+ - React-jsinspector
1523
+ - React-jsitracing
1524
+ - React-nativeconfig
1525
+ - React-RuntimeCore
1526
+ - React-utils
1527
+ - React-runtimescheduler (0.76.1):
1528
+ - glog
1529
+ - hermes-engine
1530
+ - RCT-Folly (= 2024.01.01.00)
1531
+ - React-callinvoker
1532
+ - React-cxxreact
1533
+ - React-debug
1534
+ - React-featureflags
1535
+ - React-jsi
1536
+ - React-performancetimeline
1537
+ - React-rendererconsistency
1538
+ - React-rendererdebug
1539
+ - React-runtimeexecutor
1540
+ - React-timing
1541
+ - React-utils
1542
+ - React-timing (0.76.1)
1543
+ - React-utils (0.76.1):
1544
+ - glog
1545
+ - hermes-engine
1546
+ - RCT-Folly (= 2024.01.01.00)
1547
+ - React-debug
1548
+ - React-jsi (= 0.76.1)
1549
+ - ReactCodegen (0.76.1):
1550
+ - DoubleConversion
1551
+ - glog
1552
+ - hermes-engine
1553
+ - RCT-Folly
1554
+ - RCTRequired
1555
+ - RCTTypeSafety
1556
+ - React-Core
1557
+ - React-debug
1558
+ - React-Fabric
1559
+ - React-FabricImage
1560
+ - React-featureflags
1561
+ - React-graphics
1562
+ - React-jsi
1563
+ - React-jsiexecutor
1564
+ - React-NativeModulesApple
1565
+ - React-rendererdebug
1566
+ - React-utils
1567
+ - ReactCommon/turbomodule/bridging
1568
+ - ReactCommon/turbomodule/core
1569
+ - ReactCommon (0.76.1):
1570
+ - ReactCommon/turbomodule (= 0.76.1)
1571
+ - ReactCommon/turbomodule (0.76.1):
1572
+ - DoubleConversion
1573
+ - fmt (= 9.1.0)
1574
+ - glog
1575
+ - hermes-engine
1576
+ - RCT-Folly (= 2024.01.01.00)
1577
+ - React-callinvoker (= 0.76.1)
1578
+ - React-cxxreact (= 0.76.1)
1579
+ - React-jsi (= 0.76.1)
1580
+ - React-logger (= 0.76.1)
1581
+ - React-perflogger (= 0.76.1)
1582
+ - ReactCommon/turbomodule/bridging (= 0.76.1)
1583
+ - ReactCommon/turbomodule/core (= 0.76.1)
1584
+ - ReactCommon/turbomodule/bridging (0.76.1):
1585
+ - DoubleConversion
1586
+ - fmt (= 9.1.0)
1587
+ - glog
1588
+ - hermes-engine
1589
+ - RCT-Folly (= 2024.01.01.00)
1590
+ - React-callinvoker (= 0.76.1)
1591
+ - React-cxxreact (= 0.76.1)
1592
+ - React-jsi (= 0.76.1)
1593
+ - React-logger (= 0.76.1)
1594
+ - React-perflogger (= 0.76.1)
1595
+ - ReactCommon/turbomodule/core (0.76.1):
1596
+ - DoubleConversion
1597
+ - fmt (= 9.1.0)
1598
+ - glog
1599
+ - hermes-engine
1600
+ - RCT-Folly (= 2024.01.01.00)
1601
+ - React-callinvoker (= 0.76.1)
1602
+ - React-cxxreact (= 0.76.1)
1603
+ - React-debug (= 0.76.1)
1604
+ - React-featureflags (= 0.76.1)
1605
+ - React-jsi (= 0.76.1)
1606
+ - React-logger (= 0.76.1)
1607
+ - React-perflogger (= 0.76.1)
1608
+ - React-utils (= 0.76.1)
1609
+ - RNCAsyncStorage (2.1.0):
1610
+ - DoubleConversion
1611
+ - glog
1612
+ - hermes-engine
1613
+ - RCT-Folly (= 2024.01.01.00)
1614
+ - RCTRequired
1615
+ - RCTTypeSafety
1616
+ - React-Core
1617
+ - React-debug
1618
+ - React-Fabric
1619
+ - React-featureflags
1620
+ - React-graphics
1621
+ - React-ImageManager
1622
+ - React-NativeModulesApple
1623
+ - React-RCTFabric
1624
+ - React-rendererdebug
1625
+ - React-utils
1626
+ - ReactCodegen
1627
+ - ReactCommon/turbomodule/bridging
1628
+ - ReactCommon/turbomodule/core
1629
+ - Yoga
1630
+ - RNGestureHandler (2.20.2):
1631
+ - DoubleConversion
1632
+ - glog
1633
+ - hermes-engine
1634
+ - RCT-Folly (= 2024.01.01.00)
1635
+ - RCTRequired
1636
+ - RCTTypeSafety
1637
+ - React-Core
1638
+ - React-debug
1639
+ - React-Fabric
1640
+ - React-featureflags
1641
+ - React-graphics
1642
+ - React-ImageManager
1643
+ - React-NativeModulesApple
1644
+ - React-RCTFabric
1645
+ - React-rendererdebug
1646
+ - React-utils
1647
+ - ReactCodegen
1648
+ - ReactCommon/turbomodule/bridging
1649
+ - ReactCommon/turbomodule/core
1650
+ - Yoga
1651
+ - segment-analytics-react-native (2.20.3):
1652
+ - React-Core
1653
+ - sovran-react-native
1654
+ - SocketRocket (0.7.1)
1655
+ - sovran-react-native (1.1.3):
1656
+ - React-Core
1657
+ - Yoga (0.0.0)
1658
+
1659
+ DEPENDENCIES:
1660
+ - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
1661
+ - "braze-react-native-sdk (from `../node_modules/@braze/react-native-sdk`)"
1662
+ - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
1663
+ - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
1664
+ - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
1665
+ - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
1666
+ - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
1667
+ - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
1668
+ - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
1669
+ - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
1670
+ - RCTRequired (from `../node_modules/react-native/Libraries/Required`)
1671
+ - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
1672
+ - React (from `../node_modules/react-native/`)
1673
+ - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
1674
+ - React-Core (from `../node_modules/react-native/`)
1675
+ - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
1676
+ - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
1677
+ - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
1678
+ - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
1679
+ - React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`)
1680
+ - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`)
1681
+ - React-Fabric (from `../node_modules/react-native/ReactCommon`)
1682
+ - React-FabricComponents (from `../node_modules/react-native/ReactCommon`)
1683
+ - React-FabricImage (from `../node_modules/react-native/ReactCommon`)
1684
+ - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`)
1685
+ - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`)
1686
+ - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
1687
+ - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
1688
+ - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`)
1689
+ - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
1690
+ - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
1691
+ - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
1692
+ - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
1693
+ - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
1694
+ - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
1695
+ - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
1696
+ - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
1697
+ - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)
1698
+ - react-native-get-random-values (from `../node_modules/react-native-get-random-values`)
1699
+ - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
1700
+ - React-nativeconfig (from `../node_modules/react-native/ReactCommon`)
1701
+ - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
1702
+ - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
1703
+ - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`)
1704
+ - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
1705
+ - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
1706
+ - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
1707
+ - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
1708
+ - React-RCTFabric (from `../node_modules/react-native/React`)
1709
+ - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
1710
+ - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
1711
+ - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
1712
+ - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
1713
+ - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
1714
+ - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
1715
+ - React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`)
1716
+ - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
1717
+ - React-rncore (from `../node_modules/react-native/ReactCommon`)
1718
+ - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)
1719
+ - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)
1720
+ - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
1721
+ - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`)
1722
+ - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
1723
+ - React-timing (from `../node_modules/react-native/ReactCommon/react/timing`)
1724
+ - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
1725
+ - ReactCodegen (from `build/generated/ios`)
1726
+ - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
1727
+ - "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
1728
+ - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
1729
+ - segment-analytics-react-native (from `../../../packages/core`)
1730
+ - sovran-react-native (from `../../../packages/sovran`)
1731
+ - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
1732
+
1733
+ SPEC REPOS:
1734
+ trunk:
1735
+ - BrazeKit
1736
+ - BrazeLocation
1737
+ - BrazeUI
1738
+ - SocketRocket
1739
+
1740
+ EXTERNAL SOURCES:
1741
+ boost:
1742
+ :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
1743
+ braze-react-native-sdk:
1744
+ :path: "../node_modules/@braze/react-native-sdk"
1745
+ DoubleConversion:
1746
+ :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
1747
+ FBLazyVector:
1748
+ :path: "../node_modules/react-native/Libraries/FBLazyVector"
1749
+ fmt:
1750
+ :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec"
1751
+ glog:
1752
+ :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
1753
+ hermes-engine:
1754
+ :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
1755
+ :tag: hermes-2024-09-09-RNv0.76.0-db6d12e202e15f7a446d8848d6ca8f7abb3cfb32
1756
+ RCT-Folly:
1757
+ :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
1758
+ RCTDeprecation:
1759
+ :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation"
1760
+ RCTRequired:
1761
+ :path: "../node_modules/react-native/Libraries/Required"
1762
+ RCTTypeSafety:
1763
+ :path: "../node_modules/react-native/Libraries/TypeSafety"
1764
+ React:
1765
+ :path: "../node_modules/react-native/"
1766
+ React-callinvoker:
1767
+ :path: "../node_modules/react-native/ReactCommon/callinvoker"
1768
+ React-Core:
1769
+ :path: "../node_modules/react-native/"
1770
+ React-CoreModules:
1771
+ :path: "../node_modules/react-native/React/CoreModules"
1772
+ React-cxxreact:
1773
+ :path: "../node_modules/react-native/ReactCommon/cxxreact"
1774
+ React-debug:
1775
+ :path: "../node_modules/react-native/ReactCommon/react/debug"
1776
+ React-defaultsnativemodule:
1777
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults"
1778
+ React-domnativemodule:
1779
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom"
1780
+ React-Fabric:
1781
+ :path: "../node_modules/react-native/ReactCommon"
1782
+ React-FabricComponents:
1783
+ :path: "../node_modules/react-native/ReactCommon"
1784
+ React-FabricImage:
1785
+ :path: "../node_modules/react-native/ReactCommon"
1786
+ React-featureflags:
1787
+ :path: "../node_modules/react-native/ReactCommon/react/featureflags"
1788
+ React-featureflagsnativemodule:
1789
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags"
1790
+ React-graphics:
1791
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
1792
+ React-hermes:
1793
+ :path: "../node_modules/react-native/ReactCommon/hermes"
1794
+ React-idlecallbacksnativemodule:
1795
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks"
1796
+ React-ImageManager:
1797
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
1798
+ React-jserrorhandler:
1799
+ :path: "../node_modules/react-native/ReactCommon/jserrorhandler"
1800
+ React-jsi:
1801
+ :path: "../node_modules/react-native/ReactCommon/jsi"
1802
+ React-jsiexecutor:
1803
+ :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
1804
+ React-jsinspector:
1805
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
1806
+ React-jsitracing:
1807
+ :path: "../node_modules/react-native/ReactCommon/hermes/executor/"
1808
+ React-logger:
1809
+ :path: "../node_modules/react-native/ReactCommon/logger"
1810
+ React-Mapbuffer:
1811
+ :path: "../node_modules/react-native/ReactCommon"
1812
+ React-microtasksnativemodule:
1813
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks"
1814
+ react-native-get-random-values:
1815
+ :path: "../node_modules/react-native-get-random-values"
1816
+ react-native-safe-area-context:
1817
+ :path: "../node_modules/react-native-safe-area-context"
1818
+ React-nativeconfig:
1819
+ :path: "../node_modules/react-native/ReactCommon"
1820
+ React-NativeModulesApple:
1821
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
1822
+ React-perflogger:
1823
+ :path: "../node_modules/react-native/ReactCommon/reactperflogger"
1824
+ React-performancetimeline:
1825
+ :path: "../node_modules/react-native/ReactCommon/react/performance/timeline"
1826
+ React-RCTActionSheet:
1827
+ :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
1828
+ React-RCTAnimation:
1829
+ :path: "../node_modules/react-native/Libraries/NativeAnimation"
1830
+ React-RCTAppDelegate:
1831
+ :path: "../node_modules/react-native/Libraries/AppDelegate"
1832
+ React-RCTBlob:
1833
+ :path: "../node_modules/react-native/Libraries/Blob"
1834
+ React-RCTFabric:
1835
+ :path: "../node_modules/react-native/React"
1836
+ React-RCTImage:
1837
+ :path: "../node_modules/react-native/Libraries/Image"
1838
+ React-RCTLinking:
1839
+ :path: "../node_modules/react-native/Libraries/LinkingIOS"
1840
+ React-RCTNetwork:
1841
+ :path: "../node_modules/react-native/Libraries/Network"
1842
+ React-RCTSettings:
1843
+ :path: "../node_modules/react-native/Libraries/Settings"
1844
+ React-RCTText:
1845
+ :path: "../node_modules/react-native/Libraries/Text"
1846
+ React-RCTVibration:
1847
+ :path: "../node_modules/react-native/Libraries/Vibration"
1848
+ React-rendererconsistency:
1849
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/consistency"
1850
+ React-rendererdebug:
1851
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
1852
+ React-rncore:
1853
+ :path: "../node_modules/react-native/ReactCommon"
1854
+ React-RuntimeApple:
1855
+ :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"
1856
+ React-RuntimeCore:
1857
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
1858
+ React-runtimeexecutor:
1859
+ :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
1860
+ React-RuntimeHermes:
1861
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
1862
+ React-runtimescheduler:
1863
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
1864
+ React-timing:
1865
+ :path: "../node_modules/react-native/ReactCommon/react/timing"
1866
+ React-utils:
1867
+ :path: "../node_modules/react-native/ReactCommon/react/utils"
1868
+ ReactCodegen:
1869
+ :path: build/generated/ios
1870
+ ReactCommon:
1871
+ :path: "../node_modules/react-native/ReactCommon"
1872
+ RNCAsyncStorage:
1873
+ :path: "../node_modules/@react-native-async-storage/async-storage"
1874
+ RNGestureHandler:
1875
+ :path: "../node_modules/react-native-gesture-handler"
1876
+ segment-analytics-react-native:
1877
+ :path: "../../../packages/core"
1878
+ sovran-react-native:
1879
+ :path: "../../../packages/sovran"
1880
+ Yoga:
1881
+ :path: "../node_modules/react-native/ReactCommon/yoga"
1882
+
1883
+ SPEC CHECKSUMS:
1884
+ boost: 1dca942403ed9342f98334bf4c3621f011aa7946
1885
+ braze-react-native-sdk: d3ba64fe18e95f16c1ba8c105d68d3f19d4d75f1
1886
+ BrazeKit: d430e506a325f0f5a1b60cea61ef95035c1d396b
1887
+ BrazeLocation: f574503d26e00658c7a6ddfa1efec68ddaa12e4d
1888
+ BrazeUI: 1500cfce86252db6ce280815c94e0eed03e42691
1889
+ DoubleConversion: f16ae600a246532c4020132d54af21d0ddb2a385
1890
+ FBLazyVector: 7075bb12898bc3998fd60f4b7ca422496cc2cdf7
1891
+ fmt: 10c6e61f4be25dc963c36bd73fc7b1705fe975be
1892
+ glog: 08b301085f15bcbb6ff8632a8ebaf239aae04e6a
1893
+ hermes-engine: 46f1ffbf0297f4298862068dd4c274d4ac17a1fd
1894
+ RCT-Folly: 84578c8756030547307e4572ab1947de1685c599
1895
+ RCTDeprecation: fde92935b3caa6cb65cbff9fbb7d3a9867ffb259
1896
+ RCTRequired: 75c6cee42d21c1530a6f204ba32ff57335d19007
1897
+ RCTTypeSafety: 7e6fe47bfb693c50d4669db1a480ca5331795f5b
1898
+ React: 8e73704cdd5c7f801936776d2fc434c605a7827b
1899
+ React-callinvoker: fa27d1e091e683de88f576e6a5d4efc171929a4c
1900
+ React-Core: 948deed7fa720eeb0d901ff9e45c3719767dab5f
1901
+ React-CoreModules: a11ba75f64245d12a0869203664a802c11594c43
1902
+ React-cxxreact: a5ce05f8a0a1398958523f948fce00d4c8ce38ff
1903
+ React-debug: f474f5c202a277f76c81bf7cf26284f2c09880d7
1904
+ React-defaultsnativemodule: 41cc9a60277f1bec4b258df324e28705ac00b91a
1905
+ React-domnativemodule: 4fe895d9e4aa99590700c5a5f9ff5706e9481ed7
1906
+ React-Fabric: bbdcc01a98528846efacf0767567a8e76df794bb
1907
+ React-FabricComponents: ab8967c5898d88f37486df0eb0111384c498d821
1908
+ React-FabricImage: 7a06db59488b37f509dee73fa0b2811608a67058
1909
+ React-featureflags: 929732439d139ac0662e08f009f1a51ed2b91ed3
1910
+ React-featureflagsnativemodule: b88d53b6d63ee037c5cdefb9861edfd16b4afce1
1911
+ React-graphics: 6367275cc82d631c588a7146fd8dc69ec2f447e8
1912
+ React-hermes: b9bbe9c808d7ab1750ce089b243b03e4a099af63
1913
+ React-idlecallbacksnativemodule: 6fff2280f860f29a3c049695d3ef04c8f70212aa
1914
+ React-ImageManager: 5b001b9e974f5ba81f0645d3d799e2a20c61d91e
1915
+ React-jserrorhandler: 35e5e5a5a99b7b36c3802a2d12ca86889ed5982a
1916
+ React-jsi: d0d8c4019fd91d0cb4b432f2518e08dc37433a13
1917
+ React-jsiexecutor: 1cdaf24e36919d899250938f0f6c79ec1a256923
1918
+ React-jsinspector: 2fabeadbd0eb1cbd83a6fc2026fb38c75b200947
1919
+ React-jsitracing: 7c7c89c963893efd25e0d04c23e854b9a93e0b7e
1920
+ React-logger: 7b5b458327a1ff0d7e5a349430d1ed133dcebaa3
1921
+ React-Mapbuffer: 0d88ad9afa9e195dd7634424bde1d38e4129e646
1922
+ React-microtasksnativemodule: 17234f35d37e6ed388e18a6314210b3b9e051219
1923
+ react-native-get-random-values: d16467cf726c618e9c7a8c3c39c31faa2244bbba
1924
+ react-native-safe-area-context: 819935871d06a80e963546208027f839aa972a85
1925
+ React-nativeconfig: 93fe8c85a8c40820c57814e30f3e44b94c995a7b
1926
+ React-NativeModulesApple: a4457b73e63e983db66d66612160006bccb00ad5
1927
+ React-perflogger: 3140b7778984a486db80d4d2aeaa266cae4eb8c7
1928
+ React-performancetimeline: 41c100bc1299d7b150821b99cf26661c51ed9ab0
1929
+ React-RCTActionSheet: 9407c795fbeee35da2dae3cd6b5c4e5da6ff8bd3
1930
+ React-RCTAnimation: 48e5c6b541fd4c7a96c333e61974c3de34bbe849
1931
+ React-RCTAppDelegate: 602daadf2452a56ca54a6257052ddba89e680486
1932
+ React-RCTBlob: f67be4e0fbe51db1574aec402754054ab9c39668
1933
+ React-RCTFabric: ee6706069cbc4e1ffd5f23553e999a42b08414f7
1934
+ React-RCTImage: 57894a0e42502461d87449bec6cb0f124a49a93b
1935
+ React-RCTLinking: abd71677bc3353327bec26b0ccd0a0c3960efa1c
1936
+ React-RCTNetwork: 2e91efa49b63e54a9782922e5ca1d09ff2789341
1937
+ React-RCTSettings: fd13eebaa3f9af0b56a0ecb053b108e160fbfe07
1938
+ React-RCTText: 4cd7c87db1e1da51a96b86ce39c5468c1dbaae60
1939
+ React-RCTVibration: 579f64ceb06701eca3004a500169e1152c1ef7d2
1940
+ React-rendererconsistency: 5ef1c4642fd6365bf6d5d4e29a3ae02c3a1b8980
1941
+ React-rendererdebug: 8952e1ad914c680d4978916a9eed7c6dc85301d7
1942
+ React-rncore: 0e5394ce20a9d2bf12409d14395588c7b9e6e9ce
1943
+ React-RuntimeApple: f5ed38fba1230713313e88e750dcad06948ba625
1944
+ React-RuntimeCore: 0fc488daf136f05d96349772828ccf64f66d6d2a
1945
+ React-runtimeexecutor: ffac5f09795a5e881477e0d72a0fa6385456bed3
1946
+ React-RuntimeHermes: b8f395d41116c3bdf3373e87c39a856f69c3fff8
1947
+ React-runtimescheduler: 933c72afd4f285b2bb473c0de2482ee250f3e735
1948
+ React-timing: b3b233fe819d9e5b6ca32b605aa732621bdfa5aa
1949
+ React-utils: 0c825829a8e2ca39bb049d95f270a2dbf39ecb05
1950
+ ReactCodegen: 3b0ff1c9015e3ebcf2bd2f8559995c74bfacf8a1
1951
+ ReactCommon: c21a3d6a8d3e98b6e99730139a52f59f0beea89d
1952
+ RNCAsyncStorage: 2edc69cf6db9299363a11477668b7f452f2cb4a6
1953
+ RNGestureHandler: 16ef3dc2d7ecb09f240f25df5255953c4098819b
1954
+ segment-analytics-react-native: 6f98edf18246782ee7428c5380c6519a3d2acf5e
1955
+ SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
1956
+ sovran-react-native: a3ad3f8ff90c2002b2aa9790001a78b0b0a38594
1957
+ Yoga: db69236006b8b1c6d55ab453390c882306cbf219
1958
+
1959
+ PODFILE CHECKSUM: 8834295e47cf03bbd18d22b7b8db5ca14f4085ae
1960
+
1961
+ COCOAPODS: 1.16.2