clevertap-react-native 3.9.0 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (321) hide show
  1. package/.claude/worktrees/ecstatic-goldberg/.claude/settings.local.json +12 -0
  2. package/.claude/worktrees/ecstatic-goldberg/.codebeatignore +1 -0
  3. package/.claude/worktrees/ecstatic-goldberg/.eslintrc.json +34 -0
  4. package/.claude/worktrees/ecstatic-goldberg/.vscode/settings.json +3 -0
  5. package/.claude/worktrees/ecstatic-goldberg/CHANGELOG.md +689 -0
  6. package/.claude/worktrees/ecstatic-goldberg/LICENSE +9 -0
  7. package/.claude/worktrees/ecstatic-goldberg/README.md +52 -0
  8. package/.claude/worktrees/ecstatic-goldberg/android/.gradle/8.5/checksums/checksums.lock +0 -0
  9. package/.claude/worktrees/ecstatic-goldberg/android/.gradle/8.5/dependencies-accessors/dependencies-accessors.lock +0 -0
  10. package/.claude/worktrees/ecstatic-goldberg/android/.gradle/8.5/fileChanges/last-build.bin +0 -0
  11. package/.claude/worktrees/ecstatic-goldberg/android/.gradle/8.5/fileHashes/fileHashes.lock +0 -0
  12. package/.claude/worktrees/ecstatic-goldberg/android/.gradle/8.5/gc.properties +0 -0
  13. package/.claude/worktrees/ecstatic-goldberg/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  14. package/.claude/worktrees/ecstatic-goldberg/android/.gradle/buildOutputCleanup/cache.properties +2 -0
  15. package/.claude/worktrees/ecstatic-goldberg/android/.gradle/vcs-1/gc.properties +0 -0
  16. package/.claude/worktrees/ecstatic-goldberg/android/build.gradle +63 -0
  17. package/.claude/worktrees/ecstatic-goldberg/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  18. package/.claude/worktrees/ecstatic-goldberg/android/gradle/wrapper/gradle-wrapper.properties +6 -0
  19. package/.claude/worktrees/ecstatic-goldberg/android/gradle.properties +2 -0
  20. package/.claude/worktrees/ecstatic-goldberg/android/gradlew +160 -0
  21. package/.claude/worktrees/ecstatic-goldberg/android/gradlew.bat +90 -0
  22. package/{android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt → .claude/worktrees/ecstatic-goldberg/android/src/main}/AndroidManifest.xml +2 -7
  23. package/.claude/worktrees/ecstatic-goldberg/android/src/main/java/com/clevertap/react/CleverTapApplication.kt +12 -0
  24. package/.claude/worktrees/ecstatic-goldberg/android/src/main/java/com/clevertap/react/CleverTapCustomTemplates.kt +66 -0
  25. package/.claude/worktrees/ecstatic-goldberg/android/src/main/java/com/clevertap/react/CleverTapEvent.kt +42 -0
  26. package/.claude/worktrees/ecstatic-goldberg/android/src/main/java/com/clevertap/react/CleverTapEventEmitter.kt +128 -0
  27. package/.claude/worktrees/ecstatic-goldberg/android/src/main/java/com/clevertap/react/CleverTapListenerProxy.kt +225 -0
  28. package/.claude/worktrees/ecstatic-goldberg/android/src/main/java/com/clevertap/react/CleverTapModuleImpl.java +2112 -0
  29. package/.claude/worktrees/ecstatic-goldberg/android/src/main/java/com/clevertap/react/CleverTapPackage.kt +36 -0
  30. package/.claude/worktrees/ecstatic-goldberg/android/src/main/java/com/clevertap/react/CleverTapRnAPI.kt +35 -0
  31. package/.claude/worktrees/ecstatic-goldberg/android/src/main/java/com/clevertap/react/CleverTapUtils.java +333 -0
  32. package/.claude/worktrees/ecstatic-goldberg/android/src/main/java/com/clevertap/react/Constants.kt +13 -0
  33. package/.claude/worktrees/ecstatic-goldberg/android/src/newarch/CleverTapModule.kt +622 -0
  34. package/.claude/worktrees/ecstatic-goldberg/android/src/oldarch/CleverTapModule.kt +716 -0
  35. package/.claude/worktrees/ecstatic-goldberg/clevertap-react-native.podspec +37 -0
  36. package/.claude/worktrees/ecstatic-goldberg/docs/CustomCodeTemplates.md +215 -0
  37. package/.claude/worktrees/ecstatic-goldberg/docs/Variables.md +191 -0
  38. package/.claude/worktrees/ecstatic-goldberg/docs/callbackPayloadFormat.md +26 -0
  39. package/.claude/worktrees/ecstatic-goldberg/docs/install.md +162 -0
  40. package/.claude/worktrees/ecstatic-goldberg/docs/integration.md +122 -0
  41. package/.claude/worktrees/ecstatic-goldberg/docs/iospushtemplates.md +582 -0
  42. package/.claude/worktrees/ecstatic-goldberg/docs/pushprimer.md +99 -0
  43. package/.claude/worktrees/ecstatic-goldberg/docs/usage.md +524 -0
  44. package/.claude/worktrees/ecstatic-goldberg/ios/CleverTapReact/CleverTapReact.h +41 -0
  45. package/.claude/worktrees/ecstatic-goldberg/ios/CleverTapReact/CleverTapReact.mm +1428 -0
  46. package/.claude/worktrees/ecstatic-goldberg/ios/CleverTapReact/CleverTapReactAppFunctionPresenter.h +20 -0
  47. package/.claude/worktrees/ecstatic-goldberg/ios/CleverTapReact/CleverTapReactAppFunctionPresenter.mm +21 -0
  48. package/.claude/worktrees/ecstatic-goldberg/ios/CleverTapReact/CleverTapReactCustomTemplates.h +42 -0
  49. package/.claude/worktrees/ecstatic-goldberg/ios/CleverTapReact/CleverTapReactCustomTemplates.mm +51 -0
  50. package/.claude/worktrees/ecstatic-goldberg/ios/CleverTapReact/CleverTapReactManager.h +14 -0
  51. package/.claude/worktrees/ecstatic-goldberg/ios/CleverTapReact/CleverTapReactManager.mm +168 -0
  52. package/.claude/worktrees/ecstatic-goldberg/ios/CleverTapReact/CleverTapReactPendingEvent.h +14 -0
  53. package/.claude/worktrees/ecstatic-goldberg/ios/CleverTapReact/CleverTapReactPendingEvent.mm +14 -0
  54. package/.claude/worktrees/ecstatic-goldberg/ios/CleverTapReact/CleverTapReactTemplatePresenter.h +22 -0
  55. package/.claude/worktrees/ecstatic-goldberg/ios/CleverTapReact/CleverTapReactTemplatePresenter.mm +21 -0
  56. package/.claude/worktrees/ecstatic-goldberg/ios/CleverTapReact.xcodeproj/project.pbxproj +371 -0
  57. package/.claude/worktrees/ecstatic-goldberg/package-lock.json +9891 -0
  58. package/.claude/worktrees/ecstatic-goldberg/package.json +57 -0
  59. package/.claude/worktrees/ecstatic-goldberg/src/NativeCleverTapModule.ts +252 -0
  60. package/.claude/worktrees/ecstatic-goldberg/src/index.d.ts +1031 -0
  61. package/.claude/worktrees/ecstatic-goldberg/src/index.js +1258 -0
  62. package/.claude/worktrees/ecstatic-goldberg/static/Finder.png +0 -0
  63. package/.claude/worktrees/ecstatic-goldberg/static/GenerateSpecs.png +0 -0
  64. package/.claude/worktrees/ecstatic-goldberg/static/NotificationContent.png +0 -0
  65. package/.claude/worktrees/ecstatic-goldberg/static/NotificationContentStoryboard.png +0 -0
  66. package/.claude/worktrees/ecstatic-goldberg/static/NotificationContentTarget.png +0 -0
  67. package/.claude/worktrees/ecstatic-goldberg/static/NotificationServiceTarget.png +0 -0
  68. package/.claude/worktrees/vigilant-davinci/.claude/settings.local.json +7 -0
  69. package/.claude/worktrees/vigilant-davinci/.codebeatignore +1 -0
  70. package/.claude/worktrees/vigilant-davinci/.eslintrc.json +34 -0
  71. package/.claude/worktrees/vigilant-davinci/.vscode/settings.json +3 -0
  72. package/.claude/worktrees/vigilant-davinci/CHANGELOG.md +702 -0
  73. package/.claude/worktrees/vigilant-davinci/LICENSE +9 -0
  74. package/.claude/worktrees/vigilant-davinci/README.md +52 -0
  75. package/.claude/worktrees/vigilant-davinci/android/.gradle/8.5/checksums/checksums.lock +0 -0
  76. package/.claude/worktrees/vigilant-davinci/android/.gradle/8.5/dependencies-accessors/dependencies-accessors.lock +0 -0
  77. package/.claude/worktrees/vigilant-davinci/android/.gradle/8.5/dependencies-accessors/gc.properties +0 -0
  78. package/.claude/worktrees/vigilant-davinci/android/.gradle/8.5/fileChanges/last-build.bin +0 -0
  79. package/.claude/worktrees/vigilant-davinci/android/.gradle/8.5/fileHashes/fileHashes.lock +0 -0
  80. package/.claude/worktrees/vigilant-davinci/android/.gradle/8.5/gc.properties +0 -0
  81. package/.claude/worktrees/vigilant-davinci/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  82. package/.claude/worktrees/vigilant-davinci/android/.gradle/buildOutputCleanup/cache.properties +2 -0
  83. package/.claude/worktrees/vigilant-davinci/android/.gradle/vcs-1/gc.properties +0 -0
  84. package/.claude/worktrees/vigilant-davinci/android/build.gradle +63 -0
  85. package/.claude/worktrees/vigilant-davinci/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  86. package/.claude/worktrees/vigilant-davinci/android/gradle/wrapper/gradle-wrapper.properties +6 -0
  87. package/.claude/worktrees/vigilant-davinci/android/gradle.properties +2 -0
  88. package/.claude/worktrees/vigilant-davinci/android/gradlew +160 -0
  89. package/.claude/worktrees/vigilant-davinci/android/gradlew.bat +90 -0
  90. package/{android/build/intermediates/merged_manifest/debug → .claude/worktrees/vigilant-davinci/android/src/main}/AndroidManifest.xml +2 -7
  91. package/.claude/worktrees/vigilant-davinci/android/src/main/java/com/clevertap/react/CleverTapApplication.kt +12 -0
  92. package/.claude/worktrees/vigilant-davinci/android/src/main/java/com/clevertap/react/CleverTapCustomTemplates.kt +66 -0
  93. package/.claude/worktrees/vigilant-davinci/android/src/main/java/com/clevertap/react/CleverTapEvent.kt +42 -0
  94. package/.claude/worktrees/vigilant-davinci/android/src/main/java/com/clevertap/react/CleverTapEventEmitter.kt +128 -0
  95. package/.claude/worktrees/vigilant-davinci/android/src/main/java/com/clevertap/react/CleverTapListenerProxy.kt +225 -0
  96. package/.claude/worktrees/vigilant-davinci/android/src/main/java/com/clevertap/react/CleverTapModuleImpl.java +2139 -0
  97. package/.claude/worktrees/vigilant-davinci/android/src/main/java/com/clevertap/react/CleverTapPackage.kt +36 -0
  98. package/.claude/worktrees/vigilant-davinci/android/src/main/java/com/clevertap/react/CleverTapRnAPI.kt +35 -0
  99. package/.claude/worktrees/vigilant-davinci/android/src/main/java/com/clevertap/react/CleverTapUtils.java +333 -0
  100. package/.claude/worktrees/vigilant-davinci/android/src/main/java/com/clevertap/react/Constants.kt +13 -0
  101. package/.claude/worktrees/vigilant-davinci/android/src/newarch/CleverTapModule.kt +622 -0
  102. package/.claude/worktrees/vigilant-davinci/android/src/oldarch/CleverTapModule.kt +716 -0
  103. package/.claude/worktrees/vigilant-davinci/clevertap-react-native.podspec +37 -0
  104. package/.claude/worktrees/vigilant-davinci/docs/CustomCodeTemplates.md +215 -0
  105. package/.claude/worktrees/vigilant-davinci/docs/Variables.md +191 -0
  106. package/.claude/worktrees/vigilant-davinci/docs/callbackPayloadFormat.md +26 -0
  107. package/.claude/worktrees/vigilant-davinci/docs/install.md +162 -0
  108. package/.claude/worktrees/vigilant-davinci/docs/integration.md +122 -0
  109. package/.claude/worktrees/vigilant-davinci/docs/iospushtemplates.md +582 -0
  110. package/.claude/worktrees/vigilant-davinci/docs/pushprimer.md +99 -0
  111. package/.claude/worktrees/vigilant-davinci/docs/usage.md +524 -0
  112. package/.claude/worktrees/vigilant-davinci/ios/CleverTapReact/CleverTapReact.h +41 -0
  113. package/.claude/worktrees/vigilant-davinci/ios/CleverTapReact/CleverTapReact.mm +1428 -0
  114. package/.claude/worktrees/vigilant-davinci/ios/CleverTapReact/CleverTapReactAppFunctionPresenter.h +20 -0
  115. package/.claude/worktrees/vigilant-davinci/ios/CleverTapReact/CleverTapReactAppFunctionPresenter.mm +21 -0
  116. package/.claude/worktrees/vigilant-davinci/ios/CleverTapReact/CleverTapReactCustomTemplates.h +42 -0
  117. package/.claude/worktrees/vigilant-davinci/ios/CleverTapReact/CleverTapReactCustomTemplates.mm +51 -0
  118. package/.claude/worktrees/vigilant-davinci/ios/CleverTapReact/CleverTapReactManager.h +14 -0
  119. package/.claude/worktrees/vigilant-davinci/ios/CleverTapReact/CleverTapReactManager.mm +168 -0
  120. package/.claude/worktrees/vigilant-davinci/ios/CleverTapReact/CleverTapReactPendingEvent.h +14 -0
  121. package/.claude/worktrees/vigilant-davinci/ios/CleverTapReact/CleverTapReactPendingEvent.mm +14 -0
  122. package/.claude/worktrees/vigilant-davinci/ios/CleverTapReact/CleverTapReactTemplatePresenter.h +22 -0
  123. package/.claude/worktrees/vigilant-davinci/ios/CleverTapReact/CleverTapReactTemplatePresenter.mm +21 -0
  124. package/.claude/worktrees/vigilant-davinci/ios/CleverTapReact.xcodeproj/project.pbxproj +371 -0
  125. package/.claude/worktrees/vigilant-davinci/package-lock.json +9891 -0
  126. package/.claude/worktrees/vigilant-davinci/package.json +57 -0
  127. package/.claude/worktrees/vigilant-davinci/src/NativeCleverTapModule.ts +252 -0
  128. package/.claude/worktrees/vigilant-davinci/src/index.d.ts +1031 -0
  129. package/.claude/worktrees/vigilant-davinci/src/index.js +1270 -0
  130. package/.claude/worktrees/vigilant-davinci/static/Finder.png +0 -0
  131. package/.claude/worktrees/vigilant-davinci/static/GenerateSpecs.png +0 -0
  132. package/.claude/worktrees/vigilant-davinci/static/NotificationContent.png +0 -0
  133. package/.claude/worktrees/vigilant-davinci/static/NotificationContentStoryboard.png +0 -0
  134. package/.claude/worktrees/vigilant-davinci/static/NotificationContentTarget.png +0 -0
  135. package/.claude/worktrees/vigilant-davinci/static/NotificationServiceTarget.png +0 -0
  136. package/CHANGELOG.md +13 -0
  137. package/android/.gradle/8.5/checksums/checksums.lock +0 -0
  138. package/android/{build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i → .gradle/8.5/checksums/sha1-checksums.bin} +0 -0
  139. package/android/.gradle/8.5/dependencies-accessors/dependencies-accessors.lock +0 -0
  140. package/android/.gradle/8.5/fileHashes/fileHashes.lock +0 -0
  141. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  142. package/android/.gradle/buildOutputCleanup/cache.properties +2 -0
  143. package/android/build.gradle +3 -3
  144. package/clevertap-react-native.podspec +1 -1
  145. package/docs/install.md +1 -1
  146. package/ios/CleverTapReact/CleverTapReactManager.mm +8 -0
  147. package/package.json +1 -1
  148. package/src/index.js +1 -1
  149. package/android/.settings/org.eclipse.buildship.core.prefs +0 -13
  150. package/android/build/generated/source/buildConfig/debug/com/clevertap/react/BuildConfig.java +0 -12
  151. package/android/build/generated/source/codegen/java/com/clevertap/react/NativeCleverTapModuleSpec.java +0 -582
  152. package/android/build/generated/source/codegen/jni/CMakeLists.txt +0 -49
  153. package/android/build/generated/source/codegen/jni/CTTurboModuleSpec-generated.cpp +0 -764
  154. package/android/build/generated/source/codegen/jni/CTTurboModuleSpec.h +0 -31
  155. package/android/build/generated/source/codegen/jni/react/renderer/components/CTTurboModuleSpec/CTTurboModuleSpecJSI-generated.cpp +0 -1035
  156. package/android/build/generated/source/codegen/jni/react/renderer/components/CTTurboModuleSpec/CTTurboModuleSpecJSI.h +0 -1161
  157. package/android/build/generated/source/codegen/jni/react/renderer/components/CTTurboModuleSpec/ComponentDescriptors.cpp +0 -22
  158. package/android/build/generated/source/codegen/jni/react/renderer/components/CTTurboModuleSpec/ComponentDescriptors.h +0 -24
  159. package/android/build/generated/source/codegen/jni/react/renderer/components/CTTurboModuleSpec/EventEmitters.cpp +0 -16
  160. package/android/build/generated/source/codegen/jni/react/renderer/components/CTTurboModuleSpec/EventEmitters.h +0 -17
  161. package/android/build/generated/source/codegen/jni/react/renderer/components/CTTurboModuleSpec/Props.cpp +0 -19
  162. package/android/build/generated/source/codegen/jni/react/renderer/components/CTTurboModuleSpec/Props.h +0 -18
  163. package/android/build/generated/source/codegen/jni/react/renderer/components/CTTurboModuleSpec/ShadowNodes.cpp +0 -17
  164. package/android/build/generated/source/codegen/jni/react/renderer/components/CTTurboModuleSpec/ShadowNodes.h +0 -23
  165. package/android/build/generated/source/codegen/jni/react/renderer/components/CTTurboModuleSpec/States.cpp +0 -16
  166. package/android/build/generated/source/codegen/jni/react/renderer/components/CTTurboModuleSpec/States.h +0 -21
  167. package/android/build/generated/source/codegen/schema.json +0 -3695
  168. package/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json +0 -18
  169. package/android/build/intermediates/aar_main_jar/debug/classes.jar +0 -0
  170. package/android/build/intermediates/aar_metadata/debug/aar-metadata.properties +0 -6
  171. package/android/build/intermediates/annotation_processor_list/debug/annotationProcessors.json +0 -1
  172. package/android/build/intermediates/compile_library_classes_jar/debug/classes.jar +0 -0
  173. package/android/build/intermediates/compile_r_class_jar/debug/R.jar +0 -0
  174. package/android/build/intermediates/compile_symbol_list/debug/R.txt +0 -7705
  175. package/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +0 -1
  176. package/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +0 -2
  177. package/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state +0 -0
  178. package/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +0 -2
  179. package/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +0 -2
  180. package/android/build/intermediates/incremental/packageDebugAssets/merger.xml +0 -2
  181. package/android/build/intermediates/java_res/debug/out/META-INF/clevertap-react-native_debug.kotlin_module +0 -0
  182. package/android/build/intermediates/javac/debug/classes/com/clevertap/react/BuildConfig.class +0 -0
  183. package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapModuleImpl$1.class +0 -0
  184. package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapModuleImpl$10.class +0 -0
  185. package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapModuleImpl$2.class +0 -0
  186. package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapModuleImpl$3.class +0 -0
  187. package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapModuleImpl$4.class +0 -0
  188. package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapModuleImpl$5.class +0 -0
  189. package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapModuleImpl$6.class +0 -0
  190. package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapModuleImpl$7.class +0 -0
  191. package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapModuleImpl$8.class +0 -0
  192. package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapModuleImpl$9.class +0 -0
  193. package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapModuleImpl$InBoxMessages.class +0 -0
  194. package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapModuleImpl$TemplateContextAction.class +0 -0
  195. package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapModuleImpl.class +0 -0
  196. package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapUtils$1.class +0 -0
  197. package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapUtils$MapUtil$ArrayUtil.class +0 -0
  198. package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapUtils$MapUtil.class +0 -0
  199. package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapUtils.class +0 -0
  200. package/android/build/intermediates/javac/debug/classes/com/clevertap/react/NativeCleverTapModuleSpec.class +0 -0
  201. package/android/build/intermediates/local_only_symbol_list/debug/R-def.txt +0 -2
  202. package/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt +0 -14
  203. package/android/build/intermediates/merged_java_res/debug/feature-clevertap-react-native.jar +0 -0
  204. package/android/build/intermediates/navigation_json/debug/navigation.json +0 -1
  205. package/android/build/intermediates/runtime_library_classes_jar/debug/classes.jar +0 -0
  206. package/android/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt +0 -5786
  207. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab +0 -0
  208. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream +0 -0
  209. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len +0 -0
  210. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len +0 -0
  211. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at +0 -0
  212. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i +0 -0
  213. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len +0 -0
  214. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab +0 -0
  215. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream +0 -0
  216. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len +0 -0
  217. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len +0 -0
  218. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at +0 -0
  219. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i +0 -0
  220. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len +0 -0
  221. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab +0 -0
  222. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream +0 -0
  223. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len +0 -0
  224. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len +0 -0
  225. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at +0 -0
  226. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i +0 -0
  227. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len +0 -0
  228. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab +0 -0
  229. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream +0 -0
  230. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len +0 -0
  231. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len +0 -0
  232. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at +0 -0
  233. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i +0 -0
  234. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len +0 -0
  235. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab +0 -0
  236. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream +0 -0
  237. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len +0 -0
  238. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len +0 -0
  239. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at +0 -0
  240. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i +0 -0
  241. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len +0 -0
  242. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab +0 -0
  243. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream +0 -0
  244. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream.len +0 -0
  245. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.len +0 -0
  246. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.values.at +0 -0
  247. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i +0 -0
  248. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i.len +0 -0
  249. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab +0 -0
  250. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream +0 -0
  251. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len +0 -0
  252. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len +0 -0
  253. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at +0 -0
  254. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len +0 -0
  255. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab +0 -0
  256. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream +0 -0
  257. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len +0 -0
  258. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len +0 -0
  259. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at +0 -0
  260. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i +0 -0
  261. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len +0 -0
  262. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab +0 -0
  263. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream +0 -0
  264. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len +0 -0
  265. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len +0 -0
  266. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at +0 -0
  267. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i +0 -0
  268. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len +0 -0
  269. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab +0 -0
  270. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream +0 -0
  271. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len +0 -0
  272. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len +0 -0
  273. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at +0 -0
  274. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i +0 -0
  275. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len +0 -0
  276. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +0 -2
  277. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab +0 -0
  278. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream +0 -0
  279. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len +0 -0
  280. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len +0 -0
  281. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at +0 -0
  282. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i +0 -0
  283. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len +0 -0
  284. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab +0 -0
  285. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream +0 -0
  286. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len +0 -0
  287. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len +0 -0
  288. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at +0 -0
  289. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i +0 -0
  290. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len +0 -0
  291. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab +0 -0
  292. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream +0 -0
  293. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len +0 -0
  294. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len +0 -0
  295. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at +0 -0
  296. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i +0 -0
  297. package/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len +0 -0
  298. package/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin +0 -0
  299. package/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin +0 -0
  300. package/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin +0 -0
  301. package/android/build/outputs/aar/clevertap-react-native-debug.aar +0 -0
  302. package/android/build/outputs/logs/manifest-merger-debug-report.txt +0 -17
  303. package/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +0 -0
  304. package/android/build/tmp/kotlin-classes/debug/META-INF/clevertap-react-native_debug.kotlin_module +0 -0
  305. package/android/build/tmp/kotlin-classes/debug/com/clevertap/react/CleverTapApplication.class +0 -0
  306. package/android/build/tmp/kotlin-classes/debug/com/clevertap/react/CleverTapCustomTemplates$templatePresenter$1.class +0 -0
  307. package/android/build/tmp/kotlin-classes/debug/com/clevertap/react/CleverTapCustomTemplates.class +0 -0
  308. package/android/build/tmp/kotlin-classes/debug/com/clevertap/react/CleverTapEvent$Companion.class +0 -0
  309. package/android/build/tmp/kotlin-classes/debug/com/clevertap/react/CleverTapEvent.class +0 -0
  310. package/android/build/tmp/kotlin-classes/debug/com/clevertap/react/CleverTapEventEmitter$Buffer$items$2.class +0 -0
  311. package/android/build/tmp/kotlin-classes/debug/com/clevertap/react/CleverTapEventEmitter$Buffer.class +0 -0
  312. package/android/build/tmp/kotlin-classes/debug/com/clevertap/react/CleverTapEventEmitter.class +0 -0
  313. package/android/build/tmp/kotlin-classes/debug/com/clevertap/react/CleverTapListenerProxy.class +0 -0
  314. package/android/build/tmp/kotlin-classes/debug/com/clevertap/react/CleverTapModule$Companion.class +0 -0
  315. package/android/build/tmp/kotlin-classes/debug/com/clevertap/react/CleverTapModule.class +0 -0
  316. package/android/build/tmp/kotlin-classes/debug/com/clevertap/react/CleverTapPackage.class +0 -0
  317. package/android/build/tmp/kotlin-classes/debug/com/clevertap/react/CleverTapRnAPI.class +0 -0
  318. package/android/build/tmp/kotlin-classes/debug/com/clevertap/react/Constants.class +0 -0
  319. package/android/build/tmp/kotlin-classes/debug/com/clevertap/react/ErrorMessages.class +0 -0
  320. package/android/local.properties +0 -8
  321. /package/{android/build/intermediates/annotations_typedef_file/debug/typedefs.txt → .claude/worktrees/ecstatic-goldberg/android/.gradle/8.5/dependencies-accessors/gc.properties} +0 -0
@@ -1,3695 +0,0 @@
1
- {
2
- "modules": {
3
- "NativeCleverTapModule": {
4
- "type": "NativeModule",
5
- "aliasMap": {},
6
- "enumMap": {},
7
- "spec": {
8
- "properties": [
9
- {
10
- "name": "getConstants",
11
- "optional": false,
12
- "typeAnnotation": {
13
- "type": "FunctionTypeAnnotation",
14
- "returnTypeAnnotation": {
15
- "type": "ObjectTypeAnnotation",
16
- "properties": [
17
- {
18
- "name": "CleverTapProfileDidInitialize",
19
- "optional": false,
20
- "typeAnnotation": {
21
- "type": "StringTypeAnnotation"
22
- }
23
- },
24
- {
25
- "name": "CleverTapProfileSync",
26
- "optional": false,
27
- "typeAnnotation": {
28
- "type": "StringTypeAnnotation"
29
- }
30
- },
31
- {
32
- "name": "CleverTapInAppNotificationDismissed",
33
- "optional": false,
34
- "typeAnnotation": {
35
- "type": "StringTypeAnnotation"
36
- }
37
- },
38
- {
39
- "name": "CleverTapInAppNotificationShowed",
40
- "optional": false,
41
- "typeAnnotation": {
42
- "type": "StringTypeAnnotation"
43
- }
44
- },
45
- {
46
- "name": "CleverTapInAppNotificationButtonTapped",
47
- "optional": false,
48
- "typeAnnotation": {
49
- "type": "StringTypeAnnotation"
50
- }
51
- },
52
- {
53
- "name": "CleverTapCustomTemplatePresent",
54
- "optional": false,
55
- "typeAnnotation": {
56
- "type": "StringTypeAnnotation"
57
- }
58
- },
59
- {
60
- "name": "CleverTapCustomTemplateClose",
61
- "optional": false,
62
- "typeAnnotation": {
63
- "type": "StringTypeAnnotation"
64
- }
65
- },
66
- {
67
- "name": "CleverTapCustomFunctionPresent",
68
- "optional": false,
69
- "typeAnnotation": {
70
- "type": "StringTypeAnnotation"
71
- }
72
- },
73
- {
74
- "name": "CleverTapInboxDidInitialize",
75
- "optional": false,
76
- "typeAnnotation": {
77
- "type": "StringTypeAnnotation"
78
- }
79
- },
80
- {
81
- "name": "CleverTapInboxMessagesDidUpdate",
82
- "optional": false,
83
- "typeAnnotation": {
84
- "type": "StringTypeAnnotation"
85
- }
86
- },
87
- {
88
- "name": "CleverTapInboxMessageButtonTapped",
89
- "optional": false,
90
- "typeAnnotation": {
91
- "type": "StringTypeAnnotation"
92
- }
93
- },
94
- {
95
- "name": "CleverTapInboxMessageTapped",
96
- "optional": false,
97
- "typeAnnotation": {
98
- "type": "StringTypeAnnotation"
99
- }
100
- },
101
- {
102
- "name": "CleverTapDisplayUnitsLoaded",
103
- "optional": false,
104
- "typeAnnotation": {
105
- "type": "StringTypeAnnotation"
106
- }
107
- },
108
- {
109
- "name": "CleverTapFeatureFlagsDidUpdate",
110
- "optional": false,
111
- "typeAnnotation": {
112
- "type": "StringTypeAnnotation"
113
- }
114
- },
115
- {
116
- "name": "CleverTapProductConfigDidInitialize",
117
- "optional": false,
118
- "typeAnnotation": {
119
- "type": "StringTypeAnnotation"
120
- }
121
- },
122
- {
123
- "name": "CleverTapProductConfigDidFetch",
124
- "optional": false,
125
- "typeAnnotation": {
126
- "type": "StringTypeAnnotation"
127
- }
128
- },
129
- {
130
- "name": "CleverTapProductConfigDidActivate",
131
- "optional": false,
132
- "typeAnnotation": {
133
- "type": "StringTypeAnnotation"
134
- }
135
- },
136
- {
137
- "name": "CleverTapPushNotificationClicked",
138
- "optional": false,
139
- "typeAnnotation": {
140
- "type": "StringTypeAnnotation"
141
- }
142
- },
143
- {
144
- "name": "CleverTapPushPermissionResponseReceived",
145
- "optional": false,
146
- "typeAnnotation": {
147
- "type": "StringTypeAnnotation"
148
- }
149
- },
150
- {
151
- "name": "CleverTapOnVariablesChanged",
152
- "optional": false,
153
- "typeAnnotation": {
154
- "type": "StringTypeAnnotation"
155
- }
156
- },
157
- {
158
- "name": "CleverTapOnOneTimeVariablesChanged",
159
- "optional": false,
160
- "typeAnnotation": {
161
- "type": "StringTypeAnnotation"
162
- }
163
- },
164
- {
165
- "name": "CleverTapOnValueChanged",
166
- "optional": false,
167
- "typeAnnotation": {
168
- "type": "StringTypeAnnotation"
169
- }
170
- },
171
- {
172
- "name": "CleverTapOnVariablesChangedAndNoDownloadsPending",
173
- "optional": false,
174
- "typeAnnotation": {
175
- "type": "StringTypeAnnotation"
176
- }
177
- },
178
- {
179
- "name": "CleverTapOnceVariablesChangedAndNoDownloadsPending",
180
- "optional": false,
181
- "typeAnnotation": {
182
- "type": "StringTypeAnnotation"
183
- }
184
- },
185
- {
186
- "name": "CleverTapOnFileValueChanged",
187
- "optional": false,
188
- "typeAnnotation": {
189
- "type": "StringTypeAnnotation"
190
- }
191
- },
192
- {
193
- "name": "FCM",
194
- "optional": false,
195
- "typeAnnotation": {
196
- "type": "StringTypeAnnotation"
197
- }
198
- }
199
- ]
200
- },
201
- "params": []
202
- }
203
- },
204
- {
205
- "name": "setInstanceWithAccountId",
206
- "optional": false,
207
- "typeAnnotation": {
208
- "type": "FunctionTypeAnnotation",
209
- "returnTypeAnnotation": {
210
- "type": "VoidTypeAnnotation"
211
- },
212
- "params": [
213
- {
214
- "name": "accountId",
215
- "optional": false,
216
- "typeAnnotation": {
217
- "type": "StringTypeAnnotation"
218
- }
219
- }
220
- ]
221
- }
222
- },
223
- {
224
- "name": "getInitialUrl",
225
- "optional": false,
226
- "typeAnnotation": {
227
- "type": "FunctionTypeAnnotation",
228
- "returnTypeAnnotation": {
229
- "type": "VoidTypeAnnotation"
230
- },
231
- "params": [
232
- {
233
- "name": "callback",
234
- "optional": false,
235
- "typeAnnotation": {
236
- "type": "FunctionTypeAnnotation",
237
- "returnTypeAnnotation": {
238
- "type": "VoidTypeAnnotation"
239
- },
240
- "params": [
241
- {
242
- "name": "callback",
243
- "optional": false,
244
- "typeAnnotation": {
245
- "type": "StringTypeAnnotation"
246
- }
247
- }
248
- ]
249
- }
250
- }
251
- ]
252
- }
253
- },
254
- {
255
- "name": "setLibrary",
256
- "optional": false,
257
- "typeAnnotation": {
258
- "type": "FunctionTypeAnnotation",
259
- "returnTypeAnnotation": {
260
- "type": "VoidTypeAnnotation"
261
- },
262
- "params": [
263
- {
264
- "name": "name",
265
- "optional": false,
266
- "typeAnnotation": {
267
- "type": "StringTypeAnnotation"
268
- }
269
- },
270
- {
271
- "name": "andVersion",
272
- "optional": false,
273
- "typeAnnotation": {
274
- "type": "NumberTypeAnnotation"
275
- }
276
- }
277
- ]
278
- }
279
- },
280
- {
281
- "name": "setLocale",
282
- "optional": false,
283
- "typeAnnotation": {
284
- "type": "FunctionTypeAnnotation",
285
- "returnTypeAnnotation": {
286
- "type": "VoidTypeAnnotation"
287
- },
288
- "params": [
289
- {
290
- "name": "locale",
291
- "optional": false,
292
- "typeAnnotation": {
293
- "type": "StringTypeAnnotation"
294
- }
295
- }
296
- ]
297
- }
298
- },
299
- {
300
- "name": "registerForPush",
301
- "optional": false,
302
- "typeAnnotation": {
303
- "type": "FunctionTypeAnnotation",
304
- "returnTypeAnnotation": {
305
- "type": "VoidTypeAnnotation"
306
- },
307
- "params": []
308
- }
309
- },
310
- {
311
- "name": "setFCMPushTokenAsString",
312
- "optional": false,
313
- "typeAnnotation": {
314
- "type": "FunctionTypeAnnotation",
315
- "returnTypeAnnotation": {
316
- "type": "VoidTypeAnnotation"
317
- },
318
- "params": [
319
- {
320
- "name": "token",
321
- "optional": false,
322
- "typeAnnotation": {
323
- "type": "StringTypeAnnotation"
324
- }
325
- }
326
- ]
327
- }
328
- },
329
- {
330
- "name": "pushRegistrationToken",
331
- "optional": false,
332
- "typeAnnotation": {
333
- "type": "FunctionTypeAnnotation",
334
- "returnTypeAnnotation": {
335
- "type": "VoidTypeAnnotation"
336
- },
337
- "params": [
338
- {
339
- "name": "token",
340
- "optional": false,
341
- "typeAnnotation": {
342
- "type": "StringTypeAnnotation"
343
- }
344
- },
345
- {
346
- "name": "pushType",
347
- "optional": false,
348
- "typeAnnotation": {
349
- "type": "NullableTypeAnnotation",
350
- "typeAnnotation": {
351
- "type": "GenericObjectTypeAnnotation"
352
- }
353
- }
354
- }
355
- ]
356
- }
357
- },
358
- {
359
- "name": "setPushTokenAsStringWithRegion",
360
- "optional": false,
361
- "typeAnnotation": {
362
- "type": "FunctionTypeAnnotation",
363
- "returnTypeAnnotation": {
364
- "type": "VoidTypeAnnotation"
365
- },
366
- "params": [
367
- {
368
- "name": "token",
369
- "optional": false,
370
- "typeAnnotation": {
371
- "type": "StringTypeAnnotation"
372
- }
373
- },
374
- {
375
- "name": "withType",
376
- "optional": false,
377
- "typeAnnotation": {
378
- "type": "StringTypeAnnotation"
379
- }
380
- },
381
- {
382
- "name": "withRegion",
383
- "optional": false,
384
- "typeAnnotation": {
385
- "type": "StringTypeAnnotation"
386
- }
387
- }
388
- ]
389
- }
390
- },
391
- {
392
- "name": "enablePersonalization",
393
- "optional": false,
394
- "typeAnnotation": {
395
- "type": "FunctionTypeAnnotation",
396
- "returnTypeAnnotation": {
397
- "type": "VoidTypeAnnotation"
398
- },
399
- "params": []
400
- }
401
- },
402
- {
403
- "name": "disablePersonalization",
404
- "optional": false,
405
- "typeAnnotation": {
406
- "type": "FunctionTypeAnnotation",
407
- "returnTypeAnnotation": {
408
- "type": "VoidTypeAnnotation"
409
- },
410
- "params": []
411
- }
412
- },
413
- {
414
- "name": "setOffline",
415
- "optional": false,
416
- "typeAnnotation": {
417
- "type": "FunctionTypeAnnotation",
418
- "returnTypeAnnotation": {
419
- "type": "VoidTypeAnnotation"
420
- },
421
- "params": [
422
- {
423
- "name": "enabled",
424
- "optional": false,
425
- "typeAnnotation": {
426
- "type": "BooleanTypeAnnotation"
427
- }
428
- }
429
- ]
430
- }
431
- },
432
- {
433
- "name": "setOptOut",
434
- "optional": false,
435
- "typeAnnotation": {
436
- "type": "FunctionTypeAnnotation",
437
- "returnTypeAnnotation": {
438
- "type": "VoidTypeAnnotation"
439
- },
440
- "params": [
441
- {
442
- "name": "userOptOut",
443
- "optional": false,
444
- "typeAnnotation": {
445
- "type": "BooleanTypeAnnotation"
446
- }
447
- },
448
- {
449
- "name": "allowSystemEvents",
450
- "optional": true,
451
- "typeAnnotation": {
452
- "type": "BooleanTypeAnnotation"
453
- }
454
- }
455
- ]
456
- }
457
- },
458
- {
459
- "name": "enableDeviceNetworkInfoReporting",
460
- "optional": false,
461
- "typeAnnotation": {
462
- "type": "FunctionTypeAnnotation",
463
- "returnTypeAnnotation": {
464
- "type": "VoidTypeAnnotation"
465
- },
466
- "params": [
467
- {
468
- "name": "enabled",
469
- "optional": false,
470
- "typeAnnotation": {
471
- "type": "BooleanTypeAnnotation"
472
- }
473
- }
474
- ]
475
- }
476
- },
477
- {
478
- "name": "recordScreenView",
479
- "optional": false,
480
- "typeAnnotation": {
481
- "type": "FunctionTypeAnnotation",
482
- "returnTypeAnnotation": {
483
- "type": "VoidTypeAnnotation"
484
- },
485
- "params": [
486
- {
487
- "name": "screenName",
488
- "optional": false,
489
- "typeAnnotation": {
490
- "type": "StringTypeAnnotation"
491
- }
492
- }
493
- ]
494
- }
495
- },
496
- {
497
- "name": "recordEvent",
498
- "optional": false,
499
- "typeAnnotation": {
500
- "type": "FunctionTypeAnnotation",
501
- "returnTypeAnnotation": {
502
- "type": "VoidTypeAnnotation"
503
- },
504
- "params": [
505
- {
506
- "name": "eventName",
507
- "optional": false,
508
- "typeAnnotation": {
509
- "type": "StringTypeAnnotation"
510
- }
511
- },
512
- {
513
- "name": "withProps",
514
- "optional": false,
515
- "typeAnnotation": {
516
- "type": "NullableTypeAnnotation",
517
- "typeAnnotation": {
518
- "type": "GenericObjectTypeAnnotation"
519
- }
520
- }
521
- }
522
- ]
523
- }
524
- },
525
- {
526
- "name": "recordChargedEvent",
527
- "optional": false,
528
- "typeAnnotation": {
529
- "type": "FunctionTypeAnnotation",
530
- "returnTypeAnnotation": {
531
- "type": "VoidTypeAnnotation"
532
- },
533
- "params": [
534
- {
535
- "name": "details",
536
- "optional": false,
537
- "typeAnnotation": {
538
- "type": "NullableTypeAnnotation",
539
- "typeAnnotation": {
540
- "type": "GenericObjectTypeAnnotation"
541
- }
542
- }
543
- },
544
- {
545
- "name": "andItems",
546
- "optional": false,
547
- "typeAnnotation": {
548
- "type": "ArrayTypeAnnotation",
549
- "elementType": {
550
- "type": "StringTypeAnnotation"
551
- }
552
- }
553
- }
554
- ]
555
- }
556
- },
557
- {
558
- "name": "eventGetFirstTime",
559
- "optional": false,
560
- "typeAnnotation": {
561
- "type": "FunctionTypeAnnotation",
562
- "returnTypeAnnotation": {
563
- "type": "VoidTypeAnnotation"
564
- },
565
- "params": [
566
- {
567
- "name": "eventName",
568
- "optional": false,
569
- "typeAnnotation": {
570
- "type": "StringTypeAnnotation"
571
- }
572
- },
573
- {
574
- "name": "callback",
575
- "optional": false,
576
- "typeAnnotation": {
577
- "type": "NullableTypeAnnotation",
578
- "typeAnnotation": {
579
- "type": "FunctionTypeAnnotation",
580
- "returnTypeAnnotation": {
581
- "type": "VoidTypeAnnotation"
582
- },
583
- "params": [
584
- {
585
- "name": "error",
586
- "optional": false,
587
- "typeAnnotation": {
588
- "type": "GenericObjectTypeAnnotation"
589
- }
590
- },
591
- {
592
- "name": "result",
593
- "optional": false,
594
- "typeAnnotation": {
595
- "type": "BooleanTypeAnnotation"
596
- }
597
- }
598
- ]
599
- }
600
- }
601
- }
602
- ]
603
- }
604
- },
605
- {
606
- "name": "eventGetLastTime",
607
- "optional": false,
608
- "typeAnnotation": {
609
- "type": "FunctionTypeAnnotation",
610
- "returnTypeAnnotation": {
611
- "type": "VoidTypeAnnotation"
612
- },
613
- "params": [
614
- {
615
- "name": "eventName",
616
- "optional": false,
617
- "typeAnnotation": {
618
- "type": "StringTypeAnnotation"
619
- }
620
- },
621
- {
622
- "name": "callback",
623
- "optional": false,
624
- "typeAnnotation": {
625
- "type": "NullableTypeAnnotation",
626
- "typeAnnotation": {
627
- "type": "FunctionTypeAnnotation",
628
- "returnTypeAnnotation": {
629
- "type": "VoidTypeAnnotation"
630
- },
631
- "params": [
632
- {
633
- "name": "error",
634
- "optional": false,
635
- "typeAnnotation": {
636
- "type": "GenericObjectTypeAnnotation"
637
- }
638
- },
639
- {
640
- "name": "result",
641
- "optional": false,
642
- "typeAnnotation": {
643
- "type": "BooleanTypeAnnotation"
644
- }
645
- }
646
- ]
647
- }
648
- }
649
- }
650
- ]
651
- }
652
- },
653
- {
654
- "name": "eventGetOccurrences",
655
- "optional": false,
656
- "typeAnnotation": {
657
- "type": "FunctionTypeAnnotation",
658
- "returnTypeAnnotation": {
659
- "type": "VoidTypeAnnotation"
660
- },
661
- "params": [
662
- {
663
- "name": "eventName",
664
- "optional": false,
665
- "typeAnnotation": {
666
- "type": "StringTypeAnnotation"
667
- }
668
- },
669
- {
670
- "name": "callback",
671
- "optional": false,
672
- "typeAnnotation": {
673
- "type": "NullableTypeAnnotation",
674
- "typeAnnotation": {
675
- "type": "FunctionTypeAnnotation",
676
- "returnTypeAnnotation": {
677
- "type": "VoidTypeAnnotation"
678
- },
679
- "params": [
680
- {
681
- "name": "error",
682
- "optional": false,
683
- "typeAnnotation": {
684
- "type": "GenericObjectTypeAnnotation"
685
- }
686
- },
687
- {
688
- "name": "result",
689
- "optional": false,
690
- "typeAnnotation": {
691
- "type": "BooleanTypeAnnotation"
692
- }
693
- }
694
- ]
695
- }
696
- }
697
- }
698
- ]
699
- }
700
- },
701
- {
702
- "name": "eventGetDetail",
703
- "optional": false,
704
- "typeAnnotation": {
705
- "type": "FunctionTypeAnnotation",
706
- "returnTypeAnnotation": {
707
- "type": "VoidTypeAnnotation"
708
- },
709
- "params": [
710
- {
711
- "name": "eventName",
712
- "optional": false,
713
- "typeAnnotation": {
714
- "type": "StringTypeAnnotation"
715
- }
716
- },
717
- {
718
- "name": "callback",
719
- "optional": false,
720
- "typeAnnotation": {
721
- "type": "NullableTypeAnnotation",
722
- "typeAnnotation": {
723
- "type": "FunctionTypeAnnotation",
724
- "returnTypeAnnotation": {
725
- "type": "VoidTypeAnnotation"
726
- },
727
- "params": [
728
- {
729
- "name": "error",
730
- "optional": false,
731
- "typeAnnotation": {
732
- "type": "GenericObjectTypeAnnotation"
733
- }
734
- },
735
- {
736
- "name": "result",
737
- "optional": false,
738
- "typeAnnotation": {
739
- "type": "BooleanTypeAnnotation"
740
- }
741
- }
742
- ]
743
- }
744
- }
745
- }
746
- ]
747
- }
748
- },
749
- {
750
- "name": "getUserEventLog",
751
- "optional": false,
752
- "typeAnnotation": {
753
- "type": "FunctionTypeAnnotation",
754
- "returnTypeAnnotation": {
755
- "type": "VoidTypeAnnotation"
756
- },
757
- "params": [
758
- {
759
- "name": "eventName",
760
- "optional": false,
761
- "typeAnnotation": {
762
- "type": "StringTypeAnnotation"
763
- }
764
- },
765
- {
766
- "name": "callback",
767
- "optional": false,
768
- "typeAnnotation": {
769
- "type": "NullableTypeAnnotation",
770
- "typeAnnotation": {
771
- "type": "FunctionTypeAnnotation",
772
- "returnTypeAnnotation": {
773
- "type": "VoidTypeAnnotation"
774
- },
775
- "params": [
776
- {
777
- "name": "error",
778
- "optional": false,
779
- "typeAnnotation": {
780
- "type": "GenericObjectTypeAnnotation"
781
- }
782
- },
783
- {
784
- "name": "result",
785
- "optional": false,
786
- "typeAnnotation": {
787
- "type": "BooleanTypeAnnotation"
788
- }
789
- }
790
- ]
791
- }
792
- }
793
- }
794
- ]
795
- }
796
- },
797
- {
798
- "name": "getUserEventLogCount",
799
- "optional": false,
800
- "typeAnnotation": {
801
- "type": "FunctionTypeAnnotation",
802
- "returnTypeAnnotation": {
803
- "type": "VoidTypeAnnotation"
804
- },
805
- "params": [
806
- {
807
- "name": "eventName",
808
- "optional": false,
809
- "typeAnnotation": {
810
- "type": "StringTypeAnnotation"
811
- }
812
- },
813
- {
814
- "name": "callback",
815
- "optional": false,
816
- "typeAnnotation": {
817
- "type": "NullableTypeAnnotation",
818
- "typeAnnotation": {
819
- "type": "FunctionTypeAnnotation",
820
- "returnTypeAnnotation": {
821
- "type": "VoidTypeAnnotation"
822
- },
823
- "params": [
824
- {
825
- "name": "error",
826
- "optional": false,
827
- "typeAnnotation": {
828
- "type": "GenericObjectTypeAnnotation"
829
- }
830
- },
831
- {
832
- "name": "result",
833
- "optional": false,
834
- "typeAnnotation": {
835
- "type": "BooleanTypeAnnotation"
836
- }
837
- }
838
- ]
839
- }
840
- }
841
- }
842
- ]
843
- }
844
- },
845
- {
846
- "name": "getEventHistory",
847
- "optional": false,
848
- "typeAnnotation": {
849
- "type": "FunctionTypeAnnotation",
850
- "returnTypeAnnotation": {
851
- "type": "VoidTypeAnnotation"
852
- },
853
- "params": [
854
- {
855
- "name": "callback",
856
- "optional": false,
857
- "typeAnnotation": {
858
- "type": "NullableTypeAnnotation",
859
- "typeAnnotation": {
860
- "type": "FunctionTypeAnnotation",
861
- "returnTypeAnnotation": {
862
- "type": "VoidTypeAnnotation"
863
- },
864
- "params": [
865
- {
866
- "name": "error",
867
- "optional": false,
868
- "typeAnnotation": {
869
- "type": "GenericObjectTypeAnnotation"
870
- }
871
- },
872
- {
873
- "name": "result",
874
- "optional": false,
875
- "typeAnnotation": {
876
- "type": "BooleanTypeAnnotation"
877
- }
878
- }
879
- ]
880
- }
881
- }
882
- }
883
- ]
884
- }
885
- },
886
- {
887
- "name": "getUserEventLogHistory",
888
- "optional": false,
889
- "typeAnnotation": {
890
- "type": "FunctionTypeAnnotation",
891
- "returnTypeAnnotation": {
892
- "type": "VoidTypeAnnotation"
893
- },
894
- "params": [
895
- {
896
- "name": "callback",
897
- "optional": false,
898
- "typeAnnotation": {
899
- "type": "NullableTypeAnnotation",
900
- "typeAnnotation": {
901
- "type": "FunctionTypeAnnotation",
902
- "returnTypeAnnotation": {
903
- "type": "VoidTypeAnnotation"
904
- },
905
- "params": [
906
- {
907
- "name": "error",
908
- "optional": false,
909
- "typeAnnotation": {
910
- "type": "GenericObjectTypeAnnotation"
911
- }
912
- },
913
- {
914
- "name": "result",
915
- "optional": false,
916
- "typeAnnotation": {
917
- "type": "BooleanTypeAnnotation"
918
- }
919
- }
920
- ]
921
- }
922
- }
923
- }
924
- ]
925
- }
926
- },
927
- {
928
- "name": "setLocation",
929
- "optional": false,
930
- "typeAnnotation": {
931
- "type": "FunctionTypeAnnotation",
932
- "returnTypeAnnotation": {
933
- "type": "VoidTypeAnnotation"
934
- },
935
- "params": [
936
- {
937
- "name": "location",
938
- "optional": false,
939
- "typeAnnotation": {
940
- "type": "NumberTypeAnnotation"
941
- }
942
- },
943
- {
944
- "name": "longitude",
945
- "optional": false,
946
- "typeAnnotation": {
947
- "type": "NumberTypeAnnotation"
948
- }
949
- }
950
- ]
951
- }
952
- },
953
- {
954
- "name": "profileGetCleverTapAttributionIdentifier",
955
- "optional": false,
956
- "typeAnnotation": {
957
- "type": "FunctionTypeAnnotation",
958
- "returnTypeAnnotation": {
959
- "type": "VoidTypeAnnotation"
960
- },
961
- "params": [
962
- {
963
- "name": "callback",
964
- "optional": false,
965
- "typeAnnotation": {
966
- "type": "NullableTypeAnnotation",
967
- "typeAnnotation": {
968
- "type": "FunctionTypeAnnotation",
969
- "returnTypeAnnotation": {
970
- "type": "VoidTypeAnnotation"
971
- },
972
- "params": [
973
- {
974
- "name": "error",
975
- "optional": false,
976
- "typeAnnotation": {
977
- "type": "GenericObjectTypeAnnotation"
978
- }
979
- },
980
- {
981
- "name": "result",
982
- "optional": false,
983
- "typeAnnotation": {
984
- "type": "BooleanTypeAnnotation"
985
- }
986
- }
987
- ]
988
- }
989
- }
990
- }
991
- ]
992
- }
993
- },
994
- {
995
- "name": "profileGetCleverTapID",
996
- "optional": false,
997
- "typeAnnotation": {
998
- "type": "FunctionTypeAnnotation",
999
- "returnTypeAnnotation": {
1000
- "type": "VoidTypeAnnotation"
1001
- },
1002
- "params": [
1003
- {
1004
- "name": "callback",
1005
- "optional": false,
1006
- "typeAnnotation": {
1007
- "type": "NullableTypeAnnotation",
1008
- "typeAnnotation": {
1009
- "type": "FunctionTypeAnnotation",
1010
- "returnTypeAnnotation": {
1011
- "type": "VoidTypeAnnotation"
1012
- },
1013
- "params": [
1014
- {
1015
- "name": "error",
1016
- "optional": false,
1017
- "typeAnnotation": {
1018
- "type": "GenericObjectTypeAnnotation"
1019
- }
1020
- },
1021
- {
1022
- "name": "result",
1023
- "optional": false,
1024
- "typeAnnotation": {
1025
- "type": "BooleanTypeAnnotation"
1026
- }
1027
- }
1028
- ]
1029
- }
1030
- }
1031
- }
1032
- ]
1033
- }
1034
- },
1035
- {
1036
- "name": "getCleverTapID",
1037
- "optional": false,
1038
- "typeAnnotation": {
1039
- "type": "FunctionTypeAnnotation",
1040
- "returnTypeAnnotation": {
1041
- "type": "VoidTypeAnnotation"
1042
- },
1043
- "params": [
1044
- {
1045
- "name": "callback",
1046
- "optional": false,
1047
- "typeAnnotation": {
1048
- "type": "NullableTypeAnnotation",
1049
- "typeAnnotation": {
1050
- "type": "FunctionTypeAnnotation",
1051
- "returnTypeAnnotation": {
1052
- "type": "VoidTypeAnnotation"
1053
- },
1054
- "params": [
1055
- {
1056
- "name": "error",
1057
- "optional": false,
1058
- "typeAnnotation": {
1059
- "type": "GenericObjectTypeAnnotation"
1060
- }
1061
- },
1062
- {
1063
- "name": "result",
1064
- "optional": false,
1065
- "typeAnnotation": {
1066
- "type": "BooleanTypeAnnotation"
1067
- }
1068
- }
1069
- ]
1070
- }
1071
- }
1072
- }
1073
- ]
1074
- }
1075
- },
1076
- {
1077
- "name": "onUserLogin",
1078
- "optional": false,
1079
- "typeAnnotation": {
1080
- "type": "FunctionTypeAnnotation",
1081
- "returnTypeAnnotation": {
1082
- "type": "VoidTypeAnnotation"
1083
- },
1084
- "params": [
1085
- {
1086
- "name": "profile",
1087
- "optional": false,
1088
- "typeAnnotation": {
1089
- "type": "NullableTypeAnnotation",
1090
- "typeAnnotation": {
1091
- "type": "GenericObjectTypeAnnotation"
1092
- }
1093
- }
1094
- }
1095
- ]
1096
- }
1097
- },
1098
- {
1099
- "name": "profileSet",
1100
- "optional": false,
1101
- "typeAnnotation": {
1102
- "type": "FunctionTypeAnnotation",
1103
- "returnTypeAnnotation": {
1104
- "type": "VoidTypeAnnotation"
1105
- },
1106
- "params": [
1107
- {
1108
- "name": "profile",
1109
- "optional": false,
1110
- "typeAnnotation": {
1111
- "type": "NullableTypeAnnotation",
1112
- "typeAnnotation": {
1113
- "type": "GenericObjectTypeAnnotation"
1114
- }
1115
- }
1116
- }
1117
- ]
1118
- }
1119
- },
1120
- {
1121
- "name": "profileGetProperty",
1122
- "optional": false,
1123
- "typeAnnotation": {
1124
- "type": "FunctionTypeAnnotation",
1125
- "returnTypeAnnotation": {
1126
- "type": "VoidTypeAnnotation"
1127
- },
1128
- "params": [
1129
- {
1130
- "name": "propertyName",
1131
- "optional": false,
1132
- "typeAnnotation": {
1133
- "type": "StringTypeAnnotation"
1134
- }
1135
- },
1136
- {
1137
- "name": "callback",
1138
- "optional": false,
1139
- "typeAnnotation": {
1140
- "type": "NullableTypeAnnotation",
1141
- "typeAnnotation": {
1142
- "type": "FunctionTypeAnnotation",
1143
- "returnTypeAnnotation": {
1144
- "type": "VoidTypeAnnotation"
1145
- },
1146
- "params": [
1147
- {
1148
- "name": "error",
1149
- "optional": false,
1150
- "typeAnnotation": {
1151
- "type": "GenericObjectTypeAnnotation"
1152
- }
1153
- },
1154
- {
1155
- "name": "result",
1156
- "optional": false,
1157
- "typeAnnotation": {
1158
- "type": "BooleanTypeAnnotation"
1159
- }
1160
- }
1161
- ]
1162
- }
1163
- }
1164
- }
1165
- ]
1166
- }
1167
- },
1168
- {
1169
- "name": "profileRemoveValueForKey",
1170
- "optional": false,
1171
- "typeAnnotation": {
1172
- "type": "FunctionTypeAnnotation",
1173
- "returnTypeAnnotation": {
1174
- "type": "VoidTypeAnnotation"
1175
- },
1176
- "params": [
1177
- {
1178
- "name": "key",
1179
- "optional": false,
1180
- "typeAnnotation": {
1181
- "type": "StringTypeAnnotation"
1182
- }
1183
- }
1184
- ]
1185
- }
1186
- },
1187
- {
1188
- "name": "profileSetMultiValues",
1189
- "optional": false,
1190
- "typeAnnotation": {
1191
- "type": "FunctionTypeAnnotation",
1192
- "returnTypeAnnotation": {
1193
- "type": "VoidTypeAnnotation"
1194
- },
1195
- "params": [
1196
- {
1197
- "name": "values",
1198
- "optional": false,
1199
- "typeAnnotation": {
1200
- "type": "ArrayTypeAnnotation",
1201
- "elementType": {
1202
- "type": "StringTypeAnnotation"
1203
- }
1204
- }
1205
- },
1206
- {
1207
- "name": "forKey",
1208
- "optional": false,
1209
- "typeAnnotation": {
1210
- "type": "StringTypeAnnotation"
1211
- }
1212
- }
1213
- ]
1214
- }
1215
- },
1216
- {
1217
- "name": "profileAddMultiValue",
1218
- "optional": false,
1219
- "typeAnnotation": {
1220
- "type": "FunctionTypeAnnotation",
1221
- "returnTypeAnnotation": {
1222
- "type": "VoidTypeAnnotation"
1223
- },
1224
- "params": [
1225
- {
1226
- "name": "value",
1227
- "optional": false,
1228
- "typeAnnotation": {
1229
- "type": "StringTypeAnnotation"
1230
- }
1231
- },
1232
- {
1233
- "name": "forKey",
1234
- "optional": false,
1235
- "typeAnnotation": {
1236
- "type": "StringTypeAnnotation"
1237
- }
1238
- }
1239
- ]
1240
- }
1241
- },
1242
- {
1243
- "name": "profileAddMultiValues",
1244
- "optional": false,
1245
- "typeAnnotation": {
1246
- "type": "FunctionTypeAnnotation",
1247
- "returnTypeAnnotation": {
1248
- "type": "VoidTypeAnnotation"
1249
- },
1250
- "params": [
1251
- {
1252
- "name": "values",
1253
- "optional": false,
1254
- "typeAnnotation": {
1255
- "type": "ArrayTypeAnnotation",
1256
- "elementType": {
1257
- "type": "StringTypeAnnotation"
1258
- }
1259
- }
1260
- },
1261
- {
1262
- "name": "forKey",
1263
- "optional": false,
1264
- "typeAnnotation": {
1265
- "type": "StringTypeAnnotation"
1266
- }
1267
- }
1268
- ]
1269
- }
1270
- },
1271
- {
1272
- "name": "profileRemoveMultiValue",
1273
- "optional": false,
1274
- "typeAnnotation": {
1275
- "type": "FunctionTypeAnnotation",
1276
- "returnTypeAnnotation": {
1277
- "type": "VoidTypeAnnotation"
1278
- },
1279
- "params": [
1280
- {
1281
- "name": "value",
1282
- "optional": false,
1283
- "typeAnnotation": {
1284
- "type": "StringTypeAnnotation"
1285
- }
1286
- },
1287
- {
1288
- "name": "forKey",
1289
- "optional": false,
1290
- "typeAnnotation": {
1291
- "type": "StringTypeAnnotation"
1292
- }
1293
- }
1294
- ]
1295
- }
1296
- },
1297
- {
1298
- "name": "profileRemoveMultiValues",
1299
- "optional": false,
1300
- "typeAnnotation": {
1301
- "type": "FunctionTypeAnnotation",
1302
- "returnTypeAnnotation": {
1303
- "type": "VoidTypeAnnotation"
1304
- },
1305
- "params": [
1306
- {
1307
- "name": "values",
1308
- "optional": false,
1309
- "typeAnnotation": {
1310
- "type": "ArrayTypeAnnotation",
1311
- "elementType": {
1312
- "type": "StringTypeAnnotation"
1313
- }
1314
- }
1315
- },
1316
- {
1317
- "name": "forKey",
1318
- "optional": false,
1319
- "typeAnnotation": {
1320
- "type": "StringTypeAnnotation"
1321
- }
1322
- }
1323
- ]
1324
- }
1325
- },
1326
- {
1327
- "name": "profileIncrementValueForKey",
1328
- "optional": false,
1329
- "typeAnnotation": {
1330
- "type": "FunctionTypeAnnotation",
1331
- "returnTypeAnnotation": {
1332
- "type": "VoidTypeAnnotation"
1333
- },
1334
- "params": [
1335
- {
1336
- "name": "value",
1337
- "optional": false,
1338
- "typeAnnotation": {
1339
- "type": "NullableTypeAnnotation",
1340
- "typeAnnotation": {
1341
- "type": "NumberTypeAnnotation"
1342
- }
1343
- }
1344
- },
1345
- {
1346
- "name": "forKey",
1347
- "optional": false,
1348
- "typeAnnotation": {
1349
- "type": "StringTypeAnnotation"
1350
- }
1351
- }
1352
- ]
1353
- }
1354
- },
1355
- {
1356
- "name": "profileDecrementValueForKey",
1357
- "optional": false,
1358
- "typeAnnotation": {
1359
- "type": "FunctionTypeAnnotation",
1360
- "returnTypeAnnotation": {
1361
- "type": "VoidTypeAnnotation"
1362
- },
1363
- "params": [
1364
- {
1365
- "name": "value",
1366
- "optional": false,
1367
- "typeAnnotation": {
1368
- "type": "NullableTypeAnnotation",
1369
- "typeAnnotation": {
1370
- "type": "NumberTypeAnnotation"
1371
- }
1372
- }
1373
- },
1374
- {
1375
- "name": "forKey",
1376
- "optional": false,
1377
- "typeAnnotation": {
1378
- "type": "StringTypeAnnotation"
1379
- }
1380
- }
1381
- ]
1382
- }
1383
- },
1384
- {
1385
- "name": "pushInstallReferrer",
1386
- "optional": false,
1387
- "typeAnnotation": {
1388
- "type": "FunctionTypeAnnotation",
1389
- "returnTypeAnnotation": {
1390
- "type": "VoidTypeAnnotation"
1391
- },
1392
- "params": [
1393
- {
1394
- "name": "source",
1395
- "optional": false,
1396
- "typeAnnotation": {
1397
- "type": "StringTypeAnnotation"
1398
- }
1399
- },
1400
- {
1401
- "name": "medium",
1402
- "optional": false,
1403
- "typeAnnotation": {
1404
- "type": "StringTypeAnnotation"
1405
- }
1406
- },
1407
- {
1408
- "name": "campaign",
1409
- "optional": false,
1410
- "typeAnnotation": {
1411
- "type": "StringTypeAnnotation"
1412
- }
1413
- }
1414
- ]
1415
- }
1416
- },
1417
- {
1418
- "name": "sessionGetTimeElapsed",
1419
- "optional": false,
1420
- "typeAnnotation": {
1421
- "type": "FunctionTypeAnnotation",
1422
- "returnTypeAnnotation": {
1423
- "type": "VoidTypeAnnotation"
1424
- },
1425
- "params": [
1426
- {
1427
- "name": "callback",
1428
- "optional": false,
1429
- "typeAnnotation": {
1430
- "type": "NullableTypeAnnotation",
1431
- "typeAnnotation": {
1432
- "type": "FunctionTypeAnnotation",
1433
- "returnTypeAnnotation": {
1434
- "type": "VoidTypeAnnotation"
1435
- },
1436
- "params": [
1437
- {
1438
- "name": "error",
1439
- "optional": false,
1440
- "typeAnnotation": {
1441
- "type": "GenericObjectTypeAnnotation"
1442
- }
1443
- },
1444
- {
1445
- "name": "result",
1446
- "optional": false,
1447
- "typeAnnotation": {
1448
- "type": "BooleanTypeAnnotation"
1449
- }
1450
- }
1451
- ]
1452
- }
1453
- }
1454
- }
1455
- ]
1456
- }
1457
- },
1458
- {
1459
- "name": "sessionGetTotalVisits",
1460
- "optional": false,
1461
- "typeAnnotation": {
1462
- "type": "FunctionTypeAnnotation",
1463
- "returnTypeAnnotation": {
1464
- "type": "VoidTypeAnnotation"
1465
- },
1466
- "params": [
1467
- {
1468
- "name": "callback",
1469
- "optional": false,
1470
- "typeAnnotation": {
1471
- "type": "NullableTypeAnnotation",
1472
- "typeAnnotation": {
1473
- "type": "FunctionTypeAnnotation",
1474
- "returnTypeAnnotation": {
1475
- "type": "VoidTypeAnnotation"
1476
- },
1477
- "params": [
1478
- {
1479
- "name": "error",
1480
- "optional": false,
1481
- "typeAnnotation": {
1482
- "type": "GenericObjectTypeAnnotation"
1483
- }
1484
- },
1485
- {
1486
- "name": "result",
1487
- "optional": false,
1488
- "typeAnnotation": {
1489
- "type": "BooleanTypeAnnotation"
1490
- }
1491
- }
1492
- ]
1493
- }
1494
- }
1495
- }
1496
- ]
1497
- }
1498
- },
1499
- {
1500
- "name": "sessionGetScreenCount",
1501
- "optional": false,
1502
- "typeAnnotation": {
1503
- "type": "FunctionTypeAnnotation",
1504
- "returnTypeAnnotation": {
1505
- "type": "VoidTypeAnnotation"
1506
- },
1507
- "params": [
1508
- {
1509
- "name": "callback",
1510
- "optional": false,
1511
- "typeAnnotation": {
1512
- "type": "NullableTypeAnnotation",
1513
- "typeAnnotation": {
1514
- "type": "FunctionTypeAnnotation",
1515
- "returnTypeAnnotation": {
1516
- "type": "VoidTypeAnnotation"
1517
- },
1518
- "params": [
1519
- {
1520
- "name": "error",
1521
- "optional": false,
1522
- "typeAnnotation": {
1523
- "type": "GenericObjectTypeAnnotation"
1524
- }
1525
- },
1526
- {
1527
- "name": "result",
1528
- "optional": false,
1529
- "typeAnnotation": {
1530
- "type": "BooleanTypeAnnotation"
1531
- }
1532
- }
1533
- ]
1534
- }
1535
- }
1536
- }
1537
- ]
1538
- }
1539
- },
1540
- {
1541
- "name": "sessionGetPreviousVisitTime",
1542
- "optional": false,
1543
- "typeAnnotation": {
1544
- "type": "FunctionTypeAnnotation",
1545
- "returnTypeAnnotation": {
1546
- "type": "VoidTypeAnnotation"
1547
- },
1548
- "params": [
1549
- {
1550
- "name": "callback",
1551
- "optional": false,
1552
- "typeAnnotation": {
1553
- "type": "NullableTypeAnnotation",
1554
- "typeAnnotation": {
1555
- "type": "FunctionTypeAnnotation",
1556
- "returnTypeAnnotation": {
1557
- "type": "VoidTypeAnnotation"
1558
- },
1559
- "params": [
1560
- {
1561
- "name": "error",
1562
- "optional": false,
1563
- "typeAnnotation": {
1564
- "type": "GenericObjectTypeAnnotation"
1565
- }
1566
- },
1567
- {
1568
- "name": "result",
1569
- "optional": false,
1570
- "typeAnnotation": {
1571
- "type": "BooleanTypeAnnotation"
1572
- }
1573
- }
1574
- ]
1575
- }
1576
- }
1577
- }
1578
- ]
1579
- }
1580
- },
1581
- {
1582
- "name": "sessionGetUTMDetails",
1583
- "optional": false,
1584
- "typeAnnotation": {
1585
- "type": "FunctionTypeAnnotation",
1586
- "returnTypeAnnotation": {
1587
- "type": "VoidTypeAnnotation"
1588
- },
1589
- "params": [
1590
- {
1591
- "name": "callback",
1592
- "optional": false,
1593
- "typeAnnotation": {
1594
- "type": "NullableTypeAnnotation",
1595
- "typeAnnotation": {
1596
- "type": "FunctionTypeAnnotation",
1597
- "returnTypeAnnotation": {
1598
- "type": "VoidTypeAnnotation"
1599
- },
1600
- "params": [
1601
- {
1602
- "name": "error",
1603
- "optional": false,
1604
- "typeAnnotation": {
1605
- "type": "GenericObjectTypeAnnotation"
1606
- }
1607
- },
1608
- {
1609
- "name": "result",
1610
- "optional": false,
1611
- "typeAnnotation": {
1612
- "type": "BooleanTypeAnnotation"
1613
- }
1614
- }
1615
- ]
1616
- }
1617
- }
1618
- }
1619
- ]
1620
- }
1621
- },
1622
- {
1623
- "name": "getUserLastVisitTs",
1624
- "optional": false,
1625
- "typeAnnotation": {
1626
- "type": "FunctionTypeAnnotation",
1627
- "returnTypeAnnotation": {
1628
- "type": "VoidTypeAnnotation"
1629
- },
1630
- "params": [
1631
- {
1632
- "name": "callback",
1633
- "optional": false,
1634
- "typeAnnotation": {
1635
- "type": "NullableTypeAnnotation",
1636
- "typeAnnotation": {
1637
- "type": "FunctionTypeAnnotation",
1638
- "returnTypeAnnotation": {
1639
- "type": "VoidTypeAnnotation"
1640
- },
1641
- "params": [
1642
- {
1643
- "name": "error",
1644
- "optional": false,
1645
- "typeAnnotation": {
1646
- "type": "GenericObjectTypeAnnotation"
1647
- }
1648
- },
1649
- {
1650
- "name": "result",
1651
- "optional": false,
1652
- "typeAnnotation": {
1653
- "type": "BooleanTypeAnnotation"
1654
- }
1655
- }
1656
- ]
1657
- }
1658
- }
1659
- }
1660
- ]
1661
- }
1662
- },
1663
- {
1664
- "name": "getUserAppLaunchCount",
1665
- "optional": false,
1666
- "typeAnnotation": {
1667
- "type": "FunctionTypeAnnotation",
1668
- "returnTypeAnnotation": {
1669
- "type": "VoidTypeAnnotation"
1670
- },
1671
- "params": [
1672
- {
1673
- "name": "callback",
1674
- "optional": false,
1675
- "typeAnnotation": {
1676
- "type": "NullableTypeAnnotation",
1677
- "typeAnnotation": {
1678
- "type": "FunctionTypeAnnotation",
1679
- "returnTypeAnnotation": {
1680
- "type": "VoidTypeAnnotation"
1681
- },
1682
- "params": [
1683
- {
1684
- "name": "error",
1685
- "optional": false,
1686
- "typeAnnotation": {
1687
- "type": "GenericObjectTypeAnnotation"
1688
- }
1689
- },
1690
- {
1691
- "name": "result",
1692
- "optional": false,
1693
- "typeAnnotation": {
1694
- "type": "BooleanTypeAnnotation"
1695
- }
1696
- }
1697
- ]
1698
- }
1699
- }
1700
- }
1701
- ]
1702
- }
1703
- },
1704
- {
1705
- "name": "createNotificationChannel",
1706
- "optional": false,
1707
- "typeAnnotation": {
1708
- "type": "FunctionTypeAnnotation",
1709
- "returnTypeAnnotation": {
1710
- "type": "VoidTypeAnnotation"
1711
- },
1712
- "params": [
1713
- {
1714
- "name": "channelId",
1715
- "optional": false,
1716
- "typeAnnotation": {
1717
- "type": "StringTypeAnnotation"
1718
- }
1719
- },
1720
- {
1721
- "name": "withChannelName",
1722
- "optional": false,
1723
- "typeAnnotation": {
1724
- "type": "StringTypeAnnotation"
1725
- }
1726
- },
1727
- {
1728
- "name": "withChannelDescription",
1729
- "optional": false,
1730
- "typeAnnotation": {
1731
- "type": "StringTypeAnnotation"
1732
- }
1733
- },
1734
- {
1735
- "name": "withImportance",
1736
- "optional": false,
1737
- "typeAnnotation": {
1738
- "type": "NumberTypeAnnotation"
1739
- }
1740
- },
1741
- {
1742
- "name": "withShowBadge",
1743
- "optional": false,
1744
- "typeAnnotation": {
1745
- "type": "BooleanTypeAnnotation"
1746
- }
1747
- }
1748
- ]
1749
- }
1750
- },
1751
- {
1752
- "name": "createNotificationChannelWithSound",
1753
- "optional": false,
1754
- "typeAnnotation": {
1755
- "type": "FunctionTypeAnnotation",
1756
- "returnTypeAnnotation": {
1757
- "type": "VoidTypeAnnotation"
1758
- },
1759
- "params": [
1760
- {
1761
- "name": "channelId",
1762
- "optional": false,
1763
- "typeAnnotation": {
1764
- "type": "StringTypeAnnotation"
1765
- }
1766
- },
1767
- {
1768
- "name": "withChannelName",
1769
- "optional": false,
1770
- "typeAnnotation": {
1771
- "type": "StringTypeAnnotation"
1772
- }
1773
- },
1774
- {
1775
- "name": "withChannelDescription",
1776
- "optional": false,
1777
- "typeAnnotation": {
1778
- "type": "StringTypeAnnotation"
1779
- }
1780
- },
1781
- {
1782
- "name": "withImportance",
1783
- "optional": false,
1784
- "typeAnnotation": {
1785
- "type": "NumberTypeAnnotation"
1786
- }
1787
- },
1788
- {
1789
- "name": "withShowBadge",
1790
- "optional": false,
1791
- "typeAnnotation": {
1792
- "type": "BooleanTypeAnnotation"
1793
- }
1794
- },
1795
- {
1796
- "name": "withSound",
1797
- "optional": false,
1798
- "typeAnnotation": {
1799
- "type": "StringTypeAnnotation"
1800
- }
1801
- }
1802
- ]
1803
- }
1804
- },
1805
- {
1806
- "name": "createNotificationChannelWithGroupId",
1807
- "optional": false,
1808
- "typeAnnotation": {
1809
- "type": "FunctionTypeAnnotation",
1810
- "returnTypeAnnotation": {
1811
- "type": "VoidTypeAnnotation"
1812
- },
1813
- "params": [
1814
- {
1815
- "name": "channelId",
1816
- "optional": false,
1817
- "typeAnnotation": {
1818
- "type": "StringTypeAnnotation"
1819
- }
1820
- },
1821
- {
1822
- "name": "withChannelName",
1823
- "optional": false,
1824
- "typeAnnotation": {
1825
- "type": "StringTypeAnnotation"
1826
- }
1827
- },
1828
- {
1829
- "name": "withChannelDescription",
1830
- "optional": false,
1831
- "typeAnnotation": {
1832
- "type": "StringTypeAnnotation"
1833
- }
1834
- },
1835
- {
1836
- "name": "withImportance",
1837
- "optional": false,
1838
- "typeAnnotation": {
1839
- "type": "NumberTypeAnnotation"
1840
- }
1841
- },
1842
- {
1843
- "name": "withGroupId",
1844
- "optional": false,
1845
- "typeAnnotation": {
1846
- "type": "StringTypeAnnotation"
1847
- }
1848
- },
1849
- {
1850
- "name": "withShowBadge",
1851
- "optional": false,
1852
- "typeAnnotation": {
1853
- "type": "BooleanTypeAnnotation"
1854
- }
1855
- }
1856
- ]
1857
- }
1858
- },
1859
- {
1860
- "name": "createNotificationChannelWithGroupIdAndSound",
1861
- "optional": false,
1862
- "typeAnnotation": {
1863
- "type": "FunctionTypeAnnotation",
1864
- "returnTypeAnnotation": {
1865
- "type": "VoidTypeAnnotation"
1866
- },
1867
- "params": [
1868
- {
1869
- "name": "channelId",
1870
- "optional": false,
1871
- "typeAnnotation": {
1872
- "type": "StringTypeAnnotation"
1873
- }
1874
- },
1875
- {
1876
- "name": "withChannelName",
1877
- "optional": false,
1878
- "typeAnnotation": {
1879
- "type": "StringTypeAnnotation"
1880
- }
1881
- },
1882
- {
1883
- "name": "withChannelDescription",
1884
- "optional": false,
1885
- "typeAnnotation": {
1886
- "type": "StringTypeAnnotation"
1887
- }
1888
- },
1889
- {
1890
- "name": "withImportance",
1891
- "optional": false,
1892
- "typeAnnotation": {
1893
- "type": "NumberTypeAnnotation"
1894
- }
1895
- },
1896
- {
1897
- "name": "withGroupId",
1898
- "optional": false,
1899
- "typeAnnotation": {
1900
- "type": "StringTypeAnnotation"
1901
- }
1902
- },
1903
- {
1904
- "name": "withShowBadge",
1905
- "optional": false,
1906
- "typeAnnotation": {
1907
- "type": "BooleanTypeAnnotation"
1908
- }
1909
- },
1910
- {
1911
- "name": "withSound",
1912
- "optional": false,
1913
- "typeAnnotation": {
1914
- "type": "StringTypeAnnotation"
1915
- }
1916
- }
1917
- ]
1918
- }
1919
- },
1920
- {
1921
- "name": "createNotificationChannelGroup",
1922
- "optional": false,
1923
- "typeAnnotation": {
1924
- "type": "FunctionTypeAnnotation",
1925
- "returnTypeAnnotation": {
1926
- "type": "VoidTypeAnnotation"
1927
- },
1928
- "params": [
1929
- {
1930
- "name": "groupId",
1931
- "optional": false,
1932
- "typeAnnotation": {
1933
- "type": "StringTypeAnnotation"
1934
- }
1935
- },
1936
- {
1937
- "name": "withGroupName",
1938
- "optional": false,
1939
- "typeAnnotation": {
1940
- "type": "StringTypeAnnotation"
1941
- }
1942
- }
1943
- ]
1944
- }
1945
- },
1946
- {
1947
- "name": "deleteNotificationChannel",
1948
- "optional": false,
1949
- "typeAnnotation": {
1950
- "type": "FunctionTypeAnnotation",
1951
- "returnTypeAnnotation": {
1952
- "type": "VoidTypeAnnotation"
1953
- },
1954
- "params": [
1955
- {
1956
- "name": "channelId",
1957
- "optional": false,
1958
- "typeAnnotation": {
1959
- "type": "StringTypeAnnotation"
1960
- }
1961
- }
1962
- ]
1963
- }
1964
- },
1965
- {
1966
- "name": "deleteNotificationChannelGroup",
1967
- "optional": false,
1968
- "typeAnnotation": {
1969
- "type": "FunctionTypeAnnotation",
1970
- "returnTypeAnnotation": {
1971
- "type": "VoidTypeAnnotation"
1972
- },
1973
- "params": [
1974
- {
1975
- "name": "groupId",
1976
- "optional": false,
1977
- "typeAnnotation": {
1978
- "type": "StringTypeAnnotation"
1979
- }
1980
- }
1981
- ]
1982
- }
1983
- },
1984
- {
1985
- "name": "createNotification",
1986
- "optional": false,
1987
- "typeAnnotation": {
1988
- "type": "FunctionTypeAnnotation",
1989
- "returnTypeAnnotation": {
1990
- "type": "VoidTypeAnnotation"
1991
- },
1992
- "params": [
1993
- {
1994
- "name": "extras",
1995
- "optional": false,
1996
- "typeAnnotation": {
1997
- "type": "NullableTypeAnnotation",
1998
- "typeAnnotation": {
1999
- "type": "GenericObjectTypeAnnotation"
2000
- }
2001
- }
2002
- }
2003
- ]
2004
- }
2005
- },
2006
- {
2007
- "name": "setDebugLevel",
2008
- "optional": false,
2009
- "typeAnnotation": {
2010
- "type": "FunctionTypeAnnotation",
2011
- "returnTypeAnnotation": {
2012
- "type": "VoidTypeAnnotation"
2013
- },
2014
- "params": [
2015
- {
2016
- "name": "level",
2017
- "optional": false,
2018
- "typeAnnotation": {
2019
- "type": "NumberTypeAnnotation"
2020
- }
2021
- }
2022
- ]
2023
- }
2024
- },
2025
- {
2026
- "name": "getInboxMessageCount",
2027
- "optional": false,
2028
- "typeAnnotation": {
2029
- "type": "FunctionTypeAnnotation",
2030
- "returnTypeAnnotation": {
2031
- "type": "VoidTypeAnnotation"
2032
- },
2033
- "params": [
2034
- {
2035
- "name": "callback",
2036
- "optional": false,
2037
- "typeAnnotation": {
2038
- "type": "NullableTypeAnnotation",
2039
- "typeAnnotation": {
2040
- "type": "FunctionTypeAnnotation",
2041
- "returnTypeAnnotation": {
2042
- "type": "VoidTypeAnnotation"
2043
- },
2044
- "params": [
2045
- {
2046
- "name": "error",
2047
- "optional": false,
2048
- "typeAnnotation": {
2049
- "type": "GenericObjectTypeAnnotation"
2050
- }
2051
- },
2052
- {
2053
- "name": "result",
2054
- "optional": false,
2055
- "typeAnnotation": {
2056
- "type": "BooleanTypeAnnotation"
2057
- }
2058
- }
2059
- ]
2060
- }
2061
- }
2062
- }
2063
- ]
2064
- }
2065
- },
2066
- {
2067
- "name": "getInboxMessageUnreadCount",
2068
- "optional": false,
2069
- "typeAnnotation": {
2070
- "type": "FunctionTypeAnnotation",
2071
- "returnTypeAnnotation": {
2072
- "type": "VoidTypeAnnotation"
2073
- },
2074
- "params": [
2075
- {
2076
- "name": "callback",
2077
- "optional": false,
2078
- "typeAnnotation": {
2079
- "type": "NullableTypeAnnotation",
2080
- "typeAnnotation": {
2081
- "type": "FunctionTypeAnnotation",
2082
- "returnTypeAnnotation": {
2083
- "type": "VoidTypeAnnotation"
2084
- },
2085
- "params": [
2086
- {
2087
- "name": "error",
2088
- "optional": false,
2089
- "typeAnnotation": {
2090
- "type": "GenericObjectTypeAnnotation"
2091
- }
2092
- },
2093
- {
2094
- "name": "result",
2095
- "optional": false,
2096
- "typeAnnotation": {
2097
- "type": "BooleanTypeAnnotation"
2098
- }
2099
- }
2100
- ]
2101
- }
2102
- }
2103
- }
2104
- ]
2105
- }
2106
- },
2107
- {
2108
- "name": "getAllInboxMessages",
2109
- "optional": false,
2110
- "typeAnnotation": {
2111
- "type": "FunctionTypeAnnotation",
2112
- "returnTypeAnnotation": {
2113
- "type": "VoidTypeAnnotation"
2114
- },
2115
- "params": [
2116
- {
2117
- "name": "callback",
2118
- "optional": false,
2119
- "typeAnnotation": {
2120
- "type": "NullableTypeAnnotation",
2121
- "typeAnnotation": {
2122
- "type": "FunctionTypeAnnotation",
2123
- "returnTypeAnnotation": {
2124
- "type": "VoidTypeAnnotation"
2125
- },
2126
- "params": [
2127
- {
2128
- "name": "error",
2129
- "optional": false,
2130
- "typeAnnotation": {
2131
- "type": "GenericObjectTypeAnnotation"
2132
- }
2133
- },
2134
- {
2135
- "name": "result",
2136
- "optional": false,
2137
- "typeAnnotation": {
2138
- "type": "BooleanTypeAnnotation"
2139
- }
2140
- }
2141
- ]
2142
- }
2143
- }
2144
- }
2145
- ]
2146
- }
2147
- },
2148
- {
2149
- "name": "getUnreadInboxMessages",
2150
- "optional": false,
2151
- "typeAnnotation": {
2152
- "type": "FunctionTypeAnnotation",
2153
- "returnTypeAnnotation": {
2154
- "type": "VoidTypeAnnotation"
2155
- },
2156
- "params": [
2157
- {
2158
- "name": "callback",
2159
- "optional": false,
2160
- "typeAnnotation": {
2161
- "type": "NullableTypeAnnotation",
2162
- "typeAnnotation": {
2163
- "type": "FunctionTypeAnnotation",
2164
- "returnTypeAnnotation": {
2165
- "type": "VoidTypeAnnotation"
2166
- },
2167
- "params": [
2168
- {
2169
- "name": "error",
2170
- "optional": false,
2171
- "typeAnnotation": {
2172
- "type": "GenericObjectTypeAnnotation"
2173
- }
2174
- },
2175
- {
2176
- "name": "result",
2177
- "optional": false,
2178
- "typeAnnotation": {
2179
- "type": "BooleanTypeAnnotation"
2180
- }
2181
- }
2182
- ]
2183
- }
2184
- }
2185
- }
2186
- ]
2187
- }
2188
- },
2189
- {
2190
- "name": "getInboxMessageForId",
2191
- "optional": false,
2192
- "typeAnnotation": {
2193
- "type": "FunctionTypeAnnotation",
2194
- "returnTypeAnnotation": {
2195
- "type": "VoidTypeAnnotation"
2196
- },
2197
- "params": [
2198
- {
2199
- "name": "messageId",
2200
- "optional": false,
2201
- "typeAnnotation": {
2202
- "type": "StringTypeAnnotation"
2203
- }
2204
- },
2205
- {
2206
- "name": "callback",
2207
- "optional": false,
2208
- "typeAnnotation": {
2209
- "type": "NullableTypeAnnotation",
2210
- "typeAnnotation": {
2211
- "type": "FunctionTypeAnnotation",
2212
- "returnTypeAnnotation": {
2213
- "type": "VoidTypeAnnotation"
2214
- },
2215
- "params": [
2216
- {
2217
- "name": "error",
2218
- "optional": false,
2219
- "typeAnnotation": {
2220
- "type": "GenericObjectTypeAnnotation"
2221
- }
2222
- },
2223
- {
2224
- "name": "result",
2225
- "optional": false,
2226
- "typeAnnotation": {
2227
- "type": "BooleanTypeAnnotation"
2228
- }
2229
- }
2230
- ]
2231
- }
2232
- }
2233
- }
2234
- ]
2235
- }
2236
- },
2237
- {
2238
- "name": "pushInboxNotificationViewedEventForId",
2239
- "optional": false,
2240
- "typeAnnotation": {
2241
- "type": "FunctionTypeAnnotation",
2242
- "returnTypeAnnotation": {
2243
- "type": "VoidTypeAnnotation"
2244
- },
2245
- "params": [
2246
- {
2247
- "name": "messageId",
2248
- "optional": false,
2249
- "typeAnnotation": {
2250
- "type": "StringTypeAnnotation"
2251
- }
2252
- }
2253
- ]
2254
- }
2255
- },
2256
- {
2257
- "name": "pushInboxNotificationClickedEventForId",
2258
- "optional": false,
2259
- "typeAnnotation": {
2260
- "type": "FunctionTypeAnnotation",
2261
- "returnTypeAnnotation": {
2262
- "type": "VoidTypeAnnotation"
2263
- },
2264
- "params": [
2265
- {
2266
- "name": "messageId",
2267
- "optional": false,
2268
- "typeAnnotation": {
2269
- "type": "StringTypeAnnotation"
2270
- }
2271
- }
2272
- ]
2273
- }
2274
- },
2275
- {
2276
- "name": "markReadInboxMessageForId",
2277
- "optional": false,
2278
- "typeAnnotation": {
2279
- "type": "FunctionTypeAnnotation",
2280
- "returnTypeAnnotation": {
2281
- "type": "VoidTypeAnnotation"
2282
- },
2283
- "params": [
2284
- {
2285
- "name": "messageId",
2286
- "optional": false,
2287
- "typeAnnotation": {
2288
- "type": "StringTypeAnnotation"
2289
- }
2290
- }
2291
- ]
2292
- }
2293
- },
2294
- {
2295
- "name": "deleteInboxMessageForId",
2296
- "optional": false,
2297
- "typeAnnotation": {
2298
- "type": "FunctionTypeAnnotation",
2299
- "returnTypeAnnotation": {
2300
- "type": "VoidTypeAnnotation"
2301
- },
2302
- "params": [
2303
- {
2304
- "name": "messageId",
2305
- "optional": false,
2306
- "typeAnnotation": {
2307
- "type": "StringTypeAnnotation"
2308
- }
2309
- }
2310
- ]
2311
- }
2312
- },
2313
- {
2314
- "name": "markReadInboxMessagesForIDs",
2315
- "optional": false,
2316
- "typeAnnotation": {
2317
- "type": "FunctionTypeAnnotation",
2318
- "returnTypeAnnotation": {
2319
- "type": "VoidTypeAnnotation"
2320
- },
2321
- "params": [
2322
- {
2323
- "name": "messageIds",
2324
- "optional": false,
2325
- "typeAnnotation": {
2326
- "type": "ArrayTypeAnnotation",
2327
- "elementType": {
2328
- "type": "StringTypeAnnotation"
2329
- }
2330
- }
2331
- }
2332
- ]
2333
- }
2334
- },
2335
- {
2336
- "name": "deleteInboxMessagesForIDs",
2337
- "optional": false,
2338
- "typeAnnotation": {
2339
- "type": "FunctionTypeAnnotation",
2340
- "returnTypeAnnotation": {
2341
- "type": "VoidTypeAnnotation"
2342
- },
2343
- "params": [
2344
- {
2345
- "name": "messageIds",
2346
- "optional": false,
2347
- "typeAnnotation": {
2348
- "type": "ArrayTypeAnnotation",
2349
- "elementType": {
2350
- "type": "StringTypeAnnotation"
2351
- }
2352
- }
2353
- }
2354
- ]
2355
- }
2356
- },
2357
- {
2358
- "name": "dismissInbox",
2359
- "optional": false,
2360
- "typeAnnotation": {
2361
- "type": "FunctionTypeAnnotation",
2362
- "returnTypeAnnotation": {
2363
- "type": "VoidTypeAnnotation"
2364
- },
2365
- "params": []
2366
- }
2367
- },
2368
- {
2369
- "name": "initializeInbox",
2370
- "optional": false,
2371
- "typeAnnotation": {
2372
- "type": "FunctionTypeAnnotation",
2373
- "returnTypeAnnotation": {
2374
- "type": "VoidTypeAnnotation"
2375
- },
2376
- "params": []
2377
- }
2378
- },
2379
- {
2380
- "name": "showInbox",
2381
- "optional": false,
2382
- "typeAnnotation": {
2383
- "type": "FunctionTypeAnnotation",
2384
- "returnTypeAnnotation": {
2385
- "type": "VoidTypeAnnotation"
2386
- },
2387
- "params": [
2388
- {
2389
- "name": "styleConfig",
2390
- "optional": false,
2391
- "typeAnnotation": {
2392
- "type": "NullableTypeAnnotation",
2393
- "typeAnnotation": {
2394
- "type": "GenericObjectTypeAnnotation"
2395
- }
2396
- }
2397
- }
2398
- ]
2399
- }
2400
- },
2401
- {
2402
- "name": "getAllDisplayUnits",
2403
- "optional": false,
2404
- "typeAnnotation": {
2405
- "type": "FunctionTypeAnnotation",
2406
- "returnTypeAnnotation": {
2407
- "type": "VoidTypeAnnotation"
2408
- },
2409
- "params": [
2410
- {
2411
- "name": "callback",
2412
- "optional": false,
2413
- "typeAnnotation": {
2414
- "type": "NullableTypeAnnotation",
2415
- "typeAnnotation": {
2416
- "type": "FunctionTypeAnnotation",
2417
- "returnTypeAnnotation": {
2418
- "type": "VoidTypeAnnotation"
2419
- },
2420
- "params": [
2421
- {
2422
- "name": "error",
2423
- "optional": false,
2424
- "typeAnnotation": {
2425
- "type": "GenericObjectTypeAnnotation"
2426
- }
2427
- },
2428
- {
2429
- "name": "result",
2430
- "optional": false,
2431
- "typeAnnotation": {
2432
- "type": "BooleanTypeAnnotation"
2433
- }
2434
- }
2435
- ]
2436
- }
2437
- }
2438
- }
2439
- ]
2440
- }
2441
- },
2442
- {
2443
- "name": "getDisplayUnitForId",
2444
- "optional": false,
2445
- "typeAnnotation": {
2446
- "type": "FunctionTypeAnnotation",
2447
- "returnTypeAnnotation": {
2448
- "type": "VoidTypeAnnotation"
2449
- },
2450
- "params": [
2451
- {
2452
- "name": "unitId",
2453
- "optional": false,
2454
- "typeAnnotation": {
2455
- "type": "StringTypeAnnotation"
2456
- }
2457
- },
2458
- {
2459
- "name": "callback",
2460
- "optional": false,
2461
- "typeAnnotation": {
2462
- "type": "NullableTypeAnnotation",
2463
- "typeAnnotation": {
2464
- "type": "FunctionTypeAnnotation",
2465
- "returnTypeAnnotation": {
2466
- "type": "VoidTypeAnnotation"
2467
- },
2468
- "params": [
2469
- {
2470
- "name": "error",
2471
- "optional": false,
2472
- "typeAnnotation": {
2473
- "type": "GenericObjectTypeAnnotation"
2474
- }
2475
- },
2476
- {
2477
- "name": "result",
2478
- "optional": false,
2479
- "typeAnnotation": {
2480
- "type": "BooleanTypeAnnotation"
2481
- }
2482
- }
2483
- ]
2484
- }
2485
- }
2486
- }
2487
- ]
2488
- }
2489
- },
2490
- {
2491
- "name": "pushDisplayUnitViewedEventForID",
2492
- "optional": false,
2493
- "typeAnnotation": {
2494
- "type": "FunctionTypeAnnotation",
2495
- "returnTypeAnnotation": {
2496
- "type": "VoidTypeAnnotation"
2497
- },
2498
- "params": [
2499
- {
2500
- "name": "unitId",
2501
- "optional": false,
2502
- "typeAnnotation": {
2503
- "type": "StringTypeAnnotation"
2504
- }
2505
- }
2506
- ]
2507
- }
2508
- },
2509
- {
2510
- "name": "pushDisplayUnitClickedEventForID",
2511
- "optional": false,
2512
- "typeAnnotation": {
2513
- "type": "FunctionTypeAnnotation",
2514
- "returnTypeAnnotation": {
2515
- "type": "VoidTypeAnnotation"
2516
- },
2517
- "params": [
2518
- {
2519
- "name": "unitId",
2520
- "optional": false,
2521
- "typeAnnotation": {
2522
- "type": "StringTypeAnnotation"
2523
- }
2524
- }
2525
- ]
2526
- }
2527
- },
2528
- {
2529
- "name": "getFeatureFlag",
2530
- "optional": false,
2531
- "typeAnnotation": {
2532
- "type": "FunctionTypeAnnotation",
2533
- "returnTypeAnnotation": {
2534
- "type": "VoidTypeAnnotation"
2535
- },
2536
- "params": [
2537
- {
2538
- "name": "flag",
2539
- "optional": false,
2540
- "typeAnnotation": {
2541
- "type": "StringTypeAnnotation"
2542
- }
2543
- },
2544
- {
2545
- "name": "withdefaultValue",
2546
- "optional": false,
2547
- "typeAnnotation": {
2548
- "type": "BooleanTypeAnnotation"
2549
- }
2550
- },
2551
- {
2552
- "name": "callback",
2553
- "optional": false,
2554
- "typeAnnotation": {
2555
- "type": "NullableTypeAnnotation",
2556
- "typeAnnotation": {
2557
- "type": "FunctionTypeAnnotation",
2558
- "returnTypeAnnotation": {
2559
- "type": "VoidTypeAnnotation"
2560
- },
2561
- "params": [
2562
- {
2563
- "name": "error",
2564
- "optional": false,
2565
- "typeAnnotation": {
2566
- "type": "GenericObjectTypeAnnotation"
2567
- }
2568
- },
2569
- {
2570
- "name": "result",
2571
- "optional": false,
2572
- "typeAnnotation": {
2573
- "type": "BooleanTypeAnnotation"
2574
- }
2575
- }
2576
- ]
2577
- }
2578
- }
2579
- }
2580
- ]
2581
- }
2582
- },
2583
- {
2584
- "name": "setDefaultsMap",
2585
- "optional": false,
2586
- "typeAnnotation": {
2587
- "type": "FunctionTypeAnnotation",
2588
- "returnTypeAnnotation": {
2589
- "type": "VoidTypeAnnotation"
2590
- },
2591
- "params": [
2592
- {
2593
- "name": "jsonDict",
2594
- "optional": false,
2595
- "typeAnnotation": {
2596
- "type": "NullableTypeAnnotation",
2597
- "typeAnnotation": {
2598
- "type": "GenericObjectTypeAnnotation"
2599
- }
2600
- }
2601
- }
2602
- ]
2603
- }
2604
- },
2605
- {
2606
- "name": "fetch",
2607
- "optional": false,
2608
- "typeAnnotation": {
2609
- "type": "FunctionTypeAnnotation",
2610
- "returnTypeAnnotation": {
2611
- "type": "VoidTypeAnnotation"
2612
- },
2613
- "params": []
2614
- }
2615
- },
2616
- {
2617
- "name": "fetchWithMinimumFetchIntervalInSeconds",
2618
- "optional": false,
2619
- "typeAnnotation": {
2620
- "type": "FunctionTypeAnnotation",
2621
- "returnTypeAnnotation": {
2622
- "type": "VoidTypeAnnotation"
2623
- },
2624
- "params": [
2625
- {
2626
- "name": "time",
2627
- "optional": false,
2628
- "typeAnnotation": {
2629
- "type": "NumberTypeAnnotation"
2630
- }
2631
- }
2632
- ]
2633
- }
2634
- },
2635
- {
2636
- "name": "activate",
2637
- "optional": false,
2638
- "typeAnnotation": {
2639
- "type": "FunctionTypeAnnotation",
2640
- "returnTypeAnnotation": {
2641
- "type": "VoidTypeAnnotation"
2642
- },
2643
- "params": []
2644
- }
2645
- },
2646
- {
2647
- "name": "fetchAndActivate",
2648
- "optional": false,
2649
- "typeAnnotation": {
2650
- "type": "FunctionTypeAnnotation",
2651
- "returnTypeAnnotation": {
2652
- "type": "VoidTypeAnnotation"
2653
- },
2654
- "params": []
2655
- }
2656
- },
2657
- {
2658
- "name": "setMinimumFetchIntervalInSeconds",
2659
- "optional": false,
2660
- "typeAnnotation": {
2661
- "type": "FunctionTypeAnnotation",
2662
- "returnTypeAnnotation": {
2663
- "type": "VoidTypeAnnotation"
2664
- },
2665
- "params": [
2666
- {
2667
- "name": "time",
2668
- "optional": false,
2669
- "typeAnnotation": {
2670
- "type": "NumberTypeAnnotation"
2671
- }
2672
- }
2673
- ]
2674
- }
2675
- },
2676
- {
2677
- "name": "getLastFetchTimeStampInMillis",
2678
- "optional": false,
2679
- "typeAnnotation": {
2680
- "type": "FunctionTypeAnnotation",
2681
- "returnTypeAnnotation": {
2682
- "type": "VoidTypeAnnotation"
2683
- },
2684
- "params": [
2685
- {
2686
- "name": "callback",
2687
- "optional": false,
2688
- "typeAnnotation": {
2689
- "type": "FunctionTypeAnnotation",
2690
- "returnTypeAnnotation": {
2691
- "type": "VoidTypeAnnotation"
2692
- },
2693
- "params": [
2694
- {
2695
- "name": "callback",
2696
- "optional": false,
2697
- "typeAnnotation": {
2698
- "type": "StringTypeAnnotation"
2699
- }
2700
- }
2701
- ]
2702
- }
2703
- }
2704
- ]
2705
- }
2706
- },
2707
- {
2708
- "name": "getString",
2709
- "optional": false,
2710
- "typeAnnotation": {
2711
- "type": "FunctionTypeAnnotation",
2712
- "returnTypeAnnotation": {
2713
- "type": "VoidTypeAnnotation"
2714
- },
2715
- "params": [
2716
- {
2717
- "name": "key",
2718
- "optional": false,
2719
- "typeAnnotation": {
2720
- "type": "StringTypeAnnotation"
2721
- }
2722
- },
2723
- {
2724
- "name": "callback",
2725
- "optional": false,
2726
- "typeAnnotation": {
2727
- "type": "NullableTypeAnnotation",
2728
- "typeAnnotation": {
2729
- "type": "FunctionTypeAnnotation",
2730
- "returnTypeAnnotation": {
2731
- "type": "VoidTypeAnnotation"
2732
- },
2733
- "params": [
2734
- {
2735
- "name": "error",
2736
- "optional": false,
2737
- "typeAnnotation": {
2738
- "type": "GenericObjectTypeAnnotation"
2739
- }
2740
- },
2741
- {
2742
- "name": "result",
2743
- "optional": false,
2744
- "typeAnnotation": {
2745
- "type": "BooleanTypeAnnotation"
2746
- }
2747
- }
2748
- ]
2749
- }
2750
- }
2751
- }
2752
- ]
2753
- }
2754
- },
2755
- {
2756
- "name": "getBoolean",
2757
- "optional": false,
2758
- "typeAnnotation": {
2759
- "type": "FunctionTypeAnnotation",
2760
- "returnTypeAnnotation": {
2761
- "type": "VoidTypeAnnotation"
2762
- },
2763
- "params": [
2764
- {
2765
- "name": "key",
2766
- "optional": false,
2767
- "typeAnnotation": {
2768
- "type": "StringTypeAnnotation"
2769
- }
2770
- },
2771
- {
2772
- "name": "callback",
2773
- "optional": false,
2774
- "typeAnnotation": {
2775
- "type": "NullableTypeAnnotation",
2776
- "typeAnnotation": {
2777
- "type": "FunctionTypeAnnotation",
2778
- "returnTypeAnnotation": {
2779
- "type": "VoidTypeAnnotation"
2780
- },
2781
- "params": [
2782
- {
2783
- "name": "error",
2784
- "optional": false,
2785
- "typeAnnotation": {
2786
- "type": "GenericObjectTypeAnnotation"
2787
- }
2788
- },
2789
- {
2790
- "name": "result",
2791
- "optional": false,
2792
- "typeAnnotation": {
2793
- "type": "BooleanTypeAnnotation"
2794
- }
2795
- }
2796
- ]
2797
- }
2798
- }
2799
- }
2800
- ]
2801
- }
2802
- },
2803
- {
2804
- "name": "getDouble",
2805
- "optional": false,
2806
- "typeAnnotation": {
2807
- "type": "FunctionTypeAnnotation",
2808
- "returnTypeAnnotation": {
2809
- "type": "VoidTypeAnnotation"
2810
- },
2811
- "params": [
2812
- {
2813
- "name": "key",
2814
- "optional": false,
2815
- "typeAnnotation": {
2816
- "type": "StringTypeAnnotation"
2817
- }
2818
- },
2819
- {
2820
- "name": "callback",
2821
- "optional": false,
2822
- "typeAnnotation": {
2823
- "type": "NullableTypeAnnotation",
2824
- "typeAnnotation": {
2825
- "type": "FunctionTypeAnnotation",
2826
- "returnTypeAnnotation": {
2827
- "type": "VoidTypeAnnotation"
2828
- },
2829
- "params": [
2830
- {
2831
- "name": "error",
2832
- "optional": false,
2833
- "typeAnnotation": {
2834
- "type": "GenericObjectTypeAnnotation"
2835
- }
2836
- },
2837
- {
2838
- "name": "result",
2839
- "optional": false,
2840
- "typeAnnotation": {
2841
- "type": "BooleanTypeAnnotation"
2842
- }
2843
- }
2844
- ]
2845
- }
2846
- }
2847
- }
2848
- ]
2849
- }
2850
- },
2851
- {
2852
- "name": "reset",
2853
- "optional": false,
2854
- "typeAnnotation": {
2855
- "type": "FunctionTypeAnnotation",
2856
- "returnTypeAnnotation": {
2857
- "type": "VoidTypeAnnotation"
2858
- },
2859
- "params": []
2860
- }
2861
- },
2862
- {
2863
- "name": "suspendInAppNotifications",
2864
- "optional": false,
2865
- "typeAnnotation": {
2866
- "type": "FunctionTypeAnnotation",
2867
- "returnTypeAnnotation": {
2868
- "type": "VoidTypeAnnotation"
2869
- },
2870
- "params": []
2871
- }
2872
- },
2873
- {
2874
- "name": "discardInAppNotifications",
2875
- "optional": false,
2876
- "typeAnnotation": {
2877
- "type": "FunctionTypeAnnotation",
2878
- "returnTypeAnnotation": {
2879
- "type": "VoidTypeAnnotation"
2880
- },
2881
- "params": [
2882
- {
2883
- "name": "dismissInAppIfVisible",
2884
- "optional": true,
2885
- "typeAnnotation": {
2886
- "type": "BooleanTypeAnnotation"
2887
- }
2888
- }
2889
- ]
2890
- }
2891
- },
2892
- {
2893
- "name": "resumeInAppNotifications",
2894
- "optional": false,
2895
- "typeAnnotation": {
2896
- "type": "FunctionTypeAnnotation",
2897
- "returnTypeAnnotation": {
2898
- "type": "VoidTypeAnnotation"
2899
- },
2900
- "params": []
2901
- }
2902
- },
2903
- {
2904
- "name": "fetchInApps",
2905
- "optional": false,
2906
- "typeAnnotation": {
2907
- "type": "FunctionTypeAnnotation",
2908
- "returnTypeAnnotation": {
2909
- "type": "VoidTypeAnnotation"
2910
- },
2911
- "params": [
2912
- {
2913
- "name": "callback",
2914
- "optional": false,
2915
- "typeAnnotation": {
2916
- "type": "NullableTypeAnnotation",
2917
- "typeAnnotation": {
2918
- "type": "FunctionTypeAnnotation",
2919
- "returnTypeAnnotation": {
2920
- "type": "VoidTypeAnnotation"
2921
- },
2922
- "params": [
2923
- {
2924
- "name": "error",
2925
- "optional": false,
2926
- "typeAnnotation": {
2927
- "type": "GenericObjectTypeAnnotation"
2928
- }
2929
- },
2930
- {
2931
- "name": "result",
2932
- "optional": false,
2933
- "typeAnnotation": {
2934
- "type": "BooleanTypeAnnotation"
2935
- }
2936
- }
2937
- ]
2938
- }
2939
- }
2940
- }
2941
- ]
2942
- }
2943
- },
2944
- {
2945
- "name": "clearInAppResources",
2946
- "optional": false,
2947
- "typeAnnotation": {
2948
- "type": "FunctionTypeAnnotation",
2949
- "returnTypeAnnotation": {
2950
- "type": "VoidTypeAnnotation"
2951
- },
2952
- "params": [
2953
- {
2954
- "name": "expiredOnly",
2955
- "optional": false,
2956
- "typeAnnotation": {
2957
- "type": "BooleanTypeAnnotation"
2958
- }
2959
- }
2960
- ]
2961
- }
2962
- },
2963
- {
2964
- "name": "customTemplateSetDismissed",
2965
- "optional": false,
2966
- "typeAnnotation": {
2967
- "type": "FunctionTypeAnnotation",
2968
- "returnTypeAnnotation": {
2969
- "type": "PromiseTypeAnnotation",
2970
- "elementType": {
2971
- "type": "VoidTypeAnnotation"
2972
- }
2973
- },
2974
- "params": [
2975
- {
2976
- "name": "templateName",
2977
- "optional": false,
2978
- "typeAnnotation": {
2979
- "type": "StringTypeAnnotation"
2980
- }
2981
- }
2982
- ]
2983
- }
2984
- },
2985
- {
2986
- "name": "customTemplateSetPresented",
2987
- "optional": false,
2988
- "typeAnnotation": {
2989
- "type": "FunctionTypeAnnotation",
2990
- "returnTypeAnnotation": {
2991
- "type": "PromiseTypeAnnotation",
2992
- "elementType": {
2993
- "type": "VoidTypeAnnotation"
2994
- }
2995
- },
2996
- "params": [
2997
- {
2998
- "name": "templateName",
2999
- "optional": false,
3000
- "typeAnnotation": {
3001
- "type": "StringTypeAnnotation"
3002
- }
3003
- }
3004
- ]
3005
- }
3006
- },
3007
- {
3008
- "name": "customTemplateRunAction",
3009
- "optional": false,
3010
- "typeAnnotation": {
3011
- "type": "FunctionTypeAnnotation",
3012
- "returnTypeAnnotation": {
3013
- "type": "PromiseTypeAnnotation",
3014
- "elementType": {
3015
- "type": "VoidTypeAnnotation"
3016
- }
3017
- },
3018
- "params": [
3019
- {
3020
- "name": "templateName",
3021
- "optional": false,
3022
- "typeAnnotation": {
3023
- "type": "StringTypeAnnotation"
3024
- }
3025
- },
3026
- {
3027
- "name": "argName",
3028
- "optional": false,
3029
- "typeAnnotation": {
3030
- "type": "StringTypeAnnotation"
3031
- }
3032
- }
3033
- ]
3034
- }
3035
- },
3036
- {
3037
- "name": "customTemplateGetStringArg",
3038
- "optional": false,
3039
- "typeAnnotation": {
3040
- "type": "FunctionTypeAnnotation",
3041
- "returnTypeAnnotation": {
3042
- "type": "PromiseTypeAnnotation",
3043
- "elementType": {
3044
- "type": "StringTypeAnnotation"
3045
- }
3046
- },
3047
- "params": [
3048
- {
3049
- "name": "templateName",
3050
- "optional": false,
3051
- "typeAnnotation": {
3052
- "type": "StringTypeAnnotation"
3053
- }
3054
- },
3055
- {
3056
- "name": "argName",
3057
- "optional": false,
3058
- "typeAnnotation": {
3059
- "type": "StringTypeAnnotation"
3060
- }
3061
- }
3062
- ]
3063
- }
3064
- },
3065
- {
3066
- "name": "customTemplateGetNumberArg",
3067
- "optional": false,
3068
- "typeAnnotation": {
3069
- "type": "FunctionTypeAnnotation",
3070
- "returnTypeAnnotation": {
3071
- "type": "PromiseTypeAnnotation",
3072
- "elementType": {
3073
- "type": "NumberTypeAnnotation"
3074
- }
3075
- },
3076
- "params": [
3077
- {
3078
- "name": "templateName",
3079
- "optional": false,
3080
- "typeAnnotation": {
3081
- "type": "StringTypeAnnotation"
3082
- }
3083
- },
3084
- {
3085
- "name": "argName",
3086
- "optional": false,
3087
- "typeAnnotation": {
3088
- "type": "StringTypeAnnotation"
3089
- }
3090
- }
3091
- ]
3092
- }
3093
- },
3094
- {
3095
- "name": "customTemplateGetBooleanArg",
3096
- "optional": false,
3097
- "typeAnnotation": {
3098
- "type": "FunctionTypeAnnotation",
3099
- "returnTypeAnnotation": {
3100
- "type": "PromiseTypeAnnotation",
3101
- "elementType": {
3102
- "type": "BooleanTypeAnnotation"
3103
- }
3104
- },
3105
- "params": [
3106
- {
3107
- "name": "templateName",
3108
- "optional": false,
3109
- "typeAnnotation": {
3110
- "type": "StringTypeAnnotation"
3111
- }
3112
- },
3113
- {
3114
- "name": "argName",
3115
- "optional": false,
3116
- "typeAnnotation": {
3117
- "type": "StringTypeAnnotation"
3118
- }
3119
- }
3120
- ]
3121
- }
3122
- },
3123
- {
3124
- "name": "customTemplateGetFileArg",
3125
- "optional": false,
3126
- "typeAnnotation": {
3127
- "type": "FunctionTypeAnnotation",
3128
- "returnTypeAnnotation": {
3129
- "type": "PromiseTypeAnnotation",
3130
- "elementType": {
3131
- "type": "StringTypeAnnotation"
3132
- }
3133
- },
3134
- "params": [
3135
- {
3136
- "name": "templateName",
3137
- "optional": false,
3138
- "typeAnnotation": {
3139
- "type": "StringTypeAnnotation"
3140
- }
3141
- },
3142
- {
3143
- "name": "argName",
3144
- "optional": false,
3145
- "typeAnnotation": {
3146
- "type": "StringTypeAnnotation"
3147
- }
3148
- }
3149
- ]
3150
- }
3151
- },
3152
- {
3153
- "name": "customTemplateGetObjectArg",
3154
- "optional": false,
3155
- "typeAnnotation": {
3156
- "type": "FunctionTypeAnnotation",
3157
- "returnTypeAnnotation": {
3158
- "type": "PromiseTypeAnnotation"
3159
- },
3160
- "params": [
3161
- {
3162
- "name": "templateName",
3163
- "optional": false,
3164
- "typeAnnotation": {
3165
- "type": "StringTypeAnnotation"
3166
- }
3167
- },
3168
- {
3169
- "name": "argName",
3170
- "optional": false,
3171
- "typeAnnotation": {
3172
- "type": "StringTypeAnnotation"
3173
- }
3174
- }
3175
- ]
3176
- }
3177
- },
3178
- {
3179
- "name": "customTemplateContextToString",
3180
- "optional": false,
3181
- "typeAnnotation": {
3182
- "type": "FunctionTypeAnnotation",
3183
- "returnTypeAnnotation": {
3184
- "type": "PromiseTypeAnnotation",
3185
- "elementType": {
3186
- "type": "StringTypeAnnotation"
3187
- }
3188
- },
3189
- "params": [
3190
- {
3191
- "name": "templateName",
3192
- "optional": false,
3193
- "typeAnnotation": {
3194
- "type": "StringTypeAnnotation"
3195
- }
3196
- }
3197
- ]
3198
- }
3199
- },
3200
- {
3201
- "name": "syncCustomTemplates",
3202
- "optional": false,
3203
- "typeAnnotation": {
3204
- "type": "FunctionTypeAnnotation",
3205
- "returnTypeAnnotation": {
3206
- "type": "VoidTypeAnnotation"
3207
- },
3208
- "params": []
3209
- }
3210
- },
3211
- {
3212
- "name": "syncCustomTemplatesInProd",
3213
- "optional": false,
3214
- "typeAnnotation": {
3215
- "type": "FunctionTypeAnnotation",
3216
- "returnTypeAnnotation": {
3217
- "type": "VoidTypeAnnotation"
3218
- },
3219
- "params": [
3220
- {
3221
- "name": "isProduction",
3222
- "optional": false,
3223
- "typeAnnotation": {
3224
- "type": "BooleanTypeAnnotation"
3225
- }
3226
- }
3227
- ]
3228
- }
3229
- },
3230
- {
3231
- "name": "promptForPushPermission",
3232
- "optional": false,
3233
- "typeAnnotation": {
3234
- "type": "FunctionTypeAnnotation",
3235
- "returnTypeAnnotation": {
3236
- "type": "VoidTypeAnnotation"
3237
- },
3238
- "params": [
3239
- {
3240
- "name": "showFallbackSettings",
3241
- "optional": false,
3242
- "typeAnnotation": {
3243
- "type": "BooleanTypeAnnotation"
3244
- }
3245
- }
3246
- ]
3247
- }
3248
- },
3249
- {
3250
- "name": "promptPushPrimer",
3251
- "optional": false,
3252
- "typeAnnotation": {
3253
- "type": "FunctionTypeAnnotation",
3254
- "returnTypeAnnotation": {
3255
- "type": "VoidTypeAnnotation"
3256
- },
3257
- "params": [
3258
- {
3259
- "name": "json",
3260
- "optional": false,
3261
- "typeAnnotation": {
3262
- "type": "GenericObjectTypeAnnotation"
3263
- }
3264
- }
3265
- ]
3266
- }
3267
- },
3268
- {
3269
- "name": "isPushPermissionGranted",
3270
- "optional": false,
3271
- "typeAnnotation": {
3272
- "type": "FunctionTypeAnnotation",
3273
- "returnTypeAnnotation": {
3274
- "type": "VoidTypeAnnotation"
3275
- },
3276
- "params": [
3277
- {
3278
- "name": "callback",
3279
- "optional": false,
3280
- "typeAnnotation": {
3281
- "type": "NullableTypeAnnotation",
3282
- "typeAnnotation": {
3283
- "type": "FunctionTypeAnnotation",
3284
- "returnTypeAnnotation": {
3285
- "type": "VoidTypeAnnotation"
3286
- },
3287
- "params": [
3288
- {
3289
- "name": "error",
3290
- "optional": false,
3291
- "typeAnnotation": {
3292
- "type": "GenericObjectTypeAnnotation"
3293
- }
3294
- },
3295
- {
3296
- "name": "result",
3297
- "optional": false,
3298
- "typeAnnotation": {
3299
- "type": "BooleanTypeAnnotation"
3300
- }
3301
- }
3302
- ]
3303
- }
3304
- }
3305
- }
3306
- ]
3307
- }
3308
- },
3309
- {
3310
- "name": "syncVariables",
3311
- "optional": false,
3312
- "typeAnnotation": {
3313
- "type": "FunctionTypeAnnotation",
3314
- "returnTypeAnnotation": {
3315
- "type": "VoidTypeAnnotation"
3316
- },
3317
- "params": []
3318
- }
3319
- },
3320
- {
3321
- "name": "syncVariablesinProd",
3322
- "optional": false,
3323
- "typeAnnotation": {
3324
- "type": "FunctionTypeAnnotation",
3325
- "returnTypeAnnotation": {
3326
- "type": "VoidTypeAnnotation"
3327
- },
3328
- "params": [
3329
- {
3330
- "name": "isProduction",
3331
- "optional": false,
3332
- "typeAnnotation": {
3333
- "type": "BooleanTypeAnnotation"
3334
- }
3335
- }
3336
- ]
3337
- }
3338
- },
3339
- {
3340
- "name": "getVariable",
3341
- "optional": false,
3342
- "typeAnnotation": {
3343
- "type": "FunctionTypeAnnotation",
3344
- "returnTypeAnnotation": {
3345
- "type": "VoidTypeAnnotation"
3346
- },
3347
- "params": [
3348
- {
3349
- "name": "name",
3350
- "optional": false,
3351
- "typeAnnotation": {
3352
- "type": "StringTypeAnnotation"
3353
- }
3354
- },
3355
- {
3356
- "name": "callback",
3357
- "optional": false,
3358
- "typeAnnotation": {
3359
- "type": "NullableTypeAnnotation",
3360
- "typeAnnotation": {
3361
- "type": "FunctionTypeAnnotation",
3362
- "returnTypeAnnotation": {
3363
- "type": "VoidTypeAnnotation"
3364
- },
3365
- "params": [
3366
- {
3367
- "name": "error",
3368
- "optional": false,
3369
- "typeAnnotation": {
3370
- "type": "GenericObjectTypeAnnotation"
3371
- }
3372
- },
3373
- {
3374
- "name": "result",
3375
- "optional": false,
3376
- "typeAnnotation": {
3377
- "type": "BooleanTypeAnnotation"
3378
- }
3379
- }
3380
- ]
3381
- }
3382
- }
3383
- }
3384
- ]
3385
- }
3386
- },
3387
- {
3388
- "name": "fetchVariables",
3389
- "optional": false,
3390
- "typeAnnotation": {
3391
- "type": "FunctionTypeAnnotation",
3392
- "returnTypeAnnotation": {
3393
- "type": "VoidTypeAnnotation"
3394
- },
3395
- "params": [
3396
- {
3397
- "name": "callback",
3398
- "optional": false,
3399
- "typeAnnotation": {
3400
- "type": "NullableTypeAnnotation",
3401
- "typeAnnotation": {
3402
- "type": "FunctionTypeAnnotation",
3403
- "returnTypeAnnotation": {
3404
- "type": "VoidTypeAnnotation"
3405
- },
3406
- "params": [
3407
- {
3408
- "name": "error",
3409
- "optional": false,
3410
- "typeAnnotation": {
3411
- "type": "GenericObjectTypeAnnotation"
3412
- }
3413
- },
3414
- {
3415
- "name": "result",
3416
- "optional": false,
3417
- "typeAnnotation": {
3418
- "type": "BooleanTypeAnnotation"
3419
- }
3420
- }
3421
- ]
3422
- }
3423
- }
3424
- }
3425
- ]
3426
- }
3427
- },
3428
- {
3429
- "name": "getVariables",
3430
- "optional": false,
3431
- "typeAnnotation": {
3432
- "type": "FunctionTypeAnnotation",
3433
- "returnTypeAnnotation": {
3434
- "type": "VoidTypeAnnotation"
3435
- },
3436
- "params": [
3437
- {
3438
- "name": "callback",
3439
- "optional": false,
3440
- "typeAnnotation": {
3441
- "type": "NullableTypeAnnotation",
3442
- "typeAnnotation": {
3443
- "type": "FunctionTypeAnnotation",
3444
- "returnTypeAnnotation": {
3445
- "type": "VoidTypeAnnotation"
3446
- },
3447
- "params": [
3448
- {
3449
- "name": "error",
3450
- "optional": false,
3451
- "typeAnnotation": {
3452
- "type": "GenericObjectTypeAnnotation"
3453
- }
3454
- },
3455
- {
3456
- "name": "result",
3457
- "optional": false,
3458
- "typeAnnotation": {
3459
- "type": "BooleanTypeAnnotation"
3460
- }
3461
- }
3462
- ]
3463
- }
3464
- }
3465
- }
3466
- ]
3467
- }
3468
- },
3469
- {
3470
- "name": "defineVariables",
3471
- "optional": false,
3472
- "typeAnnotation": {
3473
- "type": "FunctionTypeAnnotation",
3474
- "returnTypeAnnotation": {
3475
- "type": "VoidTypeAnnotation"
3476
- },
3477
- "params": [
3478
- {
3479
- "name": "variables",
3480
- "optional": false,
3481
- "typeAnnotation": {
3482
- "type": "NullableTypeAnnotation",
3483
- "typeAnnotation": {
3484
- "type": "GenericObjectTypeAnnotation"
3485
- }
3486
- }
3487
- }
3488
- ]
3489
- }
3490
- },
3491
- {
3492
- "name": "defineFileVariable",
3493
- "optional": false,
3494
- "typeAnnotation": {
3495
- "type": "FunctionTypeAnnotation",
3496
- "returnTypeAnnotation": {
3497
- "type": "VoidTypeAnnotation"
3498
- },
3499
- "params": [
3500
- {
3501
- "name": "name",
3502
- "optional": false,
3503
- "typeAnnotation": {
3504
- "type": "StringTypeAnnotation"
3505
- }
3506
- }
3507
- ]
3508
- }
3509
- },
3510
- {
3511
- "name": "onVariablesChanged",
3512
- "optional": false,
3513
- "typeAnnotation": {
3514
- "type": "FunctionTypeAnnotation",
3515
- "returnTypeAnnotation": {
3516
- "type": "VoidTypeAnnotation"
3517
- },
3518
- "params": []
3519
- }
3520
- },
3521
- {
3522
- "name": "onOneTimeVariablesChanged",
3523
- "optional": false,
3524
- "typeAnnotation": {
3525
- "type": "FunctionTypeAnnotation",
3526
- "returnTypeAnnotation": {
3527
- "type": "VoidTypeAnnotation"
3528
- },
3529
- "params": []
3530
- }
3531
- },
3532
- {
3533
- "name": "onValueChanged",
3534
- "optional": false,
3535
- "typeAnnotation": {
3536
- "type": "FunctionTypeAnnotation",
3537
- "returnTypeAnnotation": {
3538
- "type": "VoidTypeAnnotation"
3539
- },
3540
- "params": [
3541
- {
3542
- "name": "name",
3543
- "optional": false,
3544
- "typeAnnotation": {
3545
- "type": "StringTypeAnnotation"
3546
- }
3547
- }
3548
- ]
3549
- }
3550
- },
3551
- {
3552
- "name": "onVariablesChangedAndNoDownloadsPending",
3553
- "optional": false,
3554
- "typeAnnotation": {
3555
- "type": "FunctionTypeAnnotation",
3556
- "returnTypeAnnotation": {
3557
- "type": "VoidTypeAnnotation"
3558
- },
3559
- "params": []
3560
- }
3561
- },
3562
- {
3563
- "name": "onceVariablesChangedAndNoDownloadsPending",
3564
- "optional": false,
3565
- "typeAnnotation": {
3566
- "type": "FunctionTypeAnnotation",
3567
- "returnTypeAnnotation": {
3568
- "type": "VoidTypeAnnotation"
3569
- },
3570
- "params": []
3571
- }
3572
- },
3573
- {
3574
- "name": "onFileValueChanged",
3575
- "optional": false,
3576
- "typeAnnotation": {
3577
- "type": "FunctionTypeAnnotation",
3578
- "returnTypeAnnotation": {
3579
- "type": "VoidTypeAnnotation"
3580
- },
3581
- "params": [
3582
- {
3583
- "name": "name",
3584
- "optional": false,
3585
- "typeAnnotation": {
3586
- "type": "StringTypeAnnotation"
3587
- }
3588
- }
3589
- ]
3590
- }
3591
- },
3592
- {
3593
- "name": "variants",
3594
- "optional": false,
3595
- "typeAnnotation": {
3596
- "type": "FunctionTypeAnnotation",
3597
- "returnTypeAnnotation": {
3598
- "type": "VoidTypeAnnotation"
3599
- },
3600
- "params": [
3601
- {
3602
- "name": "callback",
3603
- "optional": false,
3604
- "typeAnnotation": {
3605
- "type": "NullableTypeAnnotation",
3606
- "typeAnnotation": {
3607
- "type": "FunctionTypeAnnotation",
3608
- "returnTypeAnnotation": {
3609
- "type": "VoidTypeAnnotation"
3610
- },
3611
- "params": [
3612
- {
3613
- "name": "error",
3614
- "optional": false,
3615
- "typeAnnotation": {
3616
- "type": "GenericObjectTypeAnnotation"
3617
- }
3618
- },
3619
- {
3620
- "name": "result",
3621
- "optional": false,
3622
- "typeAnnotation": {
3623
- "type": "BooleanTypeAnnotation"
3624
- }
3625
- }
3626
- ]
3627
- }
3628
- }
3629
- }
3630
- ]
3631
- }
3632
- },
3633
- {
3634
- "name": "onEventListenerAdded",
3635
- "optional": false,
3636
- "typeAnnotation": {
3637
- "type": "FunctionTypeAnnotation",
3638
- "returnTypeAnnotation": {
3639
- "type": "VoidTypeAnnotation"
3640
- },
3641
- "params": [
3642
- {
3643
- "name": "eventType",
3644
- "optional": false,
3645
- "typeAnnotation": {
3646
- "type": "StringTypeAnnotation"
3647
- }
3648
- }
3649
- ]
3650
- }
3651
- },
3652
- {
3653
- "name": "addListener",
3654
- "optional": false,
3655
- "typeAnnotation": {
3656
- "type": "FunctionTypeAnnotation",
3657
- "returnTypeAnnotation": {
3658
- "type": "VoidTypeAnnotation"
3659
- },
3660
- "params": [
3661
- {
3662
- "name": "eventType",
3663
- "optional": false,
3664
- "typeAnnotation": {
3665
- "type": "StringTypeAnnotation"
3666
- }
3667
- }
3668
- ]
3669
- }
3670
- },
3671
- {
3672
- "name": "removeListeners",
3673
- "optional": false,
3674
- "typeAnnotation": {
3675
- "type": "FunctionTypeAnnotation",
3676
- "returnTypeAnnotation": {
3677
- "type": "VoidTypeAnnotation"
3678
- },
3679
- "params": [
3680
- {
3681
- "name": "count",
3682
- "optional": false,
3683
- "typeAnnotation": {
3684
- "type": "NumberTypeAnnotation"
3685
- }
3686
- }
3687
- ]
3688
- }
3689
- }
3690
- ]
3691
- },
3692
- "moduleName": "CleverTapReact"
3693
- }
3694
- }
3695
- }